Giter VIP home page Giter VIP logo

Comments (5)

emirpasic avatar emirpasic commented on July 22, 2024

@genez my guess is that I misunderstood the question, please correct me if so. There is JSON serialization/deserialization: https://github.com/emirpasic/gods#serialization

Let me know if that is what you are looking for?

from gods.

genez avatar genez commented on July 22, 2024

I am talking about standard json encoding/decoding facilities as provided by stdlib:
https://blog.golang.org/json-and-go

If your structs implement these two functions (MarshalJSON, UnmarshalJSON) we are able to recursively marshal struct that are embedding one of your data structures in a seamless way.

I hope it's clear enough, feel free to ask for more details.

from gods.

emirpasic avatar emirpasic commented on July 22, 2024

@genez I get your point, the marshalling would be easy to implement, because the logic is already there.

However, unmarshalling is a bit problematic, if you get a JSON array, what should it be unmarshalled to? ArrayList, LinkedList, Stack, etc.

from gods.

genez avatar genez commented on July 22, 2024

Go's marshal stdlib requires the actual struct instance (a pointer to) that must be of the required type.
Maybe I can try to implement one so it becomes clear.

from gods.

emirpasic avatar emirpasic commented on July 22, 2024

@genez please do, just one example, e.g. for ArrayList.

You can make use of the already implemented GoDS deserialization:

  list := arraylist.New()
  json := []byte(`["a","b"]`)
  err := list.FromJSON(json)

from gods.

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.