Updated license
[anna.git] / source / xml / DTD.cpp
1 // ANNA - Anna is Not Nothingness Anymore
2 //
3 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
4 //
5 // https://bitbucket.org/testillano/anna
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 //     * 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
16 // distribution.
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.
20 //
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.
32 //
33 // Authors: eduardo.ramos.testillano@gmail.com
34 //          cisco.tierra@gmail.com
35
36
37 #include <anna/core/tracing/Logger.hpp>
38 #include <anna/core/tracing/TraceMethod.hpp>
39 #include <anna/config/defines.hpp>
40
41 #include <libxml/parser.h>
42
43 #include <anna/xml/DTD.hpp>
44
45 using namespace std;
46 using namespace anna;
47 using namespace anna::xml;
48
49 DTD::~DTD() {
50   if(a_handle != NULL) {
51     xmlFreeDtd(a_handle);
52     a_handle = NULL;
53   }
54 }
55
56 void DTD::initialize(const char* content)
57 throw(RuntimeException) {
58   LOGMETHOD(TraceMethod tf("anna::xml::DTD", "initialize", ANNA_FILE_LOCATION));
59   Guard guard(a_mutex);
60
61   if(a_handle != NULL) {
62     xmlFreeDtd(a_handle);
63     a_handle = NULL;
64   }
65
66   a_handle = parse(content);
67 }
68
69 void DTD::validate(_xmlValidCtxt* context, _xmlDoc* document) const
70 throw(RuntimeException) {
71   if(a_handle == NULL)
72     throw RuntimeException("'DTD::inicialize' was not called", ANNA_FILE_LOCATION);
73
74   if(context == NULL)
75     throw RuntimeException("Cannot validate with a NULL context", ANNA_FILE_LOCATION);
76
77   if(document == NULL)
78     throw RuntimeException("Cannot validate a NULL XML document", ANNA_FILE_LOCATION);
79
80   if(xmlValidateDtd(context, document, a_handle) == 0) {
81     string msg("XML Document");
82
83     if(document->name) {
84       msg += ": ";
85       msg += document->name;
86     } else if(document->URL) {
87       msg += ": ";
88       msg += (const char*) document->URL;
89     }
90
91     msg += " | Does not comply the DTD especification ";
92     throw RuntimeException(msg, ANNA_FILE_LOCATION);
93   }
94 }
95