Giter Site home page Giter Site logo

Comments (2)

stephenberry avatar stephenberry commented on June 2, 2024

I've just merged initial support for direct BEVE to JSON conversion (#859). It is still not fully featured, but it supports most types you'd use. Variant support is a big one that is still lacking. This will continue to be improved.

Here are unit tests as examples:

suite beve_to_json_tests = [] {
   "beve_to_json bool"_test = [] {
      bool b = true;
      std::string buffer{};
      glz::write_binary(b, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"(true)");
   };
   
   "beve_to_json float"_test = [] {
      float v = 3.14f;
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"(3.14)") << json;
      float res{};
      expect(!glz::read_json(res, json));
      expect(v == res);
   };
   
   "beve_to_json string"_test = [] {
      std::string v = "Hello World";
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"("Hello World")") << json;
   };
   
   "beve_to_json std::map"_test = [] {
      std::map<std::string, int> v = {{"first", 1}, {"second", 2}, {"third", 3}};
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"({"first":1,"second":2,"third":3})") << json;
      
      expect(!glz::beve_to_json<glz::opts{.prettify = true}>(buffer, json));
      expect(json == //
R"({
   "first": 1,
   "second": 2,
   "third": 3
})") << json;
   };
   
   "beve_to_json std::vector<int32_t>"_test = [] {
      std::vector<int32_t> v = {1,2,3,4,5};
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"([1,2,3,4,5])") << json;
   };
   
   "beve_to_json std::vector<double>"_test = [] {
      std::vector<double> v = {1.0,2.0,3.0,4.0,5.0};
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"([1,2,3,4,5])") << json;
   };
   
   "beve_to_json std::vector<std::string>"_test = [] {
      std::vector<std::string> v = {"one", "two", "three"};
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"(["one","two","three"])") << json;
   };
   
   "beve_to_json std::tuple<int, std::string>"_test = [] {
      std::tuple<int, std::string> v = {99, "spiders"};
      std::string buffer{};
      glz::write_binary(v, buffer);
      
      std::string json{};
      expect(!glz::beve_to_json(buffer, json));
      expect(json == R"([99,"spiders"])") << json;
   };
};

from glaze.

stephenberry avatar stephenberry commented on June 2, 2024

Nearly the whole spec is supported as of #903. Thus closing this issue.

from glaze.

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.