mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-08 03:30:36 +00:00
52 lines
1019 B
C++
52 lines
1019 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#ifdef USE_BOOST_JSON
|
|
# include <boost/json.hpp>
|
|
#endif
|
|
|
|
#ifdef USE_NLOHMANN_JSON
|
|
# include "nlohmann/json.hpp"
|
|
#endif
|
|
|
|
#ifdef USE_JSONCPP_JSON
|
|
# include <memory>
|
|
# include <json/json.h>
|
|
#endif
|
|
|
|
class opcode_test_suite_t final {
|
|
private:
|
|
#ifdef USE_JSONCPP_JSON
|
|
static std::unique_ptr<Json::CharReader> m_reader;
|
|
#endif
|
|
|
|
[[nodiscard]] static std::string read(std::string path);
|
|
|
|
std::string m_path;
|
|
#ifdef USE_BOOST_JSON
|
|
boost::json::value m_raw;
|
|
#endif
|
|
#ifdef USE_NLOHMANN_JSON
|
|
nlohmann::json m_raw;
|
|
#endif
|
|
#ifdef USE_RAPIDJSON_JSON
|
|
rapidjson::Document m_raw;
|
|
#endif
|
|
#ifdef USE_JSONCPP_JSON
|
|
Json::Value m_raw;
|
|
#endif
|
|
|
|
public:
|
|
opcode_test_suite_t(std::string path);
|
|
|
|
[[nodiscard]] constexpr const auto& path() const noexcept { return m_path; }
|
|
[[nodiscard]] constexpr const auto& raw() const noexcept { return m_raw; }
|
|
|
|
#ifdef USE_BOOST_JSON
|
|
[[nodiscard]] const boost::json::array& get_array() const noexcept;
|
|
#endif
|
|
|
|
void load();
|
|
};
|