1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* JsonWriter.cpp
* Serialize JSON data.
* Copyright (C) 2012 Simon Newton
*/
#include <string>
#include "ola/StringUtils.h"
#include "ola/stl/STLUtils.h"
#include "ola/web/JsonWriter.h"
namespace ola {
namespace web {
using std::ostream;
using std::ostringstream;
using std::string;
void JsonWriter::Write(ostream *output, const JsonValue &obj) {
JsonWriter writer(output);
obj.Accept(&writer);
}
string JsonWriter::AsString(const JsonValue &obj) {
ostringstream str;
JsonWriter writer(&str);
obj.Accept(&writer);
return str.str();
}
void JsonWriter::Visit(const JsonString &value) {
*m_output << '"' << EscapeString(EncodeString(value.Value())) << '"';
}
void JsonWriter::Visit(const JsonBool &value) {
*m_output << (value.Value() ? "true" : "false");
}
void JsonWriter::Visit(const JsonNull &) {
*m_output << "null";
}
void JsonWriter::Visit(const JsonRawValue &value) {
*m_output << value.Value();
}
void JsonWriter::Visit(const JsonObject &value) {
if (value.IsEmpty()) {
*m_output << "{}";
return;
}
string old_separator = m_separator;
m_separator = "";
m_indent += DEFAULT_INDENT;
*m_output << "{\n";
value.VisitProperties(this);
m_indent -= DEFAULT_INDENT;
*m_output << "\n" << string(m_indent, ' ');
*m_output << "}";
m_separator = old_separator;
}
void JsonWriter::Visit(const JsonArray &value) {
*m_output << "[";
string default_separator = ", ";
if (value.IsComplexType()) {
m_indent += DEFAULT_INDENT;
*m_output << "\n" << string(m_indent, ' ');
default_separator = ",\n";
default_separator.append(m_indent, ' ');
}
string separator;
for (unsigned int i = 0; i < value.Size(); i++) {
*m_output << separator;
value.ElementAt(i)->Accept(this);
separator = default_separator;
}
if (value.IsComplexType()) {
*m_output << "\n";
m_indent -= DEFAULT_INDENT;
*m_output << string(m_indent, ' ');
}
*m_output << "]";
}
void JsonWriter::Visit(const JsonUInt &value) {
*m_output << value.Value();
}
void JsonWriter::Visit(const JsonUInt64 &value) {
*m_output << value.Value();
}
void JsonWriter::Visit(const JsonInt &value) {
*m_output << value.Value();
}
void JsonWriter::Visit(const JsonInt64 &value) {
*m_output << value.Value();
}
void JsonWriter::Visit(const JsonDouble &value) {
*m_output << value.ToString();
}
void JsonWriter::VisitProperty(const string &property,
const JsonValue &value) {
*m_output << m_separator << string(m_indent, ' ') << "\""
<< EscapeString(property) << "\": ";
value.Accept(this);
m_separator = ",\n";
}
} // namespace web
} // namespace ola
|