31#ifndef DW_FRAMEWORK_JSONPARAMETERPROVIDER_HPP_
32#define DW_FRAMEWORK_JSONPARAMETERPROVIDER_HPP_
36#include <modern-json/json.hpp>
66 nlohmann::json
data()
const;
73 nlohmann::json
const*
getJson(dw::core::StringView
const& key)
const;
76 bool getBool(dw::core::StringView
const& key,
bool& out)
const;
78 bool getInt8(dw::core::StringView
const& key, int8_t& out)
const;
80 bool getInt16(dw::core::StringView
const& key, int16_t& out)
const;
82 bool getInt32(dw::core::StringView
const& key, int32_t& out)
const;
84 bool getInt64(dw::core::StringView
const& key, int64_t& out)
const;
86 bool getUint8(dw::core::StringView
const& key, uint8_t& out)
const;
88 bool getUint16(dw::core::StringView
const& key, uint16_t& out)
const;
90 bool getUint32(dw::core::StringView
const& key, uint32_t& out)
const;
92 bool getUint64(dw::core::StringView
const& key, uint64_t& out)
const;
94 bool getFloat32(dw::core::StringView
const& key, float32_t& out)
const;
96 bool getFloat64(dw::core::StringView
const& key, float64_t& out)
const;
98 bool getStringView(dw::core::StringView
const& key, dw::core::StringView& out)
const;
101 bool getVectorInt8(dw::core::StringView
const& key, std::vector<int8_t>& out)
const;
103 bool getVectorInt16(dw::core::StringView
const& key, std::vector<int16_t>& out)
const;
105 bool getVectorInt32(dw::core::StringView
const& key, std::vector<int32_t>& out)
const;
107 bool getVectorInt64(dw::core::StringView
const& key, std::vector<int64_t>& out)
const;
109 bool getVectorUint8(dw::core::StringView
const& key, std::vector<uint8_t>& out)
const;
111 bool getVectorUint16(dw::core::StringView
const& key, std::vector<uint16_t>& out)
const;
113 bool getVectorUint32(dw::core::StringView
const& key, std::vector<uint32_t>& out)
const;
115 bool getVectorUint64(dw::core::StringView
const& key, std::vector<uint64_t>& out)
const;
124 bool getBoolByIndex(dw::core::StringView
const& key,
size_t const index,
bool& out)
const;
126 bool getInt8ByIndex(dw::core::StringView
const& key,
size_t const index, int8_t& out)
const;
128 bool getInt16ByIndex(dw::core::StringView
const& key,
size_t const index, int16_t& out)
const;
130 bool getInt32ByIndex(dw::core::StringView
const& key,
size_t const index, int32_t& out)
const;
132 bool getInt64ByIndex(dw::core::StringView
const& key,
size_t const index, int64_t& out)
const;
134 bool getUint8ByIndex(dw::core::StringView
const& key,
size_t const index, uint8_t& out)
const;
136 bool getUint16ByIndex(dw::core::StringView
const& key,
size_t const index, uint16_t& out)
const;
138 bool getUint32ByIndex(dw::core::StringView
const& key,
size_t const index, uint32_t& out)
const;
140 bool getUint64ByIndex(dw::core::StringView
const& key,
size_t const index, uint64_t& out)
const;
142 bool getFloat32ByIndex(dw::core::StringView
const& key,
size_t const index, float32_t& out)
const;
144 bool getFloat64ByIndex(dw::core::StringView
const& key,
size_t const index, float64_t& out)
const;
146 bool getStringViewByIndex(dw::core::StringView
const& key,
size_t const index, dw::core::StringView& out)
const;
150 nlohmann::json
const* m_data;
The additional interface a ParameterProvider can implement so it can be registered at a TypeBasedPara...
A parameter provider which retrieves parameter values from JSON data.
bool getInt32(dw::core::StringView const &key, int32_t &out) const
Handler function to retrieve a int32_t value.
bool getVectorUint16(dw::core::StringView const &key, std::vector< uint16_t > &out) const
Handler function to retrieve a vector of uint16_t value.
bool getVectorInt8(dw::core::StringView const &key, std::vector< int8_t > &out) const
Handler function to retrieve a vector of int8_t value.
bool getFloat64(dw::core::StringView const &key, float64_t &out) const
Handler function to retrieve a float64_t value.
bool getVectorInt16(dw::core::StringView const &key, std::vector< int16_t > &out) const
Handler function to retrieve a vector of int16_t value.
~JsonParameterProvider() override=default
Destructor.
bool getUint32ByIndex(dw::core::StringView const &key, size_t const index, uint32_t &out) const
Handler function to retrieve a uint32_t value from an array by index.
bool getInt16(dw::core::StringView const &key, int16_t &out) const
Handler function to retrieve a int16_t value.
bool getFloat64ByIndex(dw::core::StringView const &key, size_t const index, float64_t &out) const
Handler function to retrieve a float64_t value from an array by index.
bool getInt8ByIndex(dw::core::StringView const &key, size_t const index, int8_t &out) const
Handler function to retrieve a int8_t value from an array by index.
bool getUint16ByIndex(dw::core::StringView const &key, size_t const index, uint16_t &out) const
Handler function to retrieve a uint16_t value from an array by index.
bool getInt8(dw::core::StringView const &key, int8_t &out) const
Handler function to retrieve a int8_t value.
nlohmann::json const * getJson(dw::core::StringView const &key) const
Get JSON value for the passed key.
bool getFloat32ByIndex(dw::core::StringView const &key, size_t const index, float32_t &out) const
Handler function to retrieve a float32_t value from an array by index.
bool getUint8(dw::core::StringView const &key, uint8_t &out) const
Handler function to retrieve a uint8_t value.
bool getVectorFloat32(dw::core::StringView const &key, std::vector< float32_t > &out) const
Handler function to retrieve a vector of float32_t value.
bool getVectorUint8(dw::core::StringView const &key, std::vector< uint8_t > &out) const
Handler function to retrieve a vector of uint8_t value.
JsonParameterProvider(JsonParameterProvider const &)=default
Copy constructor.
bool getVectorInt64(dw::core::StringView const &key, std::vector< int64_t > &out) const
Handler function to retrieve a vector of int64_t value.
JsonParameterProvider(nlohmann::json const *const data) noexcept
Constructor.
bool getVectorUint64(dw::core::StringView const &key, std::vector< uint64_t > &out) const
Handler function to retrieve a vector of uint64_t value.
bool getVectorUint32(dw::core::StringView const &key, std::vector< uint32_t > &out) const
Handler function to retrieve a vector of uint32_t value.
nlohmann::json data() const
Get the JSON data.
bool getBoolByIndex(dw::core::StringView const &key, size_t const index, bool &out) const
Handler function to retrieve a bool value from an array by index.
bool getBool(dw::core::StringView const &key, bool &out) const
Handler function to retrieve a bool value.
bool getUint16(dw::core::StringView const &key, uint16_t &out) const
Handler function to retrieve a uint16_t value.
bool getVectorStringView(dw::core::StringView const &key, std::vector< dw::core::StringView > &out) const
Handler function to retrieve a vector of dw::core::StringView value.
bool getInt32ByIndex(dw::core::StringView const &key, size_t const index, int32_t &out) const
Handler function to retrieve a int32_t value from an array by index.
bool getFloat32(dw::core::StringView const &key, float32_t &out) const
Handler function to retrieve a float32_t value.
bool getUint32(dw::core::StringView const &key, uint32_t &out) const
Handler function to retrieve a uint32_t value.
bool getInt64(dw::core::StringView const &key, int64_t &out) const
Handler function to retrieve a int64_t value.
bool getStringViewByIndex(dw::core::StringView const &key, size_t const index, dw::core::StringView &out) const
Handler function to retrieve a dw::core::StringView value from an array by index.
JsonParameterProvider & operator=(JsonParameterProvider const &) &=default
Copy assignment operator.
bool getStringView(dw::core::StringView const &key, dw::core::StringView &out) const
Handler function to retrieve a dw::core::StringView value.
bool getVectorFloat64(dw::core::StringView const &key, std::vector< float64_t > &out) const
Handler function to retrieve a vector of float64_t value.
bool getInt64ByIndex(dw::core::StringView const &key, size_t const index, int64_t &out) const
Handler function to retrieve a int64_t value from an array by index.
JsonParameterProvider(JsonParameterProvider &&)=default
Move constructor.
bool getVectorInt32(dw::core::StringView const &key, std::vector< int32_t > &out) const
Handler function to retrieve a vector of int32_t value.
void setJson(nlohmann::json const *const data) noexcept
Set the JSON data.
bool getInt16ByIndex(dw::core::StringView const &key, size_t const index, int16_t &out) const
Handler function to retrieve a int16_t value from an array by index.
bool getUint64ByIndex(dw::core::StringView const &key, size_t const index, uint64_t &out) const
Handler function to retrieve a uint64_t value from an array by index.
void registerAt(TypeBasedParameterProvider &provider) const override
bool getUint8ByIndex(dw::core::StringView const &key, size_t const index, uint8_t &out) const
Handler function to retrieve a uint8_t value from an array by index.
bool getUint64(dw::core::StringView const &key, uint64_t &out) const
Handler function to retrieve a uint64_t value.
JsonParameterProvider & operator=(JsonParameterProvider &&) &=default
Move assignment operator.
A parameter provider which dispatches the retrieval of the parameter value to registered handlers whi...