2010-01-13 08:07:57 +08:00
|
|
|
// janssonxx - C++ wrapper for jansson
|
|
|
|
//
|
|
|
|
// author: Sean Middleditch <sean@middleditch.us>
|
|
|
|
//
|
|
|
|
// janssonxx is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the MIT license. See LICENSE for details.
|
|
|
|
|
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
#if !defined(JANSSONXX_H)
|
|
|
|
#define JANSSONXX_H 1
|
|
|
|
|
|
|
|
#include <string>
|
2010-01-13 07:29:45 +08:00
|
|
|
#include <ostream>
|
|
|
|
#include <istream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <cstdlib>
|
2010-01-12 17:10:09 +08:00
|
|
|
|
|
|
|
namespace jansson {
|
|
|
|
|
2010-01-12 20:13:26 +08:00
|
|
|
// include in the jansson namespace
|
|
|
|
#include <jansson.h>
|
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
class Iterator;
|
|
|
|
|
|
|
|
// represents any JSON value
|
|
|
|
class Value {
|
|
|
|
public:
|
|
|
|
// construct new Value with an undefined value
|
|
|
|
Value() : _value(0) {}
|
|
|
|
|
|
|
|
// free Value resources
|
|
|
|
~Value() { json_decref(_value); }
|
|
|
|
|
|
|
|
// copy an existing Value
|
|
|
|
Value(const Value& e) : _value(json_incref(e._value)) {}
|
|
|
|
|
|
|
|
// make a reference to an existing json_t value
|
|
|
|
explicit Value(json_t* value) : _value(json_incref(value)) {}
|
|
|
|
|
|
|
|
// copy an existing Value
|
|
|
|
Value& operator=(const Value& e) {
|
2010-01-12 20:26:30 +08:00
|
|
|
if (&e != this) {
|
|
|
|
json_decref(_value);
|
|
|
|
_value = json_incref(e._value);
|
|
|
|
}
|
2010-01-12 17:10:09 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load a file as a JSON value
|
|
|
|
static Value load_file(const char* path, json_error_t* error = 0) {
|
2010-01-12 20:26:30 +08:00
|
|
|
return Value::_take(json_load_file(path, error));
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// load a string as a JSON value
|
|
|
|
static Value load_string(const char* string, json_error_t* error = 0) {
|
2010-01-12 20:26:30 +08:00
|
|
|
return Value::_take(json_loads(string, error));
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
2010-01-12 20:20:17 +08:00
|
|
|
// write the value to a file
|
2010-01-14 10:34:17 +08:00
|
|
|
int save_file(const char* path, int flags = 0) const {
|
2010-01-12 20:20:17 +08:00
|
|
|
return json_dump_file(_value, path, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
// write the value to a string (caller must deallocate with free()!)
|
2010-01-14 10:34:17 +08:00
|
|
|
char* save_string(int flags = 0) const {
|
2010-01-12 20:20:17 +08:00
|
|
|
return json_dumps(_value, flags);
|
|
|
|
}
|
|
|
|
|
2010-01-12 17:26:47 +08:00
|
|
|
// construct Value from input
|
2010-01-12 20:26:30 +08:00
|
|
|
static Value from(const char* value) { return Value::_take(json_string(value)); }
|
2010-01-12 17:26:47 +08:00
|
|
|
static Value from(const std::string& value) { return from(value.c_str()); }
|
2010-01-12 20:26:30 +08:00
|
|
|
static Value from(bool value) { return Value::_take(value ? json_true() : json_false()); }
|
2010-01-13 08:17:11 +08:00
|
|
|
static Value from(signed int value) { return Value::_take(json_integer(value)); }
|
|
|
|
static Value from(unsigned int value) { return Value::_take(json_integer(value)); }
|
|
|
|
static Value from(signed short value) { return Value::_take(json_integer(value)); }
|
|
|
|
static Value from(unsigned short value) { return Value::_take(json_integer(value)); }
|
|
|
|
static Value from(signed long value) { return Value::_take(json_integer(value)); }
|
|
|
|
static Value from(unsigned long value) { return Value::_take(json_integer(value)); }
|
2010-01-14 10:32:44 +08:00
|
|
|
static Value from(float value) { return Value::_take(json_real(value)); }
|
2010-01-12 20:26:30 +08:00
|
|
|
static Value from(double value) { return Value::_take(json_real(value)); }
|
2010-01-12 17:26:47 +08:00
|
|
|
|
|
|
|
// create a new empty object
|
2010-01-12 20:26:30 +08:00
|
|
|
static Value object() { return Value::_take(json_object()); }
|
2010-01-12 17:26:47 +08:00
|
|
|
|
|
|
|
// create a new empty array
|
2010-01-12 20:26:30 +08:00
|
|
|
static Value array() { return Value::_take(json_array()); }
|
2010-01-12 17:26:47 +08:00
|
|
|
|
|
|
|
// create a new null value
|
2010-01-12 20:26:30 +08:00
|
|
|
static Value null() { return Value::_take(json_null()); }
|
2010-01-12 17:26:47 +08:00
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
// get the underlying json_t
|
2010-01-13 07:33:36 +08:00
|
|
|
json_t* as_json() const { return _value; }
|
2010-01-12 17:10:09 +08:00
|
|
|
|
2010-01-12 17:26:47 +08:00
|
|
|
// check value type
|
2010-01-12 17:10:09 +08:00
|
|
|
bool is_undefined() const { return _value == 0; }
|
|
|
|
bool is_object() const { return json_is_object(_value); }
|
|
|
|
bool is_array() const { return json_is_array(_value); }
|
|
|
|
bool is_string() const { return json_is_string(_value); }
|
|
|
|
bool is_integer() const { return json_is_integer(_value); }
|
|
|
|
bool is_real() const { return json_is_real(_value); }
|
|
|
|
bool is_number() const { return json_is_number(_value); }
|
|
|
|
bool is_true() const { return json_is_true(_value); }
|
|
|
|
bool is_false() const { return json_is_false(_value); }
|
|
|
|
bool is_boolean() const { return json_is_boolean(_value); }
|
|
|
|
bool is_null() const { return json_is_null(_value); }
|
|
|
|
|
|
|
|
// get size of array or object
|
|
|
|
unsigned int size() const {
|
|
|
|
if (is_object())
|
|
|
|
return json_object_size(_value);
|
|
|
|
else
|
2010-01-12 20:30:02 +08:00
|
|
|
return json_array_size(_value);
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
2010-01-12 17:26:47 +08:00
|
|
|
// get value at array index (const version)
|
2010-01-12 17:10:09 +08:00
|
|
|
const Value at(unsigned int index) const {
|
2010-01-12 20:30:02 +08:00
|
|
|
return Value(json_array_get(_value, index));
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const Value operator[](signed int index) const { return at(index); }
|
|
|
|
const Value operator[](unsigned int index) const { return at(index); }
|
|
|
|
const Value operator[](signed short index) const { return at(index); }
|
|
|
|
const Value operator[](unsigned short index) const { return at(index); }
|
|
|
|
const Value operator[](signed long index) const { return at(index); }
|
|
|
|
const Value operator[](unsigned long index) const { return at(index); }
|
|
|
|
|
2010-01-12 17:26:47 +08:00
|
|
|
// get value at array index (non-const version)
|
|
|
|
Value at(unsigned int index) {
|
2010-01-12 20:30:02 +08:00
|
|
|
return Value(json_array_get(_value, index));
|
2010-01-12 17:26:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Value operator[](signed int index) { return at(index); }
|
|
|
|
Value operator[](unsigned int index) { return at(index); }
|
|
|
|
Value operator[](signed short index) { return at(index); }
|
|
|
|
Value operator[](unsigned short index) { return at(index); }
|
|
|
|
Value operator[](signed long index) { return at(index); }
|
|
|
|
Value operator[](unsigned long index) { return at(index); }
|
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
// get object property
|
|
|
|
const Value get(const char* key) const {
|
2010-01-12 20:30:02 +08:00
|
|
|
return Value(json_object_get(_value, key));
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const Value get(const std::string& key) const { return get(key.c_str()); }
|
|
|
|
const Value operator[](const char* key) const { return get(key); }
|
|
|
|
const Value operator[](const std::string& key) const { return get(key.c_str()); }
|
|
|
|
|
|
|
|
// clear all array/object values
|
|
|
|
void clear() {
|
|
|
|
if (is_object())
|
|
|
|
json_object_clear(_value);
|
2010-01-12 20:30:02 +08:00
|
|
|
else
|
2010-01-12 17:10:09 +08:00
|
|
|
json_array_clear(_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get value cast to specified type
|
|
|
|
const char* as_cstring() const { return json_string_value(_value); }
|
2010-01-14 10:35:07 +08:00
|
|
|
std::string as_string() const {
|
|
|
|
const char* tmp = as_cstring();
|
|
|
|
return tmp == 0 ? "" : tmp;
|
|
|
|
}
|
2010-01-12 17:10:09 +08:00
|
|
|
int as_integer() const { return json_integer_value(_value); }
|
|
|
|
double as_real() const { return json_real_value(_value); }
|
|
|
|
double as_number() const { return json_number_value(_value); }
|
|
|
|
bool as_boolean() const { return is_true(); }
|
|
|
|
|
2010-01-12 17:26:47 +08:00
|
|
|
// set an object property (converts value to object is not one already)
|
2010-01-13 07:14:57 +08:00
|
|
|
Value& set_key(const char* key, const Value& value) {
|
2010-01-13 07:33:36 +08:00
|
|
|
json_object_set(_value, key, value.as_json());
|
2010-01-12 17:10:09 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-01-13 07:14:57 +08:00
|
|
|
Value& set_key(const std::string& key, const Value& value) {
|
|
|
|
return set_key(key.c_str(), value);
|
|
|
|
}
|
|
|
|
|
2010-01-12 17:26:47 +08:00
|
|
|
// set an array index (converts value to object is not one already)
|
2010-01-13 07:14:57 +08:00
|
|
|
Value& set_at(unsigned int index, const Value& value) {
|
2010-01-12 17:26:47 +08:00
|
|
|
if (index == size())
|
2010-01-13 07:33:36 +08:00
|
|
|
json_array_append(_value, value.as_json());
|
2010-01-12 17:26:47 +08:00
|
|
|
else
|
2010-01-13 07:33:36 +08:00
|
|
|
json_array_set(_value, index, value.as_json());
|
2010-01-12 17:10:09 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-01-13 08:17:11 +08:00
|
|
|
// delete an object key
|
|
|
|
Value& del_key(const char* key) {
|
|
|
|
json_object_del(_value, key);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value& del_key(const std::string& key) {
|
|
|
|
return del_key(key.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete an item from an array by index
|
|
|
|
Value& del_at(unsigned int index) {
|
|
|
|
json_array_remove(_value, index);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert an item into an array at a given index
|
|
|
|
Value& insert_at(unsigned int index, const Value& value) {
|
|
|
|
json_array_insert(_value, index, value.as_json());
|
|
|
|
return *this;
|
2010-01-13 07:14:57 +08:00
|
|
|
}
|
2010-01-12 17:26:47 +08:00
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
private:
|
2010-01-12 20:26:30 +08:00
|
|
|
// take ownership of a json_t (does not increase reference count)
|
|
|
|
static Value _take(json_t* json) {
|
|
|
|
Value v;
|
|
|
|
v._value = json;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
// internal value pointer
|
|
|
|
json_t* _value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// iterators over a JSON object
|
|
|
|
class Iterator {
|
|
|
|
public:
|
|
|
|
// construct a new iterator for a given object
|
|
|
|
Iterator(const Value& value) : _object(value), _iter(0) {
|
2010-01-13 07:33:36 +08:00
|
|
|
_iter = json_object_iter(_object.as_json());
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// increment iterator
|
|
|
|
void next() {
|
2010-01-13 07:33:36 +08:00
|
|
|
_iter = json_object_iter_next(_object.as_json(), _iter);
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Iterator& operator++() { next(); return *this; }
|
|
|
|
|
|
|
|
// test if iterator is still valid
|
|
|
|
bool valid() const { return _iter != 0; }
|
|
|
|
operator bool() const { return valid(); }
|
|
|
|
|
|
|
|
// get key
|
|
|
|
const char* ckey() const {
|
2010-01-12 20:30:02 +08:00
|
|
|
return json_object_iter_key(_iter);
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string key() const { return ckey(); }
|
|
|
|
|
|
|
|
// get value
|
|
|
|
const Value value() const {
|
2010-01-12 20:30:02 +08:00
|
|
|
return Value(json_object_iter_value(_iter));
|
2010-01-12 17:10:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// dereference value
|
|
|
|
const Value operator*() const { return value(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
// disallow copying
|
|
|
|
Iterator(const Iterator&);
|
|
|
|
Iterator& operator=(const Iterator&);
|
|
|
|
|
|
|
|
// object being iterated over
|
|
|
|
Value _object;
|
|
|
|
|
|
|
|
// iterator value
|
|
|
|
void* _iter;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace jansson
|
|
|
|
|
2010-01-13 07:29:45 +08:00
|
|
|
// stream JSON value out
|
|
|
|
std::ostream& operator<<(std::ostream& os, const jansson::Value& value) {
|
|
|
|
char* tmp = value.save_string();
|
2010-01-14 10:33:19 +08:00
|
|
|
if (tmp != 0) {
|
|
|
|
os << tmp;
|
|
|
|
free(tmp);
|
|
|
|
}
|
2010-01-13 07:29:45 +08:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
// read JSON value
|
|
|
|
std::istream& operator>>(std::istream& is, jansson::Value& value) {
|
|
|
|
std::stringstream tmp;
|
|
|
|
while (is)
|
|
|
|
tmp << static_cast<char>(is.get());
|
|
|
|
value = jansson::Value::load_string(tmp.str().c_str());
|
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
2010-01-12 17:10:09 +08:00
|
|
|
#endif
|