@@ -14,6 +14,7 @@ import 'package:json_path/src/grammar/negatable.dart';
14
14
import 'package:json_path/src/grammar/parser_ext.dart' ;
15
15
import 'package:json_path/src/grammar/select_all_recursively.dart' ;
16
16
import 'package:json_path/src/grammar/sequence_selector.dart' ;
17
+ import 'package:json_path/src/grammar/singular_segment_sequence.dart' ;
17
18
import 'package:json_path/src/grammar/strings.dart' ;
18
19
import 'package:json_path/src/grammar/union_selector.dart' ;
19
20
import 'package:json_path/src/grammar/wildcard.dart' ;
@@ -28,27 +29,25 @@ class JsonPathGrammarDefinition
28
29
final FunFactory _fun;
29
30
30
31
@override
31
- Parser <Expression <NodeList >> start () => ref0 ( _absPath).end ();
32
+ Parser <Expression <NodeList >> start () => _absPath ( ).end ();
32
33
33
- Parser <Selector > _unionElement () => [
34
- arraySlice,
35
- arrayIndex,
36
- wildcard,
37
- quotedString.map (childSelector),
38
- _expressionFilter ()
39
- ].toChoiceParser ().trim ();
34
+ Parser <Expression <NodeList >> _absPath () => _segmentSequence ()
35
+ .skip (before: char (r'$' ))
36
+ .map ((expr) => Expression ((node) => expr.call (node.root)));
40
37
41
- Parser <SingularSelector > _singularUnionElement () => [
42
- arrayIndex,
43
- quotedString.map (childSelector),
38
+ Parser <Expression <NodeList >> _segmentSequence () =>
39
+ _segment ().star ().map (sequenceSelector).map (Expression .new );
40
+
41
+ Parser <Selector > _segment () => [
42
+ dotName,
43
+ wildcard.skip (before: char ('.' )),
44
+ ref0 (_union),
45
+ ref0 (_recursion),
44
46
].toChoiceParser ().trim ();
45
47
46
48
Parser <Selector > _union () =>
47
49
_unionElement ().toList ().inBrackets ().map (unionSelector);
48
50
49
- Parser <SingularSelector > _singularUnion () =>
50
- _singularUnionElement ().inBrackets ();
51
-
52
51
Parser <Selector > _recursion () => [
53
52
wildcard,
54
53
_union (),
@@ -58,38 +57,18 @@ class JsonPathGrammarDefinition
58
57
.skip (before: string ('..' ))
59
58
.map ((value) => sequenceSelector ([selectAllRecursively, value]));
60
59
61
- Parser <Expression <bool >> _parenExpr () => negatable (_logicalExpr ().inParens ());
62
-
63
- Parser <Expression > _funArgument () => [
64
- literal,
65
- ref0 (_singularFilterPath),
66
- ref0 (_filterPath),
67
- ref0 (_valueFunExpr),
68
- ref0 (_logicalFunExpr),
69
- ref0 (_nodesFunExpr),
70
- ref0 (_logicalExpr),
60
+ Parser <Selector > _unionElement () => [
61
+ arraySlice,
62
+ arrayIndex,
63
+ wildcard,
64
+ quotedString.map (childSelector),
65
+ _expressionFilter ()
71
66
].toChoiceParser ().trim ();
72
67
73
- Parser <T > _funCall <T >(T Function (FunCall ) toFun) =>
74
- (funName & _funArgument ().toList ().inParens ())
75
- .map ((v) => FunCall (v[0 ], v[1 ]))
76
- .tryMap (toFun);
77
-
78
- Parser <Expression <Maybe >> _valueFunExpr () => _funCall (_fun.value);
79
-
80
- Parser <Expression <NodeList >> _nodesFunExpr () => _funCall (_fun.nodes);
81
-
82
- Parser <Expression <bool >> _logicalFunExpr () => _funCall (_fun.logical);
83
-
84
- Parser <Expression <Maybe >> _comparable () => [
85
- literal,
86
- _singularFilterPath ().map ((expr) => expr.map ((v) => v.asValue)),
87
- _valueFunExpr (),
88
- ].toChoiceParser ();
89
-
90
- Parser <Expression <bool >> _logicalExpr () => _logicalOrExpr ();
68
+ Parser <Selector > _expressionFilter () =>
69
+ _logicalExpr ().skip (before: string ('?' ).trim ()).map (filterSelector);
91
70
92
- Parser <Expression <bool >> _logicalOrExpr () => _logicalOrSequence ()
71
+ Parser <Expression <bool >> _logicalExpr () => _logicalOrSequence ()
93
72
.map ((list) => list.reduce ((a, b) => a.merge (b, (a, b) => a || b)));
94
73
95
74
Parser <List <Expression <bool >>> _logicalOrSequence () =>
@@ -109,61 +88,61 @@ class JsonPathGrammarDefinition
109
88
failureJoiner: (a, b) =>
110
89
Failure (a.buffer, a.position, 'Expression expected' ));
111
90
112
- Parser <Expression <NodeList >> _filterPath () => [
113
- ref0 (_relPath),
114
- ref0 (_absPath),
115
- ].toChoiceParser ();
116
-
117
- Parser <Expression <SingularNodeList >> _singularFilterPath () => [
118
- ref0 (_singularRelPath),
119
- ref0 (_singularAbsPath),
120
- ].toChoiceParser ();
121
-
122
- Parser <Expression <bool >> _existenceTest () =>
123
- ref0 (_filterPath).map ((value) => value.map ((v) => v.asLogical));
91
+ Parser <Expression <bool >> _parenExpr () => negatable (_logicalExpr ().inParens ());
124
92
125
93
Parser <Expression <bool >> _testExpr () => negatable ([
126
94
_existenceTest (),
127
95
_logicalFunExpr (),
128
96
].toChoiceParser ());
129
97
130
- Parser <Selector > _expressionFilter () =>
131
- _logicalExpr ().skip (before : string ( '?' ). trim ()). map (filterSelector );
98
+ Parser <Expression < bool >> _existenceTest () =>
99
+ _filterPath ().map ((value) => value. map ((v) => v.asLogical) );
132
100
133
- Parser <Selector > _segment () => [
134
- dotName,
135
- wildcard.skip (before: char ('.' )),
136
- ref0 (_union),
137
- ref0 (_recursion),
138
- ].toChoiceParser ().trim ();
101
+ Parser <Expression <bool >> _logicalFunExpr () => _funCall (_fun.logical);
139
102
140
- Parser <SingularSelector > _singularSegment () => [
141
- dotName,
142
- ref0 (_singularUnion),
103
+ Parser <T > _funCall <T >(T Function (FunCall ) toFun) =>
104
+ (funName & _funArgument ().toList ().inParens ())
105
+ .map ((v) => FunCall (v[0 ], v[1 ]))
106
+ .tryMap (toFun);
107
+
108
+ Parser <Expression > _funArgument () => [
109
+ literal,
110
+ _singularFilterPath (),
111
+ _filterPath (),
112
+ ref0 (_valueFunExpr),
113
+ ref0 (_logicalFunExpr),
114
+ ref0 (_nodesFunExpr),
115
+ ref0 (_logicalExpr),
143
116
].toChoiceParser ().trim ();
144
117
145
- Parser <Expression <NodeList >> _segmentSequence () =>
146
- _segment ().star ().map (sequenceSelector).map (Expression .new );
118
+ Parser <Expression <SingularNodeList >> _singularFilterPath () => [
119
+ ref0 (_singularRelPath),
120
+ ref0 (_singularAbsPath),
121
+ ].toChoiceParser ();
147
122
148
- Parser <Expression <SingularNodeList >> _singularSegmentSequence () =>
149
- _singularSegment ()
150
- .star ()
151
- .map (singularSequenceSelector)
152
- .map (Expression .new );
123
+ Parser <Expression <Maybe >> _valueFunExpr () => _funCall (_fun.value);
153
124
154
- Parser <Expression <NodeList >> _absPath () => _segmentSequence ()
155
- .skip (before: char (r'$' ))
156
- .map ((expr) => Expression ((node) => expr.call (node.root)));
125
+ Parser <Expression <NodeList >> _nodesFunExpr () => _funCall (_fun.nodes);
126
+
127
+ Parser <Expression <Maybe >> _comparable () => [
128
+ literal,
129
+ _singularFilterPath ().map ((expr) => expr.map ((v) => v.asValue)),
130
+ _valueFunExpr (),
131
+ ].toChoiceParser ();
132
+
133
+ Parser <Expression <NodeList >> _filterPath () => [
134
+ ref0 (_relPath),
135
+ ref0 (_absPath),
136
+ ].toChoiceParser ();
157
137
158
138
Parser <Expression <SingularNodeList >> _singularAbsPath () =>
159
- _singularSegmentSequence ()
139
+ singularSegmentSequence
160
140
.skip (before: char (r'$' ), after: _segment ().not ())
161
141
.map ((expr) => Expression ((node) => expr.call (node.root)));
162
142
163
143
Parser <Expression <NodeList >> _relPath () =>
164
144
_segmentSequence ().skip (before: char ('@' ));
165
145
166
146
Parser <Expression <SingularNodeList >> _singularRelPath () =>
167
- _singularSegmentSequence ()
168
- .skip (before: char ('@' ), after: _segment ().not ());
147
+ singularSegmentSequence.skip (before: char ('@' ), after: _segment ().not ());
169
148
}
0 commit comments