📄 macosplatformutils.hpp
字号:
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2000 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xerces" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache\@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation, and was
* originally based on software copyright (c) 1999, International
* Business Machines, Inc., http://www.ibm.com . For more information
* on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
/*
* $Id: MacOSPlatformUtils.hpp,v 1.6 2002/11/13 17:37:36 jberry Exp $
*/
#pragma once
#include <cstdlib>
#include <xercesc/util/XercesDefs.hpp>
#if defined(__APPLE__)
// Framework includes from ProjectBuilder
#include <CoreServices/CoreServices.h>
#else
// Classic includes otherwise
#include <Files.h>
#endif
XERCES_CPP_NAMESPACE_BEGIN
// Abstract class for files. This could be used to allow multiple file paradigms.
class XMLMacAbstractFile
{
public:
XMLMacAbstractFile() {}
virtual ~XMLMacAbstractFile() {}
virtual unsigned int currPos() = 0;
virtual void close() = 0;
virtual unsigned int size() = 0;
virtual void open(const XMLCh* const) = 0;
virtual void openFileToWrite(const XMLCh* const) = 0;
virtual unsigned int read(const unsigned int, XMLByte* const) = 0;
virtual void write(const long byteCount, const XMLByte* const buffer) = 0;
virtual void reset() = 0;
};
// Concrete file class implemented using raw Carbon file system calls.
class XMLMacFile : public XMLMacAbstractFile
{
public:
XMLMacFile() : mFileRefNum(0), mFileValid(false) {}
virtual ~XMLMacFile();
unsigned int currPos();
void close();
unsigned int size();
void open(const XMLCh* const);
void openFileToWrite(const XMLCh* const);
unsigned int read(const unsigned int, XMLByte* const);
void write(const long byteCount, const XMLByte* const buffer);
void reset();
protected:
void create(const XMLCh* const);
void openWithPermission(const XMLCh* const, int macPermission);
short mFileRefNum;
bool mFileValid;
};
//
// Support for customized panic handling:
// The default handling of panics is not very friendly.
// To replace it with something more friendly, you'll need to:
// - #define XML_USE_CUSTOM_PANIC_PROC
// - Write, and link with, XMLCustomPanicProc
// - Implement your panic handling within XMLCustomPanicProc.
//
extern "C" void XMLCustomPanicProc(XMLPlatformUtils::PanicReasons panicReason, const char* reasonStr);
// Notes on our Xerces/Mac paths:
//
// Wherever paths are used in Xerces, this Macintosh port assumes that they'll
// be in "unix" format, or at least as close as you can get to that on the particular
// OS. On classic, this means that a path will be a unix style path, separated by '/' and
// starting with the Mac OS volume name. Since slash is used as the segment separator,
// any slashes that actually exist in the segment name will be converted to colons
// (since colon is the Mac OS path separator and would be illegal in a segment name).
// For Mac OS X, paths are created and parsed using the FSRefMakePath, etc, routines:
// the major difference will be location of the volume name within the path.
//
// The routines below help to create and interpret these pathnames for these cases.
// While the port itself never creates such paths, it does use these same routines to
// parse them.
// Convert fom FSRef/FSSpec to a Unicode character string path.
// Note that you'll need to delete [] that string after you're done with it!
XMLUTIL_EXPORT XMLCh* XMLCreateFullPathFromFSRef(const FSRef& startingRef);
XMLUTIL_EXPORT XMLCh* XMLCreateFullPathFromFSSpec(const FSSpec& startingSpec);
// Convert from path to FSRef/FSSpec
// You retain ownership of the pathName.
XMLUTIL_EXPORT bool XMLParsePathToFSRef(const XMLCh* const pathName, FSRef& ref);
XMLUTIL_EXPORT bool XMLParsePathToFSSpec(const XMLCh* const pathName, FSSpec& spec);
// These routines copy characters between their representation in the Unicode Converter
// and the representation used by XMLCh. Until a recent change in Xerces, these were
// sometimes different on the Macintosh (with GCC), but XMLCh is now fixed at 16 bits.
// Code utilitizing these routines may be phased out in time, as a conversion is no
// longer necessary.
XMLUTIL_EXPORT XMLCh*
CopyUniCharsToXMLChs(const UniChar* src, XMLCh* dst, std::size_t charCount, std::size_t maxChars);
XMLUTIL_EXPORT UniChar*
CopyXMLChsToUniChars(const XMLCh* src, UniChar* dst, std::size_t charCount, std::size_t maxChars);
XERCES_CPP_NAMESPACE_END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -