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

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: IRIXPlatformUtils.cpp,v $
  58.  * Revision 1.13  2001/10/23 23:10:20  peiyongz
  59.  * [Bug#880] patch to PlatformUtils:init()/term() and related. from Mark Weaver
  60.  *
  61.  * Revision 1.12  2001/09/04 19:05:44  peiyongz
  62.  * Patch to support IRIX's sproc(), from Christopher Just
  63.  *
  64.  * Revision 1.11  2001/01/26 15:42:00  tng
  65.  * Undefined symbol error when building a single threaded version of the xerces lib on irix.  Fixed by Walker.
  66.  *
  67.  * Revision 1.10  2000/07/25 22:29:45  aruna1
  68.  * Char definitions in XMLUni moved to XMLUniDefs
  69.  *
  70.  * Revision 1.9  2000/04/03 19:27:19  abagchi
  71.  * Included changes for SGI IRIX 6.5
  72.  *
  73.  * Revision 1.8  2000/03/02 21:10:36  abagchi
  74.  * Added empty function platformTerm()
  75.  *
  76.  * Revision 1.7  2000/03/02 20:42:40  abagchi
  77.  * Fixed typo in XMLExcepts
  78.  *
  79.  * Revision 1.6  2000/03/02 19:55:22  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.5  2000/02/06 07:48:27  rahulj
  85.  * Year 2K copyright swat.
  86.  *
  87.  * Revision 1.4  2000/01/25 22:32:35  aruna1
  88.  * Updated panic information
  89.  *
  90.  * Revision 1.3  1999/12/18 00:54:43  rahulj
  91.  * Merged in changes for IRIX submitted by Marc Stuessel
  92.  *
  93.  * Revision 1.2  1999/12/14 23:53:32  rahulj
  94.  * Removed the offending Ctrl-M's from the commit message
  95.  * logs which was giving packaging problems.
  96.  *
  97.  * PR:
  98.  * Obtained from:
  99.  * Submitted by:
  100.  * Reviewed by:
  101.  *
  102.  * Revision 1.1  1999/12/01 17:16:18  rahulj
  103.  * Added support for IRIX 6.5.5 using SGI MIPSpro C++ 7.3 and 7.21 generating 32 bit objects. Changes submitted by Marc Stuessel
  104.  *
  105.  */
  106. // ---------------------------------------------------------------------------
  107. //  Includes
  108. // ---------------------------------------------------------------------------
  109. #if !defined(APP_NO_THREADS)
  110. #ifdef XML_USE_SPROC
  111. #include    <ulocks.h>
  112. #else
  113. #include    <pthread.h>
  114. #endif
  115. #endif
  116. #include    <unistd.h>
  117. #include    <stdio.h>
  118. #include    <stdlib.h>
  119. #include    <errno.h>
  120. #include    <sys/param.h>
  121. #include    <sys/timeb.h>
  122. #include    <string.h>
  123. #include    <util/PlatformUtils.hpp>
  124. #include    <util/RuntimeException.hpp>
  125. #include    <util/Janitor.hpp>
  126. #include    <util/Mutexes.hpp>
  127. #include    <util/XMLString.hpp>
  128. #include    <util/XMLUniDefs.hpp>
  129. #include    <util/XMLUni.hpp>
  130. #if defined(XML_USE_ICU_TRANSCODER)
  131.     #include <util/Transcoders/ICU/ICUTransService.hpp>
  132. #else
  133.     // Use native transcoder. Same as -DXML_USE_NATIVE_TRANSCODER
  134.     #include <util/Transcoders/Iconv/IconvTransService.hpp>
  135. #endif
  136. #if defined(XML_USE_ICU_MESSAGELOADER)
  137.     #include <util/MsgLoaders/ICU/ICUMsgLoader.hpp>
  138. #else
  139.     // Same as -DXML_USE_INMEM_MESSAGELOADER
  140.     #include <util/MsgLoaders/InMemory/InMemMsgLoader.hpp>
  141. #endif
  142. #if defined (XML_USE_NETACCESSOR_SOCKET)
  143.     #include <util/NetAccessors/Socket/SocketNetAccessor.hpp>
  144. #endif
  145. // ---------------------------------------------------------------------------
  146. //  Local Methods
  147. // ---------------------------------------------------------------------------
  148. static void WriteCharStr( FILE* stream, const char* const toWrite)
  149. {
  150.     if (fputs(toWrite, stream) == EOF)
  151.     {
  152.         ThrowXML(XMLPlatformUtilsException,
  153.                  XMLExcepts::Strm_StdErrWriteFailure);
  154.     }
  155. }
  156. static void WriteUStrStdErr( const XMLCh* const toWrite)
  157. {
  158.     char* tmpVal = XMLString::transcode(toWrite);
  159.     ArrayJanitor<char> janText(tmpVal);
  160.     if (fputs(tmpVal, stderr) == EOF)
  161.     {
  162.        ThrowXML(XMLPlatformUtilsException,
  163.                 XMLExcepts::Strm_StdErrWriteFailure);
  164.    }
  165. }
  166. static void WriteUStrStdOut( const XMLCh* const toWrite)
  167.  {
  168.     char* tmpVal = XMLString::transcode(toWrite);
  169.     ArrayJanitor<char> janText(tmpVal);
  170.     if (fputs(tmpVal, stdout) == EOF)
  171.     {
  172.         ThrowXML(XMLPlatformUtilsException,
  173.                  XMLExcepts::Strm_StdOutWriteFailure);
  174.     }
  175. }
  176. XMLNetAccessor* XMLPlatformUtils::makeNetAccessor()
  177. {
  178. #if defined (XML_USE_NETACCESSOR_SOCKET)
  179.     return new SocketNetAccessor();
  180. #else
  181.     return 0;
  182. #endif
  183. }
  184. XMLCh* XMLPlatformUtils::weavePaths(const   XMLCh* const    basePath
  185.                                     , const XMLCh* const    relativePath)
  186. {
  187.     // Create a buffer as large as both parts and empty it
  188.     XMLCh* tmpBuf = new XMLCh[XMLString::stringLen(basePath)
  189.                               + XMLString::stringLen(relativePath)
  190.                               + 2];
  191.     *tmpBuf = 0;
  192.     //
  193.     //  If we have no base path, then just take the relative path as
  194.     //  is.
  195.     //
  196.     if (!basePath)
  197.     {
  198.         XMLString::copyString(tmpBuf, relativePath);
  199.         return tmpBuf;
  200.     }
  201.     if (!*basePath)
  202.     {
  203.         XMLString::copyString(tmpBuf, relativePath);
  204.         return tmpBuf;
  205.     }
  206.     const XMLCh* basePtr = basePath + (XMLString::stringLen(basePath) - 1);
  207.     if ((*basePtr != chForwardSlash)
  208.     &&  (*basePtr != chBackSlash))
  209.     {
  210.         while ((basePtr >= basePath)
  211.         &&     ((*basePtr != chForwardSlash) && (*basePtr != chBackSlash)))
  212.         {
  213.             basePtr--;
  214.         }
  215.     }
  216.     // There is no relevant base path, so just take the relative part
  217.     if (basePtr < basePath)
  218.     {
  219.         XMLString::copyString(tmpBuf, relativePath);
  220.         return tmpBuf;
  221.     }
  222.     // After this, make sure the buffer gets handled if we exit early
  223.     ArrayJanitor<XMLCh> janBuf(tmpBuf);
  224.     //
  225.     //  We have some path part, so we need to check to see if we ahve to
  226.     //  weave any of the parts together.
  227.     //
  228.     const XMLCh* pathPtr = relativePath;
  229.     while (true)
  230.     {
  231.         // If it does not start with some period, then we are done
  232.         if (*pathPtr != chPeriod)
  233.             break;
  234.         unsigned int periodCount = 1;
  235.         pathPtr++;
  236.         if (*pathPtr == chPeriod)
  237.         {
  238.             pathPtr++;
  239.             periodCount++;
  240.         }
  241.         // Has to be followed by a  or / or the null to mean anything
  242.         if ((*pathPtr != chForwardSlash) && (*pathPtr != chBackSlash)
  243.         &&  *pathPtr)
  244.         {
  245.             break;
  246.         }
  247.         if (*pathPtr)
  248.             pathPtr++;
  249.         // If its one period, just eat it, else move backwards in the base
  250.         if (periodCount == 2)
  251.         {
  252.             basePtr--;
  253.             while ((basePtr >= basePath)
  254.             &&     ((*basePtr != chForwardSlash) && (*basePtr != chBackSlash)))
  255.             {
  256.                 basePtr--;
  257.             }
  258.             // The base cannot provide enough levels, so its in error/
  259.             if (basePtr < basePath)
  260.                 ThrowXML(XMLPlatformUtilsException,
  261.                          XMLExcepts::File_BasePathUnderflow);
  262.         }
  263.     }
  264.     // Copy the base part up to the base pointer
  265.     XMLCh* bufPtr = tmpBuf;
  266.     const XMLCh* tmpPtr = basePath;
  267.     while (tmpPtr <= basePtr)
  268.         *bufPtr++ = *tmpPtr++;
  269.     // And then copy on the rest of our path
  270.     XMLString::copyString(bufPtr, pathPtr);
  271.     // Orphan the buffer and return it
  272.     janBuf.orphan();
  273.     return tmpBuf;
  274. }
  275. // ---------------------------------------------------------------------------
  276. //  XMLPlatformUtils: Private Static Methods
  277. // ---------------------------------------------------------------------------
  278. //
  279. //  This method is called by the platform independent part of this class
  280. //  when client code asks to have one of the supported message sets loaded.
  281. //
  282. XMLMsgLoader* XMLPlatformUtils::loadAMsgSet(const XMLCh* const msgDomain)
  283. {
  284.     XMLMsgLoader* retVal;
  285.     try
  286.     {
  287. #if defined (XML_USE_ICU_MESSAGELOADER)
  288.         retVal = new ICUMsgLoader(msgDomain);
  289. #else
  290.         // same as -DXML_USE_INMEM_MESSAGELOADER
  291.         retVal = new InMemMsgLoader(msgDomain);
  292. #endif
  293.     }
  294.     catch(...)
  295.     {
  296.         panic(XMLPlatformUtils::Panic_CantLoadMsgDomain);
  297.     }
  298.     return retVal;
  299. }
  300. //
  301. //  This method is called very early in the bootstrapping process. This guy
  302. //  must create a transcoding service and return it. It cannot use any string
  303. //  methods, any transcoding services, throw any exceptions, etc... It just
  304. //  makes a transcoding service and returns it, or returns zero on failure.
  305. //
  306. XMLTransService* XMLPlatformUtils::makeTransService()
  307. {
  308. #if defined (XML_USE_ICU_TRANSCODER)
  309.     // Use ICU transcoding services.
  310.     // same as -DXML_USE_ICU_MESSAGELOADER
  311.     return new ICUTransService;
  312. #else
  313.     // Use native transcoding services.
  314.     // same as -DXML_USE_INMEM_MESSAGELOADER
  315.     return new IconvTransService;
  316. #endif
  317. }
  318. // ---------------------------------------------------------------------------
  319. //  XMLPlatformUtils: The panic method
  320. // ---------------------------------------------------------------------------
  321. void XMLPlatformUtils::panic(const PanicReasons reason)
  322. {
  323.  const char* reasonStr = "Unknown reason";
  324.     if (reason == Panic_NoTransService)
  325.         reasonStr = "Could not load a transcoding service";
  326.     else if (reason == Panic_NoDefTranscoder)
  327.         reasonStr = "Could not load a local code page transcoder";
  328.     else if (reason == Panic_CantFindLib)
  329.         reasonStr = "Could not find the xerces-c DLL";
  330.     else if (reason == Panic_UnknownMsgDomain)
  331.         reasonStr = "Unknown message domain";
  332.     else if (reason == Panic_CantLoadMsgDomain)
  333.         reasonStr = "Cannot load message domain";
  334.     else if (reason == Panic_SynchronizationErr)
  335.         reasonStr = "Cannot synchronize system or mutex";
  336.     else if (reason == Panic_SystemInit)
  337.         reasonStr = "Cannot initialize the system or mutex";
  338.     fprintf(stderr, "%sn", reasonStr);
  339.     exit(-1);
  340. }
  341. // ---------------------------------------------------------------------------
  342. //  XMLPlatformUtils: File Methods
  343. // ---------------------------------------------------------------------------
  344. unsigned int XMLPlatformUtils::curFilePos(FileHandle theFile)
  345. {
  346.     int curPos = ftell( (FILE*)theFile);
  347.     if (curPos == -1)
  348.         ThrowXML(XMLPlatformUtilsException,
  349.                  XMLExcepts::File_CouldNotGetSize);
  350.     return (unsigned int)curPos;
  351. }
  352. void XMLPlatformUtils::closeFile(FileHandle theFile)
  353. {
  354.     if (fclose((FILE*)theFile))
  355.         ThrowXML(XMLPlatformUtilsException,
  356.                  XMLExcepts::File_CouldNotCloseFile);
  357. }
  358. unsigned int XMLPlatformUtils::fileSize(FileHandle theFile)
  359. {
  360.     // Get the current position
  361.     long  int curPos = ftell((FILE*) theFile);
  362.     if (curPos == -1)
  363.         ThrowXML(XMLPlatformUtilsException,
  364.                  XMLExcepts::File_CouldNotGetCurPos);
  365.     // Seek to the end and save that value for return
  366.      if (fseek((FILE*) theFile, 0, SEEK_END))
  367.         ThrowXML(XMLPlatformUtilsException,
  368.                  XMLExcepts::File_CouldNotSeekToEnd);
  369.     long int retVal = ftell((FILE*)theFile);
  370.     if (retVal == -1)
  371.         ThrowXML(XMLPlatformUtilsException,
  372.                  XMLExcepts::File_CouldNotSeekToEnd);
  373.     // And put the pointer back
  374.     if (fseek( (FILE*)theFile, curPos, SEEK_SET) )
  375.         ThrowXML(XMLPlatformUtilsException,
  376.                  XMLExcepts::File_CouldNotSeekToPos);
  377.     return (unsigned int)retVal;
  378. }
  379. FileHandle XMLPlatformUtils::openFile(const XMLCh* const fileName)
  380. {
  381.     const char* tmpFileName = XMLString::transcode(fileName);
  382.     ArrayJanitor<char> janText((char*)tmpFileName);
  383.     FileHandle retVal = (FILE*)fopen( tmpFileName , "rb" );
  384.     if (retVal == NULL)
  385.         return 0;
  386.     return retVal;
  387. }
  388. FileHandle XMLPlatformUtils::openFile(const char* const fileName)
  389. {
  390.     FileHandle retVal = (FILE*)fopen( fileName , "rb" );
  391.     if (retVal == NULL)
  392.         return 0;
  393.     return retVal;
  394. }
  395. FileHandle XMLPlatformUtils::openStdInHandle()
  396. {
  397.         return (FileHandle)fdopen(dup(0), "rb");
  398. }
  399. unsigned int
  400. XMLPlatformUtils::readFileBuffer( FileHandle          theFile
  401.                                 , const unsigned int  toRead
  402.                                 , XMLByte* const      toFill)
  403. {
  404.     size_t noOfItemsRead = fread((void*) toFill, 1, toRead, (FILE*)theFile);
  405.     if(ferror((FILE*)theFile))
  406.     {
  407.         ThrowXML(XMLPlatformUtilsException,
  408.                  XMLExcepts::File_CouldNotReadFromFile);
  409.     }
  410.     return (unsigned int)noOfItemsRead;
  411. }
  412. void XMLPlatformUtils::resetFile(FileHandle theFile)
  413. {
  414.     // Seek to the start of the file
  415.     if (fseek((FILE*)theFile, 0, SEEK_SET))
  416.         ThrowXML(XMLPlatformUtilsException,
  417.                  XMLExcepts::File_CouldNotResetFile);
  418. }
  419. // ---------------------------------------------------------------------------
  420. //  XMLPlatformUtils: Timing Methods
  421. // ---------------------------------------------------------------------------
  422. unsigned long XMLPlatformUtils::getCurrentMillis()
  423. {
  424.     timeb aTime;
  425.     ftime(&aTime);
  426.     return (unsigned long)(aTime.time*1000 + aTime.millitm);
  427. }
  428. XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath)
  429. {
  430.     //
  431.     //  NOTE: THe path provided has always already been opened successfully,
  432.     //  so we know that its not some pathological freaky path. It comes in
  433.     //  in native format, and goes out as Unicode always
  434.     //
  435.     char* newSrc = XMLString::transcode(srcPath);
  436.     ArrayJanitor<char> janText(newSrc);
  437.     // Use a local buffer that is big enough for the largest legal path
  438.     char *absPath = new char[1024];
  439.     // get the absolute path
  440.     char* retPath = realpath(newSrc, absPath);
  441.     ArrayJanitor<char> janText2(retPath);
  442.     if (!retPath)
  443.     {
  444.         ThrowXML(XMLPlatformUtilsException, XMLExcepts::File_CouldNotGetBasePathName);
  445.     }
  446.     return XMLString::transcode(absPath);
  447. }
  448. bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck)
  449. {
  450.     // Check for pathological case of empty path
  451.     if (!toCheck[0])
  452.         return false;
  453.     //
  454.     //  If it starts with a slash, then it cannot be relative. This covers
  455.     //  both something like "TestFile.xml" and an NT Lan type remote path
  456.     //  that starts with a node like "\MyNodeTestFile.xml".
  457.     //
  458.     if (toCheck[0] == XMLCh('/'))
  459.         return false;
  460.     // Else assume its a relative path
  461.     return true;
  462. }
  463. // -----------------------------------------------------------------------
  464. //  Mutex methods
  465. // -----------------------------------------------------------------------
  466. #if !defined(APP_NO_THREADS)
  467. static XMLMutex atomicOpsMutex;
  468. #ifdef XML_USE_SPROC
  469. // ---------------------------------------------------------------------------
  470. //  XMLPlatformUtils: Platform init method
  471. // ---------------------------------------------------------------------------
  472. static char* arenaName = 0;
  473. static usptr_t* arena = 0;
  474. void XMLPlatformUtils::platformInit()
  475. {
  476.     //
  477.     // The atomicOps mutex needs to be created early.
  478.     // Normally, mutexes are created on first use, but there is a
  479.     // circular dependency between compareAndExchange() and
  480.     // mutex creation that must be broken.
  481.     // need a shared memory space
  482.     usconfig(CONF_INITUSERS, 128);
  483.     usconfig(CONF_INITSIZE, 16000);
  484.     usconfig(CONF_AUTOGROW, 1);   // Default, but we set anyway
  485.     arenaName = strdup ("/var/tmp/xerces-sharedmemXXXXXX");
  486.     arena = usinit (mktemp (arenaName));
  487.     atomicOpsMutex.fHandle = XMLPlatformUtils::makeMutex();
  488. }
  489. void XMLPlatformUtils::platformTerm()
  490. {
  491.     usdetach (arena);
  492.     unlink (arenaName);
  493.     free (arenaName);
  494.     // We don't have any termination requirements at this time
  495. }
  496. void* XMLPlatformUtils::makeMutex()
  497. {
  498.     if (arena) {
  499.         usema_t* sema = usnewsema (arena, 1);
  500.         if (sema && (usctlsema (sema, CS_RECURSIVEON) != -1)) {
  501.             return (void*)sema;
  502.         }
  503.         else
  504.             ThrowXML (XMLPlatformUtilsException,
  505.                       XMLExcepts::Mutex_CouldNotCreate);
  506.     }
  507.     else {
  508.         // arena==0; therefore platformInit hasn't been called. 
  509.         // it's important that we fail quietly here so that we don't
  510.         // throw an exception when trying to initizlize the 
  511.         // atomicOpsMutex, which we re-initizlize in platformInit anyay.
  512.         return 0;
  513.     }
  514. }
  515. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  516. {
  517.     if (mtxHandle != NULL) {
  518.         usfreesema (mtxHandle, arena);
  519.         // never returns anything testable for failure, so nothing
  520.         // to throw an exception about.
  521.     }
  522. }
  523. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  524. {
  525.     if (mtxHandle != NULL) {
  526.         if (uspsema (mtxHandle) != 1)
  527.             ThrowXML(XMLPlatformUtilsException,
  528.                      XMLExcepts::Mutex_CouldNotLock);
  529.     }
  530. }
  531. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  532. {
  533.     if (mtxHandle != NULL)
  534.     {
  535.         if (usvsema(mtxHandle) == -1)
  536.         {
  537.             ThrowXML(XMLPlatformUtilsException,
  538.                      XMLExcepts::Mutex_CouldNotUnlock);
  539.         }
  540.     }
  541. }
  542. #else
  543. // ---------------------------------------------------------------------------
  544. //  XMLPlatformUtils: Platform init method
  545. // ---------------------------------------------------------------------------
  546. static XMLMutex atomicOpsMutex;
  547. void XMLPlatformUtils::platformInit()
  548. {
  549.     //
  550.     // The atomicOps mutex needs to be created early.
  551.     // Normally, mutexes are created on first use, but there is a
  552.     // circular dependency between compareAndExchange() and
  553.     // mutex creation that must be broken.
  554.     atomicOpsMutex.fHandle = XMLPlatformUtils::makeMutex();
  555. }
  556. void XMLPlatformUtils::platformTerm()
  557. {
  558.     // delete the mutex we created
  559. closeMutex(atomicOpsMutex.fHandle);
  560. atomicOpsMutex.fHandle = 0;
  561. }
  562. void* XMLPlatformUtils::makeMutex()
  563. {
  564.     pthread_mutex_t* mutex = new pthread_mutex_t;
  565.     pthread_mutexattr_t*  attr = new pthread_mutexattr_t;
  566.     pthread_mutexattr_init(attr);
  567.     pthread_mutexattr_settype(attr, PTHREAD_MUTEX_RECURSIVE);
  568.     if (pthread_mutex_init(mutex, attr))
  569.     {
  570.         ThrowXML(XMLPlatformUtilsException,
  571.                  XMLExcepts::Mutex_CouldNotCreate);
  572.     }
  573.     pthread_mutexattr_destroy(attr);
  574.     delete attr;
  575.     return (void*)(mutex);
  576. }
  577. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  578. {
  579.     if (mtxHandle != NULL)
  580.     {
  581.         if (pthread_mutex_destroy((pthread_mutex_t*) mtxHandle))
  582.         {
  583.             ThrowXML(XMLPlatformUtilsException,
  584.                      XMLExcepts::Mutex_CouldNotDestroy);
  585.         }
  586.         delete mtxHandle;
  587.     }
  588. }
  589. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  590. {
  591.     if (mtxHandle != NULL)
  592.     {
  593.         if (pthread_mutex_lock((pthread_mutex_t*) mtxHandle))
  594.         {
  595.             ThrowXML(XMLPlatformUtilsException,
  596.                      XMLExcepts::Mutex_CouldNotLock);
  597.         }
  598.     }
  599. }
  600. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  601. {
  602.     if (mtxHandle != NULL)
  603.     {
  604.         if (pthread_mutex_unlock((pthread_mutex_t*) mtxHandle))
  605.         {
  606.             ThrowXML(XMLPlatformUtilsException,
  607.                      XMLExcepts::Mutex_CouldNotUnlock);
  608.         }
  609.     }
  610. }
  611. #endif   // XML_USE_SPROC
  612. // -----------------------------------------------------------------------
  613. //  Miscellaneous synchronization methods
  614. // -----------------------------------------------------------------------
  615. void* XMLPlatformUtils::compareAndSwap(void**            toFill
  616.                                      , const void* const newValue
  617.                                      , const void* const toCompare)
  618. {
  619.     XMLMutexLock lockMutex(&atomicOpsMutex);
  620.     void *retVal = *toFill;
  621.     if (*toFill == toCompare)
  622.         *toFill = (void *)newValue;
  623.     return retVal;
  624. }
  625. int XMLPlatformUtils::atomicIncrement(int &location)
  626. {
  627.     XMLMutexLock localLock(&atomicOpsMutex);
  628.     return ++location;
  629. }
  630. int XMLPlatformUtils::atomicDecrement(int &location)
  631. {
  632.     XMLMutexLock localLock(&atomicOpsMutex);
  633.     return --location;
  634. }
  635. #else // #if !defined (APP_NO_THREADS)
  636. void XMLPlatformUtils::platformInit()
  637. {
  638. }
  639. void* XMLPlatformUtils::makeMutex()
  640. {
  641.         return 0;
  642. }
  643. void XMLPlatformUtils::closeMutex(void* const mtxHandle)
  644. {
  645. }
  646. void XMLPlatformUtils::lockMutex(void* const mtxHandle)
  647. {
  648. }
  649. void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
  650. {
  651. }
  652. void* XMLPlatformUtils::compareAndSwap (void**             toFill,
  653.                                         const void* const  newValue,
  654.                                         const void* const  toCompare)
  655. {
  656.     void *retVal = *toFill;
  657.     if (*toFill == toCompare)
  658.        *toFill = (void *)newValue;
  659.     return retVal;
  660. }
  661. int XMLPlatformUtils::atomicIncrement(int &location)
  662. {
  663.     return ++location;
  664. }
  665. int XMLPlatformUtils::atomicDecrement(int &location)
  666. {
  667.     return --location;
  668. }
  669. void XMLPlatformUtils::platformTerm()
  670. {
  671.     // We don't have any termination requirements at this time
  672. }
  673. #endif // APP_NO_THREADS
  674. //void XMLPlatformUtils::platformTerm()
  675. //{
  676.     // We don't have any termination requirements at this time
  677. //}