Giter Club home page Giter Club logo

Comments (9)

wanglingsong avatar wanglingsong commented on May 25, 2024

Did you test it? Are sure no any exception would be thrown when calling nextString() following "NUMBER" token?

from jsonsurfer.

cmuchinsky avatar cmuchinsky commented on May 25, 2024

Yes, using the attached snippet, it worked as expected. Per the JsonReader.nextString javadoc: If the next token is a number, this method will return its string form

from jsonsurfer.

wanglingsong avatar wanglingsong commented on May 25, 2024

I think it would introduce too much overhead for the potential two more parsing. If you really need long type, I think you can implement a custom JsonProvider.

from jsonsurfer.

cmuchinsky avatar cmuchinsky commented on May 25, 2024

Doing this at the provider level could work, however I believe the core issue is in the parser as that's where its forcing the long into a double via the call to jsonReader.nextDouble(). By the time it gets to the provider its already been turned into a double. The JsonReader class does internally keep track of whether its a long or double, but unfortunately it doesn't make that information available to public consumers. I will check if its possible to extend JsonReader to gain access to the peeked member, which if set to 15 indicates its a long vs a double.

from jsonsurfer.

cmuchinsky avatar cmuchinsky commented on May 25, 2024

Unfortunately it looks like JsonReader::peeked is package scoped and not protected

from jsonsurfer.

wanglingsong avatar wanglingsong commented on May 25, 2024

Actually, I'm curious about your use case? What kind of benefit can you gain from such conversion?

from jsonsurfer.

cmuchinsky avatar cmuchinsky commented on May 25, 2024

The use case is that the json we parse and filter needs to retain its original formatting so that when we do schema inference it doesn't change types from a long to a double.

from jsonsurfer.

wanglingsong avatar wanglingsong commented on May 25, 2024

So due to such a limitation of Gson, maybe you can try other JsonSurfer implementation, e.g. JacksonSurfer

from jsonsurfer.

cmuchinsky avatar cmuchinsky commented on May 25, 2024

Will give it a look, ideally I want an implementation that I can use in a streaming read and provider scenario. As the data is read and filtered with json path, the output is then fed to a provider that is simply streaming out the other side, that way if I hit a massive json document with a json path like $.* it wouldn't blow up trying to assemble the entire document in memory.

from jsonsurfer.

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.