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-17 13:58:30 +02:00
|
|
|
#include "JsonArrayIterator.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
|
|
|
|
{
|
2014-07-18 16:46:01 +02:00
|
|
|
class JsonObject;
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// A JSON array
|
2014-07-19 14:41:29 +02:00
|
|
|
class JsonArray : JsonValue
|
2014-07-18 15:43:20 +02:00
|
|
|
{
|
2014-07-03 14:00:51 +02:00
|
|
|
public:
|
2014-01-11 15:05:35 +01:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Create an invalid array
|
2014-07-19 12:44:27 +02:00
|
|
|
JsonArray()
|
|
|
|
{
|
2014-07-18 15:43:20 +02:00
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Convert a JsonValue into a JsonArray
|
2014-07-19 14:41:29 +02:00
|
|
|
JsonArray(JsonValue value)
|
|
|
|
: JsonValue(value)
|
2014-07-17 13:12:12 +02:00
|
|
|
{
|
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Tell if the array is valid
|
2014-07-16 13:41:00 +02:00
|
|
|
bool success()
|
|
|
|
{
|
2014-07-19 12:44:27 +02:00
|
|
|
return isArray();
|
2014-07-16 13:41:00 +02:00
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Get the JsonValue at specified index
|
2014-07-21 10:52:35 +02:00
|
|
|
JsonValue operator[](int index)
|
|
|
|
{
|
|
|
|
return JsonValue::operator[](index);
|
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Get the size of the array
|
2014-07-16 14:01:04 +02:00
|
|
|
int size()
|
2014-07-03 14:00:51 +02:00
|
|
|
{
|
2014-07-19 14:55:16 +02:00
|
|
|
return isArray() ? childrenCount() : 0;
|
2014-07-03 14:00:51 +02:00
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Get an iterator pointing to the beginning of the array
|
2014-07-17 13:58:30 +02:00
|
|
|
JsonArrayIterator begin()
|
|
|
|
{
|
2014-07-19 14:55:16 +02:00
|
|
|
return isArray() ? firstChild() : null();
|
2014-07-17 13:58:30 +02:00
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Gets an iterator pointing to the end of the array
|
2014-07-17 13:58:30 +02:00
|
|
|
JsonArrayIterator end()
|
|
|
|
{
|
2014-07-19 14:55:16 +02:00
|
|
|
return isArray() ? nextSibling() : null();
|
2014-07-17 13:58:30 +02:00
|
|
|
}
|
2014-07-21 14:14:31 +02:00
|
|
|
|
2014-07-21 15:20:02 +02:00
|
|
|
// Obsolete: Use size() instead
|
2014-07-16 14:01:04 +02:00
|
|
|
DEPRECATED int getLength()
|
|
|
|
{
|
|
|
|
return size();
|
|
|
|
}
|
2014-07-21 14:14:31 +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(int index)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](index);
|
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(int index)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](index);
|
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(int index)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](index);
|
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(int index);
|
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(int index)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](index);
|
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 char* getString(int index)
|
2014-07-16 13:26:11 +02:00
|
|
|
{
|
2014-07-19 14:41:29 +02:00
|
|
|
return operator[](index);
|
2014-07-18 15:43:20 +02:00
|
|
|
}
|
2014-07-03 14:00:51 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|