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

Support expressions in selectattr/rejectattr again, more efficiently v2 #454

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/main/java/com/hubspot/jinjava/interpret/Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,13 @@ public void addResolvedExpression(String expression) {
}
}

public void removeResolvedExpression(String expression) {
resolvedExpressions.remove(expression);
if (getParent() != null) {
getParent().removeResolvedExpression(expression);
}
}

public Set<String> getResolvedExpressions() {
return ImmutableSet.copyOf(resolvedExpressions);
}
Expand Down
24 changes: 18 additions & 6 deletions src/main/java/com/hubspot/jinjava/lib/filter/SelectAttrFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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;
}
Copy link
Contributor

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


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();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The String.format has some performance issues. So, for curiosity, I ran a benchmark to compare the approaches.

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
return String.format("%s.%s", tempValue, expression).trim();
return new StringBuilder()
.append(tempValue)
.append(".")
.append(expression)
.toString()
.trim();

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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"))
)
)
);
}
Expand Down Expand Up @@ -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() {
Expand All @@ -118,6 +165,10 @@ public Option getOption() {
return option;
}

public List<Option> getOptionList() {
return optionList;
}

@Override
public String toString() {
return num + "";
Expand Down