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

xml/soap/webservice

开发平台:

C/C++

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