mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
#include <util/json.hpp>
|
|
#include <util/string_view.hpp>
|
|
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace json
|
|
{
|
|
struct NlohmannJSONParser : public IParser
|
|
{
|
|
NlohmannJSONParser(size_t contentSize)
|
|
: m_Buf(contentSize + 1), m_Offset(0)
|
|
{
|
|
assert(contentSize != 0);
|
|
}
|
|
|
|
std::vector< char > m_Buf;
|
|
size_t m_Offset;
|
|
|
|
bool
|
|
FeedData(const char* buf, size_t sz)
|
|
{
|
|
if(m_Offset + sz > m_Buf.size() - 1)
|
|
return false;
|
|
std::copy(buf, buf + sz, m_Buf.begin());
|
|
m_Offset += sz;
|
|
m_Buf[m_Offset] = 0;
|
|
return true;
|
|
}
|
|
|
|
Result
|
|
Parse(nlohmann::json& obj) const
|
|
{
|
|
if(m_Offset < m_Buf.size() - 1)
|
|
return eNeedData;
|
|
|
|
try
|
|
{
|
|
obj = nlohmann::json::parse(m_Buf.data());
|
|
return eDone;
|
|
}
|
|
catch(const nlohmann::json::exception&)
|
|
{
|
|
return eParseError;
|
|
}
|
|
}
|
|
};
|
|
|
|
IParser*
|
|
MakeParser(size_t contentSize)
|
|
{
|
|
return new NlohmannJSONParser(contentSize);
|
|
}
|
|
|
|
} // namespace json
|
|
} // namespace llarp
|