I'm trying to code a simple json to struct (and back) conversion by using tag_invoke
overload of boost::json
lib.
Those are my structs:
template<class T>
void extract( boost::json::object const& obj, T& t, boost::json::string_view key )
{
t = boost::json::value_to<T>( obj.at( key ) );
};
struct CRDApp {
std::string type;
std::string image;
uint32_t replicas;
friend CRDApp tag_invoke( boost::json::value_to_tag<CRDApp>, boost::json::value const& jv )
{
CRDApp app;
boost::json::object const& obj = jv.as_object();
extract( obj, app.type, "type" );
extract( obj, app.image, "image" );
extract( obj, app.replicas, "replicas" );
return app;
}
friend void tag_invoke( boost::json::value_from_tag, boost::json::value& jv, CRDApp const& app )
{
jv = {
{ "type" , app.type },
{ "image", app.image },
{ "replicas", app.replicas }
};
}
};
struct CRDSpec {
std::string _namespace;
std::vector<CRDApp> apps;
friend CRDSpec tag_invoke( boost::json::value_to_tag<CRDSpec>, boost::json::value const& jv )
{
CRDSpec spec;
boost::json::object const& obj = jv.as_object();
extract( obj, spec._namespace, "namespace" );
extract( obj, spec.apps, "apps" );
return spec;
}
friend void tag_invoke( boost::json::value_from_tag, boost::json::value& jv, CRDSpec const& spec )
{
jv = {
{ "namespace" , spec._namespace },
{ "apps", spec.apps }
};
}
};
I've tested the json to struct conversion and is working fine, but once I've added the tag_invoke
in order to convert from struct to json, the code is not compiling anymore with error:
error: no matching function for call to 'boost::json::value::value(const std::vector<CRDApp>&, std::remove_reference<boost::json::storage_ptr&>::type)'
35 | return value(
| ^~~~~~
36 | *reinterpret_cast<
| ~~~~~~~~~~~~~~~~~~
37 | T const*>(p),
| ~~~~~~~~~~~~~
38 | std::move(sp));
| ~~~~~~~~~~~~~~
If I comment out the { "apps", spec.apps }
line, the code compile again. Docs say it should automatically handle standard containers like std::vector
.
Am I missing something?
The whole idea of the tag_invoke customization is not that you get "magic" or implicit conversions. You have to call it:
Live On Coliru
Prints