#ifndef SRC_JSON_PARSER_H_ #define SRC_JSON_PARSER_H_ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #include #include #include #include "util.h" #include "v8.h" namespace node { // This is intended to be used to get some top-level fields out of a JSON // without having to spin up a full Node.js environment that unnecessarily // complicates things. class JSONParser { public: JSONParser(); ~JSONParser() {} bool Parse(const std::string& content); std::optional GetTopLevelStringField(std::string_view field); std::optional GetTopLevelBoolField(std::string_view field); private: // We might want a lighter-weight JSON parser for this use case. But for now // using V8 is good enough. static void FreeIsolate(v8::Isolate* isolate); std::unique_ptr allocator_; DeleteFnPtr isolate_; v8::HandleScope handle_scope_; v8::Global context_; v8::Context::Scope context_scope_; v8::Global content_; bool parsed_ = false; }; } // namespace node #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #endif // SRC_JSON_PARSER_H_