There is a malicious approach to dictionary abuse. The following is an example implementation of a “function” to limit the number of items in a list ( problem on github ).
In your code add a dictionary:
group.defineDictionary("max", new MaxListItemsLimiter());
Usage (in this example, the first element in the array is the maximum number of elements):
<max.(["50",myObject.items]):{msg|<msg.something>}>
final class MaxListItemsLimiter extends AbstractMap<String, Object> {
@Override
public Object get(Object key) {
List items = (List) key;
if (!items.isEmpty()) {
Integer limit = NumberUtils.toInt(items.get(0).toString(), -1);
if (limit != -1) {
return items.subList(1, Math.min(items.size(), limit + 1));
} else {
throw new AssertionError("First parameter in max must be number");
}
} else {
return super.get(key);
}
}
@Override
public Set<Map.Entry<String, Object>> entrySet() {
return Collections.emptySet();
}
@Override
public boolean containsKey(Object key) {
if (key instanceof List) {
return true;
} else {
throw new AssertionError("You can use max only on Lists.");
}
}
}
source
share