Tru64PlatformUtils.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:20k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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.  * $Id: Tru64PlatformUtils.cpp,v 1.5 2001/10/25 15:30:47 tng Exp $
  58.  */
  59. // ---------------------------------------------------------------------------
  60. //  Includes
  61. // ---------------------------------------------------------------------------
  62. #if !defined (APP_NO_THREADS)
  63. #include    <pthread.h>
  64. #endif // APP_NO_THREADS
  65. #include <stdio.h>
  66. #include <stdlib.h>
  67. #include <time.h>
  68. #include <unistd.h>
  69. #include    <util/Janitor.hpp>
  70. #include    <util/PlatformUtils.hpp>
  71. #include    <util/RuntimeException.hpp>
  72. #include    <util/Mutexes.hpp>
  73. #include    <util/XMLString.hpp>
  74. #include    <util/XMLUni.hpp>
  75. #include    <util/XMLUniDefs.hpp>
  76. //
  77. //  These control which transcoding service is used by the Tru64 version.
  78. //  They allow this to be controlled from the build process by just defining
  79. //  one of these values.
  80. //
  81. #if defined (XML_USE_ICU_TRANSCODER)
  82. #include <util/Transcoders/ICU/ICUTransService.hpp>
  83. #else   // use native transcoder
  84. #include <util/Transcoders/Iconv/IconvTransService.hpp>
  85. #endif
  86. //
  87. //  These control which message loading service is used by the Tru64 version.
  88. //  They allow this to be controlled from the build process by just defining
  89. //  one of these values.
  90. //
  91. #if defined (XML_USE_ICU_MESSAGELOADER)
  92. #include <util/MsgLoaders/ICU/ICUMsgLoader.hpp>
  93. #elif defined (XML_USE_ICONV_MESSAGELOADER)
  94. #include <util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp>
  95. #else   // use In-memory message loader
  96. #include <util/MsgLoaders/InMemory/InMemMsgLoader.hpp>
  97. #endif
  98. #if defined (XML_USE_NETACCESSOR_LIBWWW)
  99. #include <util/NetAccessors/libWWW/LibWWWNetAccessor.hpp>
  100. #elif defined (XML_USE_NETACCESSOR_SOCKET)
  101. #include <util/NetAccessors/Socket/SocketNetAccessor.hpp>
  102. #endif
  103. // ---------------------------------------------------------------------------
  104. //  Local Methods
  105. // ---------------------------------------------------------------------------
  106. static void WriteCharStr( FILE* stream, const char* const toWrite)
  107. {
  108.   if (fputs(toWrite, stream) == EOF)
  109.   {
  110.     ThrowXML(XMLPlatformUtilsException,
  111.      XMLExcepts::Strm_StdErrWriteFailure);
  112.   }
  113. }
  114. static void WriteUStrStdErr( const XMLCh* const toWrite)
  115. {
  116.   char* tmpVal = XMLString::transcode(toWrite);
  117.   ArrayJanitor<char> janText(tmpVal);
  118.   if (fputs(tmpVal, stderr) == EOF)
  119.   {
  120.     ThrowXML(XMLPlatformUtilsException,
  121.      XMLExcepts::Strm_StdErrWriteFailure);
  122.   }
  123. }
  124. static void WriteUStrStdOut( const XMLCh* const toWrite)
  125. {
  126.   char* tmpVal = XMLString::transcode(toWrite);
  127.   ArrayJanitor<char> janText(tmpVal);
  128.   if (fputs(tmpVal, stdout) == EOF)
  129.   {
  130.     ThrowXML(XMLPlatformUtilsException,
  131.      XMLExcepts::Strm_StdOutWriteFailure);
  132.   }
  133. }
  134. XMLNetAccessor* XMLPlatformUtils::makeNetAccessor()
  135. #if defined (XML_USE_NETACCESSOR_LIBWWW)
  136. {
  137.     return new LibWWWNetAccessor();
  138. }
  139. #elif defined (XML_USE_NETACCESSOR_SOCKET)
  140. {
  141.     return new SocketNetAccessor();
  142. }
  143. #else
  144. {
  145.     return 0;
  146. }
  147. #endif
  148. // ---------------------------------------------------------------------------
  149. //  XMLPlatformUtils: Private Static Methods
  150. // ---------------------------------------------------------------------------
  151. //
  152. //  This method is called by the platform independent part of this class
  153. //  when client code asks to have one of the supported message sets loaded.
  154. //  In our case, we use the ICU based message loader mechanism.
  155. //
  156. XMLMsgLoader* XMLPlatformUtils::loadAMsgSet(const XMLCh* const msgDomain)
  157. {
  158.   XMLMsgLoader* retVal;
  159.   try
  160.   {
  161. #if defined (XML_USE_ICU_MESSAGELOADER)
  162.     retVal = new ICUMsgLoader(msgDomain);
  163. #elif defined (XML_USE_ICONV_MESSAGELOADER)
  164.     retVal = new MsgCatalogLoader(msgDomain);
  165. #else
  166.     retVal = new InMemMsgLoader(msgDomain);
  167. #endif
  168.   }
  169.   catch(...)
  170.   {
  171.     panic(XMLPlatformUtils::Panic_NoDefTranscoder);
  172.   }
  173.   return retVal;
  174. }
  175. //
  176. //  This method is called very early in the bootstrapping process. This guy
  177. //  must create a transcoding service and return it. It cannot use any string
  178. //  methods, any transcoding services, throw any exceptions, etc... It just
  179. //  makes a transcoding service and returns it, or returns zero on failure.
  180. //
  181. XMLTransService* XMLPlatformUtils::makeTransService()
  182. #if defined (XML_USE_ICU_TRANSCODER)
  183. {
  184.   return new ICUTransService;
  185. }
  186. #elif defined (XML_USE_ICONV_TRANSCODER)
  187. {
  188.   return new IconvTransService;
  189. }
  190. #else // Use Native transcoding service
  191. {
  192.   return new IconvTransService;
  193. }
  194. #endif
  195. // ---------------------------------------------------------------------------
  196. //  XMLPlatformUtils: The panic method
  197. // ---------------------------------------------------------------------------
  198. void XMLPlatformUtils::panic(const PanicReasons reason)
  199. {
  200.   const char* reasonStr = "Unknown reason";
  201.   if (reason == Panic_NoTransService)
  202.     reasonStr = "Could not load a transcoding service";
  203.   else if (reason == Panic_NoDefTranscoder)
  204.     reasonStr = "Could not load a local code page transcoder";
  205.   else if (reason == Panic_CantFindLib)
  206.     reasonStr = "Could not find the xerces-c DLL";
  207.   else if (reason == Panic_UnknownMsgDomain)
  208.     reasonStr = "Unknown message domain";
  209.   else if (reason == Panic_CantLoadMsgDomain)
  210.     reasonStr = "Cannot load message domain";
  211.   else if (reason == Panic_SynchronizationErr)
  212.     reasonStr = "Cannot synchronize system or mutex";
  213.   else if (reason == Panic_SystemInit)
  214.     reasonStr = "Cannot initialize the system or mutex";
  215.   fprintf(stderr, "%sn", reasonStr);
  216.   exit(-1);
  217. }
  218. // ---------------------------------------------------------------------------
  219. //  XMLPlatformUtils: File Methods
  220. // ---------------------------------------------------------------------------
  221. unsigned int XMLPlatformUtils::curFilePos(FileHandle theFile)
  222. {
  223.   // Get the current position
  224.   int curPos = ftell( (FILE*)theFile);
  225.   if (curPos == -1)
  226.     ThrowXML(XMLPlatformUtilsException,
  227.      XMLExcepts::File_CouldNotGetSize);
  228.   return (unsigned int)curPos;
  229. }
  230. void XMLPlatformUtils::closeFile(FileHandle theFile)
  231. {
  232.   if (fclose((FILE*) theFile))
  233.     ThrowXML(XMLPlatformUtilsException,
  234.      XMLExcepts::File_CouldNotCloseFile);
  235. }
  236. unsigned int XMLPlatformUtils::fileSize(FileHandle theFile)
  237. {
  238.   // Get the current position
  239.   long  int curPos = ftell((FILE*) theFile);
  240.   if (curPos == -1)
  241.     ThrowXML(XMLPlatformUtilsException,
  242.      XMLExcepts::File_CouldNotGetCurPos);
  243.   // Seek to the end and save that value for return
  244.   if (fseek( (FILE*) theFile, 0, SEEK_END) )
  245.     ThrowXML(XMLPlatformUtilsException,
  246.      XMLExcepts::File_CouldNotSeekToEnd);
  247.   long int retVal = ftell((FILE*) theFile);
  248.   if (retVal == -1)
  249.     ThrowXML(XMLPlatformUtilsException,
  250.      XMLExcepts::File_CouldNotSeekToEnd);
  251.   // And put the pointer back
  252.   if (fseek((FILE*) theFile, curPos, SEEK_SET))
  253.     ThrowXML(XMLPlatformUtilsException,
  254.      XMLExcepts::File_CouldNotSeekToPos);
  255.   return (unsigned int)retVal;
  256. }
  257. FileHandle XMLPlatformUtils::openFile(const char* const fileName)
  258. {
  259.   FileHandle retVal = (FILE*)fopen( fileName , "rb" );
  260.   if (retVal == NULL)
  261.     return 0;
  262.   return retVal;
  263. }
  264. FileHandle XMLPlatformUtils::openFile(const XMLCh* const fileName)
  265. {
  266.   const char* tmpFileName = XMLString::transcode(fileName);
  267.   ArrayJanitor<char> janText((char*)tmpFileName);
  268.   FileHandle retVal = (FILE*)fopen( tmpFileName , "rb" );
  269.   if (retVal == NULL)
  270.     return 0;
  271.   return retVal;
  272. }
  273. unsigned int XMLPlatformUtils::readFileBuffer(FileHandle theFile,
  274.       const unsigned int toRead,
  275.       XMLByte* const toFill)
  276. {
  277.   size_t noOfItemsRead =
  278.     fread((void*) toFill, 1, toRead, (FILE*) theFile);
  279.   if(ferror((FILE*) theFile))
  280.   {
  281.     ThrowXML(XMLPlatformUtilsException,
  282.      XMLExcepts::File_CouldNotReadFromFile);
  283.   }
  284.   return (unsigned int) noOfItemsRead;
  285. }
  286. void XMLPlatformUtils::resetFile(FileHandle theFile)
  287. {
  288.   // Seek to the start of the file
  289.   if (fseek((FILE*) theFile, 0, SEEK_SET))
  290.     ThrowXML(XMLPlatformUtilsException,
  291.      XMLExcepts::File_CouldNotResetFile);
  292. }
  293. // ---------------------------------------------------------------------------
  294. //  XMLPlatformUtils: Timing Methods
  295. // ---------------------------------------------------------------------------
  296. unsigned long XMLPlatformUtils::getCurrentMillis()
  297. {
  298.   timespec ts;
  299.   clock_gettime (CLOCK_REALTIME, &ts);
  300.   return (unsigned long) ((ts.tv_sec * 1000) + (ts.tv_nsec / 1000000));
  301. }
  302. XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath)
  303. {
  304.   //
  305.   //  NOTE: THe path provided has always already been opened successfully,
  306.   //  so we know that its not some pathological freaky path. It comes in
  307.   //  in native format, and goes out as Unicode always
  308.   //
  309.   char* newSrc = XMLString::transcode(srcPath);
  310.   ArrayJanitor<char> janText(newSrc);
  311.   // Use a local buffer that is big enough for the largest legal path
  312.   char *absPath = new char[PATH_MAX];
  313.   ArrayJanitor<char> janText2(absPath);
  314.   //get the absolute path
  315.   char* retPath = realpath(newSrc, absPath);
  316.   if (!retPath)
  317.   {
  318.     ThrowXML(XMLPlatformUtilsException,
  319.      XMLExcepts::File_CouldNotGetBasePathName);
  320.   }
  321.   return XMLString::transcode(absPath);
  322. }
  323. bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck)
  324. {
  325.   // Check for pathological case of empty path
  326.   if (!toCheck[0])
  327.     return false;
  328.   //
  329.   //  If it starts with a slash, then it cannot be relative. This covers
  330.   //  both something like "TestFile.xml" and an NT Lan type remote path
  331.   //  that starts with a node like "\MyNodeTestFile.xml".
  332.   //
  333.   if (toCheck[0] == XMLCh('/'))
  334.     return false;
  335.   // Else assume its a relative path
  336.   return true;
  337. }
  338. XMLCh* XMLPlatformUtils::weavePaths (
  339.   const XMLCh* const basePath,
  340.   const XMLCh* const relativePath)
  341. {
  342. // Create a buffer as large as both parts and empty it
  343.   XMLCh* tmpBuf = new XMLCh[XMLString::stringLen(basePath)
  344.    + XMLString::stringLen(relativePath)
  345.    + 2];
  346.   *tmpBuf = 0;
  347.   //
  348.   //  If we have no base path, then just take the relative path as
  349.   //  is.
  350.   //
  351.   if (!basePath)
  352.   {
  353.     XMLString::copyString(tmpBuf, relativePath);
  354.     return tmpBuf;
  355.   }
  356.   if (!*basePath)
  357.   {
  358.     XMLString::copyString(tmpBuf, relativePath);
  359.     return tmpBuf;
  360.   }
  361.   const XMLCh* basePtr = basePath + (XMLString::stringLen(basePath) - 1);
  362.   if ((*basePtr != chForwardSlash)
  363.       &&  (*basePtr != chBackSlash))
  364.   {
  365.     while ((basePtr >= basePath)
  366.    &&     ((*basePtr != chForwardSlash) && (*basePtr != chBackSlash)))
  367.     {
  368.       basePtr--;
  369.     }
  370.   }
  371.   // There is no relevant base path, so just take the relative part
  372.   if (basePtr < basePath)
  373.   {
  374.     XMLString::copyString(tmpBuf, relativePath);
  375.     return tmpBuf;
  376.   }
  377.   // After this, make sure the buffer gets handled if we exit early
  378.   ArrayJanitor<XMLCh> janBuf(tmpBuf);
  379.   //
  380.   //  We have some path part, so we need to check to see if we ahve to
  381.   //  weave any of the parts together.
  382.   //
  383.   const XMLCh* pathPtr = relativePath;
  384.   while (true)
  385.   {
  386.     // If it does not start with some period, then we are done
  387.     if (*pathPtr != chPeriod)
  388.       break;
  389.     unsigned int periodCount = 1;
  390.     pathPtr++;
  391.     if (*pathPtr == chPeriod)
  392.     {
  393.       pathPtr++;
  394.       periodCount++;
  395.     }
  396.     // Has to be followed by a  or / or the null to mean anything
  397.     if ((*pathPtr != chForwardSlash) && (*pathPtr != chBackSlash)
  398.         &&  *pathPtr)
  399.     {
  400.       break;
  401.     }
  402.     if (*pathPtr)
  403.       pathPtr++;
  404.     // If its one period, just eat it, else move backwards in the base
  405.     if (periodCount == 2)
  406.     {
  407.       basePtr--;
  408.       while ((basePtr >= basePath)
  409.      &&     ((*basePtr != chForwardSlash) && (*basePtr != chBackSlash)))
  410.       {
  411. basePtr--;
  412.       }
  413.       if (basePtr < basePath)
  414.       {
  415. // The base cannot provide enough levels, so its in error
  416. // <TBD>
  417.       }
  418.     }
  419.   }
  420.   // Copy the base part up to the base pointer
  421.   XMLCh* bufPtr = tmpBuf;
  422.   const XMLCh* tmpPtr = basePath;
  423.   while (tmpPtr <= basePtr)
  424.     *bufPtr++ = *tmpPtr++;
  425.   // And then copy on the rest of our path
  426.   XMLString::copyString(bufPtr, pathPtr);
  427.   // Orphan the buffer and return it
  428.   janBuf.orphan();
  429.   return tmpBuf;
  430. }
  431. #if !defined (APP_NO_THREADS)
  432. // ---------------------------------------------------------------------------
  433. //  XMLPlatformUtils: Platform init method
  434. // ---------------------------------------------------------------------------
  435. static pthread_mutex_t* gAtomicOpMutex =0 ;
  436. void XMLPlatformUtils::platformInit()
  437. {
  438.   //
  439.   // The gAtomicOpMutex mutex needs to be created
  440.   // because compareAndSwap and incrementlocation and decrementlocation
  441.   // does not have the atomic system calls for usage
  442.   // Normally, mutexes are created on first use, but there is a
  443.   // circular dependency between compareAndExchange() and
  444.   // mutex creation that must be broken.
  445.   gAtomicOpMutex = new pthread_mutex_t;
  446.   if (pthread_mutex_init(gAtomicOpMutex, NULL)) {
  447. delete gAtomicOpMutex;
  448. gAtomicOpMutex = 0;
  449.     panic( XMLPlatformUtils::Panic_SystemInit );
  450.   }
  451. }
  452. // -----------------------------------------------------------------------
  453. //  Mutex methods
  454. // -----------------------------------------------------------------------
  455. class  RecursiveMutex
  456. {
  457. public:
  458.   pthread_mutex_t   mutex;
  459.   int               recursionCount;
  460.   pthread_t         tid;
  461.   RecursiveMutex()
  462.   {
  463.     if (pthread_mutex_init(&mutex, NULL))
  464.       ThrowXML(XMLPlatformUtilsException, XMLExcepts::Mutex_CouldNotCreate);
  465.     recursionCount = 0;
  466.     tid = 0;
  467.   };
  468.   ~RecursiveMutex()
  469.   {
  470.     if (pthread_mutex_destroy(&mutex))
  471.       ThrowXML(XMLPlatformUtilsException, XMLExcepts::Mutex_CouldNotDestroy);
  472.   };
  473.   void lock()
  474.   {
  475.     if (pthread_equal(tid, pthread_self()))
  476.     {
  477.       recursionCount++;
  478.       return;
  479.     }
  480.     if (pthread_mutex_lock(&mutex) != 0)
  481.       ThrowXML(XMLPlatformUtilsException, XMLExcepts::Mutex_CouldNotLock);
  482.     tid = pthread_self();
  483.     recursionCount = 1;
  484.   };
  485.   void unlock()
  486.   {
  487.     if (--recursionCount > 0)
  488.       return;
  489.     if (pthread_mutex_unlock(&mutex) != 0)
  490.       ThrowXML(XMLPlatformUtilsException, XMLExcepts::Mutex_CouldNotUnlock);
  491.     tid = 0;
  492.   };
  493. };
  494. void* XMLPlatformUtils::makeMutex()
  495. {
  496.   return new RecursiveMutex;
  497. };
  498. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  499. {
  500.   if (mtxHandle == NULL)
  501.     return;
  502.   RecursiveMutex *rm = (RecursiveMutex *)mtxHandle;
  503.   delete rm;
  504. };
  505. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  506. {
  507.   if (mtxHandle == NULL)
  508.     return;
  509.   RecursiveMutex *rm = (RecursiveMutex *)mtxHandle;
  510.   rm->lock();
  511. }
  512. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  513. {
  514.   if (mtxHandle == NULL)
  515.     return;
  516.   RecursiveMutex *rm = (RecursiveMutex *)mtxHandle;
  517.   rm->unlock();
  518. }
  519. // -----------------------------------------------------------------------
  520. //  Miscellaneous synchronization methods
  521. // -----------------------------------------------------------------------
  522. //atomic system calls in Solaris is only restricted to kernel libraries
  523. //So, to make operations thread safe we implement static mutex and lock
  524. //the atomic operations. It makes the process slow but what's the alternative!
  525. void* XMLPlatformUtils::compareAndSwap (void** toFill,
  526. const void* const newValue,
  527. const void* const toCompare)
  528. {
  529.   //return ((void*)cas32( (uint32_t*)toFill,  (uint32_t)toCompare, (uint32_t)newValue) );
  530.   // the below calls are temporarily made till the above functions are part of user library
  531.   // Currently its supported only in the kernel mode
  532.   if (pthread_mutex_lock( gAtomicOpMutex))
  533.     panic(XMLPlatformUtils::Panic_SynchronizationErr);
  534.   void *retVal = *toFill;
  535.   if (*toFill == toCompare)
  536.     *toFill = (void *)newValue;
  537.   if (pthread_mutex_unlock( gAtomicOpMutex))
  538.     panic(XMLPlatformUtils::Panic_SynchronizationErr);
  539.   return retVal;
  540. }
  541. int XMLPlatformUtils::atomicIncrement(int &location)
  542. {
  543.   //return (int)atomic_add_32_nv( (uint32_t*)&location, 1);
  544.   if (pthread_mutex_lock( gAtomicOpMutex))
  545.     panic(XMLPlatformUtils::Panic_SynchronizationErr);
  546.   int tmp = ++location;
  547.   if (pthread_mutex_unlock( gAtomicOpMutex))
  548.     panic(XMLPlatformUtils::Panic_SynchronizationErr);
  549.   return tmp;
  550. }
  551. int XMLPlatformUtils::atomicDecrement(int &location)
  552. {
  553.   //return (int)atomic_add_32_nv( (uint32_t*)&location, -1);
  554.   if (pthread_mutex_lock( gAtomicOpMutex))
  555.     panic(XMLPlatformUtils::Panic_SynchronizationErr);
  556.   int tmp = --location;
  557.   if (pthread_mutex_unlock( gAtomicOpMutex))
  558.     panic(XMLPlatformUtils::Panic_SynchronizationErr);
  559.   return tmp;
  560. }
  561. #else // #if !defined (APP_NO_THREADS)
  562. void XMLPlatformUtils::platformInit()
  563. {
  564.    // do nothing
  565. }
  566. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  567. {
  568. }
  569. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  570. {
  571. }
  572. void* XMLPlatformUtils::makeMutex()
  573. {
  574.   return 0;
  575. }
  576. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  577. {
  578. }
  579. void* XMLPlatformUtils::compareAndSwap ( void**      toFill,
  580.                                    const void* const newValue,
  581.                                    const void* const toCompare)
  582. {
  583.   void *retVal = *toFill;
  584.   if (*toFill == toCompare)
  585.     *toFill = (void *)newValue;
  586.   return retVal;
  587. }
  588. int XMLPlatformUtils::atomicIncrement(int &location)
  589. {
  590.   return ++location;
  591. }
  592. int XMLPlatformUtils::atomicDecrement(int &location)
  593. {
  594.   return --location;
  595. }
  596. #endif // APP_NO_THREADS
  597. FileHandle XMLPlatformUtils::openStdInHandle()
  598. {
  599.   return (FileHandle)fdopen(dup(0), "rb");
  600. }
  601. void XMLPlatformUtils::platformTerm()
  602. {
  603. #if !defined (APP_NO_THREADS)
  604. pthread_mutex_destroy(gAtomicOpMutex);
  605. delete gAtomicOpMutex;
  606. gAtomicOpMutex = 0;
  607. #endif
  608. }