Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GsonParser converting longs to doubles #44

Open
cmuchinsky opened this issue Sep 7, 2018 · 9 comments
Open

GsonParser converting longs to doubles #44

cmuchinsky opened this issue Sep 7, 2018 · 9 comments

Comments

@cmuchinsky
Copy link

The GsonParser is converting longs to doubles within the numberHolder implementation. Instead of calling return jsonProvider.primitive(jsonReader.nextString()); perhaps something like this would work better:

final String value = jsonReader.nextString();
try {
    return jsonProvider.primitive(Long.parseLong(value));
}
catch (final NumberFormatException e) {
    return jsonProvider.primitive(Double.parseDouble(value));
}
@wanglingsong
Copy link
Owner

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

@cmuchinsky
Copy link
Author

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

@wanglingsong
Copy link
Owner

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.

@cmuchinsky
Copy link
Author

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.

@cmuchinsky
Copy link
Author

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

@wanglingsong
Copy link
Owner

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

@cmuchinsky
Copy link
Author

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.

@wanglingsong
Copy link
Owner

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

@cmuchinsky
Copy link
Author

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.

Repository owner deleted a comment from jccalbuquerque Feb 14, 2024
Repository owner deleted a comment from pavana21 Feb 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants