ffd7c6110b
Also strip redundant "_Parser_" prefix from private methods.
37 lines
795 B
C++
37 lines
795 B
C++
/*
|
|
* Copyright 2014, Augustin Cavalier (waddlesplash)
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef JSON_H
|
|
#define JSON_H
|
|
|
|
#include <Message.h>
|
|
#include <String.h>
|
|
|
|
namespace BPrivate {
|
|
|
|
class BJson {
|
|
public:
|
|
enum JsonObjectType {
|
|
JSON_TYPE_MAP = '_JTM',
|
|
JSON_TYPE_ARRAY = '_JTA'
|
|
};
|
|
|
|
public:
|
|
static status_t Parse(BMessage& message, const char* JSON);
|
|
static status_t Parse(BMessage& message, BString& JSON);
|
|
|
|
private:
|
|
static void _Parse(BMessage& message, BString& JSON);
|
|
static BString _ParseString(BString& JSON, int32& pos);
|
|
static double _ParseNumber(BString& JSON, int32& pos);
|
|
static bool _ParseConstant(BString& JSON, int32& pos,
|
|
const char* constant);
|
|
};
|
|
|
|
} // namespace BPrivate
|
|
|
|
using BPrivate::BJson;
|
|
|
|
#endif // JSON_H
|