-
-
Notifications
You must be signed in to change notification settings - Fork 189
[feature] Support map atomization in XQuery 4.0 #6259
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
Open
joewiz
wants to merge
2
commits into
eXist-db:develop
Choose a base branch
from
joewiz:feature/xq4-atomization
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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 hidden or 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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,6 +23,7 @@ | |||||||||
|
|
||||||||||
| import org.exist.dom.persistent.DocumentSet; | ||||||||||
| import org.exist.xquery.functions.array.ArrayType; | ||||||||||
| import org.exist.xquery.functions.map.AbstractMapType; | ||||||||||
| import org.exist.xquery.util.ExpressionDumper; | ||||||||||
| import org.exist.xquery.value.Item; | ||||||||||
| import org.exist.xquery.value.Sequence; | ||||||||||
|
|
@@ -75,15 +76,25 @@ public static Sequence atomize(Sequence input) throws XPathException { | |||||||||
| if (input.isEmpty()) | ||||||||||
| {return Sequence.EMPTY_SEQUENCE;} | ||||||||||
| input = ArrayType.flatten(input); | ||||||||||
| if (input.hasOne()) {return | ||||||||||
| input.itemAt(0).atomize(); | ||||||||||
| if (input.hasOne()) { | ||||||||||
| final Item single = input.itemAt(0); | ||||||||||
| // XQ4: maps are atomizable — expand to their values before atomizing | ||||||||||
| if (single instanceof AbstractMapType && ((AbstractMapType) single).isXq4Atomizable()) { | ||||||||||
| return ((AbstractMapType) single).atomizeValues(); | ||||||||||
| } | ||||||||||
| return single.atomize(); | ||||||||||
| } | ||||||||||
|
|
||||||||||
| Item next; | ||||||||||
| final ValueSequence result = new ValueSequence(); | ||||||||||
| for(final SequenceIterator i = input.iterate(); i.hasNext(); ) { | ||||||||||
| next = i.nextItem(); | ||||||||||
| result.add(next.atomize()); | ||||||||||
| // XQ4: maps are atomizable — expand to their values before atomizing | ||||||||||
| if (next instanceof AbstractMapType && ((AbstractMapType) next).isXq4Atomizable()) { | ||||||||||
| result.addAll(((AbstractMapType) next).atomizeValues()); | ||||||||||
|
Member
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. Same as above
Suggested change
|
||||||||||
| } else { | ||||||||||
| result.add(next.atomize()); | ||||||||||
| } | ||||||||||
| } | ||||||||||
| return result; | ||||||||||
| } | ||||||||||
|
|
||||||||||
This file contains hidden or 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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -21,6 +21,7 @@ | |||||||||
| */ | ||||||||||
| package org.exist.xquery; | ||||||||||
|
|
||||||||||
| import org.exist.xquery.functions.map.AbstractMapType; | ||||||||||
| import org.exist.xquery.util.Error; | ||||||||||
| import org.exist.xquery.value.*; | ||||||||||
|
|
||||||||||
|
|
@@ -65,8 +66,17 @@ public Sequence eval(Sequence contextSequence, Item contextItem) | |||||||||
| final Sequence seq = step.eval(contextSequence, contextItem); | ||||||||||
| for (final SequenceIterator i = seq.iterate(); i.hasNext(); ) { | ||||||||||
| final Item item = i.nextItem(); | ||||||||||
| if (Type.subTypeOf(item.getType(), Type.FUNCTION)) | ||||||||||
| {throw new XPathException(this, ErrorCodes.FOTY0013, "Got a function item as operand in string concatenation");} | ||||||||||
| if (Type.subTypeOf(item.getType(), Type.FUNCTION)) { | ||||||||||
| // XQ4: maps are no longer function items for atomization purposes | ||||||||||
| if (item instanceof AbstractMapType && ((AbstractMapType) item).isXq4Atomizable()) { | ||||||||||
| final Sequence atomized = ((AbstractMapType) item).atomizeValues(); | ||||||||||
|
Member
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. Same here
Suggested change
|
||||||||||
| for (final SequenceIterator ai = atomized.iterate(); ai.hasNext(); ) { | ||||||||||
| concat.append(ai.nextItem().getStringValue()); | ||||||||||
| } | ||||||||||
| continue; | ||||||||||
| } | ||||||||||
| throw new XPathException(this, ErrorCodes.FOTY0013, "Got a function item as operand in string concatenation"); | ||||||||||
| } | ||||||||||
| concat.append(item.getStringValue()); | ||||||||||
| } | ||||||||||
| } | ||||||||||
|
|
||||||||||
This file contains hidden or 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.
Use direct cast using local variable here: