mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 17:30:56 +00:00
91bd04a278
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
79 lines
1.7 KiB
C++
79 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#ifdef USE_BOOST_JSON
|
|
# include <boost/json.hpp>
|
|
#endif
|
|
|
|
#ifdef USE_RAPIDJSON_JSON
|
|
# include "rapidjson/rapidjson.h"
|
|
# include "rapidjson/document.h"
|
|
#endif
|
|
|
|
#ifdef USE_NLOHMANN_JSON
|
|
# include "nlohmann/json.hpp"
|
|
#endif
|
|
|
|
#ifdef USE_JSONCPP_JSON
|
|
# include <memory>
|
|
# include <json/json.h>
|
|
#endif
|
|
|
|
#ifdef USE_SIMDJSON_JSON
|
|
# include "simdjson/simdjson.h"
|
|
#endif
|
|
|
|
class opcode_test_suite_t final {
|
|
private:
|
|
#ifdef JSON_PREFER_REUSE_OF_PARSER
|
|
#ifdef USE_JSONCPP_JSON
|
|
static std::unique_ptr<Json::CharReader> m_parser;
|
|
#endif
|
|
#ifdef USE_SIMDJSON_JSON
|
|
// N.B.
|
|
// The parser must be kept for the lifetime of any parsed data.
|
|
// Therefore, it can only be used for one document at a time.
|
|
static simdjson::dom::parser m_parser;
|
|
#endif
|
|
#endif
|
|
|
|
[[nodiscard]] static std::string read(std::string path);
|
|
|
|
std::string m_path;
|
|
std::string m_contents;
|
|
#ifdef USE_BOOST_JSON
|
|
boost::json::value m_raw;
|
|
#endif
|
|
#ifdef USE_RAPIDJSON_JSON
|
|
rapidjson::Document m_raw;
|
|
#endif
|
|
#ifdef USE_NLOHMANN_JSON
|
|
nlohmann::json m_raw;
|
|
#endif
|
|
#ifdef USE_JSONCPP_JSON
|
|
Json::Value m_raw;
|
|
#endif
|
|
#ifdef USE_SIMDJSON_JSON
|
|
simdjson::dom::element m_raw;
|
|
#ifndef JSON_PREFER_REUSE_OF_PARSER
|
|
// N.B. The parser must be kept for the lifetime of any parsed data.
|
|
simdjson::dom::parser m_parser;
|
|
#endif
|
|
#endif
|
|
|
|
public:
|
|
opcode_test_suite_t(std::string path);
|
|
|
|
[[nodiscard]] constexpr const auto& path() const noexcept { return m_path; }
|
|
|
|
#ifdef JSON_PREFER_PASS_BY_VALUE
|
|
[[nodiscard]] const auto raw() const noexcept { return m_raw; }
|
|
#else
|
|
[[nodiscard]] constexpr const auto& raw() const noexcept { return m_raw; }
|
|
#endif
|
|
|
|
void load(); // Reads into contents
|
|
void parse(); // Parse the contents
|
|
};
|