nomlib
Loading...
Searching...
No Matches
RapidXmlDeserializer.hpp
1/******************************************************************************
2
3 nomlib - C++11 cross-platform game engine
4
5Copyright (c) 2013, 2014 Jeffrey Carpenter <i8degrees@gmail.com>
6All rights reserved.
7
8Redistribution and use in source and binary forms, with or without
9modification, are permitted provided that the following conditions are met:
10
111. Redistributions of source code must retain the above copyright notice, this
12 list of conditions and the following disclaimer.
132. Redistributions in binary form must reproduce the above copyright notice,
14 this list of conditions and the following disclaimer in the documentation
15 and/or other materials provided with the distribution.
16
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
21ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28******************************************************************************/
29#ifndef NOMLIB_SERIALIZERS_RAPIDXML_DESERIALIZER_HPP
30#define NOMLIB_SERIALIZERS_RAPIDXML_DESERIALIZER_HPP
31
32#include <iostream>
33#include <string>
34#include <fstream>
35#include <sstream>
36#include <stdexcept>
37
38#include "nomlib/config.hpp"
39#include "nomlib/serializers/serializers_config.hpp"
40#include "nomlib/serializers/IValueDeserializer.hpp"
41#include "nomlib/ptree.hpp"
42
43// Enable dumping output of each key, value pair, sizes, etc. as we traverse
44// the object.
45// #define NOM_DEBUG_RAPIDXML_DESERIALIZER_VALUES
46
47// Forward declarations for third-party libraries used; these allow us to not
48// worry about including third-party header files in outside-project builds,
49// such as is the case with TTcards.
50namespace rapidxml {
51
52template<class Ch> class xml_node;
53template<class Ch> class xml_document;
54
55} // namespace rapidxml
56
57namespace nom {
58
61class RapidXmlDeserializer: public IValueDeserializer
62{
63 public:
64 typedef RapidXmlDeserializer SelfType;
65
71
74
78 RapidXmlDeserializer( uint32 options );
79
88 Value deserialize ( const std::string& source );
89
96 bool load ( const std::string& filename, Value& output );
97
98 private:
99 uint32 options_;
100
101 // rapidxml::xml_document<> doc;
102
103 bool read( const std::string& input, Value& dest ) const;
104
105 bool read_value( const rapidxml::xml_node<char>& object, Value& dest ) const;
106
110 bool read_array( const rapidxml::xml_node<char>* object, Value& dest ) const;
111
113 bool read_object( const rapidxml::xml_node<char>* node, Value& dest ) const;
114};
115
116} // namespace nom
117
118#endif // include guard defined
119
bool load(const std::string &filename, Value &output)
Restore data from a XML (.xml) file to a nom::Value object.
RapidXmlDeserializer(uint32 options)
Construct a parser with a feature set enumeration.
RapidXmlDeserializer(void)
Default constructor; initialize the parser with no additional options.
bool read_object(const rapidxml::xml_node< char > *node, Value &dest) const
Internal helper method for un-serialization of object nodes.
~RapidXmlDeserializer(void)
Destructor.
Value deserialize(const std::string &source)
Parse XML data to a nom::Value object.
bool read_array(const rapidxml::xml_node< char > *object, Value &dest) const
Internal helper method for un-serialization of array nodes.
Generic interface for opaque data containers.
Definition Value.hpp:43