-
Notifications
You must be signed in to change notification settings - Fork 169
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
Support expressions in selectattr/rejectattr again, more efficiently v2 #454
Open
mattcoley
wants to merge
1
commit into
master
Choose a base branch
from
revert-453-revert-450-select-attr-expressions
base: master
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 all commits
Commits
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 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -10,11 +10,11 @@ | |||||||||||||||
import com.hubspot.jinjava.lib.exptest.ExpTest; | ||||||||||||||||
import com.hubspot.jinjava.util.ForLoop; | ||||||||||||||||
import com.hubspot.jinjava.util.ObjectIterator; | ||||||||||||||||
import com.hubspot.jinjava.util.Variable; | ||||||||||||||||
import java.util.ArrayList; | ||||||||||||||||
import java.util.Arrays; | ||||||||||||||||
import java.util.List; | ||||||||||||||||
import java.util.Map; | ||||||||||||||||
import java.util.concurrent.ThreadLocalRandom; | ||||||||||||||||
|
||||||||||||||||
@JinjavaDoc( | ||||||||||||||||
value = "Filters a sequence of objects by applying a test to an attribute of an object and only selecting the ones with the test succeeding.", | ||||||||||||||||
|
@@ -110,20 +110,32 @@ protected Object applyFilter( | |||||||||||||||
} | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
String tempValue = generateTempVariable(); | ||||||||||||||||
String expression = generateTempVariable(tempValue, attr); | ||||||||||||||||
ForLoop loop = ObjectIterator.getLoop(var); | ||||||||||||||||
while (loop.hasNext()) { | ||||||||||||||||
Object val = loop.next(); | ||||||||||||||||
interpreter.getContext().put(tempValue, val); | ||||||||||||||||
|
||||||||||||||||
Object attrVal = interpreter.resolveELExpression( | ||||||||||||||||
expression, | ||||||||||||||||
interpreter.getLineNumber() | ||||||||||||||||
); | ||||||||||||||||
|
||||||||||||||||
Object attrVal = new Variable( | ||||||||||||||||
interpreter, | ||||||||||||||||
String.format("%s.%s", "placeholder", attr) | ||||||||||||||||
) | ||||||||||||||||
.resolve(val); | ||||||||||||||||
if (acceptObjects == expTest.evaluate(attrVal, interpreter, expArgs)) { | ||||||||||||||||
result.add(val); | ||||||||||||||||
} | ||||||||||||||||
} | ||||||||||||||||
interpreter.getContext().removeResolvedExpression(expression); | ||||||||||||||||
|
||||||||||||||||
return result; | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
private String generateTempVariable() { | ||||||||||||||||
return "jj_temp_" + Math.abs(ThreadLocalRandom.current().nextInt()); | ||||||||||||||||
} | ||||||||||||||||
|
||||||||||||||||
private String generateTempVariable(String tempValue, String expression) { | ||||||||||||||||
return String.format("%s.%s", tempValue, expression).trim(); | ||||||||||||||||
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. The Those are the results: Benchmark Mode Cnt Score Error Units
StringConcatSimulation.concatWithConcatFunction ss 25 1.900 ± 0.120 ms/op
StringConcatSimulation.concatWithPlus ss 25 2.079 ± 0.438 ms/op
StringConcatSimulation.concatWithStringBuilder ss 25 1.871 ± 0.436 ms/op
StringConcatSimulation.concatWithStringBuilderWithCount ss 25 1.720 ± 0.255 ms/op
StringConcatSimulation.concatWithStringFormat ss 25 15.145 ± 2.836 ms/op I would suggest using StringBuilder instead.
Suggested change
|
||||||||||||||||
} | ||||||||||||||||
} |
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 |
---|---|---|
|
@@ -2,9 +2,11 @@ | |
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import com.google.common.collect.ImmutableList; | ||
import com.google.common.collect.Lists; | ||
import com.hubspot.jinjava.Jinjava; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
|
@@ -19,9 +21,27 @@ public void setup() { | |
.put( | ||
"users", | ||
Lists.newArrayList( | ||
new User(0, false, "[email protected]", new Option(0, "option0")), | ||
new User(1, true, "[email protected]", new Option(1, "option1")), | ||
new User(2, false, null, new Option(2, "option2")) | ||
new User( | ||
0, | ||
false, | ||
"[email protected]", | ||
new Option(0, "option0"), | ||
ImmutableList.of(new Option(0, "option0")) | ||
), | ||
new User( | ||
1, | ||
true, | ||
"[email protected]", | ||
new Option(1, "option1"), | ||
ImmutableList.of(new Option(1, "option1")) | ||
), | ||
new User( | ||
2, | ||
false, | ||
null, | ||
new Option(2, "option2"), | ||
ImmutableList.of(new Option(2, "option2")) | ||
) | ||
) | ||
); | ||
} | ||
|
@@ -89,17 +109,44 @@ public void selectAttrWithNestedProperty() { | |
.isEqualTo("[2]"); | ||
} | ||
|
||
@Test | ||
public void selectAttrWithNestedFilter() { | ||
assertThat( | ||
jinjava.render( | ||
"{{ users|selectattr(\"optionList|map('id')\", 'containing', 1) }}", | ||
new HashMap<String, Object>() | ||
) | ||
) | ||
.isEqualTo("[1]"); | ||
|
||
assertThat( | ||
jinjava.render( | ||
"{{ users|selectattr(\"optionList|map('name')\", 'containing', 'option2') }}", | ||
new HashMap<String, Object>() | ||
) | ||
) | ||
.isEqualTo("[2]"); | ||
} | ||
|
||
public static class User { | ||
private long num; | ||
private boolean isActive; | ||
private String email; | ||
private Option option; | ||
|
||
public User(long num, boolean isActive, String email, Option option) { | ||
private List<Option> optionList; | ||
|
||
public User( | ||
long num, | ||
boolean isActive, | ||
String email, | ||
Option option, | ||
List<Option> optionList | ||
) { | ||
this.num = num; | ||
this.isActive = isActive; | ||
this.email = email; | ||
this.option = option; | ||
this.optionList = optionList; | ||
} | ||
|
||
public long getNum() { | ||
|
@@ -118,6 +165,10 @@ public Option getOption() { | |
return option; | ||
} | ||
|
||
public List<Option> getOptionList() { | ||
return optionList; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return num + ""; | ||
|
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.
There is an unused method parameter in this method. Should we remove it?
Map<String, Object> kwargs