nomlib
Loading...
Searching...
No Matches
JsonCppSerializer.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_JSONCPP_SERIALIZER_HPP
30#define NOMLIB_SERIALIZERS_JSONCPP_SERIALIZER_HPP
31
32#include <sstream>
33#include <fstream>
34
35#include "nomlib/config.hpp"
36#include "nomlib/serializers/serializers_config.hpp"
37#include "nomlib/serializers/IValueSerializer.hpp"
38#include "nomlib/ptree.hpp"
39
40// Enable dumping output of each key, value pair, sizes, etc. as we
41// traverse the object.
42// #define NOM_DEBUG_JSONCPP_SERIALIZER_VALUES
43
44// Forward declarations for third-party libraries used; these allow us to not
45// worry about including third-party header files in outside-project builds,
46// such as is the case with TTcards.
47namespace Json {
48
49class Value;
50
51} // namespace Json
52
53namespace nom {
54
58const std::string JSONCPP_INDENTION_LEVEL = " ";
59
62class JsonCppSerializer: public IValueSerializer
63{
64 public:
65 typedef JsonCppSerializer SelfType;
66
72
75
77 JsonCppSerializer( enum SerializerOptions options );
78
87 std::string serialize( const Value& source );
88
99 bool save( const Value& source, const std::string& filename );
100
101 private:
102 enum SerializerOptions options_;
103
104 bool write( const Value& source, Json::Value& dest ) const;
105
107 bool write_value( const Value& object, Json::Value& dest ) const;
108
110 bool write_array_value( const Value& object, Json::Value& dest ) const;
111
115 bool write_array( const Value& object, Json::Value& dest ) const;
116
120 bool write_object( const Value& object, Json::Value& dest ) const;
121};
122
123std::unique_ptr<IValueSerializer> make_unique_json_serializer();
124
125} // namespace nom
126
127#endif // include guard defined
128
bool write_object(const Value &object, Json::Value &dest) const
Internal helper method for serialization of object nodes.
bool save(const Value &source, const std::string &filename)
Convenience method provided to output JSON-formatted data to a file.
std::string serialize(const Value &source)
Output a nom::Value object to a string.
bool write_value(const Value &object, Json::Value &dest) const
JsonCppSerializer(enum SerializerOptions options)
Construct a parser with a feature set enumeration.
bool write_array_value(const Value &object, Json::Value &dest) const
JsonCppSerializer(void)
Default constructor; initialize the writer with human friendly output.
bool write_array(const Value &object, Json::Value &dest) const
Internal helper method for serialization of array nodes.
~JsonCppSerializer(void)
Destructor.
Generic interface for opaque data containers.
Definition Value.hpp:43