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