This repository was archived by the owner on Jun 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTypeQL.java
351 lines (275 loc) · 12.3 KB
/
TypeQL.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/*
* Copyright (C) 2022 Vaticle
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.vaticle.typeql.lang;
import com.vaticle.typeql.grammar.TypeQLLexer;
import com.vaticle.typeql.lang.common.TypeQLToken;
import com.vaticle.typeql.lang.common.exception.TypeQLException;
import com.vaticle.typeql.lang.parser.Parser;
import com.vaticle.typeql.lang.pattern.Conjunction;
import com.vaticle.typeql.lang.pattern.Definable;
import com.vaticle.typeql.lang.pattern.Disjunction;
import com.vaticle.typeql.lang.pattern.Negation;
import com.vaticle.typeql.lang.pattern.Pattern;
import com.vaticle.typeql.lang.pattern.constraint.ThingConstraint;
import com.vaticle.typeql.lang.pattern.schema.Rule;
import com.vaticle.typeql.lang.pattern.variable.BoundVariable;
import com.vaticle.typeql.lang.pattern.variable.ThingVariable;
import com.vaticle.typeql.lang.pattern.variable.TypeVariable;
import com.vaticle.typeql.lang.pattern.variable.UnboundVariable;
import com.vaticle.typeql.lang.query.TypeQLDefine;
import com.vaticle.typeql.lang.query.TypeQLInsert;
import com.vaticle.typeql.lang.query.TypeQLMatch;
import com.vaticle.typeql.lang.query.TypeQLQuery;
import com.vaticle.typeql.lang.query.TypeQLUndefine;
import java.time.LocalDateTime;
import java.util.List;
import java.util.stream.Stream;
import static com.vaticle.typedb.common.collection.Collections.list;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.Equality.EQ;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.Equality.GT;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.Equality.GTE;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.Equality.LT;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.Equality.LTE;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.Equality.NEQ;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.SubString.CONTAINS;
import static com.vaticle.typeql.lang.common.TypeQLToken.Predicate.SubString.LIKE;
import static com.vaticle.typeql.lang.common.exception.ErrorMessage.ILLEGAL_CHAR_IN_LABEL;
import static com.vaticle.typeql.lang.pattern.variable.UnboundVariable.hidden;
public class TypeQL {
private static final Parser parser = new Parser();
public static <T extends TypeQLQuery> T parseQuery(String queryString) {
return parser.parseQueryEOF(queryString);
}
public static <T extends TypeQLQuery> Stream<T> parseQueries(String queryString) {
return parser.parseQueriesEOF(queryString);
}
public static Pattern parsePattern(String pattern) {
return parser.parsePatternEOF(pattern);
}
public static List<? extends Pattern> parsePatterns(String pattern) {
return parser.parsePatternsEOF(pattern);
}
public static List<Definable> parseDefinables(String pattern) {return parser.parseDefinablesEOF(pattern);}
public static Rule parseRule(String pattern) {return parser.parseSchemaRuleEOF(pattern).asRule();}
public static BoundVariable parseVariable(String variable) {
return parser.parseVariableEOF(variable);
}
public static String parseLabel(String label) {
String parsedLabel;
try {
parsedLabel = parser.parseLabelEOF(label);
} catch (TypeQLException e) {
throw TypeQLException.of(ILLEGAL_CHAR_IN_LABEL.message(label));
}
if (!parsedLabel.equals(label))
throw TypeQLException.of(ILLEGAL_CHAR_IN_LABEL.message(label)); // e.g: 'abc#123'
return parsedLabel;
}
public static TypeQLLexer lexer(String string) {
return parser.lexer(string);
}
public static TypeQLMatch.Unfiltered match(Pattern... patterns) {
return match(list(patterns));
}
public static TypeQLMatch.Unfiltered match(List<? extends Pattern> patterns) {
return new TypeQLMatch.Unfiltered(patterns);
}
public static TypeQLInsert insert(ThingVariable<?>... things) {
return new TypeQLInsert(list(things));
}
public static TypeQLInsert insert(List<ThingVariable<?>> things) {
return new TypeQLInsert(things);
}
public static TypeQLDefine define(Definable... definables) {
return new TypeQLDefine(list(definables));
}
public static TypeQLDefine define(List<Definable> definables) {
return new TypeQLDefine(definables);
}
public static TypeQLUndefine undefine(TypeVariable... types) {
return new TypeQLUndefine(list(types));
}
public static TypeQLUndefine undefine(List<Definable> definables) {
return new TypeQLUndefine(definables);
}
// Pattern Builder Methods
public static Conjunction<? extends Pattern> and(Pattern... patterns) {
return and(list(patterns));
}
public static Conjunction<? extends Pattern> and(List<? extends Pattern> patterns) {
return new Conjunction<>(patterns);
}
public static Pattern or(Pattern... patterns) {
return or(list(patterns));
}
public static Pattern or(List<Pattern> patterns) {
// Simplify representation when there is only one alternative
if (patterns.size() == 1) return patterns.iterator().next();
return new Disjunction<>(patterns);
}
public static Negation<Pattern> not(Pattern pattern) {
return new Negation<>(pattern);
}
public static Rule rule(String label) {
return new Rule(label);
}
public static UnboundVariable var() {
return UnboundVariable.anonymous();
}
public static UnboundVariable var(String name) {
return UnboundVariable.named(name);
}
public static TypeVariable type(TypeQLToken.Type type) {
return type(type.toString());
}
public static TypeVariable type(String label) {
return hidden().type(label);
}
public static ThingVariable.Relation rel(String playerVar) {
return hidden().rel(playerVar);
}
public static ThingVariable.Relation rel(UnboundVariable playerVar) {
return hidden().rel(playerVar);
}
public static ThingVariable.Relation rel(String roleType, String playerVar) {
return hidden().rel(roleType, playerVar);
}
public static ThingVariable.Relation rel(String roleType, UnboundVariable playerVar) {
return hidden().rel(roleType, playerVar);
}
public static ThingVariable.Relation rel(UnboundVariable roleType, UnboundVariable playerVar) {
return hidden().rel(roleType, playerVar);
}
public static ThingConstraint.Value.Long eq(long value) {
return new ThingConstraint.Value.Long(EQ, value);
}
public static ThingConstraint.Value.Double eq(double value) {
return new ThingConstraint.Value.Double(EQ, value);
}
public static ThingConstraint.Value.Boolean eq(boolean value) {
return new ThingConstraint.Value.Boolean(EQ, value);
}
public static ThingConstraint.Value.String eq(String value) {
return new ThingConstraint.Value.String(EQ, value);
}
public static ThingConstraint.Value.DateTime eq(LocalDateTime value) {
return new ThingConstraint.Value.DateTime(EQ, value);
}
public static ThingConstraint.Value.Variable eq(UnboundVariable variable) {
return new ThingConstraint.Value.Variable(EQ, variable);
}
public static ThingConstraint.Value.Long neq(long value) {
return new ThingConstraint.Value.Long(NEQ, value);
}
public static ThingConstraint.Value.Double neq(double value) {
return new ThingConstraint.Value.Double(NEQ, value);
}
public static ThingConstraint.Value.Boolean neq(boolean value) {
return new ThingConstraint.Value.Boolean(NEQ, value);
}
public static ThingConstraint.Value.String neq(String value) {
return new ThingConstraint.Value.String(NEQ, value);
}
public static ThingConstraint.Value.DateTime neq(LocalDateTime value) {
return new ThingConstraint.Value.DateTime(NEQ, value);
}
public static ThingConstraint.Value.Variable neq(UnboundVariable variable) {
return new ThingConstraint.Value.Variable(NEQ, variable);
}
public static ThingConstraint.Value.Long gt(long value) {
return new ThingConstraint.Value.Long(GT, value);
}
public static ThingConstraint.Value.Double gt(double value) {
return new ThingConstraint.Value.Double(GT, value);
}
public static ThingConstraint.Value.Boolean gt(boolean value) {
return new ThingConstraint.Value.Boolean(GT, value);
}
public static ThingConstraint.Value.String gt(String value) {
return new ThingConstraint.Value.String(GT, value);
}
public static ThingConstraint.Value.DateTime gt(LocalDateTime value) {
return new ThingConstraint.Value.DateTime(GT, value);
}
public static ThingConstraint.Value.Variable gt(UnboundVariable variable) {
return new ThingConstraint.Value.Variable(GT, variable);
}
public static ThingConstraint.Value.Long gte(long value) {
return new ThingConstraint.Value.Long(GTE, value);
}
public static ThingConstraint.Value.Double gte(double value) {
return new ThingConstraint.Value.Double(GTE, value);
}
public static ThingConstraint.Value.Boolean gte(boolean value) {
return new ThingConstraint.Value.Boolean(GTE, value);
}
public static ThingConstraint.Value.String gte(String value) {
return new ThingConstraint.Value.String(GTE, value);
}
public static ThingConstraint.Value.DateTime gte(LocalDateTime value) {
return new ThingConstraint.Value.DateTime(GTE, value);
}
public static ThingConstraint.Value.Variable gte(UnboundVariable variable) {
return new ThingConstraint.Value.Variable(GTE, variable);
}
public static ThingConstraint.Value.Long lt(long value) {
return new ThingConstraint.Value.Long(LT, value);
}
public static ThingConstraint.Value.Double lt(double value) {
return new ThingConstraint.Value.Double(LT, value);
}
public static ThingConstraint.Value.Boolean lt(boolean value) {
return new ThingConstraint.Value.Boolean(LT, value);
}
public static ThingConstraint.Value.String lt(String value) {
return new ThingConstraint.Value.String(LT, value);
}
public static ThingConstraint.Value.DateTime lt(LocalDateTime value) {
return new ThingConstraint.Value.DateTime(LT, value);
}
public static ThingConstraint.Value.Variable lt(UnboundVariable variable) {
return new ThingConstraint.Value.Variable(LT, variable);
}
public static ThingConstraint.Value.Long lte(long value) {
return new ThingConstraint.Value.Long(LTE, value);
}
public static ThingConstraint.Value.Double lte(double value) {
return new ThingConstraint.Value.Double(LTE, value);
}
public static ThingConstraint.Value.Boolean lte(boolean value) {
return new ThingConstraint.Value.Boolean(LTE, value);
}
public static ThingConstraint.Value.String lte(String value) {
return new ThingConstraint.Value.String(LTE, value);
}
public static ThingConstraint.Value.DateTime lte(LocalDateTime value) {
return new ThingConstraint.Value.DateTime(LTE, value);
}
public static ThingConstraint.Value.Variable lte(UnboundVariable variable) {
return new ThingConstraint.Value.Variable(LTE, variable);
}
public static ThingConstraint.Value.String contains(String value) {
return new ThingConstraint.Value.String(CONTAINS, value);
}
public static ThingConstraint.Value.String like(String value) {
return new ThingConstraint.Value.String(LIKE, value);
}
}