// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors // 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
// Disable warning C4251: <data member>: <type> needs to have dll-interface to // be used by... #ifdefined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(push) #pragma warning(disable : 4251) #endif// if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
#pragmapack(push, 8)
namespace Json {
/** \brief Unserialize a <a HREF="http://www.json.org">JSON</a> document into a * Value. * * \deprecated Use CharReader and CharReaderBuilder.
*/
class JSON_API Reader { public: usingChar = char; using Location = constChar*;
/** \brief An error tagged with where in the JSON text it was encountered. * * The offsets give the [start, limit) range of bytes within the text. Note * that this is bytes, not codepoints.
*/ struct StructuredError {
ptrdiff_t offset_start;
ptrdiff_t offset_limit;
String message;
};
/** \brief Constructs a Reader allowing all features for parsing. * \deprecated Use CharReader and CharReaderBuilder.
*/
Reader();
/** \brief Constructs a Reader allowing the specified feature set for parsing. * \deprecated Use CharReader and CharReaderBuilder.
*/
Reader(const Features& features);
/** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a> * document. * * \param document UTF-8 encoded string containing the document * to read. * \param[out] root Contains the root value of the document if it * was successfully parsed. * \param collectComments \c true to collect comment and allow writing * them back during serialization, \c false to * discard comments. This parameter is ignored * if Features::allowComments_ is \c false. * \return \c true if the document was successfully parsed, \c false if an * error occurred.
*/ bool parse(const std::string& document, Value& root, bool collectComments = true);
/** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a> * document. * * \param beginDoc Pointer on the beginning of the UTF-8 encoded * string of the document to read. * \param endDoc Pointer on the end of the UTF-8 encoded string * of the document to read. Must be >= beginDoc. * \param[out] root Contains the root value of the document if it * was successfully parsed. * \param collectComments \c true to collect comment and allow writing * them back during serialization, \c false to * discard comments. This parameter is ignored * if Features::allowComments_ is \c false. * \return \c true if the document was successfully parsed, \c false if an * error occurred.
*/ bool parse(constchar* beginDoc, constchar* endDoc, Value& root, bool collectComments = true);
/// \brief Parse from input stream. /// \see Json::operator>>(std::istream&, Json::Value&). bool parse(IStream& is, Value& root, bool collectComments = true);
/** \brief Returns a user friendly string that list errors in the parsed * document. * * \return Formatted error message with the list of errors with their * location in the parsed document. An empty string is returned if no error * occurred during parsing. * \deprecated Use getFormattedErrorMessages() instead (typo fix).
*/
JSONCPP_DEPRECATED("Use getFormattedErrorMessages() instead.")
String getFormatedErrorMessages() const;
/** \brief Returns a user friendly string that list errors in the parsed * document. * * \return Formatted error message with the list of errors with their * location in the parsed document. An empty string is returned if no error * occurred during parsing.
*/
String getFormattedErrorMessages() const;
/** \brief Returns a vector of structured errors encountered while parsing. * * \return A (possibly empty) vector of StructuredError objects. Currently * only one error can be returned, but the caller should tolerate multiple * errors. This can occur if the parser recovers from a non-fatal parse * error and then encounters additional errors.
*/
std::vector<StructuredError> getStructuredErrors() const;
/** \brief Add a semantic error message. * * \param value JSON Value location associated with the error * \param message The error message. * \return \c true if the error was successfully added, \c false if the Value * offset exceeds the document size.
*/ bool pushError(const Value& value, const String& message);
/** \brief Add a semantic error message with extra context. * * \param value JSON Value location associated with the error * \param message The error message. * \param extra Additional JSON Value location to contextualize the error * \return \c true if the error was successfully added, \c false if either * Value offset exceeds the document size.
*/ bool pushError(const Value& value, const String& message, const Value& extra);
/** \brief Return whether there are any errors. * * \return \c true if there are no errors to report \c false if errors have * occurred.
*/ bool good() const;
/** Interface for reading JSON from a char array.
*/ class JSON_API CharReader { public: virtual ~CharReader() = default; /** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a> * document. The document must be a UTF-8 encoded string containing the * document to read. * * \param beginDoc Pointer on the beginning of the UTF-8 encoded string * of the document to read. * \param endDoc Pointer on the end of the UTF-8 encoded string of the * document to read. Must be >= beginDoc. * \param[out] root Contains the root value of the document if it was * successfully parsed. * \param[out] errs Formatted error messages (if not NULL) a user * friendly string that lists errors in the parsed * document. * \return \c true if the document was successfully parsed, \c false if an * error occurred.
*/ virtualbool parse(charconst* beginDoc, charconst* endDoc, Value* root,
String* errs) = 0;
class JSON_API Factory { public: virtual ~Factory() = default; /** \brief Allocate a CharReader via operator new(). * \throw std::exception if something goes wrong (e.g. invalid settings)
*/ virtual CharReader* newCharReader() const = 0;
}; // Factory
}; // CharReader
/** \brief Build a CharReader implementation. * * Usage: * \code * using namespace Json; * CharReaderBuilder builder; * builder["collectComments"] = false; * Value value; * String errs; * bool ok = parseFromStream(builder, std::cin, &value, &errs); * \endcode
*/ class JSON_API CharReaderBuilder : public CharReader::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. * These are case-sensitive. * Available settings (case-sensitive): * - `"collectComments": false or true` * - true to collect comment and allow writing them back during * serialization, false to discard comments. This parameter is ignored * if allowComments is false. * - `"allowComments": false or true` * - true if comments are allowed. * - `"allowTrailingCommas": false or true` * - true if trailing commas in objects and arrays are allowed. * - `"strictRoot": false or true` * - true if root must be either an array or an object value * - `"allowDroppedNullPlaceholders": false or true` * - true if dropped null placeholders are allowed. (See * StreamWriterBuilder.) * - `"allowNumericKeys": false or true` * - true if numeric object keys are allowed. * - `"allowSingleQuotes": false or true` * - true if '' are allowed for strings (both keys and values) * - `"stackLimit": integer` * - Exceeding stackLimit (recursive depth of `readValue()`) will cause an * exception. * - This is a security issue (seg-faults caused by deeply nested JSON), so * the default is low. * - `"failIfExtra": false or true` * - If true, `parse()` returns false when extra non-whitespace trails the * JSON value in the input string. * - `"rejectDupKeys": false or true` * - If true, `parse()` returns false when a key is duplicated within an * object. * - `"allowSpecialFloats": false or true` * - If true, special float values (NaNs and infinities) are allowed and * their values are lossfree restorable. * - `"skipBom": false or true` * - If true, if the input starts with the Unicode byte order mark (BOM), * it is skipped. * * You can examine 'settings_` yourself to see the defaults. You can also * write and read them just like any JSON Value. * \sa setDefaults()
*/
Json::Value settings_;
/** \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.
*/
Value& operator[](const String& key);
/** 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_reader.cpp CharReaderBuilderDefaults
*/ staticvoid setDefaults(Json::Value* settings); /** Same as old Features::strictMode(). * \pre 'settings' != NULL (but Json::null is fine) * \remark Defaults: * \snippet src/lib_json/json_reader.cpp CharReaderBuilderStrictMode
*/ staticvoid strictMode(Json::Value* settings);
};
/** Consume entire stream and use its begin/end. * Someday we might have a real StreamReader, but for now this * is convenient.
*/ bool JSON_API parseFromStream(CharReader::Factory const&, IStream&, Value* root,
String* errs);
/** \brief Read from 'sin' into 'root'. * * Always keep comments from the input JSON. * * This can be used to read a file into a particular sub-object. * For example: * \code * Json::Value root; * cin >> root["dir"]["file"]; * cout << root; * \endcode * Result: * \verbatim * { * "dir": { * "file": { * // The input stream JSON would be nested here. * } * } * } * \endverbatim * \throw std::exception on parse error. * \see Json::operator<<()
*/
JSON_API IStream& operator>>(IStream&, Value&);
} // namespace Json
#pragmapack(pop)
#ifdefined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) #pragma warning(pop) #endif// if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
#endif// JSON_READER_H_INCLUDED
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.