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

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