BeOSPlatformUtils.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:18k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: BeOSPlatformUtils.cpp,v $
  58.  * Revision 1.7  2003/05/15 18:37:47  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.6  2003/04/25 17:18:53  peiyongz
  62.  * throw exception if getcwd() fails
  63.  *
  64.  * Revision 1.5  2003/04/24 02:52:34  peiyongz
  65.  * Logical Path Resolution
  66.  *
  67.  * Revision 1.4  2003/04/21 04:26:47  peiyongz
  68.  * performance tuning
  69.  *
  70.  * Revision 1.3  2003/03/09 16:52:56  peiyongz
  71.  * PanicHandler
  72.  *
  73.  * Revision 1.2  2003/02/05 18:28:39  tng
  74.  * [Bug 13437] Incorrect memory management in XXXPlatformUtils.cpp.
  75.  *
  76.  * Revision 1.1  2002/12/12 21:24:20  peiyongz
  77.  * typo fix
  78.  *
  79.  * Revision 1.2  2002/12/12 16:28:40  peiyongz
  80.  * MsgCatalogLoader added.
  81.  *
  82.  * Revision 1.1  2002/12/02 20:42:30  tng
  83.  * [Bug 12490] Patches required to build Xerces-C++ on BeOS R5.  Patch from Andrew Bachmann.
  84.  *
  85.  *
  86.  */
  87. // ---------------------------------------------------------------------------
  88. //  Includes
  89. // ---------------------------------------------------------------------------
  90. #if !defined(APP_NO_THREADS)
  91. #error BeOS native threads not yet supported.
  92. #endif
  93. #ifndef _GNU_SOURCE
  94.     #error _GNU_SOURCE is not defined in your compile settings
  95. #endif
  96. #include    <unistd.h>
  97. #include    <stdio.h>
  98. #include    <stdlib.h>
  99. #include    <errno.h>
  100. //#include    <libgen.h>
  101. #include    <limits.h>           //for PATH_MAX
  102. #include    <sys/timeb.h>
  103. #include    <string.h>
  104. #include    <xercesc/util/PlatformUtils.hpp>
  105. #include    <xercesc/util/RuntimeException.hpp>
  106. #include    <xercesc/util/Janitor.hpp>
  107. #include    <xercesc/util/Mutexes.hpp>
  108. #include    <xercesc/util/XMLString.hpp>
  109. #include    <xercesc/util/XMLUniDefs.hpp>
  110. #include    <xercesc/util/XMLUni.hpp>
  111. #include    <xercesc/util/PanicHandler.hpp>
  112. #include <Path.h>
  113. char *realpath(const char *path, char *resolved_path) {
  114.   BPath tempPath(path,NULL,true);
  115.   strcpy(resolved_path,tempPath.Path());
  116.   return resolved_path;
  117. }
  118. #if defined(XML_USE_ICU_TRANSCODER)
  119.     #include <xercesc/util/Transcoders/ICU/ICUTransService.hpp>
  120. #elif defined (XML_USE_GNU_TRANSCODER)
  121.     #include <xercesc/util/Transcoders/IconvGNU/IconvGNUTransService.hpp>
  122. #else
  123.     // Use native transcoder. Same as -DXML_USE_NATIVE_TRANSCODER
  124.     #include <xercesc/util/Transcoders/Iconv/IconvTransService.hpp>
  125. #endif
  126. #if defined(XML_USE_ICU_MESSAGELOADER)
  127.     #include <xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp>
  128. #elif defined (XML_USE_ICONV_MESSAGELOADER)
  129.     #include <xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp>
  130. #else
  131.     // Same as -DXML_USE_INMEM_MESSAGELOADER
  132.     #include <xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp>
  133. #endif
  134. #if defined (XML_USE_NETACCESSOR_SOCKET)
  135.     #include <xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp>
  136. #endif
  137. XERCES_CPP_NAMESPACE_BEGIN
  138. // ---------------------------------------------------------------------------
  139. //  XMLPlatformUtils: Private Static Methods
  140. // ---------------------------------------------------------------------------
  141. XMLNetAccessor* XMLPlatformUtils::makeNetAccessor()
  142. {
  143. #if defined (XML_USE_NETACCESSOR_SOCKET)
  144.     return new SocketNetAccessor();
  145. #else
  146.     return 0;
  147. #endif
  148. }
  149. //
  150. //  This method is called by the platform independent part of this class
  151. //  when client code asks to have one of the supported message sets loaded.
  152. //
  153. XMLMsgLoader* XMLPlatformUtils::loadAMsgSet(const XMLCh* const msgDomain)
  154. {
  155.     XMLMsgLoader* retVal;
  156.     try
  157.     {
  158. #if defined (XML_USE_ICU_MESSAGELOADER)
  159.         retVal = new ICUMsgLoader(msgDomain);
  160. #elif defined (XML_USE_ICONV_MESSAGELOADER)
  161.         retVal = new MsgCatalogLoader(msgDomain);
  162. #else
  163.         // same as -DXML_USE_INMEM_MESSAGELOADER
  164.         retVal = new InMemMsgLoader(msgDomain);
  165. #endif
  166.     }
  167.     catch(...)
  168.     {
  169.         panic(PanicHandler::Panic_CantLoadMsgDomain);
  170.     }
  171.     return retVal;
  172. }
  173. //
  174. //  This method is called very early in the bootstrapping process. This guy
  175. //  must create a transcoding service and return it. It cannot use any string
  176. //  methods, any transcoding services, throw any exceptions, etc... It just
  177. //  makes a transcoding service and returns it, or returns zero on failure.
  178. //
  179. XMLTransService* XMLPlatformUtils::makeTransService()
  180. {
  181. #if defined (XML_USE_ICU_TRANSCODER)
  182.     // Use ICU transcoding services.
  183.     // same as -DXML_USE_ICU_MESSAGELOADER
  184.     return new ICUTransService;
  185. #elif defined (XML_USE_GNU_TRANSCODER)
  186.     return new IconvGNUTransService;
  187. #else
  188.     // Use native transcoding services.
  189.     // same as -DXML_USE_NATIVE_TRANSCODER
  190.     return new IconvTransService;
  191. #endif
  192. }
  193. // ---------------------------------------------------------------------------
  194. //  XMLPlatformUtils: The panic method
  195. // ---------------------------------------------------------------------------
  196. void XMLPlatformUtils::panic(const PanicHandler::PanicReasons reason)
  197. {
  198.     fgUserPanicHandler? fgUserPanicHandler->panic(reason) : fgDefaultPanicHandler->panic(reason);
  199. }
  200. // ---------------------------------------------------------------------------
  201. //  XMLPlatformUtils: File Methods
  202. // ---------------------------------------------------------------------------
  203. unsigned int XMLPlatformUtils::curFilePos(FileHandle theFile)
  204. {
  205.     int curPos = ftell( (FILE*)theFile);
  206.     if (curPos == -1)
  207.         ThrowXML(XMLPlatformUtilsException,
  208.                  XMLExcepts::File_CouldNotGetSize);
  209.     return (unsigned int)curPos;
  210. }
  211. void XMLPlatformUtils::closeFile(FileHandle theFile)
  212. {
  213.     if (fclose((FILE*)theFile))
  214.         ThrowXML(XMLPlatformUtilsException,
  215.                  XMLExcepts::File_CouldNotCloseFile);
  216. }
  217. unsigned int XMLPlatformUtils::fileSize(FileHandle theFile)
  218. {
  219.     // Get the current position
  220.     long  int curPos = ftell((FILE*) theFile);
  221.     if (curPos == -1)
  222.         ThrowXML(XMLPlatformUtilsException,
  223.                  XMLExcepts::File_CouldNotGetCurPos);
  224.     // Seek to the end and save that value for return
  225.      if (fseek((FILE*) theFile, 0, SEEK_END))
  226.         ThrowXML(XMLPlatformUtilsException,
  227.                  XMLExcepts::File_CouldNotSeekToEnd);
  228.     long int retVal = ftell((FILE*)theFile);
  229.     if (retVal == -1)
  230.         ThrowXML(XMLPlatformUtilsException,
  231.                  XMLExcepts::File_CouldNotSeekToEnd);
  232.     // And put the pointer back
  233.     if (fseek( (FILE*)theFile, curPos, SEEK_SET) )
  234.         ThrowXML(XMLPlatformUtilsException,
  235.                  XMLExcepts::File_CouldNotSeekToPos);
  236.     return (unsigned int)retVal;
  237. }
  238. FileHandle XMLPlatformUtils::openFile(const XMLCh* const fileName)
  239. {
  240.     const char* tmpFileName = XMLString::transcode(fileName, fgMemoryManager);
  241.     ArrayJanitor<char> janText((char*)tmpFileName, fgMemoryManager);
  242.     FileHandle retVal = (FILE*)fopen( tmpFileName , "rb" );
  243.     if (retVal == NULL)
  244.         return 0;
  245.     return retVal;
  246. }
  247. FileHandle XMLPlatformUtils::openFile(const char* const fileName)
  248. {
  249.     FileHandle retVal = (FILE*)fopen( fileName , "rb" );
  250.     if (retVal == NULL)
  251.         return 0;
  252.     return retVal;
  253. }
  254. FileHandle XMLPlatformUtils::openFileToWrite(const XMLCh* const fileName)
  255. {
  256.     const char* tmpFileName = XMLString::transcode(fileName, fgMemoryManager);
  257.     ArrayJanitor<char> janText((char*)tmpFileName, fgMemoryManager);
  258.     return fopen( tmpFileName , "wb" );
  259. }
  260. FileHandle XMLPlatformUtils::openFileToWrite(const char* const fileName)
  261. {
  262.     return fopen( fileName , "wb" );
  263. }
  264. FileHandle XMLPlatformUtils::openStdInHandle()
  265. {
  266.     return (FileHandle)fdopen(dup(0), "rb");
  267. }
  268. unsigned int
  269. XMLPlatformUtils::readFileBuffer( FileHandle          theFile
  270.                                 , const unsigned int  toRead
  271.                                 , XMLByte* const      toFill)
  272. {
  273.     size_t noOfItemsRead = fread((void*) toFill, 1, toRead, (FILE*)theFile);
  274.     if(ferror((FILE*)theFile))
  275.     {
  276.         ThrowXML(XMLPlatformUtilsException,
  277.                  XMLExcepts::File_CouldNotReadFromFile);
  278.     }
  279.     return (unsigned int)noOfItemsRead;
  280. }
  281. void
  282. XMLPlatformUtils::writeBufferToFile( FileHandle     const  theFile
  283.                                    , long                  toWrite
  284.                                    , const XMLByte* const  toFlush)
  285. {
  286.     if (!theFile        ||
  287.         (toWrite <= 0 ) ||
  288.         !toFlush         )
  289.         return;
  290.     const XMLByte* tmpFlush = (const XMLByte*) toFlush;
  291.     size_t bytesWritten = 0;
  292.     while (true)
  293.     {
  294.         bytesWritten=fwrite(tmpFlush, sizeof(XMLByte), toWrite, (FILE*)theFile);
  295.         if(ferror((FILE*)theFile))
  296.         {
  297.             ThrowXML(XMLPlatformUtilsException, XMLExcepts::File_CouldNotWriteToFile);
  298.         }
  299.         if (bytesWritten < toWrite) //incomplete write
  300.         {
  301.             tmpFlush+=bytesWritten;
  302.             toWrite-=bytesWritten;
  303.             bytesWritten=0;
  304.         }
  305.         else
  306.             return;
  307.     }
  308.     return;
  309. }
  310. void XMLPlatformUtils::resetFile(FileHandle theFile)
  311. {
  312.     // Seek to the start of the file
  313.     if (fseek((FILE*)theFile, 0, SEEK_SET))
  314.         ThrowXML(XMLPlatformUtilsException,
  315.                  XMLExcepts::File_CouldNotResetFile);
  316. }
  317. // ---------------------------------------------------------------------------
  318. //  XMLPlatformUtils: File system methods
  319. // ---------------------------------------------------------------------------
  320. XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath,
  321.                                      MemoryManager* const manager)
  322. {
  323.     //
  324.     //  NOTE: THe path provided has always already been opened successfully,
  325.     //  so we know that its not some pathological freaky path. It comes in
  326.     //  in native format, and goes out as Unicode always
  327.     //
  328.     char* newSrc = XMLString::transcode(srcPath, fgMemoryManager);
  329.     ArrayJanitor<char> janText(newSrc, fgMemoryManager);
  330.     // Use a local buffer that is big enough for the largest legal path
  331.     char absPath[PATH_MAX + 1];
  332.     // get the absolute path
  333.     char* retPath = realpath(newSrc, &absPath[0]);
  334.     if (!retPath)
  335.     {
  336.         ThrowXML(XMLPlatformUtilsException, XMLExcepts::File_CouldNotGetBasePathName);
  337.     }
  338.     return XMLString::transcode(absPath, manager);
  339. }
  340. bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck)
  341. {
  342.     // Check for pathological case of empty path
  343.     if (!toCheck[0])
  344.         return false;
  345.     //
  346.     //  If it starts with a slash, then it cannot be relative. This covers
  347.     //  both something like "TestFile.xml" and an NT Lan type remote path
  348.     //  that starts with a node like "\MyNodeTestFile.xml".
  349.     //
  350.     if (toCheck[0] == XMLCh('/'))
  351.         return false;
  352.     // Else assume its a relative path
  353.     return true;
  354. }
  355. XMLCh* XMLPlatformUtils::getCurrentDirectory(MemoryManager* const manager)
  356. {
  357.     char  dirBuf[PATH_MAX + 1];
  358.     char  *curDir = getcwd(&dirBuf[0], PATH_MAX + 1);
  359.     if (!curDir)
  360.     {
  361.         ThrowXML(XMLPlatformUtilsException,
  362.                  XMLExcepts::File_CouldNotGetBasePathName);
  363.     }
  364.     return XMLString::transcode(curDir, manager);
  365. }
  366. inline bool XMLPlatformUtils::isAnySlash(XMLCh c) 
  367. {
  368.     return ( chBackSlash == c || chForwardSlash == c);
  369. }
  370. // ---------------------------------------------------------------------------
  371. //  XMLPlatformUtils: Timing Methods
  372. // ---------------------------------------------------------------------------
  373. unsigned long XMLPlatformUtils::getCurrentMillis()
  374. {
  375.     timeb aTime;
  376.     ftime(&aTime);
  377.     return (unsigned long)(aTime.time*1000 + aTime.millitm);
  378. }
  379. // -----------------------------------------------------------------------
  380. //  Mutex methods
  381. // -----------------------------------------------------------------------
  382. #if !defined(APP_NO_THREADS)
  383. // ---------------------------------------------------------------------------
  384. //  XMLPlatformUtils: Platform init method
  385. // ---------------------------------------------------------------------------
  386. static XMLMutex atomicOpsMutex;
  387. void XMLPlatformUtils::platformInit()
  388. {
  389.     //
  390.     // The atomicOps mutex needs to be created early.
  391.     // Normally, mutexes are created on first use, but there is a
  392.     // circular dependency between compareAndExchange() and
  393.     // mutex creation that must be broken.
  394.     if (atomicOpsMutex.fHandle == 0)
  395.         atomicOpsMutex.fHandle = XMLPlatformUtils::makeMutex();
  396. }
  397. void* XMLPlatformUtils::makeMutex()
  398. {
  399.     pthread_mutex_t* mutex = new pthread_mutex_t;
  400.     pthread_mutexattr_t*  attr = new pthread_mutexattr_t;
  401.     pthread_mutexattr_init(attr);
  402.     pthread_mutexattr_settype(attr, PTHREAD_MUTEX_RECURSIVE_NP);
  403.     if (pthread_mutex_init(mutex, attr))
  404.     {
  405.         ThrowXML(XMLPlatformUtilsException,
  406.                  XMLExcepts::Mutex_CouldNotCreate);
  407.     }
  408.     pthread_mutexattr_destroy(attr);
  409.     delete attr;
  410.     return (void*)(mutex);
  411. }
  412. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  413. {
  414.     if (mtxHandle != NULL)
  415.     {
  416.         if (pthread_mutex_destroy((pthread_mutex_t*) mtxHandle))
  417.         {
  418.             ThrowXML(XMLPlatformUtilsException,
  419.                      XMLExcepts::Mutex_CouldNotDestroy);
  420.         }
  421.         delete (pthread_mutex_t*) mtxHandle;
  422.     }
  423. }
  424. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  425. {
  426.     if (mtxHandle != NULL)
  427.     {
  428.         if (pthread_mutex_lock((pthread_mutex_t*) mtxHandle))
  429.         {
  430.             ThrowXML(XMLPlatformUtilsException,
  431.                      XMLExcepts::Mutex_CouldNotLock);
  432.         }
  433.     }
  434. }
  435. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  436. {
  437.     if (mtxHandle != NULL)
  438.     {
  439.         if (pthread_mutex_unlock((pthread_mutex_t*) mtxHandle))
  440.         {
  441.             ThrowXML(XMLPlatformUtilsException,
  442.                      XMLExcepts::Mutex_CouldNotUnlock);
  443.         }
  444.     }
  445. }
  446. // -----------------------------------------------------------------------
  447. //  Miscellaneous synchronization methods
  448. // -----------------------------------------------------------------------
  449. void* XMLPlatformUtils::compareAndSwap(void**            toFill
  450.                                      , const void* const newValue
  451.                                      , const void* const toCompare)
  452. {
  453.     XMLMutexLock lockMutex(&atomicOpsMutex);
  454.     void *retVal = *toFill;
  455.     if (*toFill == toCompare)
  456.         *toFill = (void *)newValue;
  457.     return retVal;
  458. }
  459. int XMLPlatformUtils::atomicIncrement(int &location)
  460. {
  461.     XMLMutexLock localLock(&atomicOpsMutex);
  462.     return ++location;
  463. }
  464. int XMLPlatformUtils::atomicDecrement(int &location)
  465. {
  466.     XMLMutexLock localLock(&atomicOpsMutex);
  467.     return --location;
  468. }
  469. #else // #if !defined (APP_NO_THREADS)
  470. void XMLPlatformUtils::platformInit()
  471. {
  472. }
  473. void* XMLPlatformUtils::makeMutex()
  474. {
  475.         return 0;
  476. }
  477. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  478. {
  479. }
  480. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  481. {
  482. }
  483. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  484. {
  485. }
  486. void* XMLPlatformUtils::compareAndSwap (void**             toFill,
  487.                                         const void* const  newValue,
  488.                                         const void* const  toCompare)
  489. {
  490.     void *retVal = *toFill;
  491.     if (*toFill == toCompare)
  492.        *toFill = (void *)newValue;
  493.     return retVal;
  494. }
  495. int XMLPlatformUtils::atomicIncrement(int &location)
  496. {
  497.     return ++location;
  498. }
  499. int XMLPlatformUtils::atomicDecrement(int &location)
  500. {
  501.     return --location;
  502. }
  503. #endif // APP_NO_THREADS
  504. void XMLPlatformUtils::platformTerm()
  505. {
  506. #if !defined(APP_NO_THREADS)
  507.     // delete the mutex we created
  508. closeMutex(atomicOpsMutex.fHandle);
  509. atomicOpsMutex.fHandle = 0;
  510. #endif
  511. }
  512. #include <xercesc/util/LogicalPath.c>
  513. XERCES_CPP_NAMESPACE_END