Represents a JSON value. More...
#include <value.h>
Classes | |
struct | CommentInfo |
class | CZString |
union | ValueHolder |
Public Types | |
typedef UInt | ArrayIndex |
typedef ValueConstIterator | const_iterator |
typedef Json::Int | Int |
typedef ValueIterator | iterator |
typedef std::vector< std::string > | Members |
typedef std::map< CZString, Value > | ObjectValues |
typedef Json::UInt | UInt |
Public Member Functions | |
Value & | append (const Value &value) |
Append value to array at the end. More... | |
bool | asBool () const |
const char * | asCString () const |
double | asDouble () const |
Int | asInt () const |
std::string | asString () const |
UInt | asUInt () const |
iterator | begin () |
const_iterator | begin () const |
void | clear () |
int | compare (const Value &other) |
bool | empty () const |
Return true if empty array, empty object, or null; otherwise, false. More... | |
iterator | end () |
const_iterator | end () const |
Value | get (const char *key, const Value &defaultValue) const |
Return the member named key if it exist, defaultValue otherwise. More... | |
Value | get (const std::string &key, const Value &defaultValue) const |
Return the member named key if it exist, defaultValue otherwise. More... | |
Value | get (UInt index, const Value &defaultValue) const |
std::string | getComment (CommentPlacement placement) const |
Include delimiters and embedded newlines. More... | |
Members | getMemberNames () const |
Return a list of the member names. More... | |
bool | hasComment (CommentPlacement placement) const |
bool | isArray () const |
bool | isBool () const |
bool | isConvertibleTo (ValueType other) const |
bool | isDouble () const |
bool | isInt () const |
bool | isIntegral () const |
bool | isMember (const char *key) const |
Return true if the object has a member named key. More... | |
bool | isMember (const std::string &key) const |
Return true if the object has a member named key. More... | |
bool | isNull () const |
bool | isNumeric () const |
bool | isObject () const |
bool | isString () const |
bool | isUInt () const |
bool | isValidIndex (UInt index) const |
Return true if index < size(). More... | |
bool | operator! () const |
Return isNull() More... | |
bool | operator!= (const Value &other) const |
bool | operator< (const Value &other) const |
bool | operator<= (const Value &other) const |
Value & | operator= (const Value &other) |
bool | operator== (const Value &other) const |
bool | operator> (const Value &other) const |
bool | operator>= (const Value &other) const |
Value & | operator[] (const char *key) |
Access an object value by name, create a null member if it does not exist. More... | |
const Value & | operator[] (const char *key) const |
Access an object value by name, returns null if there is no member with that name. More... | |
Value & | operator[] (const StaticString &key) |
Access an object value by name, create a null member if it does not exist. More... | |
Value & | operator[] (const std::string &key) |
Access an object value by name, create a null member if it does not exist. More... | |
const Value & | operator[] (const std::string &key) const |
Access an object value by name, returns null if there is no member with that name. More... | |
Value & | operator[] (UInt index) |
const Value & | operator[] (UInt index) const |
Value | removeMember (const char *key) |
Remove and return the named member. More... | |
Value | removeMember (const std::string &key) |
Same as removeMember(const char*) More... | |
void | resize (UInt size) |
void | setComment (const char *comment, CommentPlacement placement) |
Comments must be //... or /* ... */. More... | |
void | setComment (const std::string &comment, CommentPlacement placement) |
Comments must be //... or /* ... */. More... | |
UInt | size () const |
Number of values in array or object. More... | |
void | swap (Value &other) |
std::string | toStyledString () const |
ValueType | type () const |
Value (bool value) | |
Value (const char *beginValue, const char *endValue) | |
Value (const char *value) | |
Value (const StaticString &value) | |
Constructs a value from a static string. More... | |
Value (const std::string &value) | |
Value (const Value &other) | |
Value (double value) | |
Value (Int value) | |
Value (UInt value) | |
Value (ValueType type=nullValue) | |
Create a default Value of the given type. More... | |
~Value () | |
Static Public Attributes | |
static const Int | maxInt |
static const UInt | maxUInt |
static const Int | minInt |
static const Value | null |
Private Member Functions | |
Value & | resolveReference (const char *key, bool isStatic) |
Private Attributes | |
int | allocated_: 1 |
CommentInfo * | comments_ |
ValueType | type_: 8 |
union Json::Value::ValueHolder | value_ |
Friends | |
class | ValueIteratorBase |
Represents a JSON value.
This class is a discriminated union wrapper that can represents a:
The type of the held value is represented by a ValueType and can be obtained using type().
values of an objectValue or arrayValue can be accessed using operator[]() methods. Non const methods will automatically create the a nullValue element if it does not exist. The sequence of an arrayValue will be automatically resize and initialized with nullValue. resize() can be used to enlarge or truncate an arrayValue.
The get() methods can be used to obtanis default value in the case the required element does not exist.
It is possible to iterate over the list of a objectValue values using the getMemberNames() method.
typedef UInt Json::Value::ArrayIndex |
typedef Json::Int Json::Value::Int |
typedef ValueIterator Json::Value::iterator |
typedef std::vector<std::string> Json::Value::Members |
typedef std::map<CZString, Value> Json::Value::ObjectValues |
typedef Json::UInt Json::Value::UInt |
Create a default Value of the given type.
This is a very useful constructor. To create an empty array, pass arrayValue. To create an empty object, pass objectValue. Another Value can then be set to this one by assignment. This is useful since clear() and resize() will not alter types.
Examples:
Json::Value::Value | ( | Int | value | ) |
Json::Value::Value | ( | UInt | value | ) |
Json::Value::Value | ( | double | value | ) |
Json::Value::Value | ( | const char * | value | ) |
Json::Value::Value | ( | const char * | beginValue, |
const char * | endValue | ||
) |
Json::Value::Value | ( | const StaticString & | value | ) |
Constructs a value from a static string.
Like other value string constructor but do not duplicate the string for internal storage. The given string must remain alive after the call to this constructor. Example of usage:
Json::Value::Value | ( | const std::string & | value | ) |
Json::Value::Value | ( | bool | value | ) |
Json::Value::Value | ( | const Value & | other | ) |
Json::Value::~Value | ( | ) |
Append value to array at the end.
Equivalent to jsonvalue[jsonvalue.size()] = value;
Referenced by diclist.diclist::add(), evf::EvFDaqDirector::checkTransferSystemPSet(), HLTriggerJSONMonitoring::globalEndLuminosityBlockSummary(), L1TriggerJSONMonitoring::globalEndLuminosityBlockSummary(), evf::FastMonitoringService::makeInputLegendaJson(), evf::FastMonitoringService::makeModuleLegendaJson(), evf::FastMonitoringService::makePathLegendaJson(), and jsoncollector::HistoJ< unsigned int >::toJsonValue().
bool Json::Value::asBool | ( | ) | const |
const char* Json::Value::asCString | ( | ) | const |
double Json::Value::asDouble | ( | ) | const |
Int Json::Value::asInt | ( | ) | const |
Referenced by evf::EvFDaqDirector::readLastLSEntry().
std::string Json::Value::asString | ( | ) | const |
UInt Json::Value::asUInt | ( | ) | const |
iterator Json::Value::begin | ( | ) |
const_iterator Json::Value::begin | ( | ) | const |
Referenced by evf::EvFDaqDirector::getStreamDestinations().
void Json::Value::clear | ( | ) |
int Json::Value::compare | ( | const Value & | other | ) |
bool Json::Value::empty | ( | ) | const |
Return true if empty array, empty object, or null; otherwise, false.
iterator Json::Value::end | ( | ) |
Referenced by Types.LuminosityBlockRange::cppID(), and Types.EventRange::cppID().
const_iterator Json::Value::end | ( | ) | const |
Return the member named key if it exist, defaultValue otherwise.
Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), submitPVValidationJobs.BetterConfigParser::__updateDict(), rrapi.RRApi::columns(), rrapi.RRApi::count(), rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), betterConfigParser.BetterConfigParser::getResultingSection(), submitPVValidationJobs.BetterConfigParser::getResultingSection(), rrapi.RRApi::report(), rrapi.RRApi::reports(), rrapi.RRApi::tables(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), and rrapi.RRApi::workspaces().
Return the member named key if it exist, defaultValue otherwise.
Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), submitPVValidationJobs.BetterConfigParser::__updateDict(), rrapi.RRApi::columns(), rrapi.RRApi::count(), rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), betterConfigParser.BetterConfigParser::getResultingSection(), submitPVValidationJobs.BetterConfigParser::getResultingSection(), rrapi.RRApi::report(), rrapi.RRApi::reports(), rrapi.RRApi::tables(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), and rrapi.RRApi::workspaces().
If the array contains at least index+1 elements, returns the element value, otherwise returns defaultValue.
Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), submitPVValidationJobs.BetterConfigParser::__updateDict(), rrapi.RRApi::columns(), rrapi.RRApi::count(), rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), betterConfigParser.BetterConfigParser::getResultingSection(), submitPVValidationJobs.BetterConfigParser::getResultingSection(), evf::EvFDaqDirector::readLastLSEntry(), rrapi.RRApi::report(), rrapi.RRApi::reports(), rrapi.RRApi::tables(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), and rrapi.RRApi::workspaces().
std::string Json::Value::getComment | ( | CommentPlacement | placement | ) | const |
Include delimiters and embedded newlines.
Members Json::Value::getMemberNames | ( | ) | const |
bool Json::Value::hasComment | ( | CommentPlacement | placement | ) | const |
bool Json::Value::isArray | ( | ) | const |
bool Json::Value::isBool | ( | ) | const |
bool Json::Value::isConvertibleTo | ( | ValueType | other | ) | const |
bool Json::Value::isDouble | ( | ) | const |
bool Json::Value::isInt | ( | ) | const |
bool Json::Value::isIntegral | ( | ) | const |
bool Json::Value::isMember | ( | const char * | key | ) | const |
Return true if the object has a member named key.
bool Json::Value::isMember | ( | const std::string & | key | ) | const |
Return true if the object has a member named key.
bool Json::Value::isNull | ( | ) | const |
bool Json::Value::isNumeric | ( | ) | const |
bool Json::Value::isObject | ( | ) | const |
bool Json::Value::isString | ( | ) | const |
bool Json::Value::isUInt | ( | ) | const |
bool Json::Value::operator! | ( | ) | const |
Return isNull()
bool Json::Value::operator!= | ( | const Value & | other | ) | const |
bool Json::Value::operator< | ( | const Value & | other | ) | const |
bool Json::Value::operator<= | ( | const Value & | other | ) | const |
bool Json::Value::operator== | ( | const Value & | other | ) | const |
bool Json::Value::operator> | ( | const Value & | other | ) | const |
bool Json::Value::operator>= | ( | const Value & | other | ) | const |
Value& Json::Value::operator[] | ( | const char * | key | ) |
Access an object value by name, create a null member if it does not exist.
const Value& Json::Value::operator[] | ( | const char * | key | ) | const |
Access an object value by name, returns null if there is no member with that name.
Value& Json::Value::operator[] | ( | const StaticString & | key | ) |
Access an object value by name, create a null member if it does not exist.
If the object as no entry for that name, then the member name used to store the new entry is not duplicated. Example of use:
Value& Json::Value::operator[] | ( | const std::string & | key | ) |
Access an object value by name, create a null member if it does not exist.
const Value& Json::Value::operator[] | ( | const std::string & | key | ) | const |
Access an object value by name, returns null if there is no member with that name.
Access an array element (zero based index ). If the array contains less than index element, then null value are inserted in the array so that its size is index+1. (You may need to say 'value[0u]' to get your compiler to distinguish this from the operator[] which takes a string.)
Access an array element (zero based index ) (You may need to say 'value[0u]' to get your compiler to distinguish this from the operator[] which takes a string.)
Value Json::Value::removeMember | ( | const char * | key | ) |
Value Json::Value::removeMember | ( | const std::string & | key | ) |
Same as removeMember(const char*)
void Json::Value::resize | ( | UInt | size | ) |
|
private |
void Json::Value::setComment | ( | const char * | comment, |
CommentPlacement | placement | ||
) |
Comments must be //... or /* ... */.
Referenced by ConfigToolBase.ConfigToolBase::apply().
void Json::Value::setComment | ( | const std::string & | comment, |
CommentPlacement | placement | ||
) |
Comments must be //... or /* ... */.
Referenced by ConfigToolBase.ConfigToolBase::apply().
UInt Json::Value::size | ( | ) | const |
Number of values in array or object.
Referenced by ntupleDataFormat._Collection::__iter__(), and ntupleDataFormat._Collection::__len__().
void Json::Value::swap | ( | Value & | other | ) |
Swap values.
std::string Json::Value::toStyledString | ( | ) | const |
ValueType Json::Value::type | ( | ) | const |
|
friend |
|
private |
|
private |
Definition at line 400 of file value.h.
Referenced by Modules.Service::__str__(), Modules.Service::_placeImpl(), Modules.ESSource::_placeImpl(), Modules.ESProducer::_placeImpl(), Modules.ESPrefer::copy(), Mixins._TypedParameterizable::dumpPython(), Modules.ESPrefer::dumpPythonAs(), Modules.Service::dumpSequencePython(), RandomRunSource.RandomRunSource::insertInto(), Modules.Service::insertInto(), ExternalGeneratorFilter.ExternalGeneratorFilter::insertInto(), Mixins._TypedParameterizable::insertInto(), Modules.ESSource::moduleLabel_(), Modules.ESProducer::moduleLabel_(), Modules.ESSource::nameInProcessDesc_(), Modules.ESProducer::nameInProcessDesc_(), and Modules.ESPrefer::nameInProcessDesc_().
|
private |