Files
ArduinoJson/JsonHashTable.cpp

69 lines
1.5 KiB
C++
Raw Normal View History

2014-01-11 15:05:35 +01:00
/*
* malloc-free JSON parser for Arduino
* Benoit Blanchon 2014 - MIT License
*/
2014-01-11 15:05:35 +01:00
#include "JsonArray.h"
#include "JsonHashTable.h"
#include <string.h> // for strcmp()
JsonHashTable::JsonHashTable(char* json, jsmntok_t* tokens)
: JsonObjectBase(json, tokens)
{
if (tokens[0].type != JSMN_OBJECT)
makeInvalid();
}
/*
* Returns the token for the value associated with the specified key
*/
jsmntok_t* JsonHashTable::getToken(char* desiredKey)
2014-01-11 15:05:35 +01:00
{
// sanity check
if (json == 0 || tokens == 0 || desiredKey == 0)
2014-01-11 15:05:35 +01:00
return 0;
// skip first token, it's the whole object
jsmntok_t* currentToken = tokens + 1;
2014-01-11 15:05:35 +01:00
// scan each keys
for (int i = 0; i < tokens[0].size / 2 ; i++)
{
// get key token string
char* key = getStringFromToken(currentToken);
2014-01-11 15:05:35 +01:00
// compare with desired name
if (strcmp(desiredKey, key) == 0)
2014-01-11 15:05:35 +01:00
{
// return the value token that follows the key token
return currentToken + 1;
2014-01-11 15:05:35 +01:00
}
// move forward: key + value + nested tokens
currentToken += 2 + getNestedTokenCount(currentToken + 1);
2014-01-11 15:05:35 +01:00
}
// nothing found, return NULL
return 0;
}
JsonArray JsonHashTable::getArray(char* key)
{
return JsonArray(json, getToken(key));
}
2014-01-11 15:18:19 +01:00
JsonHashTable JsonHashTable::getHashTable(char* key)
{
return JsonHashTable(json, getToken(key));
2014-01-11 15:18:19 +01:00
}
long JsonHashTable::getLong(char* key)
{
return getLongFromToken(getToken(key));
}
char* JsonHashTable::getString(char* key)
{
return getStringFromToken(getToken(key));
2014-01-11 15:05:35 +01:00
}