/usr/include/xercesc/dom/DOMMemoryManager.hpp is in libxerces-c-dev 3.1.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if !defined(XERCESC_INCLUDE_GUARD_DOMMEMORYMANAGER_HPP)
#define XERCESC_INCLUDE_GUARD_DOMMEMORYMANAGER_HPP
//------------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------------
XERCES_CPP_NAMESPACE_BEGIN
/**
* The <code>DOMMemoryManager</code> interface exposes the memory allocation-related
* functionalities of a <code>DOMDocument</code>
*/
class CDOM_EXPORT DOMMemoryManager
{
protected:
// -----------------------------------------------------------------------
// Hidden constructors
// -----------------------------------------------------------------------
/** @name Hidden constructors */
//@{
DOMMemoryManager() {};
//@}
private:
// -----------------------------------------------------------------------
// Unimplemented constructors and operators
// -----------------------------------------------------------------------
/** @name Unimplemented constructors and operators */
//@{
DOMMemoryManager(const DOMMemoryManager &);
DOMMemoryManager & operator = (const DOMMemoryManager &);
//@}
public:
// -----------------------------------------------------------------------
// All constructors are hidden, just the destructor is available
// -----------------------------------------------------------------------
/** @name Destructor */
//@{
/**
* Destructor
*
*/
virtual ~DOMMemoryManager() {};
//@}
// -----------------------------------------------------------------------
// data types
// -----------------------------------------------------------------------
enum NodeObjectType {
ATTR_OBJECT = 0,
ATTR_NS_OBJECT = 1,
CDATA_SECTION_OBJECT = 2,
COMMENT_OBJECT = 3,
DOCUMENT_FRAGMENT_OBJECT = 4,
DOCUMENT_TYPE_OBJECT = 5,
ELEMENT_OBJECT = 6,
ELEMENT_NS_OBJECT = 7,
ENTITY_OBJECT = 8,
ENTITY_REFERENCE_OBJECT = 9,
NOTATION_OBJECT = 10,
PROCESSING_INSTRUCTION_OBJECT = 11,
TEXT_OBJECT = 12
};
//@{
// -----------------------------------------------------------------------
// Getter methods
// -----------------------------------------------------------------------
/**
* Returns the size of the chunks of memory allocated by the memory manager
*
* @return the dimension of the chunks of memory allocated by the memory manager
*/
virtual XMLSize_t getMemoryAllocationBlockSize() const = 0;
//@}
//@{
// -----------------------------------------------------------------------
// Setter methods
// -----------------------------------------------------------------------
/**
* Set the size of the chunks of memory allocated by the memory manager
*
* @param size the new size of the chunks; it must be greater than 4KB
*/
virtual void setMemoryAllocationBlockSize(XMLSize_t size) = 0;
//@}
//@{
// -----------------------------------------------------------------------
// Operations
// -----------------------------------------------------------------------
/**
* Allocate a memory block of the requested size from the managed pool
*
* @param amount the size of the new memory block
*
* @return the pointer to the newly allocated block
*/
virtual void* allocate(XMLSize_t amount) = 0;
/**
* Allocate a memory block of the requested size from the managed pool of DOM objects
*
* @param amount the size of the new memory block
* @param type the type of the DOM object that will be stored in the block
*
* @return the pointer to the newly allocated block
*/
virtual void* allocate(XMLSize_t amount, DOMMemoryManager::NodeObjectType type) = 0;
/**
* Release a DOM object and place its memory back in the pool
*
* @param object the pointer to the DOM node
* @param type the type of the DOM object
*/
virtual void release(DOMNode* object, DOMMemoryManager::NodeObjectType type) = 0;
/**
* Allocate a memory block from the mnaged pool and copy the provided string
*
* @param src the string to be copied
*
* @return the pointer to the newly allocated block
*/
virtual XMLCh* cloneString(const XMLCh *src) = 0;
//@}
};
XERCES_CPP_NAMESPACE_END
#endif
/**
* End of file DOMMemoryManager.hpp
*/
|