mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
65 lines
1.2 KiB
C++
65 lines
1.2 KiB
C++
#ifndef __ABYSS_JSON_JSON_HPP
|
|
#define __ABYSS_JSON_JSON_HPP
|
|
|
|
#include <memory>
|
|
//#if __cplusplus >= 201703L
|
|
#if 0
|
|
#include <unordered_map>
|
|
#include <any>
|
|
namespace abyss
|
|
{
|
|
namespace json
|
|
{
|
|
typedef std::unordered_map< std::string, std::any > Object;
|
|
}
|
|
} // namespace abyss
|
|
#else
|
|
#include <rapidjson/document.h>
|
|
namespace abyss
|
|
{
|
|
namespace json
|
|
{
|
|
typedef rapidjson::Document Document;
|
|
typedef rapidjson::Value Value;
|
|
} // namespace json
|
|
} // namespace abyss
|
|
#endif
|
|
namespace abyss
|
|
{
|
|
namespace json
|
|
{
|
|
struct IParser
|
|
{
|
|
virtual ~IParser(){};
|
|
|
|
/// result from feeding data to parser
|
|
enum Result
|
|
{
|
|
/// we need more data to finish parsing
|
|
eNeedData,
|
|
/// we have parsed the object fully
|
|
eDone,
|
|
/// we have a parsing syntax error
|
|
eParseError
|
|
};
|
|
|
|
/// feed data to parser return true if successful
|
|
virtual bool
|
|
FeedData(const char *buf, size_t sz) = 0;
|
|
/// parse internal buffer
|
|
virtual Result
|
|
Parse(Document &obj) const = 0;
|
|
};
|
|
|
|
/// create new parser
|
|
IParser *
|
|
MakeParser(size_t contentSize);
|
|
|
|
void
|
|
ToString(const json::Document &obj, std::string &out);
|
|
|
|
} // namespace json
|
|
} // namespace abyss
|
|
|
|
#endif
|