2014-07-03 13:58:08 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-03 13:58:08 +02:00
|
|
|
#pragma once
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-16 13:26:11 +02:00
|
|
|
#include "JsonValue.h"
|
2014-07-18 22:40:50 +02:00
|
|
|
#include "JsonObjectIterator.h"
|
2014-07-16 13:26:11 +02:00
|
|
|
|
2014-07-03 14:00:51 +02:00
|
|
|
namespace ArduinoJson
|
2014-01-11 15:05:35 +01:00
|
|
|
{
|
2014-07-03 14:00:51 +02:00
|
|
|
namespace Parser
|
|
|
|
{
|
|
|
|
class JsonArray;
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// A JSON Object (ie hash-table/dictionary)
|
2014-07-19 14:41:29 +02:00
|
|
|
class JsonObject : JsonValue
|
2014-07-03 14:00:51 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-07-21 15:20:02 +02:00
|
|
|
|
|
|
|
// Create an invalid JsonObject
|
2014-07-19 12:44:27 +02:00
|
|
|
JsonObject()
|
2014-07-18 16:46:01 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Convert a JsonValue into a JsonObject
|
2014-07-19 14:41:29 +02:00
|
|
|
JsonObject(JsonValue value)
|
|
|
|
: JsonValue(value)
|
2014-07-18 15:43:20 +02:00
|
|
|
{
|
2014-07-19 12:44:27 +02:00
|
|
|
|
2014-07-18 15:43:20 +02:00
|
|
|
}
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Tell if the object is valid
|
2014-07-16 13:41:00 +02:00
|
|
|
bool success()
|
|
|
|
{
|
2014-07-19 12:44:27 +02:00
|
|
|
return isObject();
|
2014-07-21 10:52:35 +02:00
|
|
|
}
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Get the value associated with the specified key.
|
2014-07-21 10:52:35 +02:00
|
|
|
JsonValue operator[](const char* key)
|
|
|
|
{
|
|
|
|
return JsonValue::operator[](key);
|
2014-07-16 13:41:00 +02:00
|
|
|
}
|
2014-07-16 13:26:11 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Tell if the specified key exists in the object.
|
2014-07-16 13:26:11 +02:00
|
|
|
bool containsKey(const char* key)
|
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key).success();
|
2014-07-16 13:26:11 +02:00
|
|
|
}
|
2014-07-18 22:40:50 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Get an iterator pointing at the beginning of the object
|
2014-07-18 22:40:50 +02:00
|
|
|
JsonObjectIterator begin()
|
|
|
|
{
|
2014-07-19 14:49:59 +02:00
|
|
|
return isObject() ? firstChild() : null();
|
2014-07-18 22:40:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Get an iterator pointing at the end of the object
|
2014-07-18 22:40:50 +02:00
|
|
|
JsonObjectIterator end()
|
|
|
|
{
|
2014-07-19 14:49:59 +02:00
|
|
|
return isObject() ? nextSibling() : null();
|
2014-07-18 22:40:50 +02:00
|
|
|
}
|
2014-07-16 13:26:11 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use operator[] instead
|
2014-07-16 13:53:56 +02:00
|
|
|
DEPRECATED JsonArray getArray(const char* key);
|
2014-07-16 13:26:11 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use operator[] instead
|
2014-07-16 13:53:56 +02:00
|
|
|
DEPRECATED bool getBool(const char* key)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key);
|
2014-07-16 13:26:11 +02:00
|
|
|
}
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use operator[] instead
|
2014-07-16 13:53:56 +02:00
|
|
|
DEPRECATED double getDouble(const char* key)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key);
|
2014-07-16 13:26:11 +02:00
|
|
|
}
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use operator[] instead
|
2014-07-18 16:46:01 +02:00
|
|
|
DEPRECATED JsonObject getHashTable(const char* key)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key);
|
2014-07-16 13:26:11 +02:00
|
|
|
}
|
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use operator[] instead
|
2014-07-16 13:53:56 +02:00
|
|
|
DEPRECATED long getLong(const char* key)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key);
|
2014-07-16 13:26:11 +02:00
|
|
|
}
|
2014-01-13 19:46:53 +01:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use operator[] instead
|
2014-07-16 13:53:56 +02:00
|
|
|
DEPRECATED char* getString(const char* key)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](key);
|
2014-07-18 15:43:20 +02:00
|
|
|
}
|
2014-07-03 14:00:51 +02:00
|
|
|
};
|
2014-07-18 16:46:01 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use JsonObject instead
|
2014-07-22 20:33:17 +02:00
|
|
|
DEPRECATED typedef JsonObject JsonHashTable;
|
2014-07-03 14:00:51 +02:00
|
|
|
}
|
|
|
|
}
|