aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-11 12:31:26 +0600
committerAlexander Tkachev2016-08-24 16:05:07 +0600
commita7fb8c72ab0ca60161f5acad42774340ee08abab (patch)
tree6232da60d69de18c83b4799434fd713312987937
parent79e6368b4214936dfbc52719259c4930bb7d0eaf (diff)
downloadscummvm-rg350-a7fb8c72ab0ca60161f5acad42774340ee08abab.tar.gz
scummvm-rg350-a7fb8c72ab0ca60161f5acad42774340ee08abab.tar.bz2
scummvm-rg350-a7fb8c72ab0ca60161f5acad42774340ee08abab.zip
CLOUD: SimpleJSON refactor
Resharper + manual methods & fields renaming.
-rw-r--r--backends/cloud/cloudthread.cpp101
-rw-r--r--backends/cloud/cloudthread.h5
-rw-r--r--common/json.cpp353
-rw-r--r--common/json.h138
4 files changed, 281 insertions, 316 deletions
diff --git a/backends/cloud/cloudthread.cpp b/backends/cloud/cloudthread.cpp
index ac405e0fd7..e375d6fb2b 100644
--- a/backends/cloud/cloudthread.cpp
+++ b/backends/cloud/cloudthread.cpp
@@ -12,14 +12,13 @@ void cloudThread(void *thread) {
};
void CloudThread::work() {
- if(firstTime) {
- firstTime = false;
+ if (_firstTime) {
+ _firstTime = false;
example1();
example2();
example3();
- } else {
- }
+ } else { }
}
/// SimpleJSON examples:
@@ -30,7 +29,7 @@ using Common::JSONArray;
using Common::JSONObject;
// Just some sample JSON text, feel free to change but could break demo
-const char* EXAMPLE = "\
+const char *EXAMPLE = "\
{ \
\"string_name\" : \"string\tvalue and a \\\"quote\\\" and a unicode char \\u00BE and a c:\\\\path\\\\ or a \\/unix\\/path\\/ :D\", \
\"bool_name\" : true, \
@@ -46,66 +45,54 @@ const char* EXAMPLE = "\
} ";
// Example 1
-void example1()
-{
+void example1() {
// Parse example data
- JSONValue *value = JSON::Parse(EXAMPLE);
+ JSONValue *value = JSON::parse(EXAMPLE);
// Did it go wrong?
- if (value == NULL)
- {
+ if (value == NULL) {
debug("Example code failed to parse, did you change it?\r\n");
- }
- else
- {
+ } else {
// Retrieve the main object
JSONObject root;
- if (value->IsObject() == false)
- {
+ if (value->isObject() == false) {
debug("The root element is not an object, did you change the example?\r\n");
- }
- else
- {
- root = value->AsObject();
+ } else {
+ root = value->asObject();
// Retrieving a string
- if (root.find("string_name") != root.end() && root["string_name"]->IsString())
- {
+ if (root.find("string_name") != root.end() && root["string_name"]->isString()) {
debug("string_name:\r\n");
debug("------------\r\n");
- debug(root["string_name"]->AsString().c_str());
+ debug(root["string_name"]->asString().c_str());
debug("\r\n\r\n");
}
// Retrieving a boolean
- if (root.find("bool_second") != root.end() && root["bool_second"]->IsBool())
- {
+ if (root.find("bool_second") != root.end() && root["bool_second"]->isBool()) {
debug("bool_second:\r\n");
debug("------------\r\n");
- debug(root["bool_second"]->AsBool() ? "it's true!" : "it's false!");
+ debug(root["bool_second"]->asBool() ? "it's true!" : "it's false!");
debug("\r\n\r\n");
}
// Retrieving an array
- if (root.find("array_letters") != root.end() && root["array_letters"]->IsArray())
- {
- JSONArray array = root["array_letters"]->AsArray();
+ if (root.find("array_letters") != root.end() && root["array_letters"]->isArray()) {
+ JSONArray array = root["array_letters"]->asArray();
debug("array_letters:\r\n");
debug("--------------\r\n");
- for (unsigned int i = 0; i < array.size(); i++)
- {
+ for (unsigned int i = 0; i < array.size(); i++) {
//wstringstream output;
- debug("[%d] => %s\r\n", i, array[i]->Stringify().c_str());
+ debug("[%d] => %s\r\n", i, array[i]->stringify().c_str());
}
debug("\r\n");
}
// Retrieving nested object
- if (root.find("sub_object") != root.end() && root["sub_object"]->IsObject())
- {
+ if (root.find("sub_object") != root.end() && root["sub_object"]->isObject()) {
debug("sub_object:\r\n");
debug("-----------\r\n");
- debug(root["sub_object"]->Stringify().c_str());
+ debug(root["sub_object"]->stringify().c_str());
debug("\r\n\r\n");
}
}
@@ -115,10 +102,9 @@ void example1()
}
// Example 3 : compact vs. prettyprint
-void example2()
-{
- const char* EXAMPLE3 =
- "{\
+void example2() {
+ const char *EXAMPLE3 =
+ "{\
\"SelectedTab\":\"Math\",\
\"Widgets\":[\
{\"WidgetPosition\":[0,369,800,582],\"WidgetIndex\":1,\"WidgetType\":\"WidgetCheckbox.1\"},\
@@ -133,14 +119,13 @@ void example2()
}";
// Parse example data
- JSONValue *value = JSON::Parse(EXAMPLE3);
- if (value)
- {
+ JSONValue *value = JSON::parse(EXAMPLE3);
+ if (value) {
debug("-----------\r\n");
- debug(value->Stringify().c_str());
+ debug(value->stringify().c_str());
debug("\r\n");
debug("-----------\r\n");
- debug(value->Stringify(true).c_str());
+ debug(value->stringify(true).c_str());
debug("\r\n");
debug("-----------\r\n");
}
@@ -150,42 +135,34 @@ void example2()
}
// Example 4 : List keys in an object.
-void example3()
-{
+void example3() {
// Parse the example.
- JSONValue *main_object = JSON::Parse(EXAMPLE);
- if (main_object == NULL)
- {
+ JSONValue *main_object = JSON::parse(EXAMPLE);
+ if (main_object == NULL) {
debug("Example code failed to parse, did you change it?\r\n");
- }
- else if (!main_object->IsObject())
- {
+ } else if (!main_object->isObject()) {
debug("Example code is not an object, did you change it?\r\n");
delete main_object;
- }
- else
- {
+ } else {
// Print the main object.
debug("Main object:\r\n");
- debug(main_object->Stringify(true).c_str());
+ debug(main_object->stringify(true).c_str());
debug("-----------\r\n");
// Fetch the keys and print them out.
- Common::Array<Common::String> keys = main_object->ObjectKeys();
+ Common::Array<Common::String> keys = main_object->objectKeys();
Common::Array<Common::String>::iterator iter = keys.begin();
- while (iter != keys.end())
- {
+ while (iter != keys.end()) {
debug("Key: ");
debug((*iter).c_str());
debug("\r\n");
// Get the key's value.
- JSONValue *key_value = main_object->Child((*iter).c_str());
- if (key_value)
- {
+ JSONValue *key_value = main_object->child((*iter).c_str());
+ if (key_value) {
debug("Value: ");
- debug(key_value->Stringify().c_str());
+ debug(key_value->stringify().c_str());
debug("\r\n");
debug("-----------\r\n");
}
diff --git a/backends/cloud/cloudthread.h b/backends/cloud/cloudthread.h
index dcab42f6ae..ce448b7274 100644
--- a/backends/cloud/cloudthread.h
+++ b/backends/cloud/cloudthread.h
@@ -26,9 +26,10 @@
void cloudThread(void *thread); //this one is passed to TimerManager in main()
class CloudThread {
- bool firstTime;
+ bool _firstTime;
public:
- CloudThread(): firstTime(true) {};
+ CloudThread(): _firstTime(true) {};
+
void work();
};
diff --git a/common/json.cpp b/common/json.cpp
index f84ad70eb8..a0bab11995 100644
--- a/common/json.cpp
+++ b/common/json.cpp
@@ -21,28 +21,28 @@
*/
/*
- * Files JSON.cpp and JSONValue.cpp part of the SimpleJSON Library - http://mjpa.in/json
- *
- * Copyright (C) 2010 Mike Anchor
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
+* Files JSON.cpp and JSONValue.cpp part of the SimpleJSON Library - http://mjpa.in/json
+*
+* Copyright (C) 2010 Mike Anchor
+*
+* Permission is hereby granted, free of charge, to any person obtaining a copy
+* of this software and associated documentation files (the "Software"), to deal
+* in the Software without restriction, including without limitation the rights
+* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+* copies of the Software, and to permit persons to whom the Software is
+* furnished to do so, subject to the following conditions:
+*
+* The above copyright notice and this permission notice shall be included in
+* all copies or substantial portions of the Software.
+*
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+* THE SOFTWARE.
+*/
#include "JSON.h"
@@ -78,18 +78,18 @@ JSON::JSON() {}
*
* @return JSONValue* Returns a JSON Value representing the root, or NULL on error
*/
-JSONValue* JSON::Parse(const char* data) {
+JSONValue *JSON::parse(const char *data) {
// Skip any preceding whitespace, end of data = no JSON = fail
- if (!SkipWhitespace(&data))
+ if (!skipWhitespace(&data))
return NULL;
// We need the start of a value here now...
- JSONValue* value = JSONValue::Parse(&data);
+ JSONValue *value = JSONValue::parse(&data);
if (value == NULL)
return NULL;
// Can be white space now and should be at the end of the string then...
- if (SkipWhitespace(&data)) {
+ if (skipWhitespace(&data)) {
delete value;
return NULL;
}
@@ -107,9 +107,9 @@ JSONValue* JSON::Parse(const char* data) {
*
* @return String Returns a JSON encoded string representation of the given value
*/
-String JSON::Stringify(const JSONValue* value) {
+String JSON::stringify(const JSONValue *value) {
if (value != NULL)
- return value->Stringify();
+ return value->stringify();
else
return "";
}
@@ -123,7 +123,7 @@ String JSON::Stringify(const JSONValue* value) {
*
* @return bool Returns true if there is more data, or false if the end of the text was reached
*/
-bool JSON::SkipWhitespace(const char** data) {
+bool JSON::skipWhitespace(const char **data) {
while (**data != 0 && (**data == ' ' || **data == '\t' || **data == '\r' || **data == '\n'))
(*data)++;
@@ -141,7 +141,7 @@ bool JSON::SkipWhitespace(const char** data) {
*
* @return bool Returns true on success, false on failure
*/
-bool JSON::ExtractString(const char** data, String& str) {
+bool JSON::extractString(const char **data, String &str) {
str = "";
while (**data != 0) {
@@ -239,7 +239,7 @@ bool JSON::ExtractString(const char** data, String& str) {
*
* @return double Returns the double value of the number found
*/
-double JSON::ParseInt(const char** data) {
+double JSON::parseInt(const char **data) {
double integer = 0;
while (**data != 0 && **data >= '0' && **data <= '9')
integer = integer * 10 + (*(*data)++ - '0');
@@ -256,7 +256,7 @@ double JSON::ParseInt(const char** data) {
*
* @return double Returns the double value of the decimal found
*/
-double JSON::ParseDecimal(const char** data) {
+double JSON::parseDecimal(const char **data) {
double decimal = 0.0;
double factor = 0.1;
while (**data != 0 && **data >= '0' && **data <= '9') {
@@ -276,11 +276,11 @@ double JSON::ParseDecimal(const char** data) {
*
* @return JSONValue* Returns a pointer to a JSONValue object on success, NULL on error
*/
-JSONValue* JSONValue::Parse(const char** data) {
+JSONValue *JSONValue::parse(const char **data) {
// Is it a string?
if (**data == '"') {
String str;
- if (!JSON::ExtractString(&(++(*data)), str))
+ if (!JSON::extractString(&(++(*data)), str))
return NULL;
else
return new JSONValue(str);
@@ -311,7 +311,7 @@ JSONValue* JSONValue::Parse(const char** data) {
if (**data == '0')
(*data)++;
else if (**data >= '1' && **data <= '9')
- number = JSON::ParseInt(data);
+ number = JSON::parseInt(data);
else
return NULL;
@@ -326,7 +326,7 @@ JSONValue* JSONValue::Parse(const char** data) {
// Find the decimal and sort the decimal place out
// Use ParseDecimal as ParseInt won't work with decimals less than 0.1
// thanks to Javier Abadia for the report & fix
- double decimal = JSON::ParseDecimal(data);
+ double decimal = JSON::parseDecimal(data);
// Save the number
number += decimal;
@@ -348,7 +348,7 @@ JSONValue* JSONValue::Parse(const char** data) {
return NULL;
// Sort the expo out
- double expo = JSON::ParseInt(data);
+ double expo = JSON::parseInt(data);
for (double i = 0.0; i < expo; i++)
number = neg_expo ? (number / 10.0) : (number * 10.0);
}
@@ -367,7 +367,7 @@ JSONValue* JSONValue::Parse(const char** data) {
while (**data != 0) {
// Whitespace at the start?
- if (!JSON::SkipWhitespace(data)) {
+ if (!JSON::skipWhitespace(data)) {
FREE_OBJECT(object);
return NULL;
}
@@ -380,13 +380,13 @@ JSONValue* JSONValue::Parse(const char** data) {
// We want a string now...
String name;
- if (!JSON::ExtractString(&(++(*data)), name)) {
+ if (!JSON::extractString(&(++(*data)), name)) {
FREE_OBJECT(object);
return NULL;
}
// More whitespace?
- if (!JSON::SkipWhitespace(data)) {
+ if (!JSON::skipWhitespace(data)) {
FREE_OBJECT(object);
return NULL;
}
@@ -398,13 +398,13 @@ JSONValue* JSONValue::Parse(const char** data) {
}
// More whitespace?
- if (!JSON::SkipWhitespace(data)) {
+ if (!JSON::skipWhitespace(data)) {
FREE_OBJECT(object);
return NULL;
}
// The value is here
- JSONValue* value = Parse(data);
+ JSONValue *value = parse(data);
if (value == NULL) {
FREE_OBJECT(object);
return NULL;
@@ -416,7 +416,7 @@ JSONValue* JSONValue::Parse(const char** data) {
object[name] = value;
// More whitespace?
- if (!JSON::SkipWhitespace(data)) {
+ if (!JSON::skipWhitespace(data)) {
FREE_OBJECT(object);
return NULL;
}
@@ -449,7 +449,7 @@ JSONValue* JSONValue::Parse(const char** data) {
while (**data != 0) {
// Whitespace at the start?
- if (!JSON::SkipWhitespace(data)) {
+ if (!JSON::skipWhitespace(data)) {
FREE_ARRAY(array);
return NULL;
}
@@ -461,7 +461,7 @@ JSONValue* JSONValue::Parse(const char** data) {
}
// Get the value
- JSONValue* value = Parse(data);
+ JSONValue *value = parse(data);
if (value == NULL) {
FREE_ARRAY(array);
return NULL;
@@ -471,7 +471,7 @@ JSONValue* JSONValue::Parse(const char** data) {
array.push_back(value);
// More whitespace?
- if (!JSON::SkipWhitespace(data)) {
+ if (!JSON::skipWhitespace(data)) {
FREE_ARRAY(array);
return NULL;
}
@@ -508,7 +508,7 @@ JSONValue* JSONValue::Parse(const char** data) {
* @access public
*/
JSONValue::JSONValue(/*NULL*/) {
- type = JSONType_Null;
+ _type = JSONType_Null;
}
/**
@@ -518,9 +518,9 @@ JSONValue::JSONValue(/*NULL*/) {
*
* @param char* m_char_value The string to use as the value
*/
-JSONValue::JSONValue(const char* m_char_value) {
- type = JSONType_String;
- string_value = new String(String(m_char_value));
+JSONValue::JSONValue(const char *charValue) {
+ _type = JSONType_String;
+ _stringValue = new String(String(charValue));
}
/**
@@ -530,9 +530,9 @@ JSONValue::JSONValue(const char* m_char_value) {
*
* @param String m_string_value The string to use as the value
*/
-JSONValue::JSONValue(const String& m_string_value) {
- type = JSONType_String;
- string_value = new String(m_string_value);
+JSONValue::JSONValue(const String &stringValue) {
+ _type = JSONType_String;
+ _stringValue = new String(stringValue);
}
/**
@@ -542,9 +542,9 @@ JSONValue::JSONValue(const String& m_string_value) {
*
* @param bool m_bool_value The bool to use as the value
*/
-JSONValue::JSONValue(bool m_bool_value) {
- type = JSONType_Bool;
- bool_value = m_bool_value;
+JSONValue::JSONValue(bool boolValue) {
+ _type = JSONType_Bool;
+ _boolValue = boolValue;
}
/**
@@ -554,9 +554,9 @@ JSONValue::JSONValue(bool m_bool_value) {
*
* @param double m_number_value The number to use as the value
*/
-JSONValue::JSONValue(double m_number_value) {
- type = JSONType_Number;
- number_value = m_number_value;
+JSONValue::JSONValue(double numberValue) {
+ _type = JSONType_Number;
+ _numberValue = numberValue;
}
/**
@@ -566,9 +566,9 @@ JSONValue::JSONValue(double m_number_value) {
*
* @param JSONArray m_array_value The JSONArray to use as the value
*/
-JSONValue::JSONValue(const JSONArray& m_array_value) {
- type = JSONType_Array;
- array_value = new JSONArray(m_array_value);
+JSONValue::JSONValue(const JSONArray &arrayValue) {
+ _type = JSONType_Array;
+ _arrayValue = new JSONArray(arrayValue);
}
/**
@@ -578,9 +578,9 @@ JSONValue::JSONValue(const JSONArray& m_array_value) {
*
* @param JSONObject m_object_value The JSONObject to use as the value
*/
-JSONValue::JSONValue(const JSONObject& m_object_value) {
- type = JSONType_Object;
- object_value = new JSONObject(m_object_value);
+JSONValue::JSONValue(const JSONObject &objectValue) {
+ _type = JSONType_Object;
+ _objectValue = new JSONObject(objectValue);
}
/**
@@ -590,38 +590,38 @@ JSONValue::JSONValue(const JSONObject& m_object_value) {
*
* @param JSONValue m_source The source JSONValue that is being copied
*/
-JSONValue::JSONValue(const JSONValue& m_source) {
- type = m_source.type;
+JSONValue::JSONValue(const JSONValue &source) {
+ _type = source._type;
- switch (type) {
+ switch (_type) {
case JSONType_String:
- string_value = new String(*m_source.string_value);
+ _stringValue = new String(*source._stringValue);
break;
case JSONType_Bool:
- bool_value = m_source.bool_value;
+ _boolValue = source._boolValue;
break;
case JSONType_Number:
- number_value = m_source.number_value;
+ _numberValue = source._numberValue;
break;
case JSONType_Array: {
- JSONArray source_array = *m_source.array_value;
+ JSONArray source_array = *source._arrayValue;
JSONArray::iterator iter;
- array_value = new JSONArray();
+ _arrayValue = new JSONArray();
for (iter = source_array.begin(); iter != source_array.end(); iter++)
- array_value->push_back(new JSONValue(**iter));
+ _arrayValue->push_back(new JSONValue(**iter));
break;
}
case JSONType_Object: {
- JSONObject source_object = *m_source.object_value;
- object_value = new JSONObject();
+ JSONObject source_object = *source._objectValue;
+ _objectValue = new JSONObject();
JSONObject::iterator iter;
for (iter = source_object.begin(); iter != source_object.end(); iter++) {
String name = (*iter)._key;
- (*object_value)[name] = new JSONValue(*((*iter)._value));
+ (*_objectValue)[name] = new JSONValue(*((*iter)._value));
}
break;
}
@@ -639,21 +639,19 @@ JSONValue::JSONValue(const JSONValue& m_source) {
* @access public
*/
JSONValue::~JSONValue() {
- if (type == JSONType_Array) {
+ if (_type == JSONType_Array) {
JSONArray::iterator iter;
- for (iter = array_value->begin(); iter != array_value->end(); iter++)
+ for (iter = _arrayValue->begin(); iter != _arrayValue->end(); iter++)
delete *iter;
- delete array_value;
- }
- else if (type == JSONType_Object) {
+ delete _arrayValue;
+ } else if (_type == JSONType_Object) {
JSONObject::iterator iter;
- for (iter = object_value->begin(); iter != object_value->end(); iter++) {
+ for (iter = _objectValue->begin(); iter != _objectValue->end(); iter++) {
delete (*iter)._value;
}
- delete object_value;
- }
- else if (type == JSONType_String) {
- delete string_value;
+ delete _objectValue;
+ } else if (_type == JSONType_String) {
+ delete _stringValue;
}
}
@@ -664,8 +662,8 @@ JSONValue::~JSONValue() {
*
* @return bool Returns true if it is a NULL value, false otherwise
*/
-bool JSONValue::IsNull() const {
- return type == JSONType_Null;
+bool JSONValue::isNull() const {
+ return _type == JSONType_Null;
}
/**
@@ -675,8 +673,8 @@ bool JSONValue::IsNull() const {
*
* @return bool Returns true if it is a String value, false otherwise
*/
-bool JSONValue::IsString() const {
- return type == JSONType_String;
+bool JSONValue::isString() const {
+ return _type == JSONType_String;
}
/**
@@ -686,8 +684,8 @@ bool JSONValue::IsString() const {
*
* @return bool Returns true if it is a Bool value, false otherwise
*/
-bool JSONValue::IsBool() const {
- return type == JSONType_Bool;
+bool JSONValue::isBool() const {
+ return _type == JSONType_Bool;
}
/**
@@ -697,8 +695,8 @@ bool JSONValue::IsBool() const {
*
* @return bool Returns true if it is a Number value, false otherwise
*/
-bool JSONValue::IsNumber() const {
- return type == JSONType_Number;
+bool JSONValue::isNumber() const {
+ return _type == JSONType_Number;
}
/**
@@ -708,8 +706,8 @@ bool JSONValue::IsNumber() const {
*
* @return bool Returns true if it is an Array value, false otherwise
*/
-bool JSONValue::IsArray() const {
- return type == JSONType_Array;
+bool JSONValue::isArray() const {
+ return _type == JSONType_Array;
}
/**
@@ -719,85 +717,85 @@ bool JSONValue::IsArray() const {
*
* @return bool Returns true if it is an Object value, false otherwise
*/
-bool JSONValue::IsObject() const {
- return type == JSONType_Object;
+bool JSONValue::isObject() const {
+ return _type == JSONType_Object;
}
/**
* Retrieves the String value of this JSONValue
-* Use IsString() before using this method.
+* Use isString() before using this method.
*
* @access public
*
* @return String Returns the string value
*/
-const String& JSONValue::AsString() const {
- return (*string_value);
+const String &JSONValue::asString() const {
+ return (*_stringValue);
}
/**
* Retrieves the Bool value of this JSONValue
-* Use IsBool() before using this method.
+* Use isBool() before using this method.
*
* @access public
*
* @return bool Returns the bool value
*/
-bool JSONValue::AsBool() const {
- return bool_value;
+bool JSONValue::asBool() const {
+ return _boolValue;
}
/**
* Retrieves the Number value of this JSONValue
-* Use IsNumber() before using this method.
+* Use isNumber() before using this method.
*
* @access public
*
* @return double Returns the number value
*/
-double JSONValue::AsNumber() const {
- return number_value;
+double JSONValue::asNumber() const {
+ return _numberValue;
}
/**
* Retrieves the Array value of this JSONValue
-* Use IsArray() before using this method.
+* Use isArray() before using this method.
*
* @access public
*
* @return JSONArray Returns the array value
*/
-const JSONArray& JSONValue::AsArray() const {
- return (*array_value);
+const JSONArray &JSONValue::asArray() const {
+ return (*_arrayValue);
}
/**
* Retrieves the Object value of this JSONValue
-* Use IsObject() before using this method.
+* Use isObject() before using this method.
*
* @access public
*
* @return JSONObject Returns the object value
*/
-const JSONObject& JSONValue::AsObject() const {
- return (*object_value);
+const JSONObject &JSONValue::asObject() const {
+ return (*_objectValue);
}
/**
* Retrieves the number of children of this JSONValue.
* This number will be 0 or the actual number of children
-* if IsArray() or IsObject().
+* if isArray() or isObject().
*
* @access public
*
* @return The number of children.
*/
-std::size_t JSONValue::CountChildren() const {
- switch (type) {
+std::size_t JSONValue::countChildren() const {
+ switch (_type) {
case JSONType_Array:
- return array_value->size();
+ return _arrayValue->size();
case JSONType_Object:
- return object_value->size();
+ return _objectValue->size();
default:
return 0;
}
@@ -805,71 +803,67 @@ std::size_t JSONValue::CountChildren() const {
/**
* Checks if this JSONValue has a child at the given index.
-* Use IsArray() before using this method.
+* Use isArray() before using this method.
*
* @access public
*
* @return bool Returns true if the array has a value at the given index.
*/
-bool JSONValue::HasChild(std::size_t index) const {
- if (type == JSONType_Array) {
- return index < array_value->size();
- }
- else {
+bool JSONValue::hasChild(std::size_t index) const {
+ if (_type == JSONType_Array) {
+ return index < _arrayValue->size();
+ } else {
return false;
}
}
/**
* Retrieves the child of this JSONValue at the given index.
-* Use IsArray() before using this method.
+* Use isArray() before using this method.
*
* @access public
*
* @return JSONValue* Returns JSONValue at the given index or NULL
* if it doesn't exist.
*/
-JSONValue* JSONValue::Child(std::size_t index) {
- if (index < array_value->size()) {
- return (*array_value)[index];
- }
- else {
+JSONValue *JSONValue::child(std::size_t index) {
+ if (index < _arrayValue->size()) {
+ return (*_arrayValue)[index];
+ } else {
return NULL;
}
}
/**
* Checks if this JSONValue has a child at the given key.
-* Use IsObject() before using this method.
+* Use isObject() before using this method.
*
* @access public
*
* @return bool Returns true if the object has a value at the given key.
*/
-bool JSONValue::HasChild(const char* name) const {
- if (type == JSONType_Object) {
- return object_value->find(name) != object_value->end();
- }
- else {
+bool JSONValue::hasChild(const char *name) const {
+ if (_type == JSONType_Object) {
+ return _objectValue->find(name) != _objectValue->end();
+ } else {
return false;
}
}
/**
* Retrieves the child of this JSONValue at the given key.
-* Use IsObject() before using this method.
+* Use isObject() before using this method.
*
* @access public
*
* @return JSONValue* Returns JSONValue for the given key in the object
* or NULL if it doesn't exist.
*/
-JSONValue* JSONValue::Child(const char* name) {
- JSONObject::const_iterator it = object_value->find(name);
- if (it != object_value->end()) {
+JSONValue *JSONValue::child(const char *name) {
+ JSONObject::const_iterator it = _objectValue->find(name);
+ if (it != _objectValue->end()) {
return it->_value;
- }
- else {
+ } else {
return NULL;
}
}
@@ -882,12 +876,12 @@ JSONValue* JSONValue::Child(const char* name) {
*
* @return std::vector<String> A vector containing the keys.
*/
-Array<String> JSONValue::ObjectKeys() const {
+Array<String> JSONValue::objectKeys() const {
Array<String> keys;
- if (type == JSONType_Object) {
- JSONObject::const_iterator iter = object_value->begin();
- while (iter != object_value->end()) {
+ if (_type == JSONType_Object) {
+ JSONObject::const_iterator iter = _objectValue->begin();
+ while (iter != _objectValue->end()) {
keys.push_back(iter->_key);
iter++;
@@ -906,9 +900,9 @@ Array<String> JSONValue::ObjectKeys() const {
*
* @return String Returns the JSON string
*/
-String JSONValue::Stringify(bool const prettyprint) const {
+String JSONValue::stringify(bool const prettyprint) const {
size_t const indentDepth = prettyprint ? 1 : 0;
- return StringifyImpl(indentDepth);
+ return stringifyImpl(indentDepth);
}
@@ -921,31 +915,31 @@ String JSONValue::Stringify(bool const prettyprint) const {
*
* @return String Returns the JSON string
*/
-String JSONValue::StringifyImpl(size_t const indentDepth) const {
+String JSONValue::stringifyImpl(size_t const indentDepth) const {
String ret_string;
size_t const indentDepth1 = indentDepth ? indentDepth + 1 : 0;
- String const indentStr = Indent(indentDepth);
- String const indentStr1 = Indent(indentDepth1);
+ String const indentStr = indent(indentDepth);
+ String const indentStr1 = indent(indentDepth1);
- switch (type) {
+ switch (_type) {
case JSONType_Null:
ret_string = "null";
break;
case JSONType_String:
- ret_string = StringifyString(*string_value);
+ ret_string = stringifyString(*_stringValue);
break;
case JSONType_Bool:
- ret_string = bool_value ? "true" : "false";
+ ret_string = _boolValue ? "true" : "false";
break;
case JSONType_Number: {
- if (isinf(number_value) || isnan(number_value))
+ if (isinf(_numberValue) || isnan(_numberValue))
ret_string = "null";
else {
char str[80];
- sprintf(str, "%.15Lf", number_value); //ss.precision(15);
+ sprintf(str, "%.15Lf", _numberValue); //ss.precision(15);
ret_string = str;
}
break;
@@ -953,12 +947,12 @@ String JSONValue::StringifyImpl(size_t const indentDepth) const {
case JSONType_Array: {
ret_string = indentDepth ? "[\n" + indentStr1 : "[";
- JSONArray::const_iterator iter = array_value->begin();
- while (iter != array_value->end()) {
- ret_string += (*iter)->StringifyImpl(indentDepth1);
+ JSONArray::const_iterator iter = _arrayValue->begin();
+ while (iter != _arrayValue->end()) {
+ ret_string += (*iter)->stringifyImpl(indentDepth1);
// Not at the end - add a separator
- if (++iter != array_value->end())
+ if (++iter != _arrayValue->end())
ret_string += ",";
}
ret_string += indentDepth ? "\n" + indentStr + "]" : "]";
@@ -967,14 +961,14 @@ String JSONValue::StringifyImpl(size_t const indentDepth) const {
case JSONType_Object: {
ret_string = indentDepth ? "{\n" + indentStr1 : "{";
- JSONObject::const_iterator iter = object_value->begin();
- while (iter != object_value->end()) {
- ret_string += StringifyString((*iter)._key);
+ JSONObject::const_iterator iter = _objectValue->begin();
+ while (iter != _objectValue->end()) {
+ ret_string += stringifyString((*iter)._key);
ret_string += ":";
- ret_string += (*iter)._value->StringifyImpl(indentDepth1);
+ ret_string += (*iter)._value->stringifyImpl(indentDepth1);
// Not at the end - add a separator
- if (++iter != object_value->end())
+ if (++iter != _objectValue->end())
ret_string += ",";
}
ret_string += indentDepth ? "\n" + indentStr + "}" : "}";
@@ -996,7 +990,7 @@ String JSONValue::StringifyImpl(size_t const indentDepth) const {
*
* @return String Returns the JSON string
*/
-String JSONValue::StringifyString(const String& str) {
+String JSONValue::stringifyString(const String &str) {
String str_out = "\"";
String::const_iterator iter = str.begin();
@@ -1006,23 +1000,17 @@ String JSONValue::StringifyString(const String& str) {
if (chr == '"' || chr == '\\' || chr == '/') {
str_out += '\\';
str_out += chr;
- }
- else if (chr == '\b') {
+ } else if (chr == '\b') {
str_out += "\\b";
- }
- else if (chr == '\f') {
+ } else if (chr == '\f') {
str_out += "\\f";
- }
- else if (chr == '\n') {
+ } else if (chr == '\n') {
str_out += "\\n";
- }
- else if (chr == '\r') {
+ } else if (chr == '\r') {
str_out += "\\r";
- }
- else if (chr == '\t') {
+ } else if (chr == '\t') {
str_out += "\\t";
- }
- else if (chr < ' ' || chr > 126) {
+ } else if (chr < ' ' || chr > 126) {
str_out += "\\u";
for (int i = 0; i < 4; i++) {
int value = (chr >> 12) & 0xf;
@@ -1032,8 +1020,7 @@ String JSONValue::StringifyString(const String& str) {
str_out += (char)('A' + (value - 10));
chr <<= 4;
}
- }
- else {
+ } else {
str_out += chr;
}
@@ -1053,7 +1040,7 @@ String JSONValue::StringifyString(const String& str) {
*
* @return String Returns the string
*/
-String JSONValue::Indent(size_t depth) {
+String JSONValue::indent(size_t depth) {
const size_t indent_step = 2;
depth ? --depth : 0;
String indentStr;
@@ -1061,4 +1048,4 @@ String JSONValue::Indent(size_t depth) {
return indentStr;
}
-} // End of namespace Common
+} // End of namespace Common
diff --git a/common/json.h b/common/json.h
index 9597102012..64a1e03c5e 100644
--- a/common/json.h
+++ b/common/json.h
@@ -21,28 +21,28 @@
*/
/*
- * Files JSON.h and JSONValue.h part of the SimpleJSON Library - http://mjpa.in/json
- *
- * Copyright (C) 2010 Mike Anchor
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
+* Files JSON.h and JSONValue.h part of the SimpleJSON Library - http://mjpa.in/json
+*
+* Copyright (C) 2010 Mike Anchor
+*
+* Permission is hereby granted, free of charge, to any person obtaining a copy
+* of this software and associated documentation files (the "Software"), to deal
+* in the Software without restriction, including without limitation the rights
+* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+* copies of the Software, and to permit persons to whom the Software is
+* furnished to do so, subject to the following conditions:
+*
+* The above copyright notice and this permission notice shall be included in
+* all copies or substantial portions of the Software.
+*
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+* THE SOFTWARE.
+*/
#ifndef COMMON_JSON_H
#define COMMON_JSON_H
@@ -103,11 +103,11 @@ static inline bool isinf(double x) {
// Simple function to check a string 's' has at least 'n' characters
// Tkachov: that's not wchar_t anymore, though it should work for C-strings too
-static inline bool simplejson_wcsnlen(const char* s, size_t n) {
+static inline bool simplejson_wcsnlen(const char *s, size_t n) {
if (s == 0)
return false;
- const char* save = s;
+ const char *save = s;
while (n-- > 0) {
if (*(save++) == 0) return false;
}
@@ -133,52 +133,52 @@ class JSONValue {
public:
JSONValue(/*NULL*/);
- JSONValue(const char* m_char_value);
- JSONValue(const String& m_string_value);
- JSONValue(bool m_bool_value);
- JSONValue(double m_number_value);
- JSONValue(const JSONArray& m_array_value);
- JSONValue(const JSONObject& m_object_value);
- JSONValue(const JSONValue& m_source);
+ JSONValue(const char *charValue);
+ JSONValue(const String &stringValue);
+ JSONValue(bool boolValue);
+ JSONValue(double numberValue);
+ JSONValue(const JSONArray &arrayValue);
+ JSONValue(const JSONObject &objectValue);
+ JSONValue(const JSONValue &source);
~JSONValue();
- bool IsNull() const;
- bool IsString() const;
- bool IsBool() const;
- bool IsNumber() const;
- bool IsArray() const;
- bool IsObject() const;
-
- const String& AsString() const;
- bool AsBool() const;
- double AsNumber() const;
- const JSONArray& AsArray() const;
- const JSONObject& AsObject() const;
-
- std::size_t CountChildren() const;
- bool HasChild(std::size_t index) const;
- JSONValue* Child(std::size_t index);
- bool HasChild(const char* name) const;
- JSONValue* Child(const char* name);
- Array<String> ObjectKeys() const;
-
- String Stringify(bool const prettyprint = false) const;
+ bool isNull() const;
+ bool isString() const;
+ bool isBool() const;
+ bool isNumber() const;
+ bool isArray() const;
+ bool isObject() const;
+
+ const String &asString() const;
+ bool asBool() const;
+ double asNumber() const;
+ const JSONArray &asArray() const;
+ const JSONObject &asObject() const;
+
+ size_t countChildren() const;
+ bool hasChild(size_t index) const;
+ JSONValue *child(size_t index);
+ bool hasChild(const char *name) const;
+ JSONValue *child(const char *name);
+ Array<String> objectKeys() const;
+
+ String stringify(bool const prettyprint = false) const;
protected:
- static JSONValue* Parse(const char** data);
+ static JSONValue *parse(const char **data);
private:
- static String StringifyString(const String& str);
- String StringifyImpl(size_t const indentDepth) const;
- static String Indent(size_t depth);
+ static String stringifyString(const String &str);
+ String stringifyImpl(size_t const indentDepth) const;
+ static String indent(size_t depth);
- JSONType type;
+ JSONType _type;
union {
- bool bool_value;
- double number_value;
- String* string_value;
- JSONArray* array_value;
- JSONObject* object_value;
+ bool _boolValue;
+ double _numberValue;
+ String *_stringValue;
+ JSONArray *_arrayValue;
+ JSONObject *_objectValue;
};
};
@@ -189,17 +189,17 @@ class JSON {
friend class JSONValue;
public:
- static JSONValue* Parse(const char* data);
- static String Stringify(const JSONValue* value);
+ static JSONValue *parse(const char *data);
+ static String stringify(const JSONValue *value);
protected:
- static bool SkipWhitespace(const char** data);
- static bool ExtractString(const char** data, String& str);
- static double ParseInt(const char** data);
- static double ParseDecimal(const char** data);
+ static bool skipWhitespace(const char **data);
+ static bool extractString(const char **data, String &str);
+ static double parseInt(const char **data);
+ static double parseDecimal(const char **data);
private:
JSON();
};
-} // End of namespace Common
+} // End of namespace Common
#endif