Updated license
[anna.git] / example / xml / xpath / main.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 <iostream>
38
39 #include <functional>
40
41 #include <anna/core/core.hpp>
42 #include <anna/xml/xml.hpp>
43
44 #include <anna/app/Application.hpp>
45
46 class Test : public app::Application {
47 public:
48    Test ();
49    
50 private:
51    void run () throw (anna::RuntimeException);      
52 };
53
54 using namespace std;
55
56 int main (int argc, const char** argv)
57 {
58    CommandLine& commandLine (CommandLine::instantiate ());
59    Test test;
60
61    xml::functions::initialize ();
62    
63    try {
64       commandLine.initialize (argv, argc);
65       commandLine.verify ();
66
67       Logger::setLevel (Logger::Debug);
68       Logger::initialize ("XML", new TraceWriter ("file.trace", 2048000));
69
70       test.start ();
71    }
72    catch (Exception& ex) {
73       cout << ex.asString () << endl;
74    }
75    
76    return 0;
77 }
78
79 Test::Test () : 
80    app::Application ("testfunctions", "Checking xpath", "1.0") 
81 {
82    CommandLine& commandLine (CommandLine::instantiate ());
83       
84    commandLine.add ("xml", CommandLine::Argument::Mandatory, "XML document");
85    commandLine.add ("xpath", CommandLine::Argument::Mandatory, "XPath condition");
86    commandLine.add ("mode", CommandLine::Argument::Optional, "Result type (simple,full,namespace)");
87 }
88
89 void Test::run () 
90    throw (RuntimeException)
91 {
92    CommandLine& commandLine (CommandLine::instantiate ());
93
94    xml::DocumentFile xmlDoc;
95    xml::Compiler xmlCompiler;
96    XPath xpath ("testing");
97
98    xmlDoc.initialize (commandLine.getValue ("xml"));
99
100    Microsecond init, final;
101
102    const char* expression = commandLine.getValue ("xpath");
103    const char* smode = NULL;
104
105    int mode = xml::XPath::Mode::Simple;
106
107    if (commandLine.exists ("mode")) {
108       smode = commandLine.getValue ("mode");
109       if (anna_strstr (smode, "full") != 0)
110          mode = xml::XPath::Mode::Full;
111       if (anna_strstr (smode, "namespace") != 0)
112          mode |= xml::XPath::Mode::Namespace;
113    }
114
115    // Several times to check reuse
116    for (int i = 0; i < 5; i ++) {
117       init = anna::functions::hardwareClock ();
118       xpath.apply (xmlDoc, expression, mode);
119       final = anna::functions::hardwareClock  ();
120       cout << "Time (apply" << i << "): " << final - init << " us" << endl << endl;
121       if (xpath.isEmpty () == false) {
122          if (i == 0) {
123             const xml::Node* node;
124             for (Node::const_child_iterator ii = xpath.node_begin (), maxii = xpath.node_end (); ii != maxii; ii ++) 
125                cout << xmlCompiler.apply (XPath::node (ii)) << endl;
126          }
127       }
128       else
129          cout << "apply: no node matching expression" << endl << endl;
130    }
131
132    init = anna::functions::hardwareClock ();
133    bool match = xpath.match (xmlDoc, expression, mode);
134    final = anna::functions::hardwareClock  ();
135    cout << "Time (match): " << final - init << " us" << endl << endl;
136
137    if (match == false)
138       cout << "match: no node matching expression" << endl << endl;
139
140    xpath.apply (xmlDoc, expression, mode);
141    const xml::Node* node;
142    for (Node::const_child_iterator ii = xpath.node_begin (), maxii = xpath.node_end (); ii != maxii; ii ++) 
143       cout << xmlCompiler.apply (XPath::node (ii), xml::Compiler::Mode::Compact | xml::Compiler::Mode::NoNamespaces) << endl;
144 }
145