Giter Site home page Giter Site logo

Comments (8)

grisumbras avatar grisumbras commented on May 30, 2024

Step 2 doesn't compile for me at all. Can you please provide an actual minimal, complete and verifiable example (MCVE)?

Although, let's consider this one:

#include <boost/json.hpp>
#include <cassert>

int main()
{
        uint8_t test = 8;
        value test_value = value( serialize(value_from(test)) ); // (1); notice explicit constructor
        auto test2 = value_to<uint8_t>(test_value); // (2)
        assert( test == test2 );
        return 0;
}

Here (1) converts the integer test to json::value, then serializes that into std::string, then assigns that string to a new json::value. This is equivalent to doing value test_value = "8";

(2) tries to convert that JSON string into a number, and predictably fails. But the error is "not a number".

Then, I guess, this is still not something that you are doing. So, please provide an MCVE.

from json.

DUOLabs333 avatar DUOLabs333 commented on May 30, 2024

This replicates it:

#include <boost/json/src.hpp>
using namespace boost::json;
#include <cassert>

int main()
{		
		object test;
        test["value"]=160;
        object test_new = parse( serialize(test) ).as_object(); // (1); notice explicit constructor
        auto test2 = value_to<char>(test_new["value"]);
        printf("%d\n",test2);
        return 0;
}

from json.

grisumbras avatar grisumbras commented on May 30, 2024

Seems like 160 is outside of the domain of your implmentation's char. This implies, that your char is signed and has the domain [-128;127].

from json.

DUOLabs333 avatar DUOLabs333 commented on May 30, 2024

Oh --- as it turns out, the previous library I used (nlohmann) silently failed, so I didn't notice that this was an issue.

from json.

DUOLabs333 avatar DUOLabs333 commented on May 30, 2024

Is there a way to get the same behavior and ignore the exception (I'm OK with the values wrapping around)?

from json.

grisumbras avatar grisumbras commented on May 30, 2024
auto c = static_cast<char>( value_to<int>(test_new["value"]) );

from json.

grisumbras avatar grisumbras commented on May 30, 2024

If you actually have a more complex structure, where the char is deep inside another object, you would have to use contextual conversions. See an example here: https://godbolt.org/z/TK4dhWPEr

from json.

DUOLabs333 avatar DUOLabs333 commented on May 30, 2024

Thanks!

from json.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.