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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-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: OpenServerPlatformUtils.cpp,v $
  58.  * Revision 1.8  2003/05/15 18:37:49  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.7  2003/04/25 17:20:11  peiyongz
  62.  * throw exception if getcwd() fails
  63.  *
  64.  * Revision 1.6  2003/04/24 02:55:58  peiyongz
  65.  * Logical Path Resolution
  66.  *
  67.  * Revision 1.5  2003/03/09 16:57:18  peiyongz
  68.  * PanicHandler
  69.  *
  70.  * Revision 1.4  2002/11/19 13:04:32  gareth
  71.  * Bug# 14661 Caldera implemented openFileToWrite and writeBufferToFile. Patch from Cameron Dorrat.
  72.  *
  73.  * Revision 1.3  2002/11/04 15:13:01  tng
  74.  * C++ Namespace Support.
  75.  *
  76.  * Revision 1.2  2002/05/21 20:31:47  tng
  77.  * Minor update: Remove obsolete code
  78.  *
  79.  * Revision 1.1  2002/02/27 22:57:59  peiyongz
  80.  * Bug# 6445 Caldera (SCO) OpenServer Port : patch from Martin Kalen
  81.  *
  82.  */
  83. // ---------------------------------------------------------------------------
  84. //  Includes
  85. // ---------------------------------------------------------------------------
  86. #if !defined (APP_NO_THREADS)
  87. #include     <pthread.h>
  88. #endif
  89. #include    <unistd.h>
  90. #include    <stdio.h>
  91. #include    <stdlib.h>
  92. #include    <errno.h>
  93. #include    <libgen.h>
  94. #include    <sys/time.h>
  95. #include    <netinet/in.h>
  96. #include    <arpa/inet.h>
  97. #include    <xercesc/util/PlatformUtils.hpp>
  98. #include    <xercesc/util/RuntimeException.hpp>
  99. #include    <xercesc/util/Janitor.hpp>
  100. #include    <xercesc/util/Mutexes.hpp>
  101. #include    <xercesc/util/XMLString.hpp>
  102. #include    <xercesc/util/XMLUniDefs.hpp>
  103. #include    <xercesc/util/XMLUni.hpp>
  104. #include    <xercesc/util/PanicHandler.hpp>
  105. #if defined (XML_USE_ICU_TRANSCODER)
  106. #   include <xercesc/util/Transcoders/ICU/ICUTransService.hpp>
  107. #else
  108. //  Same as -DXML_USE_NATIVE_TRANSCODER
  109. #   include <xercesc/util/Transcoders/Iconv/IconvTransService.hpp>
  110. #endif
  111. #if defined(XML_USE_ICU_MESSAGELOADER)
  112. #   include <xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp>
  113. #elif defined (XML_USE_ICONV_MESSAGELOADER)
  114. #   include <xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp>
  115. #else
  116. //  Same as -DXML_USE_INMEM_MESSAGELOADER
  117. #   include <xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp>
  118. #endif
  119. #if defined (XML_USE_NETACCESSOR_LIBWWW)
  120. #   include <xercesc/util/NetAccessors/libWWW/LibWWWNetAccessor.hpp>
  121. #else
  122. //  Same as -DXML_USE_NETACCESSOR_SOCKET
  123. #   include <xercesc/util/NetAccessors/Socket/SocketNetAccessor.hpp>
  124. #endif
  125. XERCES_CPP_NAMESPACE_BEGIN
  126. // ---------------------------------------------------------------------------
  127. //  XMLPlatformUtils: Private Static Methods
  128. // ---------------------------------------------------------------------------
  129. //
  130. //  This method is called by the platform independent part of this class
  131. //  when client code asks to have one of the supported message sets loaded.
  132. //
  133. XMLMsgLoader* XMLPlatformUtils::loadAMsgSet(const XMLCh* const msgDomain)
  134. {
  135.     XMLMsgLoader* retVal = 0;
  136.     try
  137.     {
  138. #if defined (XML_USE_ICU_MESSAGELOADER)
  139.         retVal = new ICUMsgLoader(msgDomain);
  140. #elif defined (XML_USE_ICONV_MESSAGELOADER)
  141.         retVal = new MsgCatalogLoader(msgDomain);
  142. #else
  143.         retVal = new InMemMsgLoader(msgDomain);
  144. #endif
  145.     }
  146.     catch(...)
  147.     {
  148.         panic(PanicHandler::Panic_CantLoadMsgDomain);
  149.     }
  150.     return retVal;
  151. }
  152. XMLNetAccessor* XMLPlatformUtils::makeNetAccessor()
  153. {
  154. #if defined (XML_USE_NETACCESSOR_LIBWWW)
  155.     return new LibWWWNetAccessor();
  156. #else
  157.     return new SocketNetAccessor();
  158. #endif
  159. }
  160. //
  161. //  This method is called very early in the bootstrapping process. This guy
  162. //  must create a transcoding service and return it. It cannot use any string
  163. //  methods, any transcoding services, throw any exceptions, etc... It just
  164. //  makes a transcoding service and returns it, or returns zero on failure.
  165. //
  166. XMLTransService* XMLPlatformUtils::makeTransService()
  167. {
  168. #if defined (XML_USE_ICU_TRANSCODER)
  169. return new ICUTransService;
  170. #else
  171. return new IconvTransService;
  172. #endif
  173. }
  174. // ---------------------------------------------------------------------------
  175. //  XMLPlatformUtils: The panic method
  176. // ---------------------------------------------------------------------------
  177. void XMLPlatformUtils::panic(const PanicHandler::PanicReasons reason)
  178. {
  179.     fgUserPanicHandler? fgUserPanicHandler->panic(reason) : fgDefaultPanicHandler->panic(reason);
  180. }
  181. // ---------------------------------------------------------------------------
  182. //  XMLPlatformUtils: File Methods
  183. // ---------------------------------------------------------------------------
  184. unsigned int XMLPlatformUtils::curFilePos(FileHandle theFile)
  185. {
  186.     // Get the current position
  187.     int curPos = ftell((FILE*)theFile);
  188.     if (curPos == -1)
  189.         ThrowXML(XMLPlatformUtilsException,
  190.                  XMLExcepts::File_CouldNotGetSize);
  191.     return (unsigned int)curPos;
  192. }
  193. void XMLPlatformUtils::closeFile(FileHandle theFile)
  194. {
  195.     if (fclose((FILE*)theFile))
  196.         ThrowXML(XMLPlatformUtilsException,
  197.                  XMLExcepts::File_CouldNotCloseFile);
  198. }
  199. unsigned int XMLPlatformUtils::fileSize(FileHandle theFile)
  200. {
  201.     // Get the current position
  202.     long int curPos = ftell((FILE*)theFile);
  203.     if (curPos == -1)
  204.         ThrowXML(XMLPlatformUtilsException,
  205.                  XMLExcepts::File_CouldNotGetCurPos);
  206.     // Seek to the end and save that value for return
  207. if (fseek((FILE*)theFile, 0, SEEK_END))
  208.         ThrowXML(XMLPlatformUtilsException,
  209.                  XMLExcepts::File_CouldNotSeekToEnd);
  210.     long int retVal = ftell((FILE*)theFile);
  211.     if (retVal == -1)
  212.         ThrowXML(XMLPlatformUtilsException,
  213.                  XMLExcepts::File_CouldNotSeekToEnd);
  214.     // And put the pointer back
  215.     if (fseek((FILE*)theFile, curPos, SEEK_SET))
  216.         ThrowXML(XMLPlatformUtilsException,
  217.                  XMLExcepts::File_CouldNotSeekToPos);
  218.     return (unsigned int)retVal;
  219. }
  220. FileHandle XMLPlatformUtils::openFile(const XMLCh* const fileName)
  221. {
  222.     const char* tmpFileName = XMLString::transcode(fileName, fgMemoryManager);
  223.     ArrayJanitor<char> janText((char*)tmpFileName, fgMemoryManager);
  224.     FileHandle retVal = (FILE*)fopen(tmpFileName , "rb");
  225.     if (retVal == NULL)
  226.         return 0;
  227.     return retVal;
  228. }
  229. FileHandle XMLPlatformUtils::openFile(const char* const fileName)
  230. {
  231.     FileHandle retVal = (FILE*)fopen(fileName, "rb");
  232.     if (retVal == NULL)
  233.         return 0;
  234.     return retVal;
  235. }
  236. FileHandle XMLPlatformUtils::openFileToWrite(const XMLCh* const fileName)
  237. {
  238.     const char* tmpFileName = XMLString::transcode(fileName, fgMemoryManager);
  239.     ArrayJanitor<char> janText((char*)tmpFileName, fgMemoryManager);
  240.     return fopen( tmpFileName , "wb" );
  241. }
  242. FileHandle XMLPlatformUtils::openFileToWrite(const char* const fileName)
  243. {
  244.     return fopen( fileName , "wb" );
  245. }
  246. FileHandle XMLPlatformUtils::openStdInHandle()
  247. {
  248. return (FileHandle)fdopen(dup(0), "rb");
  249. }
  250. unsigned int XMLPlatformUtils::readFileBuffer(FileHandle           theFile,
  251.   const unsigned int   toRead,
  252.   XMLByte* const       toFill)
  253. {
  254.     size_t noOfItemsRead = fread((void*)toFill, 1, toRead, (FILE*)theFile);
  255.     if(ferror((FILE*)theFile))
  256.     {
  257.         ThrowXML(XMLPlatformUtilsException,
  258.                  XMLExcepts::File_CouldNotReadFromFile);
  259.     }
  260.     return (unsigned int)noOfItemsRead;
  261. }
  262. void
  263. XMLPlatformUtils::writeBufferToFile( FileHandle     const  theFile
  264.                                    , long                  toWrite
  265.                                    , const XMLByte* const  toFlush)                                   
  266. {
  267.     if (!theFile        ||
  268.         (toWrite <= 0 ) ||
  269.         !toFlush         )
  270.         return;
  271.     const XMLByte* tmpFlush = (const XMLByte*) toFlush;
  272.     size_t bytesWritten = 0;
  273.     while (true)
  274.     {
  275.         bytesWritten=fwrite(tmpFlush, sizeof(XMLByte), toWrite, (FILE*)theFile);
  276.         if(ferror((FILE*)theFile))
  277.         {
  278.             ThrowXML(XMLPlatformUtilsException, XMLExcepts::File_CouldNotWriteToFile);
  279.         }
  280.         if (bytesWritten < toWrite) //incomplete write
  281.         {
  282.             tmpFlush+=bytesWritten;
  283.             toWrite-=bytesWritten;
  284.             bytesWritten=0;
  285.         }
  286.         else
  287.             return;
  288.     }
  289.     return;
  290. }
  291. void XMLPlatformUtils::resetFile(FileHandle theFile)
  292. {
  293.     if (fseek((FILE*)theFile, 0, SEEK_SET))
  294.         ThrowXML(XMLPlatformUtilsException,
  295.                  XMLExcepts::File_CouldNotResetFile);
  296. }
  297. // ---------------------------------------------------------------------------
  298. //  XMLPlatformUtils: File system methods
  299. // ---------------------------------------------------------------------------
  300. XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath,
  301.                                      MemoryManager* const manager)
  302. {
  303.     //
  304.     //  NOTE: The path provided has always already been opened successfully,
  305.     //  so we know that its not some pathological freaky path. It comes in
  306.     //  in native format, and goes out as Unicode always
  307.     //
  308.     char* newSrc = XMLString::transcode(srcPath, fgMemoryManager);
  309.     ArrayJanitor<char> janText(newSrc, fgMemoryManager);
  310.     // Use a local buffer that is big enough for the largest legal path
  311.  // Without the *3 we get exceptions with gcc on OpenServer 5.0.5/6 when 
  312.  // relative paths are passed in
  313.     char *absPath = (char*) fgMemoryManager->allocate
  314.     (
  315.         (pathconf(newSrc, _PC_PATH_MAX)*3) * sizeof(char)
  316.     );//new char[pathconf(newSrc, _PC_PATH_MAX)*3];
  317.     ArrayJanitor<char> janText2(absPath, fgMemoryManager);
  318.     // Get the absolute path
  319.     char* retPath = realpath(newSrc, absPath);
  320.     if (!retPath)
  321.     {
  322.         ThrowXML(XMLPlatformUtilsException,
  323.                  XMLExcepts::File_CouldNotGetBasePathName);
  324.     }
  325.     return XMLString::transcode(absPath, manager);
  326. }
  327. bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck)
  328. {
  329.     // Check for pathological case of empty path
  330.     if (!toCheck[0])
  331.         return false;
  332.     //
  333.     //  If it starts with a slash, then it cannot be relative. This covers
  334.     //  both something like "TestFile.xml" and an NT Lan type remote path
  335.     //  that starts with a node like "\MyNodeTestFile.xml".
  336.     //
  337.     if (toCheck[0] == XMLCh('/'))
  338.         return false;
  339.     // Else assume its a relative path
  340.     return true;
  341. }
  342. XMLCh* XMLPlatformUtils::getCurrentDirectory(MemoryManager* const manager)
  343. {
  344.     char  dirBuf[PATH_MAX + 1];
  345.     char  *curDir = getcwd(&dirBuf[0], PATH_MAX + 1);
  346.     if (!curDir)
  347.     {
  348.         ThrowXML(XMLPlatformUtilsException,
  349.                  XMLExcepts::File_CouldNotGetBasePathName);
  350.     }
  351.     return XMLString::transcode(curDir, manager);
  352. }
  353. inline bool XMLPlatformUtils::isAnySlash(XMLCh c) 
  354. {
  355.     return ( chBackSlash == c || chForwardSlash == c);
  356. }
  357. // ---------------------------------------------------------------------------
  358. //  XMLPlatformUtils: Timing Methods
  359. // ---------------------------------------------------------------------------
  360. unsigned long XMLPlatformUtils::getCurrentMillis()
  361. {
  362. struct timeval   tp;
  363. if (gettimeofday(&tp, NULL) == -1)
  364. return 0;
  365.     return (unsigned long)(tp.tv_sec * 1000 + tp.tv_usec / 1000);
  366. }
  367. // ---------------------------------------------------------------------------
  368. //  XMLPlatformUtils: Methods for multi-threaded environment
  369. // ---------------------------------------------------------------------------
  370. #if !defined (APP_NO_THREADS)
  371. static pthread_mutex_t* gAtomicOpMutex = 0;
  372. // ---------------------------------------------------------------------------
  373. //  XMLPlatformUtils: Platform init method
  374. // ---------------------------------------------------------------------------
  375. void XMLPlatformUtils::platformInit()
  376. {
  377.     //
  378.     // The atomicOps mutex needs to be created early.
  379.     // Normally, mutexes are created on first use, but there is a
  380.     // circular dependency between compareAndExchange() and
  381.     // mutex creation that must be broken.
  382. gAtomicOpMutex = new pthread_mutex_t;
  383. if (pthread_mutex_init(gAtomicOpMutex, NULL))
  384. {
  385. delete gAtomicOpMutex;
  386. gAtomicOpMutex = 0;
  387. panic(PanicHandler::Panic_SystemInit);
  388. }
  389. }
  390. // -----------------------------------------------------------------------
  391. //  Mutex- and atomic operation methods
  392. // -----------------------------------------------------------------------
  393. class  RecursiveMutex : public XMemory
  394. {
  395. public:
  396. pthread_mutex_t   mutex;
  397. int               recursionCount;
  398. pthread_t         tid;
  399. RecursiveMutex() {
  400. if (pthread_mutex_init(&mutex, NULL))
  401. ThrowXML(XMLPlatformUtilsException,
  402.  XMLExcepts::Mutex_CouldNotCreate);
  403. recursionCount = 0;
  404. tid = 0;
  405. };
  406. ~RecursiveMutex() {
  407. if (pthread_mutex_destroy(&mutex))
  408. ThrowXML(XMLPlatformUtilsException,
  409.  XMLExcepts::Mutex_CouldNotDestroy);
  410. };
  411. void lock() {
  412. if (pthread_equal(tid, pthread_self()))
  413. {
  414. recursionCount++;
  415. return;
  416. }
  417. if (pthread_mutex_lock(&mutex) != 0)
  418. ThrowXML(XMLPlatformUtilsException,
  419.  XMLExcepts::Mutex_CouldNotLock);
  420. tid = pthread_self();
  421. recursionCount = 1;
  422. };
  423. void unlock() {
  424. if (--recursionCount > 0)
  425. return;
  426. if (pthread_mutex_unlock(&mutex) != 0)
  427. ThrowXML(XMLPlatformUtilsException,
  428.  XMLExcepts::Mutex_CouldNotUnlock);
  429. tid = 0;
  430. };
  431. };
  432. void* XMLPlatformUtils::makeMutex()
  433. {
  434. return new RecursiveMutex;
  435. };
  436. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  437. {
  438. if (mtxHandle == NULL)
  439. return;
  440. RecursiveMutex *rm = (RecursiveMutex *)mtxHandle;
  441. delete rm;
  442. };
  443. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  444. {
  445. if (mtxHandle == NULL)
  446. return;
  447. RecursiveMutex *rm = (RecursiveMutex *)mtxHandle;
  448. rm->lock();
  449. }
  450. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  451. {
  452. if (mtxHandle == NULL)
  453. return;
  454. RecursiveMutex *rm = (RecursiveMutex *)mtxHandle;
  455. rm->unlock();
  456. }
  457. // -----------------------------------------------------------------------
  458. //  Miscellaneous synchronization methods
  459. // -----------------------------------------------------------------------
  460. // Atomic system calls in OpenServe is restricted to kernel libraries.
  461. // To make operations thread safe, we implement static mutex and lock
  462. // the atomic operations.
  463. void* XMLPlatformUtils::compareAndSwap(void**              toFill,
  464.    const void* const   newValue,
  465.    const void* const   toCompare)
  466. {
  467. if (pthread_mutex_lock(gAtomicOpMutex))
  468. panic(PanicHandler::Panic_SynchronizationErr);
  469. void *retVal = *toFill;
  470. if (*toFill == toCompare)
  471. *toFill = (void *)newValue;
  472. if (pthread_mutex_unlock(gAtomicOpMutex))
  473. panic(PanicHandler::Panic_SynchronizationErr);
  474. return retVal;
  475. }
  476. int XMLPlatformUtils::atomicIncrement(int &location)
  477. {
  478. if (pthread_mutex_lock(gAtomicOpMutex))
  479. panic(PanicHandler::Panic_SynchronizationErr);
  480. int tmp = ++location;
  481. if (pthread_mutex_unlock(gAtomicOpMutex))
  482. panic(PanicHandler::Panic_SynchronizationErr);
  483. return tmp;
  484. }
  485. int XMLPlatformUtils::atomicDecrement(int &location)
  486. {
  487. if (pthread_mutex_lock(gAtomicOpMutex))
  488. panic(PanicHandler::Panic_SynchronizationErr);
  489. int tmp = --location;
  490. if (pthread_mutex_unlock( gAtomicOpMutex))
  491. panic(PanicHandler::Panic_SynchronizationErr);
  492. return tmp;
  493. }
  494. #else // #if !defined (APP_NO_THREADS)
  495. // ---------------------------------------------------------------------------
  496. //  XMLPlatformUtils: Methods for single-threaded environment
  497. // ---------------------------------------------------------------------------
  498. // ---------------------------------------------------------------------------
  499. //  XMLPlatformUtils: Platform init method
  500. // ---------------------------------------------------------------------------
  501. void XMLPlatformUtils::platformInit()
  502. {
  503. }
  504. // -----------------------------------------------------------------------
  505. //  Mutex- and atomic operation methods
  506. // -----------------------------------------------------------------------
  507. void* XMLPlatformUtils::makeMutex()
  508. {
  509. return 0;
  510. }
  511. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  512. {
  513. }
  514. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  515. {
  516. }
  517. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  518. {
  519. }
  520. void* XMLPlatformUtils::compareAndSwap(void**              toFill,
  521.    const void* const   newValue,
  522.    const void* const   toCompare)
  523. {
  524.     void *retVal = *toFill;
  525.     if (*toFill == toCompare)
  526. *toFill = (void *)newValue;
  527.     return retVal;
  528. }
  529. int XMLPlatformUtils::atomicIncrement(int &location)
  530. {
  531.     return ++location;
  532. }
  533. int XMLPlatformUtils::atomicDecrement(int &location)
  534. {
  535.     return --location;
  536. }
  537. #endif // APP_NO_THREADS
  538. // ---------------------------------------------------------------------------
  539. //  XMLPlatformUtils: Platform termination method
  540. // ---------------------------------------------------------------------------
  541. void XMLPlatformUtils::platformTerm()
  542. {
  543. #if !defined (APP_NO_THREADS)
  544. pthread_mutex_destroy(gAtomicOpMutex);
  545. delete gAtomicOpMutex;
  546. gAtomicOpMutex = 0;
  547. #else
  548.     // If not using threads, we don't have any termination requirements (yet)
  549. #endif
  550. }
  551. #include <xercesc/util/LogicalPath.c>
  552. XERCES_CPP_NAMESPACE_END