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

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: MacOSPlatformUtils.hpp,v 1.7 2001/10/19 20:01:25 jberry Exp $
  58.  */
  59.  
  60. #pragma once
  61. #include <util/XercesDefs.hpp>
  62. #include <cstdlib>
  63. #if defined(XML_MACOSX)
  64.     // Framework includes from ProjectBuilder
  65.     #include <CoreServices/CoreServices.h>
  66. #else
  67.     // Classic includes otherwise
  68.     #include <Files.h>
  69. #endif
  70. // Abstract class for files. This could be used to allow multiple file paradigms.
  71. class XMLMacAbstractFile
  72. {
  73.     public:
  74.         XMLMacAbstractFile() {}
  75.         virtual ~XMLMacAbstractFile() {}
  76.         
  77.         virtual unsigned int currPos() = 0;
  78.         virtual void close() = 0;
  79.         virtual unsigned int size() = 0;
  80.         virtual void open(const XMLCh* const) = 0;
  81.         virtual unsigned int read(const unsigned int, XMLByte* const) = 0;
  82.         virtual void reset() = 0;
  83. };
  84. // Concrete file class implemented using raw Carbon file system calls.
  85. class XMLMacFile : public XMLMacAbstractFile
  86. {
  87.     public:
  88.         XMLMacFile() : mFileRefNum(0), mFileValid(false) {}
  89.         virtual ~XMLMacFile();
  90.         
  91.         unsigned int currPos();
  92.         void close();
  93.         unsigned int size();
  94.         void open(const XMLCh* const);
  95.         unsigned int read(const unsigned int, XMLByte* const);
  96.         void reset();
  97.         
  98.     protected:
  99.         short mFileRefNum;
  100.         bool mFileValid;
  101. };
  102. //
  103. // Support for customized panic handling:
  104. //  The default handling of panics is not very friendly.
  105. // To replace it with something more friendly, you'll need to:
  106. // - #define XML_USE_CUSTOM_PANIC_PROC
  107. // - Write, and link with, XMLCustomPanicProc
  108. // - Implement your panic handling within XMLCustomPanicProc.
  109. //
  110. extern "C" void XMLCustomPanicProc(XMLPlatformUtils::PanicReasons panicReason, const char* reasonStr);
  111. // Notes on our Xerces/Mac paths:
  112. //
  113. // Wherever paths are used in Xerces, this Macintosh port assumes that they'll
  114. // be in "unix" format, or at least as close as you can get to that on the particular
  115. // OS. On classic, this means that a path will be a unix style path, separated by '/' and
  116. // starting with the Mac OS volume name. Since slash is used as the segment separator,
  117. // any slashes that actually exist in the segment name will be converted to colons
  118. // (since colon is the Mac OS path separator and would be illegal in a segment name).
  119. // For Mac OS X, paths are created and parsed using the FSRefMakePath, etc, routines:
  120. // the major difference will be location of the volume name within the path.
  121. //
  122. // The routines below help to create and interpret these pathnames for these cases.
  123. // While the port itself never creates such paths, it does use these same routines to
  124. // parse them.
  125. // Convert fom FSRef/FSSpec to a Unicode character string path.
  126. // Note that you'll need to delete [] that string after you're done with it!
  127. XMLCh* XMLCreateFullPathFromFSRef(const FSRef& startingRef);
  128. XMLCh* XMLCreateFullPathFromFSSpec(const FSSpec& startingSpec);
  129. // Convert from path to FSRef/FSSpec
  130. // You retain ownership of the pathName.
  131. bool XMLParsePathToFSRef(const XMLCh* const pathName, FSRef& ref);
  132. bool XMLParsePathToFSSpec(const XMLCh* const pathName, FSSpec& spec);
  133. // These routines copy characters between their representation in the Unicode Converter
  134. // and the representation used by XMLCh. Until a recent change in Xerces, these were
  135. // sometimes different on the Macintosh (with GCC), but XMLCh is now fixed at 16 bits.
  136. // Code utilitizing these routines may be phased out in time, as a conversion is no
  137. // longer necessary.
  138. XMLCh* CopyUniCharsToXMLChs(const UniChar* src, XMLCh* dst, std::size_t charCount, std::size_t maxChars);
  139. UniChar* CopyXMLChsToUniChars(const XMLCh* src, UniChar* dst, std::size_t charCount, std::size_t maxChars);