Code Monkey home page Code Monkey logo

Comments (2)

chwarr avatar chwarr commented on July 18, 2024

I'm not entirely sure what you are trying to do. In your example, what members and values do you expect @object to have?

Right now, the schema string is a snippet of the Bond interface definition language. The code then
"coerces" this into a FastBinary payload. This is not a valid FastBinary payload.


Focusing on just Deserialize<dynamic>.From(reader), no, Bond does not support deserializing into dynamic objects out-of-the-box. You need to deserialize into a object with a known, fixed schema.

To handle arbitrary, unknown schemas one option is to move down a layer and use the protocol readers directly. See for example, issue #1162 "In C# implementation, how to parse to structs separated by BT_STOP_BASE", and issue #1163 "Correct way to read list of mapped values in C#" for examples of someone else processing payloads via readers. Tagged payloads like FastBinary do not include field names. You'll need to get that information from another source, like a SchemaDef that exactly matches the payload when it was created.

Another option would be to implement an algorithm similar to what's in DeserializerTransform but that has a target of a dynamic object. Note: DeserializerTransform isn't a public API, so you'll need to duplicate much of the code if you take this approach.


Related: issue #585, "Deserialize objects with incomplete or inexisting type information"

from bond.

chwarr avatar chwarr commented on July 18, 2024

Let me know if you have any follow up questions or additional details. I'm going to close this issue for now.

from bond.

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.