Giter VIP home page Giter VIP logo

Comments (5)

artwyman avatar artwyman commented on July 20, 2024 1

The Json type is immutable, but the Json::object type is just a std::map, so your code would work if the first line created a Json::object instead. You can use that map to build whatever data you want, then wrap it in as Json(data) when you're done modifying it. You can also extract the map from a Json using object_items(), copy it, mutate it, and use it to create a new Json, similar to a builder pattern.

from json11.

cdeil avatar cdeil commented on July 20, 2024

@artwyman Thanks for that info!

Your suggestion works nicely ... except if I want to fill a hierarchical Json::object incrementally I have to create temp local Json::object variables, right?

int main() {
    Json::object data;
    data["k1"] = 1;
    data["k2"] = "v";
    // this doesn't work:
    data["k3"] = Json::object();
    data["k3"]["k4"] = 42;
    // this works:
    Json::object k3;
    k3["k4"] = 42;
    data["k3"] = k3;
    return 0;
}

Or is there a way to have data["k3"] be non-const so that I can fill it?
Here's the error I get:

est.cpp:170:22: error: no viable overloaded '='
    data["k3"]["k4"] = 42;
    ~~~~~~~~~~~~~~~~ ^ ~~
./json11.hpp:63:7: note: candidate function (the implicit copy assignment operator) not viable: 'this' argument has type 'const json11::Json', but method is not marked const
class Json final {
      ^
./json11.hpp:63:7: note: candidate function (the implicit move assignment operator) not viable: 'this' argument has type 'const json11::Json', but method is not marked const
class Json final {
      ^
1 error generated.

from json11.

cdeil avatar cdeil commented on July 20, 2024

Should we close this issue or would it be useful if I added a short example how to do this to the README?

from json11.

artwyman avatar artwyman commented on July 20, 2024

Incremental construction won't work because the value type of the Json::object map is Json, which is immutable. You can build incrementally if you do it bottom-up. If you didn't care about the cost of copying, you could create a helper function which would take a Json, and a new key+value and return a new Json with that new value added.

Do you really need incremental updates here, though? For the case you mention, you could do it all in a single initializer like this:

Json data = {
    { "k1", 1 },
    { "k2", v },
    { "k3", Json::object { { "k4", 42 } }
};

from json11.

cdeil avatar cdeil commented on July 20, 2024

There's two reasons I wanted top-down incremental construction.

  1. I already have Python code that does it this way and wanted to just edit the syntax line by line to make it work in C++.
  2. The JSON objects I construct have 10 to 30 keys and I don't like C++ statements that span that many lines ... makes it hard to find the problem if a comma or curly brace is missing.

So now I'll code it as incremental bottom-up construction, which is OK.

@artwyman Thanks a lot for your help!!!

from json11.

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.