|
|
@ -5,6 +5,7 @@ import com.jayway.jsonpath.Predicate; |
|
|
|
import com.jayway.jsonpath.internal.CharacterIndex; |
|
|
|
import com.jayway.jsonpath.internal.CharacterIndex; |
|
|
|
import com.jayway.jsonpath.internal.Path; |
|
|
|
import com.jayway.jsonpath.internal.Path; |
|
|
|
import com.jayway.jsonpath.internal.filter.FilterCompiler; |
|
|
|
import com.jayway.jsonpath.internal.filter.FilterCompiler; |
|
|
|
|
|
|
|
import com.jayway.jsonpath.internal.function.ParamType; |
|
|
|
import com.jayway.jsonpath.internal.function.Parameter; |
|
|
|
import com.jayway.jsonpath.internal.function.Parameter; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.ArrayList; |
|
|
@ -80,19 +81,23 @@ public class PathCompiler { |
|
|
|
private void readWhitespace() { |
|
|
|
private void readWhitespace() { |
|
|
|
while (path.inBounds()) { |
|
|
|
while (path.inBounds()) { |
|
|
|
char c = path.currentChar(); |
|
|
|
char c = path.currentChar(); |
|
|
|
if (c != SPACE && c != TAB && c != LF && c != CR) { |
|
|
|
if (!isWhitespace(c)) { |
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
path.incrementPosition(1); |
|
|
|
path.incrementPosition(1); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private Boolean isPathContext(char c) { |
|
|
|
|
|
|
|
return (c == DOC_CONTEXT || c == EVAL_CONTEXT); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//[$ | @]
|
|
|
|
//[$ | @]
|
|
|
|
private RootPathToken readContextToken() { |
|
|
|
private RootPathToken readContextToken() { |
|
|
|
|
|
|
|
|
|
|
|
readWhitespace(); |
|
|
|
readWhitespace(); |
|
|
|
|
|
|
|
|
|
|
|
if (!path.currentCharIs(DOC_CONTEXT) && !path.currentCharIs(EVAL_CONTEXT)) { |
|
|
|
if (!isPathContext(path.currentChar())) { |
|
|
|
throw new InvalidPathException("Path must start with '$' or '@'"); |
|
|
|
throw new InvalidPathException("Path must start with '$' or '@'"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -199,7 +204,7 @@ public class PathCompiler { |
|
|
|
// read the next token to determine if we have a simple no-args function call
|
|
|
|
// read the next token to determine if we have a simple no-args function call
|
|
|
|
char c = path.charAt(readPosition + 1); |
|
|
|
char c = path.charAt(readPosition + 1); |
|
|
|
if (c != CLOSE_PARENTHESIS) { |
|
|
|
if (c != CLOSE_PARENTHESIS) { |
|
|
|
// parse the arguments of the function - arguments that are inner queries will be single quoted parameters
|
|
|
|
// parse the arguments of the function - arguments that are inner queries or JSON document(s)
|
|
|
|
functionParameters = parseFunctionParameters(readPosition); |
|
|
|
functionParameters = parseFunctionParameters(readPosition); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
path.setPosition(readPosition + 1); |
|
|
|
path.setPosition(readPosition + 1); |
|
|
@ -230,6 +235,23 @@ public class PathCompiler { |
|
|
|
* set if the parameter is an expression. If the parameter is a JSON document then the value of the cachedValue is |
|
|
|
* set if the parameter is an expression. If the parameter is a JSON document then the value of the cachedValue is |
|
|
|
* set on the object. |
|
|
|
* set on the object. |
|
|
|
* |
|
|
|
* |
|
|
|
|
|
|
|
* Sequence for parsing out the parameters: |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* This code has its own tokenizer - it does some rudimentary level of lexing in that it can distinguish between JSON block parameters |
|
|
|
|
|
|
|
* and sub-JSON blocks - it effectively regex's out the parameters into string blocks that can then be passed along to the appropriate parser. |
|
|
|
|
|
|
|
* Since sub-jsonpath expressions can themselves contain other function calls this routine needs to be sensitive to token counting to |
|
|
|
|
|
|
|
* determine the boundaries. Since the Path parser isn't aware of JSON processing this uber routine is needed. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Parameters are separated by COMMAs ',' |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* <pre> |
|
|
|
|
|
|
|
* doc = {"numbers": [1,2,3,4,5,6,7,8,9,10]} |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* $.sum({10}, $.numbers.avg()) |
|
|
|
|
|
|
|
* </pre> |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* The above is a valid function call, we're first summing 10 + avg of 1...10 (5.5) so the total should be 15.5 |
|
|
|
|
|
|
|
* |
|
|
|
* @param readPosition |
|
|
|
* @param readPosition |
|
|
|
* The current position within the stream we've advanced - TODO remove the need for this... |
|
|
|
* The current position within the stream we've advanced - TODO remove the need for this... |
|
|
|
* @return |
|
|
|
* @return |
|
|
@ -239,59 +261,93 @@ public class PathCompiler { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private List<Parameter> parseFunctionParameters(int readPosition) { |
|
|
|
private List<Parameter> parseFunctionParameters(int readPosition) { |
|
|
|
PathToken currentToken; |
|
|
|
PathToken currentToken; |
|
|
|
|
|
|
|
ParamType type = null; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Parenthesis starts at 1 since we're marking the start of a function call, the close paren will denote the
|
|
|
|
|
|
|
|
// last parameter boundary
|
|
|
|
|
|
|
|
Integer groupParen = 1, groupBracket = 0, groupBrace = 0; |
|
|
|
|
|
|
|
Boolean endOfStream = false; |
|
|
|
List<Parameter> parameters = new ArrayList<Parameter>(); |
|
|
|
List<Parameter> parameters = new ArrayList<Parameter>(); |
|
|
|
StringBuffer parameter = new StringBuffer(); |
|
|
|
StringBuffer parameter = new StringBuffer(); |
|
|
|
Boolean insideParameter = false; |
|
|
|
while (path.inBounds(readPosition) && !endOfStream) { |
|
|
|
int braceCount = 0, parenCount = 1; |
|
|
|
|
|
|
|
while (path.inBounds(readPosition)) { |
|
|
|
|
|
|
|
char c = path.charAt(readPosition++); |
|
|
|
char c = path.charAt(readPosition++); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// we're at the start of the stream, and don't know what type of parameter we have
|
|
|
|
|
|
|
|
if (type == null) { |
|
|
|
|
|
|
|
if (isWhitespace(c)) { |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (c == OPEN_BRACE) { |
|
|
|
if (c == OPEN_BRACE) { |
|
|
|
braceCount++; |
|
|
|
type = ParamType.JSON; |
|
|
|
} |
|
|
|
} |
|
|
|
else if (c == CLOSE_BRACE) { |
|
|
|
else if (isPathContext(c)) { |
|
|
|
braceCount--; |
|
|
|
type = ParamType.PATH; // read until we reach a terminating comma and we've reset grouping to zero
|
|
|
|
if (0 == braceCount && parameter.length() > 0) { |
|
|
|
|
|
|
|
// inner parse the parameter expression to pass along to the function
|
|
|
|
|
|
|
|
LinkedList<Predicate> predicates = new LinkedList<Predicate>(); |
|
|
|
|
|
|
|
PathCompiler compiler = new PathCompiler(parameter.toString(), predicates); |
|
|
|
|
|
|
|
Path path = compiler.compile(); |
|
|
|
|
|
|
|
parameters.add(new Parameter(path)); |
|
|
|
|
|
|
|
parameter.delete(0, parameter.length()); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
else if (c == COMMA && braceCount == 0) { |
|
|
|
|
|
|
|
parameter.delete(0, parameter.length()); |
|
|
|
switch (c) { |
|
|
|
|
|
|
|
case OPEN_PARENTHESIS: |
|
|
|
|
|
|
|
groupParen++; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case OPEN_BRACE: |
|
|
|
|
|
|
|
groupBrace++; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case OPEN_SQUARE_BRACKET: |
|
|
|
|
|
|
|
groupBracket++; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case CLOSE_BRACE: |
|
|
|
|
|
|
|
groupBrace--; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
case CLOSE_SQUARE_BRACKET: |
|
|
|
|
|
|
|
groupBracket--; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// In either the close paren case where we have zero paren groups left, capture the parameter, or where
|
|
|
|
|
|
|
|
// we've encountered a COMMA do the same
|
|
|
|
|
|
|
|
case CLOSE_PARENTHESIS: |
|
|
|
|
|
|
|
groupParen--; |
|
|
|
|
|
|
|
if (0 != groupParen) { |
|
|
|
|
|
|
|
parameter.append(c); |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
case COMMA: |
|
|
|
if (c == CLOSE_PARENTHESIS) { |
|
|
|
// In this state we've reach the end of a function parameter and we can pass along the parameter string
|
|
|
|
parenCount--; |
|
|
|
// to the parser
|
|
|
|
if (parenCount == 0) { |
|
|
|
if (null != type && (0 == groupBrace && 0 == groupBracket && ((0 == groupParen && CLOSE_PARENTHESIS == c) || 1 == groupParen))) { |
|
|
|
if (parameter.length() > 0) { |
|
|
|
Parameter param = new Parameter(); |
|
|
|
// inner parse the parameter expression to pass along to the function
|
|
|
|
param.setType(type); |
|
|
|
|
|
|
|
if (type == ParamType.JSON) { |
|
|
|
|
|
|
|
// parse the json and set the value
|
|
|
|
|
|
|
|
param.setCachedValue(parameter.toString()); |
|
|
|
|
|
|
|
param.setEvaluated(true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (type == ParamType.PATH) { |
|
|
|
LinkedList<Predicate> predicates = new LinkedList<Predicate>(); |
|
|
|
LinkedList<Predicate> predicates = new LinkedList<Predicate>(); |
|
|
|
PathCompiler compiler = new PathCompiler(parameter.toString(), predicates); |
|
|
|
PathCompiler compiler = new PathCompiler(parameter.toString(), predicates); |
|
|
|
parameters.add(new Parameter(compiler.compile())); |
|
|
|
param.setPath(compiler.compile()); |
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else { |
|
|
|
|
|
|
|
parameter.append(c); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
parameters.add(param); |
|
|
|
|
|
|
|
parameter.delete(0, parameter.length()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type = null; |
|
|
|
|
|
|
|
endOfStream = (0 == groupParen); |
|
|
|
} |
|
|
|
} |
|
|
|
else if (c == OPEN_PARENTHESIS) { |
|
|
|
break; |
|
|
|
parenCount++; |
|
|
|
|
|
|
|
parameter.append(c); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
|
|
|
|
|
|
|
|
if (type != null && !(c == COMMA && 0 == groupBrace && 0 == groupBracket && 1 == groupParen)) { |
|
|
|
parameter.append(c); |
|
|
|
parameter.append(c); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
path.setPosition(readPosition); |
|
|
|
path.setPosition(readPosition); |
|
|
|
return parameters; |
|
|
|
return parameters; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private boolean isWhitespace(char c) { |
|
|
|
|
|
|
|
return (c == SPACE || c == TAB || c == LF || c == CR); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// [?], [?,?, ..]
|
|
|
|
// [?], [?,?, ..]
|
|
|
|
//
|
|
|
|
//
|
|
|
|