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

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