-
Notifications
You must be signed in to change notification settings - Fork 110
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 support for reading system e-expressions #961
Merged
popematt
merged 2 commits into
amazon-ion:ion-11-encoding
from
popematt:read-system-macros
Oct 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
2 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
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 | ||||
---|---|---|---|---|---|---|
|
@@ -5934,5 +5934,54 @@ public void prefixedAnnotatedContainerInsideDelimitedAnnotatedContainerPreserves | |||||
closeAndCount(); | ||||||
} | ||||||
|
||||||
|
||||||
@ParameterizedTest(name = "[{index}] {0}") | ||||||
@CsvSource({ | ||||||
// (:values 0) (:values 1) | ||||||
"EF 01 01 60 EF 01 01 61 01", | ||||||
// (:values (: values 0)) 1 | ||||||
"EF 01 01 EF 01 01 60 61 01", | ||||||
// (:values) 0 (:values) 1 | ||||||
"EF 01 00 60 EF 01 00 61 01", | ||||||
// TODO: Determine why the state isn't being properly set after invoking a macro that produces nothing | ||||||
// (:values) (:values 0) 1 | ||||||
// "EF 01 00 EF 01 01 60 61 01", | ||||||
}) | ||||||
public void invokeValuesUsingSystemMacroOpcode(String bytes) throws Exception { | ||||||
invokeValuesUsingSystemMacroOpcodeHelper(true, bytes); | ||||||
invokeValuesUsingSystemMacroOpcodeHelper(false, bytes); | ||||||
} | ||||||
|
||||||
@ParameterizedTest(name = "[{index}] {0}") | ||||||
@CsvSource({ | ||||||
// (:values (:: ) ) 0 1 | ||||||
"EF 01 02 01 F0 60 61 01", | ||||||
// (:values 0 1) // using length-prefixed expression group | ||||||
"EF 01 02 07 60 61 01", | ||||||
// (:values 0 1) // using delimited expression group | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Is this right? |
||||||
"EF 01 02 01 60 61 01 F0", | ||||||
// (:values (:: 0) (:values (:: 1)) | ||||||
"EF 01 02 03 60 EF 01 02 05 61 01", | ||||||
// (:values (:values 0 1)) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I guess we could choose not to use the expression group syntax for all of these, even though that's how they're encoded in binary... |
||||||
"EF 01 01 EF 01 02 07 60 61 01", | ||||||
}) | ||||||
public void invokeValuesWithExpressionGroupsUsingSystemMacroOpcode(String bytes) throws Exception { | ||||||
invokeValuesUsingSystemMacroOpcodeHelper(true, bytes); | ||||||
// TODO: Determine why the checkpoint in the cursor isn't being set correctly before calling slowFillValue() | ||||||
// specifically while reading from a length-prefixed expression group | ||||||
// invokeValuesUsingSystemMacroOpcodeHelper(false, bytes); | ||||||
} | ||||||
|
||||||
private void invokeValuesUsingSystemMacroOpcodeHelper(boolean constructFromBytes, String bytes) throws Exception { | ||||||
byte[] input = withIvm(1, hexStringToByteArray(cleanCommentedHexBytes(bytes))); | ||||||
readerBuilder = readerBuilder.withIncrementalReadingEnabled(false); | ||||||
reader = readerFor(readerBuilder, constructFromBytes, input); | ||||||
assertSequence( | ||||||
next(IonType.INT), intValue(0), | ||||||
next(IonType.INT), intValue(1), | ||||||
next(null) | ||||||
); | ||||||
} | ||||||
|
||||||
// TODO Ion 1.1 symbol tables with all kinds of annotation encodings (opcodes E4 - E9, inline and SID) | ||||||
} |
Oops, something went wrong.
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.
Is this right?
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.
Either one is legal since we can use the implicit rest param for the argument to
values
. I've only used(:: )
in some places to make it clear that the encoding is an empty expression group or a single-arg expression group.If you have a preference for always being explicit about expression groups in the tests here, I can change it.