1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00
SqMod/vendor/DPP/include/dpp/json_interface.h
Sandu Liviu Catalin cbd8f8b028 Add D++ library.
2023-03-23 20:20:44 +02:00

62 lines
2.1 KiB
C++

/************************************************************************************
*
* D++, A Lightweight C++ library for Discord
*
* Copyright 2022 Craig Edwards and D++ contributors
* (https://github.com/brainboxdotcc/DPP/graphs/contributors)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
************************************************************************************/
#pragma once
#include <dpp/export.h>
#include <dpp/exception.h>
#include <dpp/json_fwd.h>
namespace dpp {
/**
* @brief Represents an interface for an object that can optionally implement functions
* for converting to and from nlohmann::json. In the event either parse_from_json() or
* build_json() are not implemented and are called, they will throw at runtime.
*
* @tparam T Type of class that implements the interface
*/
template<typename T> struct DPP_EXPORT json_interface {
protected:
/* Must not destruct through pointer to json_interface. */
~json_interface() = default;
public:
/**
* @brief Convert object from nlohmann::json
*
* @param j nlohmann::json object
* @return T& Reference to self for fluent calling
*/
T& fill_from_json(nlohmann::json* j) {
throw dpp::logic_exception("JSON interface doesn't implement parse_from_json");
}
/**
* @brief Build JSON string from the object
*
* @param with_id Include the ID in the JSON
* @return std::string JSON string version of object
*/
virtual std::string build_json(bool with_id = false) const {
throw dpp::logic_exception("JSON interface doesn't implement build_json");
}
};
};