JsonHashTable is now a wrapper on to of JsonValue

This commit is contained in:
Benoît Blanchon
2014-07-17 12:59:26 +02:00
parent b6e3a37ad9
commit f2579397d6
5 changed files with 60 additions and 48 deletions

View File

@ -3,46 +3,12 @@
* Benoit Blanchon 2014 - MIT License
*/
#include <string.h> // for strcmp()
#include "JsonHashTable.h"
#include "JsonArray.h"
#include "JsonValue.h"
using namespace ArduinoJson::Parser;
/*
* Returns the token for the value associated with the specified key
*/
JsonValue JsonHashTable::operator [](const char* desiredKey)
{
// sanity check
if (!success() || desiredKey == 0)
return JsonValue();
// skip first token, it's the whole object
jsmntok_t* currentToken = tokens + 1;
// scan each keys
for (int i = 0; i < tokens[0].size / 2 ; i++)
{
// get key token string
char* key = JsonValue(json, currentToken);
// compare with desired name
if (strcmp(desiredKey, key) == 0)
{
// return the value token that follows the key token
return JsonValue(json, currentToken + 1);
}
// move forward: key + value + nested tokens
currentToken += 2 + getNestedTokenCount(currentToken + 1);
}
// nothing found, return NULL
return JsonValue();
}
DEPRECATED JsonArray JsonHashTable::getArray(const char* key)
{
return (JsonArray) (*this)[key];

View File

@ -14,9 +14,8 @@ namespace ArduinoJson
{
class JsonArray;
class JsonHashTable : public JsonObjectBase
class JsonHashTable
{
friend class JsonParserBase;
friend class JsonValue;
public:
@ -25,50 +24,55 @@ namespace ArduinoJson
bool success()
{
return JsonObjectBase::success() && tokens->type == JSMN_OBJECT;
return value.success();
}
JsonValue operator[](const char* key);
JsonValue operator[](const char* key)
{
return value[key];
}
bool containsKey(const char* key)
{
return (*this)[key].success();
return value[key];
}
DEPRECATED JsonArray getArray(const char* key);
DEPRECATED bool getBool(const char* key)
{
return (bool) (*this)[key];
return value[key];
}
DEPRECATED double getDouble(const char* key)
{
return (double) (*this)[key];
return value[key];
}
DEPRECATED JsonHashTable getHashTable(const char* key)
{
return (JsonHashTable) (*this)[key];
return value[key];
}
DEPRECATED long getLong(const char* key)
{
return (long) (*this)[key];
return value[key];
}
DEPRECATED char* getString(const char* key)
{
return (char*) (*this)[key];
return value[key];
}
private:
JsonHashTable(char* json, jsmntok_t* tokens)
: JsonObjectBase(json, tokens)
JsonHashTable(JsonValue& value)
: value(value)
{
}
JsonValue value;
};
}
}

View File

@ -21,6 +21,8 @@ namespace ArduinoJson
{
class JsonObjectBase
{
friend class JsonHashTable;
public:
JsonObjectBase()

View File

@ -4,6 +4,7 @@
*/
#include <stdlib.h> // for strtol, strtod
#include <string.h> // for strcmp()
#include "JsonArray.h"
#include "JsonHashTable.h"
#include "JsonValue.h"
@ -54,10 +55,47 @@ JsonValue::operator char*()
JsonValue::operator JsonArray()
{
return JsonArray(json, tokens);
return tokens->type != JSMN_ARRAY
? JsonArray(*this)
: JsonArray();
}
JsonValue::operator JsonHashTable()
{
return JsonHashTable(json, tokens);
return tokens->type != JSMN_OBJECT
? JsonHashTable(*this)
: JsonHashTable();
}
/*
* Returns the token for the value associated with the specified key
*/
JsonValue JsonValue::operator [](const char* desiredKey)
{
// sanity check
if (!json || !desiredKey || tokens->type != JSMN_OBJECT)
return JsonValue();
// skip first token, it's the whole object
jsmntok_t* currentToken = tokens + 1;
// scan each keys
for (int i = 0; i < tokens[0].size / 2; i++)
{
// get key token string
char* key = JsonValue(json, currentToken);
// compare with desired name
if (strcmp(desiredKey, key) == 0)
{
// return the value token that follows the key token
return JsonValue(json, currentToken + 1);
}
// move forward: key + value + nested tokens
currentToken += 2 + getNestedTokenCount(currentToken + 1);
}
// nothing found, return NULL
return JsonValue();
}

View File

@ -32,6 +32,8 @@ namespace ArduinoJson
operator char*();
operator JsonArray();
operator JsonHashTable();
JsonValue operator[](const char* key);
};
}
}