375 lines
12 KiB
C
Raw Normal View History

2018-01-26 17:06:56 +01:00
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
2015-04-27 22:25:09 +02:00
// Distributed under MIT license, or public domain if desired and
// recognized in your jurisdiction.
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
#ifndef JSON_WRITER_H_INCLUDED
#define JSON_WRITER_H_INCLUDED
#if !defined(JSON_IS_AMALGAMATION)
#include "value.h"
#endif // if !defined(JSON_IS_AMALGAMATION)
2018-01-26 17:06:56 +01:00
#include <ostream>
2021-11-20 13:41:27 +01:00
#include <string>
#include <vector>
2015-04-27 22:25:09 +02:00
// Disable warning C4251: <data member>: <type> needs to have dll-interface to
// be used by...
2021-11-20 13:41:27 +01:00
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) && defined(_MSC_VER)
2015-04-27 22:25:09 +02:00
#pragma warning(push)
#pragma warning(disable : 4251)
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
2018-01-26 17:06:56 +01:00
#if !defined(__SUNPRO_CC)
2022-03-29 21:10:50 +02:00
#pragma pack(push)
#pragma pack()
2018-01-26 17:06:56 +01:00
#endif
2015-04-27 22:25:09 +02:00
namespace Json {
class Value;
2018-01-26 17:06:56 +01:00
/**
2021-11-20 13:41:27 +01:00
*
* Usage:
* \code
* using namespace Json;
* void writeToStdout(StreamWriter::Factory const& factory, Value const& value)
* { std::unique_ptr<StreamWriter> const writer( factory.newStreamWriter());
* writer->write(value, &std::cout);
* std::cout << std::endl; // add lf and flush
* }
* \endcode
*/
2018-01-26 17:06:56 +01:00
class JSON_API StreamWriter {
protected:
2021-11-20 13:41:27 +01:00
OStream* sout_; // not owned; will not delete
2018-01-26 17:06:56 +01:00
public:
StreamWriter();
virtual ~StreamWriter();
/** Write Value into document as configured in sub-class.
2021-11-20 13:41:27 +01:00
* Do not take ownership of sout, but maintain a reference during function.
* \pre sout != NULL
* \return zero on success (For now, we always return zero, so check the
* stream instead.) \throw std::exception possibly, depending on
* configuration
2018-01-26 17:06:56 +01:00
*/
2021-11-20 13:41:27 +01:00
virtual int write(Value const& root, OStream* sout) = 0;
2018-01-26 17:06:56 +01:00
/** \brief A simple abstract factory.
*/
class JSON_API Factory {
public:
virtual ~Factory();
/** \brief Allocate a CharReader via operator new().
* \throw std::exception if something goes wrong (e.g. invalid settings)
*/
virtual StreamWriter* newStreamWriter() const = 0;
2021-11-20 13:41:27 +01:00
}; // Factory
}; // StreamWriter
2018-01-26 17:06:56 +01:00
/** \brief Write into stringstream, then return string, for convenience.
* A StreamWriter will be created from the factory, used, and then deleted.
*/
2021-11-20 13:41:27 +01:00
String JSON_API writeString(StreamWriter::Factory const& factory,
Value const& root);
2018-01-26 17:06:56 +01:00
/** \brief Build a StreamWriter implementation.
2021-11-20 13:41:27 +01:00
* Usage:
* \code
* using namespace Json;
* Value value = ...;
* StreamWriterBuilder builder;
* builder["commentStyle"] = "None";
* builder["indentation"] = " "; // or whatever you like
* std::unique_ptr<Json::StreamWriter> writer(
* builder.newStreamWriter());
* writer->write(value, &std::cout);
* std::cout << std::endl; // add lf and flush
* \endcode
2018-01-26 17:06:56 +01:00
*/
class JSON_API StreamWriterBuilder : public StreamWriter::Factory {
public:
// Note: We use a Json::Value so that we can add data-members to this class
// without a major version bump.
/** Configuration of this builder.
2021-11-20 13:41:27 +01:00
* Available settings (case-sensitive):
* - "commentStyle": "None" or "All"
* - "indentation": "<anything>".
* - Setting this to an empty string also omits newline characters.
* - "enableYAMLCompatibility": false or true
* - slightly change the whitespace around colons
* - "dropNullPlaceholders": false or true
* - Drop the "null" string from the writer's output for nullValues.
* Strictly speaking, this is not valid JSON. But when the output is being
* fed to a browser's JavaScript, it makes for smaller output and the
* browser can handle the output just fine.
* - "useSpecialFloats": false or true
* - If true, outputs non-finite floating point values in the following way:
* NaN values as "NaN", positive infinity as "Infinity", and negative
* infinity as "-Infinity".
* - "precision": int
* - Number of precision digits for formatting of real values.
* - "precisionType": "significant"(default) or "decimal"
* - Type of precision for formatting of real values.
2022-03-29 21:10:50 +02:00
* - "emitUTF8": false or true
* - If true, outputs raw UTF8 strings instead of escaping them.
2021-11-20 13:41:27 +01:00
* You can examine 'settings_` yourself
* to see the defaults. You can also write and read them just like any
* JSON Value.
* \sa setDefaults()
*/
2018-01-26 17:06:56 +01:00
Json::Value settings_;
StreamWriterBuilder();
2021-11-20 13:41:27 +01:00
~StreamWriterBuilder() override;
2018-01-26 17:06:56 +01:00
/**
* \throw std::exception if something goes wrong (e.g. invalid settings)
*/
2021-11-20 13:41:27 +01:00
StreamWriter* newStreamWriter() const override;
2018-01-26 17:06:56 +01:00
/** \return true if 'settings' are legal and consistent;
* otherwise, indicate bad settings via 'invalid'.
*/
bool validate(Json::Value* invalid) const;
/** A simple way to update a specific setting.
*/
2021-11-20 13:41:27 +01:00
Value& operator[](const String& key);
2018-01-26 17:06:56 +01:00
/** Called by ctor, but you can use this to reset settings_.
* \pre 'settings' != NULL (but Json::null is fine)
* \remark Defaults:
* snippet src/lib_json/json_writer.cpp StreamWriterBuilderDefaults
*/
static void setDefaults(Json::Value* settings);
};
2015-04-27 22:25:09 +02:00
/** \brief Abstract class for writers.
2018-01-26 17:06:56 +01:00
* deprecated Use StreamWriter. (And really, this is an implementation detail.)
2015-04-27 22:25:09 +02:00
*/
2022-03-29 21:10:50 +02:00
class JSON_API Writer {
2015-04-27 22:25:09 +02:00
public:
virtual ~Writer();
2021-11-20 13:41:27 +01:00
virtual String write(const Value& root) = 0;
2015-04-27 22:25:09 +02:00
};
/** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format
*without formatting (not human friendly).
*
* The JSON document is written in a single line. It is not intended for 'human'
*consumption,
2021-11-20 13:41:27 +01:00
* but may be useful to support feature such as RPC where bandwidth is limited.
2015-04-27 22:25:09 +02:00
* \sa Reader, Value
2018-01-26 17:06:56 +01:00
* deprecated Use StreamWriterBuilder.
2015-04-27 22:25:09 +02:00
*/
2021-11-20 13:41:27 +01:00
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable : 4996) // Deriving from deprecated class
#endif
2022-03-29 21:10:50 +02:00
class JSON_API FastWriter
2021-11-20 13:41:27 +01:00
: public Writer {
2015-04-27 22:25:09 +02:00
public:
FastWriter();
2021-11-20 13:41:27 +01:00
~FastWriter() override = default;
2015-04-27 22:25:09 +02:00
void enableYAMLCompatibility();
/** \brief Drop the "null" string from the writer's output for nullValues.
* Strictly speaking, this is not valid JSON. But when the output is being
2021-11-20 13:41:27 +01:00
* fed to a browser's JavaScript, it makes for smaller output and the
2015-04-27 22:25:09 +02:00
* browser can handle the output just fine.
*/
void dropNullPlaceholders();
void omitEndingLineFeed();
public: // overridden from Writer
2021-11-20 13:41:27 +01:00
String write(const Value& root) override;
2015-04-27 22:25:09 +02:00
private:
void writeValue(const Value& value);
2021-11-20 13:41:27 +01:00
String document_;
bool yamlCompatibilityEnabled_{false};
bool dropNullPlaceholders_{false};
bool omitEndingLineFeed_{false};
2015-04-27 22:25:09 +02:00
};
2021-11-20 13:41:27 +01:00
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
2015-04-27 22:25:09 +02:00
/** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a
*human friendly way.
*
* The rules for line break and indent are as follow:
* - Object value:
* - if empty then print {} without indent and line break
* - if not empty the print '{', line break & indent, print one value per
*line
* and then unindent and line break and print '}'.
* - Array value:
* - if empty then print [] without indent and line break
* - if the array contains no object value, empty array or some other value
*types,
* and all the values fit on one lines, then print the array on a single
*line.
* - otherwise, it the values do not fit on one line, or the array contains
* object or non empty array, then print one value per line.
*
2022-03-29 21:10:50 +02:00
* If the Value have comments then they are outputted according to their
2015-04-27 22:25:09 +02:00
*#CommentPlacement.
*
* \sa Reader, Value, Value::setComment()
2018-01-26 17:06:56 +01:00
* deprecated Use StreamWriterBuilder.
2015-04-27 22:25:09 +02:00
*/
2021-11-20 13:41:27 +01:00
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable : 4996) // Deriving from deprecated class
#endif
2022-03-29 21:10:50 +02:00
class JSON_API
2021-11-20 13:41:27 +01:00
StyledWriter : public Writer {
2015-04-27 22:25:09 +02:00
public:
StyledWriter();
2021-11-20 13:41:27 +01:00
~StyledWriter() override = default;
2015-04-27 22:25:09 +02:00
public: // overridden from Writer
/** \brief Serialize a Value in <a HREF="http://www.json.org">JSON</a> format.
* \param root Value to serialize.
* \return String containing the JSON document that represents the root value.
*/
2021-11-20 13:41:27 +01:00
String write(const Value& root) override;
2015-04-27 22:25:09 +02:00
private:
void writeValue(const Value& value);
void writeArrayValue(const Value& value);
2021-11-20 13:41:27 +01:00
bool isMultilineArray(const Value& value);
void pushValue(const String& value);
2015-04-27 22:25:09 +02:00
void writeIndent();
2021-11-20 13:41:27 +01:00
void writeWithIndent(const String& value);
2015-04-27 22:25:09 +02:00
void indent();
void unindent();
void writeCommentBeforeValue(const Value& root);
void writeCommentAfterValueOnSameLine(const Value& root);
2021-11-20 13:41:27 +01:00
static bool hasCommentForValue(const Value& value);
static String normalizeEOL(const String& text);
2015-04-27 22:25:09 +02:00
2021-11-20 13:41:27 +01:00
using ChildValues = std::vector<String>;
2015-04-27 22:25:09 +02:00
ChildValues childValues_;
2021-11-20 13:41:27 +01:00
String document_;
String indentString_;
unsigned int rightMargin_{74};
unsigned int indentSize_{3};
bool addChildValues_{false};
2015-04-27 22:25:09 +02:00
};
2021-11-20 13:41:27 +01:00
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
2015-04-27 22:25:09 +02:00
/** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a
human friendly way,
to a stream rather than to a string.
*
* The rules for line break and indent are as follow:
* - Object value:
* - if empty then print {} without indent and line break
* - if not empty the print '{', line break & indent, print one value per
line
* and then unindent and line break and print '}'.
* - Array value:
* - if empty then print [] without indent and line break
* - if the array contains no object value, empty array or some other value
types,
* and all the values fit on one lines, then print the array on a single
line.
* - otherwise, it the values do not fit on one line, or the array contains
* object or non empty array, then print one value per line.
*
2022-03-29 21:10:50 +02:00
* If the Value have comments then they are outputted according to their
2015-04-27 22:25:09 +02:00
#CommentPlacement.
*
* \sa Reader, Value, Value::setComment()
2018-01-26 17:06:56 +01:00
* deprecated Use StreamWriterBuilder.
2015-04-27 22:25:09 +02:00
*/
2021-11-20 13:41:27 +01:00
#if defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable : 4996) // Deriving from deprecated class
#endif
2022-03-29 21:10:50 +02:00
class JSON_API
2021-11-20 13:41:27 +01:00
StyledStreamWriter {
2015-04-27 22:25:09 +02:00
public:
2021-11-20 13:41:27 +01:00
/**
* \param indentation Each level will be indented by this amount extra.
*/
StyledStreamWriter(String indentation = "\t");
~StyledStreamWriter() = default;
2015-04-27 22:25:09 +02:00
public:
/** \brief Serialize a Value in <a HREF="http://www.json.org">JSON</a> format.
* \param out Stream to write to. (Can be ostringstream, e.g.)
* \param root Value to serialize.
* \note There is no point in deriving from Writer, since write() should not
* return a value.
*/
2021-11-20 13:41:27 +01:00
void write(OStream& out, const Value& root);
2015-04-27 22:25:09 +02:00
private:
void writeValue(const Value& value);
void writeArrayValue(const Value& value);
2021-11-20 13:41:27 +01:00
bool isMultilineArray(const Value& value);
void pushValue(const String& value);
2015-04-27 22:25:09 +02:00
void writeIndent();
2021-11-20 13:41:27 +01:00
void writeWithIndent(const String& value);
2015-04-27 22:25:09 +02:00
void indent();
void unindent();
void writeCommentBeforeValue(const Value& root);
void writeCommentAfterValueOnSameLine(const Value& root);
2021-11-20 13:41:27 +01:00
static bool hasCommentForValue(const Value& value);
static String normalizeEOL(const String& text);
2015-04-27 22:25:09 +02:00
2021-11-20 13:41:27 +01:00
using ChildValues = std::vector<String>;
2015-04-27 22:25:09 +02:00
ChildValues childValues_;
2021-11-20 13:41:27 +01:00
OStream* document_;
String indentString_;
unsigned int rightMargin_{74};
String indentation_;
2018-01-26 17:06:56 +01:00
bool addChildValues_ : 1;
bool indented_ : 1;
2015-04-27 22:25:09 +02:00
};
2021-11-20 13:41:27 +01:00
#if defined(_MSC_VER)
#pragma warning(pop)
#endif
2015-04-27 22:25:09 +02:00
#if defined(JSON_HAS_INT64)
2021-11-20 13:41:27 +01:00
String JSON_API valueToString(Int value);
String JSON_API valueToString(UInt value);
2015-04-27 22:25:09 +02:00
#endif // if defined(JSON_HAS_INT64)
2021-11-20 13:41:27 +01:00
String JSON_API valueToString(LargestInt value);
String JSON_API valueToString(LargestUInt value);
String JSON_API valueToString(
double value, unsigned int precision = Value::defaultRealPrecision,
PrecisionType precisionType = PrecisionType::significantDigits);
String JSON_API valueToString(bool value);
String JSON_API valueToQuotedString(const char* value);
2015-04-27 22:25:09 +02:00
/// \brief Output using the StyledStreamWriter.
/// \see Json::operator>>()
2021-11-20 13:41:27 +01:00
JSON_API OStream& operator<<(OStream&, const Value& root);
2015-04-27 22:25:09 +02:00
} // namespace Json
2018-01-26 17:06:56 +01:00
#if !defined(__SUNPRO_CC)
#pragma pack(pop)
#endif
2015-04-27 22:25:09 +02:00
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
#pragma warning(pop)
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
#endif // JSON_WRITER_H_INCLUDED