Xerces-C++ 3.2.5
XMLFileMgr.hpp
Go to the documentation of this file.
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18/*
19 * $Id$
20 */
21
22#if !defined(XERCESC_INCLUDE_GUARD_XMLFILEMGR_HPP)
23#define XERCESC_INCLUDE_GUARD_XMLFILEMGR_HPP
24
27
29
30typedef void* FileHandle;
31#define XERCES_Invalid_File_Handle 0
32
33// Abstract class for files. This is be used to allow multiple file handling implementations.
34class XMLFileMgr : public XMemory
35{
36 public:
38 virtual ~XMLFileMgr() {}
39
40 // File access
41 virtual FileHandle fileOpen(const XMLCh* path, bool toWrite, MemoryManager* const manager) = 0;
42 virtual FileHandle fileOpen(const char* path, bool toWrite, MemoryManager* const manager) = 0;
43 virtual FileHandle openStdIn(MemoryManager* const manager) = 0;
44
45 virtual void fileClose(FileHandle f, MemoryManager* const manager) = 0;
46 virtual void fileReset(FileHandle f, MemoryManager* const manager) = 0;
47
48 virtual XMLFilePos curPos(FileHandle f, MemoryManager* const manager) = 0;
49 virtual XMLFilePos fileSize(FileHandle f, MemoryManager* const manager) = 0;
50
51 virtual XMLSize_t fileRead(FileHandle f, XMLSize_t byteCount, XMLByte* buffer, MemoryManager* const manager) = 0;
52 virtual void fileWrite(FileHandle f, XMLSize_t byteCount, const XMLByte* buffer, MemoryManager* const manager) = 0;
53
54 // Ancillary path handling routines
55 virtual XMLCh* getFullPath(const XMLCh* const srcPath, MemoryManager* const manager) = 0;
56 virtual XMLCh* getCurrentDirectory(MemoryManager* const manager) = 0;
57 virtual bool isRelative(const XMLCh* const toCheck, MemoryManager* const manager) = 0;
58};
59
61
62#endif
63
XERCES_CPP_NAMESPACE_BEGIN typedef void * FileHandle
Definition XMLFileMgr.hpp:30
#define XERCES_CPP_NAMESPACE_BEGIN
Definition XercesDefs.hpp:112
unsigned char XMLByte
Definition XercesDefs.hpp:65
#define XERCES_CPP_NAMESPACE_END
Definition XercesDefs.hpp:113
uint16_t XMLCh
Definition Xerces_autoconf_config.hpp:120
size_t XMLSize_t
Definition Xerces_autoconf_config.hpp:112
XMLUInt64 XMLFilePos
Definition Xerces_autoconf_config.hpp:139
Configurable memory manager.
Definition MemoryManager.hpp:40
Definition XMLFileMgr.hpp:35
virtual void fileWrite(FileHandle f, XMLSize_t byteCount, const XMLByte *buffer, MemoryManager *const manager)=0
XMLFileMgr()
Definition XMLFileMgr.hpp:37
virtual XMLFilePos curPos(FileHandle f, MemoryManager *const manager)=0
virtual ~XMLFileMgr()
Definition XMLFileMgr.hpp:38
virtual void fileClose(FileHandle f, MemoryManager *const manager)=0
virtual void fileReset(FileHandle f, MemoryManager *const manager)=0
virtual FileHandle openStdIn(MemoryManager *const manager)=0
virtual XMLCh * getCurrentDirectory(MemoryManager *const manager)=0
virtual FileHandle fileOpen(const char *path, bool toWrite, MemoryManager *const manager)=0
virtual XMLCh * getFullPath(const XMLCh *const srcPath, MemoryManager *const manager)=0
virtual FileHandle fileOpen(const XMLCh *path, bool toWrite, MemoryManager *const manager)=0
virtual bool isRelative(const XMLCh *const toCheck, MemoryManager *const manager)=0
virtual XMLFilePos fileSize(FileHandle f, MemoryManager *const manager)=0
virtual XMLSize_t fileRead(FileHandle f, XMLSize_t byteCount, XMLByte *buffer, MemoryManager *const manager)=0
This class makes it possible to override the C++ memory management by adding new/delete operators to ...
Definition XMemory.hpp:41