-
Notifications
You must be signed in to change notification settings - Fork 50
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
add option to not parse beyond end of structure #435
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package dagjson | ||
|
||
import ( | ||
"bytes" | ||
"testing" | ||
|
||
"github.com/ipld/go-ipld-prime/datamodel" | ||
"github.com/ipld/go-ipld-prime/node/basicnode" | ||
) | ||
|
||
func TestNonGreedy(t *testing.T) { | ||
buf := bytes.NewBufferString(`{"a": 1}{"b": 2}`) | ||
opts := DecodeOptions{ | ||
ParseLinks: false, | ||
ParseBytes: false, | ||
DontParseBeyondEnd: true, | ||
} | ||
nb1 := basicnode.Prototype.Map.NewBuilder() | ||
err := opts.Decode(nb1, buf) | ||
if err != nil { | ||
t.Fatalf("first decode (%v)", err) | ||
} | ||
n1 := nb1.Build() | ||
if n1.Kind() != datamodel.Kind_Map { | ||
t.Errorf("expecting a map") | ||
} | ||
if _, err := n1.LookupByString("a"); err != nil { | ||
t.Fatalf("missing fist key") | ||
} | ||
nb2 := basicnode.Prototype.Map.NewBuilder() | ||
err = opts.Decode(nb2, buf) | ||
if err != nil { | ||
t.Fatalf("second decode (%v)", err) | ||
} | ||
n2 := nb2.Build() | ||
if n2.Kind() != datamodel.Kind_Map { | ||
t.Errorf("expecting a map") | ||
} | ||
if _, err := n2.LookupByString("b"); err != nil { | ||
t.Fatalf("missing second key") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@petar IIUC this is perhaps a nice config option, but only slightly helps fix the problem you're likely currently worrying about (i.e. streaming decodes of multiple dag-json objects for Reframe using Edelweiss).
Since the specific application format (in this case Reframe's HTTP+dag-json transport) has its own way of dealing with concatenating dag-json blobs (in this case appending
\n
) you're going to need some custom code anyhow to parse the\n
.At that point is it so different from just using
Unmarshal(na, json.NewDecoder(r), cfg)
directly and then trying to slurp up one more\n
before continuing instead of usingDecode
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue with this proposal is that
json.NewDecoder
won't decode bytes and other IPLD-specific objects. Right?The solution to Edelweiss' problem could be composed of two steps:
\n
-separated results.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just wanted to flag more concretely that this PR just allows for using:
DecodeOptions{ ParseLinks : true, ParseBytes: true, DontParseBeyondEnd : true }.Decode(na, r)
rather than:
Unmarshal(na, json.NewDecoder(r), DecodeOptions{ ParseLinks : true, ParseBytes: true })
.Is this config mostly about helping discoverability so people know how to do this (i.e. is the Unmarshal code path not obvious enough)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It turns out that Unmarshal is deprecated.