1 // ANNA - Anna is Not 'N' Anymore
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
5 // https://bitbucket.org/testillano/anna
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
11 // * Redistributions of source code must retain the above copyright
12 // notice, this list of conditions and the following disclaimer.
13 // * Redistributions in binary form must reproduce the above
14 // copyright notice, this list of conditions and the following disclaimer
15 // in the documentation and/or other materials provided with the
17 // * Neither the name of Google Inc. nor the names of its
18 // contributors may be used to endorse or promote products derived from
19 // this software without specific prior written permission.
21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 // Authors: eduardo.ramos.testillano@gmail.com
34 // cisco.tierra@gmail.com
37 #ifndef anna_xml_Document_hpp
38 #define anna_xml_Document_hpp
44 #include <anna/core/DataBlock.hpp>
45 #include <anna/core/RuntimeException.hpp>
57 Clase base para manejar los documentos XML.
59 Ejemplo de documento XML:
63 <xvc HeartBeat="20000">
65 <INetAddress Address="204.152.65.15" Port="2000"/>
66 <INetAddress Address="204.152.65.47" Port="2002"/>
69 <ethernet Mode="raw" VirtualAddress="1.1.1.100">
70 <Input Device="/dev/qfe" PhysicalAccessPoint="2" MAC="8:0:20:9e:ee:21"/>
71 <Output Device="/dev/qfe" PhysicalAccessPoint="2" MAC="8:0:20:9e:ee:c9"/>
77 class Document : anna::DataBlock {
85 Inicializa el contenido del documento XML.
86 \param content Contenido de la Documento, depedendiendo del tipo de Documento hara referencia
87 a un nombre de archivo, una URI o a una cadena.
89 void initialize(const char* content) throw(RuntimeException);
92 Inicializa el contenido del documento XML.
93 \param content Contenido del Documento XML.
95 void initialize(const DataBlock& content) throw(RuntimeException);
98 * Obtiene el conjunto de caracteres usado en el documento XML. Puede ser NULL.
99 * \return El conjunto de caracteres usado en el documento XML.
101 const char* getEncoding() const throw();
104 * Obtiene la versión indicada en el documento XML.Puede ser NULL.
105 * \return La versión indicada en el documento XML.
107 const char* getVersion() const throw();
110 Devuelve el contenido asociado al documento XML.
111 \return El contenido asociado al documento XML.
113 virtual const DataBlock& getContent() const throw(RuntimeException) { return *this; }
116 Devuelve el contenido asociado al documento XML expresado como una cadena C.
117 \return El contenido asociado al documento XML expresado como una cadena C.
119 const char* getContentAsCString() const throw(RuntimeException);
122 * Establece el conjunto de caracteres usado en el documento XML.
123 * \param encoding Literal que indica el conjunto de caracteres. Puede ser NULL.
125 void setEncoding(const char* encoding) throw();
128 * Establece la versión usada en el documento XML.
129 * \param encoding Literal que indica la versión. Puede ser NULL.
131 void setVersion(const char* version) throw();
134 * Analiza el contenido del documento XML y devuelve el nodo raíz.
135 * \return El nodo raiz del arbol XML correspondiente al resultado del analisis.
136 * \warning Este documento debe estar correctamente inicializado.
138 const xml::Node* parse() throw(RuntimeException);
141 * Analiza el documento XML recibido como parametro, y verifica que cumpla las reglas
142 * establecidas por la DTD.
143 * \param dtd DTD que debe cumplir el documento XML.
144 * \return El nodo raiz del arbol XML correspondiente al resultado del analisis.
145 * \warning Este documento debe estar correctamente inicializado.
147 const xml::Node* parse(const DTD& dtd) throw(RuntimeException);
156 * Libera la memoria asociada a los componentes de este documento.
158 void clear() throw();
161 * Establece el contenido de este documento XML.
162 * \param content Buffer que contiene una C-String con la que inciar este documento XML.
164 void setContent(const char* content) throw() {
166 DataBlock::append(content, anna_strlen(content) + 1);
167 a_contentIsCString = true;
171 * Establece el contenido de este documento XML.
172 * \param content Buffer que apunta al contenido con la que inciar este documento XML.
173 * \param size Longitud del buffer.
174 * \warning Sólo uso interno
176 void setContent(const char* content, const int size) throw() {
178 DataBlock::append(content, size);
179 a_contentIsCString = false;
183 * Establece el contenido de este documento XML.
184 * \param content Bloque de datos del que copiar el valor para iniciar este documento XML.
186 void setContent(const DataBlock& content) throw() {
187 DataBlock::operator= (content);
188 a_contentIsCString = false;
193 std::string* a_encoding;
194 std::string* a_version;
195 bool a_contentIsCString;
196 DataBlock* a_asCString;
199 Document(const Document&);
201 virtual _xmlDoc* do_initialize(const char* content) throw(RuntimeException) = 0;
202 virtual _xmlDoc* do_initialize(const DataBlock& content) throw(RuntimeException) = 0;