MacOSPlatformUtils.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:6k
源码类别:

词法分析

开发平台:

Visual 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: MacOSPlatformUtils.hpp,v 1.9 2003/05/21 02:43:07 jberry Exp $
  58.  */
  59. #pragma once
  60. #include <cstdlib>
  61. #include <xercesc/util/XercesDefs.hpp>
  62. #include <xercesc/util/PlatformUtils.hpp>
  63. #include <xercesc/util/Platforms/MacOS/MacAbstractFile.hpp>
  64. #if defined(__APPLE__)
  65.     // Framework includes from ProjectBuilder
  66.     #include <CoreServices/CoreServices.h>
  67. #else
  68.     // Classic includes otherwise
  69.     #include <Files.h>
  70. #endif
  71. XERCES_CPP_NAMESPACE_BEGIN
  72. // Notes on our Xerces/Mac paths:
  73. //
  74. // Wherever paths are used in Xerces, this Macintosh port assumes that they'll
  75. // be in "unix" format, or at least as close as you can get to that on the particular
  76. // OS. On classic, this means that a path will be a unix style path, separated by '/' and
  77. // starting with the Mac OS volume name. Since slash is used as the segment separator,
  78. // any slashes that actually exist in the segment name will be converted to colons
  79. // (since colon is the Mac OS path separator and would be illegal in a segment name).
  80. // For Mac OS X, paths are created and parsed using the FSRefMakePath, etc, routines:
  81. // the major difference will be location of the volume name within the path.
  82. //
  83. // The routines below help to create and interpret these pathnames for these cases.
  84. // While the port itself never creates such paths, it does use these same routines to
  85. // parse them.
  86. // Factory method to create an appropriate concrete object
  87. // descended from XMLMacAbstractFile.
  88. XMLUTIL_EXPORT XMLMacAbstractFile* XMLMakeMacFile(void);
  89. // Convert fom FSRef/FSSpec to a Unicode character string path.
  90. // Note that you'll need to delete [] that string after you're done with it!
  91. XMLUTIL_EXPORT XMLCh* XMLCreateFullPathFromFSRef(const FSRef& startingRef,
  92.                             MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  93. XMLUTIL_EXPORT XMLCh* XMLCreateFullPathFromFSSpec(const FSSpec& startingSpec,
  94.                             MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  95. // Convert from path to FSRef/FSSpec
  96. // You retain ownership of the pathName.
  97. XMLUTIL_EXPORT bool XMLParsePathToFSRef(const XMLCh* const pathName, FSRef& ref,
  98.                             MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  99. XMLUTIL_EXPORT bool XMLParsePathToFSSpec(const XMLCh* const pathName, FSSpec& spec,
  100.                             MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  101. // These routines copy characters between their representation in the Unicode Converter
  102. // and the representation used by XMLCh. Until a recent change in Xerces, these were
  103. // sometimes different on the Macintosh (with GCC), but XMLCh is now fixed at 16 bits.
  104. // Code utilitizing these routines may be phased out in time, as a conversion is no
  105. // longer necessary.
  106. XMLUTIL_EXPORT XMLCh*
  107. CopyUniCharsToXMLChs(const UniChar* src, XMLCh* dst, std::size_t charCount, std::size_t maxChars);
  108. XMLUTIL_EXPORT UniChar*
  109. CopyXMLChsToUniChars(const XMLCh* src, UniChar* dst, std::size_t charCount, std::size_t maxChars);
  110. // UTF8/UniChar transcoding utilities
  111. XMLUTIL_EXPORT std::size_t
  112. TranscodeUniCharsToUTF8(const UniChar* src, char* dst, std::size_t srcCnt, std::size_t maxChars);
  113. XMLUTIL_EXPORT std::size_t
  114. TranscodeUTF8ToUniChars(const char* src, UniChar* dst, std::size_t maxChars);
  115. // Size of our statically allocated path buffers
  116. const std::size_t kMaxMacStaticPathChars = 512;
  117. // Global variables set in platformInit()
  118. extern bool gFileSystemCompatible;
  119. extern bool gHasFSSpecAPIs;
  120. extern bool gHasFS2TBAPIs;
  121. extern bool gHasHFSPlusAPIs;
  122. extern bool gHasFSPathAPIs;
  123. extern bool gPathAPIsUsePosixPaths;
  124. extern bool gHasMPAPIs;
  125. extern bool gMacOSX;
  126. extern bool gUsePosixFiles;
  127. XERCES_CPP_NAMESPACE_END