Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 1 | // |
| 2 | // Licensed to the Apache Software Foundation (ASF) under one |
| 3 | // or more contributor license agreements. See the NOTICE file |
| 4 | // distributed with this work for additional information |
| 5 | // regarding copyright ownership. The ASF licenses this file |
| 6 | // to you under the Apache License, Version 2.0 (the |
| 7 | // "License"); you may not use this file except in compliance |
| 8 | // with the License. You may obtain a copy of the License at |
| 9 | // |
| 10 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | // |
| 12 | // Unless required by applicable law or agreed to in writing, |
| 13 | // software distributed under the License is distributed on an |
| 14 | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | // KIND, either express or implied. See the License for the |
| 16 | // specific language governing permissions and limitations |
| 17 | // under the License. |
| 18 | // |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 19 | options { |
| 20 | |
| 21 | |
| 22 | STATIC = false; |
| 23 | |
| 24 | } |
| 25 | |
| 26 | |
| 27 | PARSER_BEGIN(SQLPPParser) |
| 28 | |
| 29 | package org.apache.asterix.lang.sqlpp.parser; |
| 30 | |
| 31 | // For SQL++ ParserTokenManager |
Till Westmann | e9b2adf | 2016-10-15 12:39:01 -0700 | [diff] [blame] | 32 | import java.util.ArrayDeque; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 33 | |
| 34 | import java.io.BufferedReader; |
| 35 | import java.io.File; |
| 36 | import java.io.FileInputStream; |
| 37 | import java.io.FileNotFoundException; |
| 38 | import java.io.IOException; |
| 39 | import java.io.InputStreamReader; |
| 40 | import java.io.Reader; |
| 41 | import java.io.StringReader; |
| 42 | import java.util.ArrayList; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 43 | import java.util.Collections; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 44 | import java.util.HashMap; |
| 45 | import java.util.Iterator; |
| 46 | import java.util.LinkedHashMap; |
| 47 | import java.util.List; |
| 48 | import java.util.Map; |
| 49 | |
| 50 | import org.apache.asterix.common.annotations.AutoDataGen; |
| 51 | import org.apache.asterix.common.annotations.DateBetweenYearsDataGen; |
| 52 | import org.apache.asterix.common.annotations.DatetimeAddRandHoursDataGen; |
| 53 | import org.apache.asterix.common.annotations.DatetimeBetweenYearsDataGen; |
| 54 | import org.apache.asterix.common.annotations.FieldIntervalDataGen; |
| 55 | import org.apache.asterix.common.annotations.FieldValFileDataGen; |
| 56 | import org.apache.asterix.common.annotations.FieldValFileSameIndexDataGen; |
| 57 | import org.apache.asterix.common.annotations.IRecordFieldDataGen; |
| 58 | import org.apache.asterix.common.annotations.InsertRandIntDataGen; |
| 59 | import org.apache.asterix.common.annotations.ListDataGen; |
| 60 | import org.apache.asterix.common.annotations.ListValFileDataGen; |
| 61 | import org.apache.asterix.common.annotations.SkipSecondaryIndexSearchExpressionAnnotation; |
| 62 | import org.apache.asterix.common.annotations.TypeDataGen; |
| 63 | import org.apache.asterix.common.annotations.UndeclaredFieldsDataGen; |
| 64 | import org.apache.asterix.common.config.DatasetConfig.DatasetType; |
| 65 | import org.apache.asterix.common.config.DatasetConfig.IndexType; |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 66 | import org.apache.asterix.common.exceptions.CompilationException; |
Dmitry Lychagin | 85142c0 | 2018-04-05 17:27:36 -0700 | [diff] [blame] | 67 | import org.apache.asterix.common.exceptions.ErrorCode; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 68 | import org.apache.asterix.common.functions.FunctionConstants; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 69 | import org.apache.asterix.common.functions.FunctionSignature; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 70 | import org.apache.asterix.lang.common.base.AbstractClause; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 71 | import org.apache.asterix.lang.common.base.AbstractLangExpression; |
| 72 | import org.apache.asterix.lang.common.base.AbstractStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 73 | import org.apache.asterix.lang.common.base.Expression; |
| 74 | import org.apache.asterix.lang.common.base.Literal; |
| 75 | import org.apache.asterix.lang.common.base.IParser; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 76 | import org.apache.asterix.lang.common.base.ILangExpression; |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 77 | import org.apache.asterix.lang.common.base.IParserFactory; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 78 | import org.apache.asterix.lang.common.base.Statement; |
| 79 | import org.apache.asterix.lang.common.clause.GroupbyClause; |
| 80 | import org.apache.asterix.lang.common.clause.LetClause; |
| 81 | import org.apache.asterix.lang.common.clause.LimitClause; |
| 82 | import org.apache.asterix.lang.common.clause.OrderbyClause; |
| 83 | import org.apache.asterix.lang.common.clause.UpdateClause; |
| 84 | import org.apache.asterix.lang.common.clause.WhereClause; |
| 85 | import org.apache.asterix.lang.common.context.RootScopeFactory; |
| 86 | import org.apache.asterix.lang.common.context.Scope; |
| 87 | import org.apache.asterix.lang.common.expression.AbstractAccessor; |
| 88 | import org.apache.asterix.lang.common.expression.CallExpr; |
| 89 | import org.apache.asterix.lang.common.expression.FieldAccessor; |
| 90 | import org.apache.asterix.lang.common.expression.FieldBinding; |
| 91 | import org.apache.asterix.lang.common.expression.GbyVariableExpressionPair; |
| 92 | import org.apache.asterix.lang.common.expression.IfExpr; |
| 93 | import org.apache.asterix.lang.common.expression.IndexAccessor; |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 94 | import org.apache.asterix.lang.common.expression.IndexedTypeExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 95 | import org.apache.asterix.lang.common.expression.ListConstructor; |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 96 | import org.apache.asterix.lang.common.expression.ListSliceExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 97 | import org.apache.asterix.lang.common.expression.LiteralExpr; |
| 98 | import org.apache.asterix.lang.common.expression.OperatorExpr; |
| 99 | import org.apache.asterix.lang.common.expression.OrderedListTypeDefinition; |
| 100 | import org.apache.asterix.lang.common.expression.QuantifiedExpression; |
| 101 | import org.apache.asterix.lang.common.expression.RecordConstructor; |
| 102 | import org.apache.asterix.lang.common.expression.RecordTypeDefinition; |
| 103 | import org.apache.asterix.lang.common.expression.TypeExpression; |
| 104 | import org.apache.asterix.lang.common.expression.TypeReferenceExpression; |
| 105 | import org.apache.asterix.lang.common.expression.UnaryExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 106 | import org.apache.asterix.lang.common.expression.UnorderedListTypeDefinition; |
| 107 | import org.apache.asterix.lang.common.expression.VariableExpr; |
| 108 | import org.apache.asterix.lang.common.literal.DoubleLiteral; |
| 109 | import org.apache.asterix.lang.common.literal.FalseLiteral; |
| 110 | import org.apache.asterix.lang.common.literal.FloatLiteral; |
| 111 | import org.apache.asterix.lang.common.literal.LongIntegerLiteral; |
Yingyi Bu | 535d86b | 2016-05-23 16:44:25 -0700 | [diff] [blame] | 112 | import org.apache.asterix.lang.common.literal.MissingLiteral; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 113 | import org.apache.asterix.lang.common.literal.NullLiteral; |
| 114 | import org.apache.asterix.lang.common.literal.StringLiteral; |
| 115 | import org.apache.asterix.lang.common.literal.TrueLiteral; |
| 116 | import org.apache.asterix.lang.common.parser.ScopeChecker; |
| 117 | import org.apache.asterix.lang.common.statement.CompactStatement; |
| 118 | import org.apache.asterix.lang.common.statement.ConnectFeedStatement; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 119 | import org.apache.asterix.lang.common.statement.StartFeedStatement; |
| 120 | import org.apache.asterix.lang.common.statement.StopFeedStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 121 | import org.apache.asterix.lang.common.statement.CreateDataverseStatement; |
| 122 | import org.apache.asterix.lang.common.statement.CreateFeedPolicyStatement; |
| 123 | import org.apache.asterix.lang.common.statement.CreateFeedStatement; |
| 124 | import org.apache.asterix.lang.common.statement.CreateFunctionStatement; |
| 125 | import org.apache.asterix.lang.common.statement.CreateIndexStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 126 | import org.apache.asterix.lang.common.statement.DatasetDecl; |
| 127 | import org.apache.asterix.lang.common.statement.DataverseDecl; |
| 128 | import org.apache.asterix.lang.common.statement.DataverseDropStatement; |
| 129 | import org.apache.asterix.lang.common.statement.DeleteStatement; |
| 130 | import org.apache.asterix.lang.common.statement.DisconnectFeedStatement; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 131 | import org.apache.asterix.lang.common.statement.DropDatasetStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 132 | import org.apache.asterix.lang.common.statement.ExternalDetailsDecl; |
| 133 | import org.apache.asterix.lang.common.statement.FeedDropStatement; |
Abdullah Alamoudi | 5dc73ed | 2016-07-28 05:03:13 +0300 | [diff] [blame] | 134 | import org.apache.asterix.lang.common.statement.FeedPolicyDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 135 | import org.apache.asterix.lang.common.statement.FunctionDecl; |
| 136 | import org.apache.asterix.lang.common.statement.FunctionDropStatement; |
| 137 | import org.apache.asterix.lang.common.statement.IndexDropStatement; |
| 138 | import org.apache.asterix.lang.common.statement.InsertStatement; |
| 139 | import org.apache.asterix.lang.common.statement.InternalDetailsDecl; |
| 140 | import org.apache.asterix.lang.common.statement.LoadStatement; |
| 141 | import org.apache.asterix.lang.common.statement.NodeGroupDropStatement; |
| 142 | import org.apache.asterix.lang.common.statement.NodegroupDecl; |
| 143 | import org.apache.asterix.lang.common.statement.Query; |
| 144 | import org.apache.asterix.lang.common.statement.RefreshExternalDatasetStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 145 | import org.apache.asterix.lang.common.statement.SetStatement; |
| 146 | import org.apache.asterix.lang.common.statement.TypeDecl; |
| 147 | import org.apache.asterix.lang.common.statement.TypeDropStatement; |
| 148 | import org.apache.asterix.lang.common.statement.UpdateStatement; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 149 | import org.apache.asterix.lang.common.statement.UpsertStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 150 | import org.apache.asterix.lang.common.statement.WriteStatement; |
| 151 | import org.apache.asterix.lang.common.struct.Identifier; |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 152 | import org.apache.asterix.lang.common.struct.OperatorType; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 153 | import org.apache.asterix.lang.common.struct.QuantifiedPair; |
| 154 | import org.apache.asterix.lang.common.struct.VarIdentifier; |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 155 | import org.apache.asterix.lang.common.util.RangeMapBuilder; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 156 | import org.apache.asterix.lang.sqlpp.clause.AbstractBinaryCorrelateClause; |
| 157 | import org.apache.asterix.lang.sqlpp.clause.FromClause; |
| 158 | import org.apache.asterix.lang.sqlpp.clause.FromTerm; |
| 159 | import org.apache.asterix.lang.sqlpp.clause.HavingClause; |
| 160 | import org.apache.asterix.lang.sqlpp.clause.JoinClause; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 161 | import org.apache.asterix.lang.sqlpp.clause.Projection; |
| 162 | import org.apache.asterix.lang.sqlpp.clause.SelectBlock; |
| 163 | import org.apache.asterix.lang.sqlpp.clause.SelectClause; |
| 164 | import org.apache.asterix.lang.sqlpp.clause.SelectElement; |
| 165 | import org.apache.asterix.lang.sqlpp.clause.SelectRegular; |
| 166 | import org.apache.asterix.lang.sqlpp.clause.SelectSetOperation; |
| 167 | import org.apache.asterix.lang.sqlpp.clause.UnnestClause; |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 168 | import org.apache.asterix.lang.common.clause.WhereClause; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 169 | import org.apache.asterix.lang.sqlpp.expression.CaseExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 170 | import org.apache.asterix.lang.sqlpp.expression.SelectExpression; |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 171 | import org.apache.asterix.lang.sqlpp.expression.WindowExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 172 | import org.apache.asterix.lang.sqlpp.optype.JoinType; |
| 173 | import org.apache.asterix.lang.sqlpp.optype.SetOpType; |
| 174 | import org.apache.asterix.lang.sqlpp.struct.SetOperationInput; |
| 175 | import org.apache.asterix.lang.sqlpp.struct.SetOperationRight; |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 176 | import org.apache.asterix.lang.sqlpp.util.ExpressionToVariableUtil; |
Xikui Wang | 96fd402 | 2017-04-10 14:23:31 -0700 | [diff] [blame] | 177 | import org.apache.asterix.lang.sqlpp.util.FunctionMapUtil; |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 178 | import org.apache.asterix.lang.sqlpp.util.SqlppVariableUtil; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 179 | import org.apache.asterix.om.functions.BuiltinFunctions; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 180 | import org.apache.hyracks.algebricks.common.utils.Pair; |
| 181 | import org.apache.hyracks.algebricks.common.utils.Triple; |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 182 | import org.apache.hyracks.algebricks.common.exceptions.AlgebricksException; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 183 | import org.apache.hyracks.algebricks.core.algebra.expressions.IExpressionAnnotation; |
| 184 | import org.apache.hyracks.algebricks.core.algebra.expressions.IndexedNLJoinExpressionAnnotation; |
| 185 | import org.apache.hyracks.algebricks.core.algebra.functions.FunctionIdentifier; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 186 | import org.apache.hyracks.api.exceptions.SourceLocation; |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 187 | import org.apache.hyracks.util.LogRedactionUtil; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 188 | |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 189 | class SQLPPParser extends ScopeChecker implements IParser { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 190 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 191 | // tokens parsed as identifiers |
| 192 | private static final String CURRENT = "CURRENT"; |
| 193 | private static final String EXCLUDE = "EXCLUDE"; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 194 | private static final String FIRST = "FIRST"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 195 | private static final String FOLLOWING = "FOLLOWING"; |
| 196 | private static final String GROUPS = "GROUPS"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 197 | private static final String IGNORE = "IGNORE"; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 198 | private static final String LAST = "LAST"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 199 | private static final String NO = "NO"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 200 | private static final String NULLS = "NULLS"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 201 | private static final String OTHERS = "OTHERS"; |
| 202 | private static final String PARTITION = "PARTITION"; |
| 203 | private static final String PRECEDING = "PRECEDING"; |
| 204 | private static final String RANGE = "RANGE"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 205 | private static final String RESPECT = "RESPECT"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 206 | private static final String ROW = "ROW"; |
| 207 | private static final String ROWS = "ROWS"; |
| 208 | private static final String TIES = "TIES"; |
| 209 | private static final String UNBOUNDED = "UNBOUNDED"; |
| 210 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 211 | // optimizer hints |
| 212 | private static final String AUTO_HINT = "auto"; |
| 213 | private static final String BROADCAST_JOIN_HINT = "bcast"; |
| 214 | private static final String COMPOSE_VAL_FILES_HINT = "compose-val-files"; |
| 215 | private static final String DATE_BETWEEN_YEARS_HINT = "date-between-years"; |
| 216 | private static final String DATETIME_ADD_RAND_HOURS_HINT = "datetime-add-rand-hours"; |
| 217 | private static final String DATETIME_BETWEEN_YEARS_HINT = "datetime-between-years"; |
| 218 | private static final String HASH_GROUP_BY_HINT = "hash"; |
| 219 | private static final String INDEXED_NESTED_LOOP_JOIN_HINT = "indexnl"; |
| 220 | private static final String INMEMORY_HINT = "inmem"; |
| 221 | private static final String INSERT_RAND_INT_HINT = "insert-rand-int"; |
| 222 | private static final String INTERVAL_HINT = "interval"; |
| 223 | private static final String LIST_HINT = "list"; |
| 224 | private static final String LIST_VAL_FILE_HINT = "list-val-file"; |
| 225 | private static final String RANGE_HINT = "range"; |
| 226 | private static final String SKIP_SECONDARY_INDEX_SEARCH_HINT = "skip-index"; |
| 227 | private static final String VAL_FILE_HINT = "val-files"; |
| 228 | private static final String VAL_FILE_SAME_INDEX_HINT = "val-file-same-idx"; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 229 | private static final String GEN_FIELDS_HINT = "gen-fields"; |
| 230 | |
| 231 | // data generator hints |
| 232 | private static final String DGEN_HINT = "dgen"; |
| 233 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 234 | // error configuration |
| 235 | protected static final boolean REPORT_EXPECTED_TOKENS = false; |
| 236 | |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 237 | private int externalVarCounter; |
| 238 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 239 | private static class IndexParams { |
| 240 | public IndexType type; |
| 241 | public int gramLength; |
| 242 | |
| 243 | public IndexParams(IndexType type, int gramLength) { |
| 244 | this.type = type; |
| 245 | this.gramLength = gramLength; |
| 246 | } |
| 247 | }; |
| 248 | |
| 249 | private static class FunctionName { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 250 | public String dataverse; |
| 251 | public String library; |
| 252 | public String function; |
| 253 | public String hint; |
| 254 | public SourceLocation sourceLoc; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 257 | private String getHint(Token t) { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 258 | if (t.specialToken == null) { |
| 259 | return null; |
| 260 | } |
| 261 | String s = t.specialToken.image; |
| 262 | int n = s.length(); |
| 263 | if (n < 2) { |
| 264 | return null; |
| 265 | } |
| 266 | return s.substring(1).trim(); |
| 267 | } |
| 268 | |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 269 | private static IParser createNewParser(String statement) { |
| 270 | return new SQLPPParser(statement); |
| 271 | } |
| 272 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 273 | private Token getHintToken(Token t) { |
| 274 | return t.specialToken; |
| 275 | } |
| 276 | |
| 277 | private IRecordFieldDataGen parseFieldDataGen(String hint, Token hintToken) throws ParseException { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 278 | IRecordFieldDataGen rfdg = null; |
| 279 | String splits[] = hint.split(" +"); |
| 280 | if (splits[0].equals(VAL_FILE_HINT)) { |
| 281 | File[] valFiles = new File[splits.length - 1]; |
| 282 | for (int k=1; k<splits.length; k++) { |
| 283 | valFiles[k-1] = new File(splits[k]); |
| 284 | } |
| 285 | rfdg = new FieldValFileDataGen(valFiles); |
| 286 | } else if (splits[0].equals(VAL_FILE_SAME_INDEX_HINT)) { |
| 287 | rfdg = new FieldValFileSameIndexDataGen(new File(splits[1]), splits[2]); |
| 288 | } else if (splits[0].equals(LIST_VAL_FILE_HINT)) { |
| 289 | rfdg = new ListValFileDataGen(new File(splits[1]), Integer.parseInt(splits[2]), Integer.parseInt(splits[3])); |
| 290 | } else if (splits[0].equals(LIST_HINT)) { |
| 291 | rfdg = new ListDataGen(Integer.parseInt(splits[1]), Integer.parseInt(splits[2])); |
| 292 | } else if (splits[0].equals(INTERVAL_HINT)) { |
| 293 | FieldIntervalDataGen.ValueType vt; |
| 294 | if (splits[1].equals("int")) { |
| 295 | vt = FieldIntervalDataGen.ValueType.INT; |
| 296 | } else if (splits[1].equals("long")) { |
| 297 | vt = FieldIntervalDataGen.ValueType.LONG; |
| 298 | } else if (splits[1].equals("float")) { |
| 299 | vt = FieldIntervalDataGen.ValueType.FLOAT; |
| 300 | } else if (splits[1].equals("double")) { |
| 301 | vt = FieldIntervalDataGen.ValueType.DOUBLE; |
| 302 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 303 | throw new SqlppParseException(getSourceLocation(hintToken), "Unknown type for interval data gen: " + splits[1]); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 304 | } |
| 305 | rfdg = new FieldIntervalDataGen(vt, splits[2], splits[3]); |
| 306 | } else if (splits[0].equals(INSERT_RAND_INT_HINT)) { |
| 307 | rfdg = new InsertRandIntDataGen(splits[1], splits[2]); |
| 308 | } else if (splits[0].equals(DATE_BETWEEN_YEARS_HINT)) { |
| 309 | rfdg = new DateBetweenYearsDataGen(Integer.parseInt(splits[1]), Integer.parseInt(splits[2])); |
| 310 | } else if (splits[0].equals(DATETIME_BETWEEN_YEARS_HINT)) { |
| 311 | rfdg = new DatetimeBetweenYearsDataGen(Integer.parseInt(splits[1]), Integer.parseInt(splits[2])); |
| 312 | } else if (splits[0].equals(DATETIME_ADD_RAND_HOURS_HINT)) { |
| 313 | rfdg = new DatetimeAddRandHoursDataGen(Integer.parseInt(splits[1]), Integer.parseInt(splits[2]), splits[3]); |
| 314 | } else if (splits[0].equals(AUTO_HINT)) { |
| 315 | rfdg = new AutoDataGen(splits[1]); |
| 316 | } |
| 317 | return rfdg; |
| 318 | } |
| 319 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 320 | public SQLPPParser(String s) { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 321 | this(new StringReader(s)); |
| 322 | super.setInput(s); |
| 323 | } |
| 324 | |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 325 | public static void main(String args[]) throws ParseException, TokenMgrError, IOException, FileNotFoundException, CompilationException { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 326 | File file = new File(args[0]); |
| 327 | Reader fis = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8")); |
| 328 | SQLPPParser parser = new SQLPPParser(fis); |
| 329 | List<Statement> st = parser.parse(); |
| 330 | //st.accept(new SQLPPPrintVisitor(), 0); |
| 331 | } |
| 332 | |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 333 | public List<Statement> parse() throws CompilationException { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 334 | try { |
| 335 | return Statement(); |
| 336 | } catch (Error e) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 337 | // this is here as the JavaCharStream that's below the lexer sometimes throws Errors that are not handled |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 338 | // by the ANTLR-generated lexer or parser (e.g it does this for invalid backslash u + 4 hex digits escapes) |
Till Westmann | 60f8998 | 2017-08-11 18:14:20 -0700 | [diff] [blame] | 339 | final String msg = e.getClass().getSimpleName() + (e.getMessage() != null ? ": " + e.getMessage() : ""); |
Ali Alsuliman | fe90189 | 2019-03-19 01:40:35 -0700 | [diff] [blame] | 340 | throw new CompilationException(ErrorCode.PARSE_ERROR, LogRedactionUtil.userData(msg)); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 341 | } catch (SqlppParseException e) { |
Ali Alsuliman | fe90189 | 2019-03-19 01:40:35 -0700 | [diff] [blame] | 342 | throw new CompilationException(ErrorCode.PARSE_ERROR, e.getSourceLocation(), LogRedactionUtil.userData(getMessage(e))); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 343 | } catch (ParseException e) { |
Ali Alsuliman | fe90189 | 2019-03-19 01:40:35 -0700 | [diff] [blame] | 344 | throw new CompilationException(ErrorCode.PARSE_ERROR, LogRedactionUtil.userData(getMessage(e))); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 345 | } |
| 346 | } |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 347 | |
| 348 | protected String getMessage(ParseException pe) { |
| 349 | Token currentToken = pe.currentToken; |
| 350 | if (currentToken == null) { |
| 351 | return pe.getMessage(); |
| 352 | } |
| 353 | int[][] expectedTokenSequences = pe.expectedTokenSequences; |
| 354 | String[] tokenImage = pe.tokenImage; |
| 355 | String sep = REPORT_EXPECTED_TOKENS ? eol : " "; |
| 356 | StringBuilder expected = REPORT_EXPECTED_TOKENS ? new StringBuilder() : null; |
| 357 | int maxSize = appendExpected(expected, expectedTokenSequences, tokenImage); |
| 358 | Token tok = currentToken.next; |
| 359 | int line = tok.beginLine; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 360 | StringBuilder message = new StringBuilder(128); |
| 361 | message.append("In line ").append(line).append(" >>").append(getLine(line)).append("<<").append(sep).append("Encountered "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 362 | for (int i = 0; i < maxSize; i++) { |
| 363 | if (i != 0) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 364 | message.append(' '); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 365 | } |
| 366 | if (tok.kind == 0) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 367 | message.append(fixQuotes(tokenImage[0])); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 368 | break; |
| 369 | } |
Till Westmann | e3c9f27 | 2016-10-09 11:09:26 -0700 | [diff] [blame] | 370 | final String fixedTokenImage = tokenImage[tok.kind]; |
| 371 | if (! tok.image.equalsIgnoreCase(stripQuotes(fixedTokenImage))) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 372 | message.append(fixQuotes(fixedTokenImage)).append(' '); |
Till Westmann | e3c9f27 | 2016-10-09 11:09:26 -0700 | [diff] [blame] | 373 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 374 | message.append(quot).append(addEscapes(tok.image)).append(quot); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 375 | tok = tok.next; |
| 376 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 377 | message.append(" at column ").append(currentToken.next.beginColumn).append('.').append(sep); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 378 | if (REPORT_EXPECTED_TOKENS) { |
| 379 | if (expectedTokenSequences.length == 1) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 380 | message.append("Was expecting:").append(sep).append(" "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 381 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 382 | message.append("Was expecting one of:").append(sep).append(" "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 383 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 384 | message.append(expected); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 385 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 386 | return message.toString(); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 389 | protected static SourceLocation getSourceLocation(Token token) { |
| 390 | return token != null ? new SourceLocation(token.beginLine, token.beginColumn) : null; |
| 391 | } |
| 392 | |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 393 | protected static <T extends AbstractLangExpression> T addSourceLocation(T expr, Token token) { |
| 394 | expr.setSourceLocation(getSourceLocation(token)); |
| 395 | return expr; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 396 | } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 397 | |
| 398 | private boolean isToken(String image) { |
| 399 | return token.image.equalsIgnoreCase(image); |
| 400 | } |
| 401 | |
| 402 | private void expectToken(String image) throws SqlppParseException { |
| 403 | if (!isToken(image)) { |
| 404 | throw createUnexpectedTokenError(); |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | private SqlppParseException createUnexpectedTokenError() { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 409 | return new SqlppParseException(getSourceLocation(token), "Unexpected token: " + LogRedactionUtil.userData(token.image)); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | private boolean laToken(int idx, int kind, String image) { |
| 413 | Token t = getToken(idx); |
| 414 | return t.kind == kind && t.image.equalsIgnoreCase(image); |
| 415 | } |
| 416 | |
| 417 | private boolean laIdentifier(int idx, String image) { |
| 418 | return laToken(idx, IDENTIFIER, image); |
| 419 | } |
| 420 | |
| 421 | private boolean laIdentifier(String image) { |
| 422 | return laIdentifier(1, image); |
| 423 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | PARSER_END(SQLPPParser) |
| 427 | |
| 428 | |
| 429 | List<Statement> Statement() throws ParseException: |
| 430 | { |
| 431 | scopeStack.push(RootScopeFactory.createRootScope(this)); |
| 432 | List<Statement> decls = new ArrayList<Statement>(); |
| 433 | Statement stmt = null; |
| 434 | } |
| 435 | { |
Murtadha Hubail | dc77522 | 2017-08-21 15:22:45 +0300 | [diff] [blame] | 436 | ( |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 437 | (stmt = ExplainStatement() |
Murtadha Hubail | dc77522 | 2017-08-21 15:22:45 +0300 | [diff] [blame] | 438 | { |
| 439 | decls.add(stmt); |
| 440 | } |
| 441 | )? |
| 442 | (<SEMICOLON>)+ |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 443 | )* |
| 444 | <EOF> |
| 445 | { |
| 446 | return decls; |
| 447 | } |
| 448 | } |
| 449 | |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 450 | Statement ExplainStatement() throws ParseException: |
| 451 | { |
| 452 | Statement stmt = null; |
| 453 | Token explainToken = null; |
| 454 | } |
| 455 | { |
| 456 | ( <EXPLAIN> { explainToken = token; } )? |
| 457 | stmt = SingleStatement() |
| 458 | { |
| 459 | if (explainToken != null) { |
| 460 | if (stmt.getKind() == Statement.Kind.QUERY) { |
| 461 | ((Query)stmt).setExplain(true); |
| 462 | } else { |
| 463 | throw new SqlppParseException(getSourceLocation(explainToken), |
| 464 | "EXPLAIN is not supported for this kind of statement"); |
| 465 | } |
| 466 | } |
| 467 | return stmt; |
| 468 | } |
| 469 | } |
| 470 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 471 | Statement SingleStatement() throws ParseException: |
| 472 | { |
| 473 | Statement stmt = null; |
| 474 | } |
| 475 | { |
| 476 | ( |
| 477 | stmt = DataverseDeclaration() |
| 478 | | stmt = FunctionDeclaration() |
| 479 | | stmt = CreateStatement() |
| 480 | | stmt = LoadStatement() |
| 481 | | stmt = DropStatement() |
| 482 | | stmt = WriteStatement() |
| 483 | | stmt = SetStatement() |
| 484 | | stmt = InsertStatement() |
| 485 | | stmt = DeleteStatement() |
| 486 | | stmt = UpdateStatement() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 487 | | stmt = UpsertStatement() |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 488 | | stmt = ConnectionStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 489 | | stmt = CompactStatement() |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 490 | | stmt = Query() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 491 | | stmt = RefreshExternalDatasetStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 492 | ) |
| 493 | { |
| 494 | return stmt; |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | DataverseDecl DataverseDeclaration() throws ParseException: |
| 499 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 500 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 501 | String dvName = null; |
| 502 | } |
| 503 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 504 | <USE> { startToken = token; } dvName = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 505 | { |
| 506 | defaultDataverse = dvName; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 507 | DataverseDecl dvDecl = new DataverseDecl(new Identifier(dvName)); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 508 | return addSourceLocation(dvDecl, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 509 | } |
| 510 | } |
| 511 | |
| 512 | Statement CreateStatement() throws ParseException: |
| 513 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 514 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 515 | String hint = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 516 | Token hintToken = null; |
| 517 | boolean hintDGen = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 518 | Statement stmt = null; |
| 519 | } |
| 520 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 521 | <CREATE> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 522 | ( |
| 523 | { |
| 524 | hint = getHint(token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 525 | if (hint != null) { |
| 526 | hintToken = getHintToken(token); |
| 527 | hintDGen = hint.startsWith(DGEN_HINT); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 528 | } |
| 529 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 530 | stmt = TypeSpecification(startToken, hint, hintDGen, hintToken) |
| 531 | | stmt = NodegroupSpecification(startToken) |
| 532 | | stmt = DatasetSpecification(startToken) |
| 533 | | stmt = IndexSpecification(startToken) |
| 534 | | stmt = DataverseSpecification(startToken) |
| 535 | | stmt = FunctionSpecification(startToken) |
| 536 | | stmt = FeedSpecification(startToken) |
| 537 | | stmt = FeedPolicySpecification(startToken) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 538 | ) |
| 539 | { |
| 540 | return stmt; |
| 541 | } |
| 542 | } |
| 543 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 544 | TypeDecl TypeSpecification(Token startStmtToken, String hint, boolean dgen, Token hintToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 545 | { |
| 546 | Pair<Identifier,Identifier> nameComponents = null; |
| 547 | boolean ifNotExists = false; |
| 548 | TypeExpression typeExpr = null; |
| 549 | } |
| 550 | { |
| 551 | <TYPE> nameComponents = TypeName() ifNotExists = IfNotExists() |
Till Westmann | f602827 | 2016-09-30 14:34:42 -0700 | [diff] [blame] | 552 | <AS> typeExpr = RecordTypeDef() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 553 | { |
| 554 | long numValues = -1; |
| 555 | String filename = null; |
| 556 | if (dgen) { |
| 557 | String splits[] = hint.split(" +"); |
| 558 | if (splits.length != 3) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 559 | throw new SqlppParseException(getSourceLocation(hintToken), "Expecting /*+ dgen <filename> <numberOfItems> */"); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 560 | } |
| 561 | filename = splits[1]; |
| 562 | numValues = Long.parseLong(splits[2]); |
| 563 | } |
| 564 | TypeDataGen tddg = new TypeDataGen(dgen, filename, numValues); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 565 | TypeDecl stmt = new TypeDecl(nameComponents.first, nameComponents.second, typeExpr, tddg, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 566 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 567 | } |
| 568 | } |
| 569 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 570 | NodegroupDecl NodegroupSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 571 | { |
| 572 | String name = null; |
| 573 | String tmp = null; |
| 574 | boolean ifNotExists = false; |
| 575 | List<Identifier>ncNames = null; |
| 576 | } |
| 577 | { |
| 578 | <NODEGROUP> name = Identifier() |
| 579 | ifNotExists = IfNotExists() <ON> tmp = Identifier() |
| 580 | { |
| 581 | ncNames = new ArrayList<Identifier>(); |
| 582 | ncNames.add(new Identifier(tmp)); |
| 583 | } |
| 584 | ( <COMMA> tmp = Identifier() |
| 585 | { |
| 586 | ncNames.add(new Identifier(tmp)); |
| 587 | } |
| 588 | )* |
| 589 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 590 | NodegroupDecl stmt = new NodegroupDecl(new Identifier(name), ncNames, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 591 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 592 | } |
| 593 | } |
| 594 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 595 | DatasetDecl DatasetSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 596 | { |
| 597 | Pair<Identifier,Identifier> nameComponents = null; |
| 598 | boolean ifNotExists = false; |
Your Name | dace5f2 | 2016-01-12 14:02:48 -0800 | [diff] [blame] | 599 | Pair<Identifier,Identifier> typeComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 600 | String adapterName = null; |
| 601 | Map<String,String> properties = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 602 | FunctionSignature appliedFunction = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 603 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 604 | String nodeGroupName = null; |
| 605 | Map<String,String> hints = new HashMap<String,String>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 606 | DatasetDecl stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 607 | boolean autogenerated = false; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 608 | Pair<Integer, List<String>> filterField = null; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 609 | Pair<Identifier,Identifier> metaTypeComponents = new Pair<Identifier, Identifier>(null, null); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 610 | RecordConstructor withRecord = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 611 | } |
| 612 | { |
| 613 | ( |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 614 | <EXTERNAL> Dataset() nameComponents = QualifiedName() |
Your Name | dace5f2 | 2016-01-12 14:02:48 -0800 | [diff] [blame] | 615 | <LEFTPAREN> typeComponents = TypeName() <RIGHTPAREN> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 616 | ifNotExists = IfNotExists() |
| 617 | <USING> adapterName = AdapterName() properties = Configuration() |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 618 | ( <ON> nodeGroupName = Identifier() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 619 | ( <HINTS> hints = Properties() )? |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 620 | ( <WITH> withRecord = RecordConstructor() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 621 | { |
| 622 | ExternalDetailsDecl edd = new ExternalDetailsDecl(); |
| 623 | edd.setAdapter(adapterName); |
| 624 | edd.setProperties(properties); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 625 | try{ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 626 | stmt = new DatasetDecl(nameComponents.first, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 627 | nameComponents.second, |
Your Name | dace5f2 | 2016-01-12 14:02:48 -0800 | [diff] [blame] | 628 | typeComponents.first, |
| 629 | typeComponents.second, |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 630 | metaTypeComponents.first, |
| 631 | metaTypeComponents.second, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 632 | nodeGroupName != null? new Identifier(nodeGroupName): null, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 633 | hints, |
| 634 | DatasetType.EXTERNAL, |
| 635 | edd, |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 636 | withRecord, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 637 | ifNotExists); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 638 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 639 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 640 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 641 | } |
| 642 | |
Murtadha Hubail | 2c04ae0 | 2017-11-21 15:58:01 +0300 | [diff] [blame] | 643 | | ( <INTERNAL> )? |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 644 | Dataset() nameComponents = QualifiedName() |
Your Name | dace5f2 | 2016-01-12 14:02:48 -0800 | [diff] [blame] | 645 | <LEFTPAREN> typeComponents = TypeName() <RIGHTPAREN> |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 646 | ( |
| 647 | { String name; } |
| 648 | <WITH> |
| 649 | name = Identifier() |
| 650 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 651 | if (!name.equalsIgnoreCase("meta")){ |
| 652 | throw new SqlppParseException(getSourceLocation(startStmtToken), |
| 653 | "We can only support one additional associated field called \"meta\"."); |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | <LEFTPAREN> metaTypeComponents = TypeName() <RIGHTPAREN> |
| 657 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 658 | ifNotExists = IfNotExists() |
| 659 | primaryKeyFields = PrimaryKey() |
| 660 | (<AUTOGENERATED> { autogenerated = true; } )? |
| 661 | (<ON> nodeGroupName = Identifier() )? |
| 662 | ( <HINTS> hints = Properties() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 663 | ( LOOKAHEAD(2) <WITH> <FILTER> <ON> filterField = NestedField() )? |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 664 | ( <WITH> withRecord = RecordConstructor() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 665 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 666 | if(filterField!=null && filterField.first!=0){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 667 | throw new SqlppParseException(getSourceLocation(startStmtToken), |
| 668 | "A filter field can only be a field in the main record of the dataset."); |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 669 | } |
| 670 | InternalDetailsDecl idd = new InternalDetailsDecl(primaryKeyFields.second, |
| 671 | primaryKeyFields.first, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 672 | autogenerated, |
Murtadha Hubail | 2c04ae0 | 2017-11-21 15:58:01 +0300 | [diff] [blame] | 673 | filterField == null? null : filterField.second); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 674 | try{ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 675 | stmt = new DatasetDecl(nameComponents.first, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 676 | nameComponents.second, |
Your Name | dace5f2 | 2016-01-12 14:02:48 -0800 | [diff] [blame] | 677 | typeComponents.first, |
| 678 | typeComponents.second, |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 679 | metaTypeComponents.first, |
| 680 | metaTypeComponents.second, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 681 | nodeGroupName != null ? new Identifier(nodeGroupName) : null, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 682 | hints, |
| 683 | DatasetType.INTERNAL, |
| 684 | idd, |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 685 | withRecord, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 686 | ifNotExists); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 687 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 688 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 689 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 690 | } |
| 691 | ) |
| 692 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 693 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 694 | } |
| 695 | } |
| 696 | |
| 697 | RefreshExternalDatasetStatement RefreshExternalDatasetStatement() throws ParseException: |
| 698 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 699 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 700 | Pair<Identifier,Identifier> nameComponents = null; |
| 701 | String datasetName = null; |
| 702 | } |
| 703 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 704 | <REFRESH> { startToken = token; } <EXTERNAL> Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 705 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 706 | RefreshExternalDatasetStatement stmt = new RefreshExternalDatasetStatement(); |
| 707 | stmt.setDataverseName(nameComponents.first); |
| 708 | stmt.setDatasetName(nameComponents.second); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 709 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 710 | } |
| 711 | } |
| 712 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 713 | CreateIndexStatement IndexSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 714 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 715 | CreateIndexStatement stmt = new CreateIndexStatement(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 716 | String indexName = null; |
| 717 | boolean ifNotExists = false; |
| 718 | Pair<Identifier,Identifier> nameComponents = null; |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 719 | Pair<Integer, Pair<List<String>, IndexedTypeExpression>> fieldPair = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 720 | IndexParams indexType = null; |
| 721 | boolean enforced = false; |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 722 | boolean isPrimaryIdx = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 723 | } |
| 724 | { |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 725 | ( |
| 726 | (<INDEX> indexName = Identifier() |
| 727 | ifNotExists = IfNotExists() |
| 728 | <ON> nameComponents = QualifiedName() |
| 729 | <LEFTPAREN> ( fieldPair = OpenField() |
| 730 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 731 | stmt.addFieldExprPair(fieldPair.second); |
| 732 | stmt.addFieldIndexIndicator(fieldPair.first); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 733 | } |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 734 | ) (<COMMA> fieldPair = OpenField() |
| 735 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 736 | stmt.addFieldExprPair(fieldPair.second); |
| 737 | stmt.addFieldIndexIndicator(fieldPair.first); |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 738 | } |
| 739 | )* <RIGHTPAREN> ( <TYPE> indexType = IndexType() )? ( <ENFORCED> { enforced = true; } )?) |
| 740 | | |
| 741 | (<PRIMARY> <INDEX> {isPrimaryIdx = true;} |
| 742 | ( |
| 743 | (indexName = Identifier())? ifNotExists = IfNotExists() |
| 744 | ) |
| 745 | <ON> nameComponents = QualifiedName() (<TYPE> <BTREE>)? |
| 746 | ) |
| 747 | ) |
| 748 | { |
| 749 | if (isPrimaryIdx && indexName == null) { |
| 750 | indexName = "primary_idx_" + nameComponents.second; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 751 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 752 | stmt.setIndexName(new Identifier(indexName)); |
| 753 | stmt.setIfNotExists(ifNotExists); |
| 754 | stmt.setDataverseName(nameComponents.first); |
| 755 | stmt.setDatasetName(nameComponents.second); |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 756 | if (indexType != null) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 757 | stmt.setIndexType(indexType.type); |
| 758 | stmt.setGramLength(indexType.gramLength); |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 759 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 760 | stmt.setEnforced(enforced); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 761 | return addSourceLocation(stmt, startStmtToken); |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 762 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | String CompactionPolicy() throws ParseException : |
| 766 | { |
| 767 | String compactionPolicy = null; |
| 768 | } |
| 769 | { |
| 770 | compactionPolicy = Identifier() |
| 771 | { |
| 772 | return compactionPolicy; |
| 773 | } |
| 774 | } |
| 775 | |
| 776 | String FilterField() throws ParseException : |
| 777 | { |
| 778 | String filterField = null; |
| 779 | } |
| 780 | { |
| 781 | filterField = Identifier() |
| 782 | { |
| 783 | return filterField; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | IndexParams IndexType() throws ParseException: |
| 788 | { |
| 789 | IndexType type = null; |
| 790 | int gramLength = 0; |
| 791 | } |
| 792 | { |
| 793 | (<BTREE> |
| 794 | { |
| 795 | type = IndexType.BTREE; |
| 796 | } |
| 797 | | <RTREE> |
| 798 | { |
| 799 | type = IndexType.RTREE; |
| 800 | } |
| 801 | | <KEYWORD> |
| 802 | { |
| 803 | type = IndexType.LENGTH_PARTITIONED_WORD_INVIX; |
| 804 | } |
Taewoo Kim | c49405a | 2017-01-04 00:30:43 -0800 | [diff] [blame] | 805 | |<FULLTEXT> |
| 806 | { |
| 807 | type = IndexType.SINGLE_PARTITION_WORD_INVIX; |
| 808 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 809 | | <NGRAM> <LEFTPAREN> <INTEGER_LITERAL> |
| 810 | { |
| 811 | type = IndexType.LENGTH_PARTITIONED_NGRAM_INVIX; |
| 812 | gramLength = Integer.valueOf(token.image); |
| 813 | } |
| 814 | <RIGHTPAREN>) |
| 815 | { |
| 816 | return new IndexParams(type, gramLength); |
| 817 | } |
| 818 | } |
| 819 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 820 | CreateDataverseStatement DataverseSpecification(Token startStmtToken) throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 821 | { |
| 822 | String dvName = null; |
| 823 | boolean ifNotExists = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 824 | } |
| 825 | { |
| 826 | <DATAVERSE> dvName = Identifier() |
| 827 | ifNotExists = IfNotExists() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 828 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 829 | CreateDataverseStatement stmt = new CreateDataverseStatement(new Identifier(dvName), null, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 830 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 831 | } |
| 832 | } |
| 833 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 834 | CreateFunctionStatement FunctionSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 835 | { |
| 836 | FunctionSignature signature; |
| 837 | boolean ifNotExists = false; |
| 838 | List<VarIdentifier> paramList = new ArrayList<VarIdentifier>(); |
| 839 | String functionBody; |
| 840 | VarIdentifier var = null; |
| 841 | Expression functionBodyExpr; |
| 842 | Token beginPos; |
| 843 | Token endPos; |
| 844 | FunctionName fctName = null; |
Steven Glenn Jacobs | 665e9fe | 2017-12-27 10:30:39 -0800 | [diff] [blame] | 845 | String currentDataverse = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 846 | |
| 847 | createNewScope(); |
| 848 | } |
| 849 | { |
| 850 | <FUNCTION> fctName = FunctionName() |
Steven Glenn Jacobs | 665e9fe | 2017-12-27 10:30:39 -0800 | [diff] [blame] | 851 | { |
| 852 | defaultDataverse = fctName.dataverse; |
| 853 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 854 | ifNotExists = IfNotExists() |
| 855 | paramList = ParameterList() |
| 856 | <LEFTBRACE> |
| 857 | { |
| 858 | beginPos = token; |
| 859 | } |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 860 | (functionBodyExpr = SelectExpression(true) | functionBodyExpr = Expression()) |
| 861 | <RIGHTBRACE> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 862 | { |
| 863 | endPos = token; |
| 864 | functionBody = extractFragment(beginPos.beginLine, beginPos.beginColumn, endPos.beginLine, endPos.beginColumn); |
| 865 | // TODO use fctName.library |
| 866 | signature = new FunctionSignature(fctName.dataverse, fctName.function, paramList.size()); |
| 867 | getCurrentScope().addFunctionDescriptor(signature, false); |
| 868 | removeCurrentScope(); |
Steven Glenn Jacobs | 665e9fe | 2017-12-27 10:30:39 -0800 | [diff] [blame] | 869 | defaultDataverse = currentDataverse; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 870 | CreateFunctionStatement stmt = new CreateFunctionStatement(signature, paramList, functionBody, functionBodyExpr, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 871 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 872 | } |
| 873 | } |
| 874 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 875 | CreateFeedStatement FeedSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 876 | { |
| 877 | Pair<Identifier,Identifier> nameComponents = null; |
| 878 | boolean ifNotExists = false; |
| 879 | String adapterName = null; |
| 880 | Map<String,String> properties = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 881 | CreateFeedStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 882 | Pair<Identifier,Identifier> sourceNameComponents = null; |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 883 | RecordConstructor withRecord = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 884 | } |
| 885 | { |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 886 | <FEED> nameComponents = QualifiedName() ifNotExists = IfNotExists() |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 887 | <WITH> withRecord = RecordConstructor() |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 888 | { |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 889 | try { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 890 | stmt = new CreateFeedStatement(nameComponents, withRecord, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 891 | return addSourceLocation(stmt, startStmtToken); |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 892 | } catch (AlgebricksException e) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 893 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 894 | } |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 895 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 896 | } |
| 897 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 898 | CreateFeedPolicyStatement FeedPolicySpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 899 | { |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 900 | String policyName = null; |
| 901 | String basePolicyName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 902 | String sourcePolicyFile = null; |
| 903 | String definition = null; |
| 904 | boolean ifNotExists = false; |
| 905 | Map<String,String> properties = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 906 | CreateFeedPolicyStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 907 | } |
| 908 | { |
| 909 | ( |
| 910 | <INGESTION> <POLICY> policyName = Identifier() ifNotExists = IfNotExists() |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 911 | <FROM> |
| 912 | (<POLICY> basePolicyName = Identifier() properties = Configuration() (<DEFINITION> definition = ConstantString())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 913 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 914 | stmt = new CreateFeedPolicyStatement(policyName, |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 915 | basePolicyName, properties, definition, ifNotExists); |
| 916 | } |
Abdullah Alamoudi | 5dc73ed | 2016-07-28 05:03:13 +0300 | [diff] [blame] | 917 | | <PATH> sourcePolicyFile = ConstantString() (<DEFINITION> definition = ConstantString())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 918 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 919 | stmt = new CreateFeedPolicyStatement(policyName, sourcePolicyFile, definition, ifNotExists); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 920 | } |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 921 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 922 | ) |
| 923 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 924 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 925 | } |
| 926 | } |
| 927 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 928 | List<VarIdentifier> ParameterList() throws ParseException: |
| 929 | { |
| 930 | List<VarIdentifier> paramList = new ArrayList<VarIdentifier>(); |
| 931 | VarIdentifier var = null; |
| 932 | } |
| 933 | { |
| 934 | <LEFTPAREN> (<IDENTIFIER> |
| 935 | { |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 936 | var = SqlppVariableUtil.toInternalVariableIdentifier(token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 937 | paramList.add(var); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 938 | } |
| 939 | (<COMMA> <IDENTIFIER> |
| 940 | { |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 941 | var = SqlppVariableUtil.toInternalVariableIdentifier(token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 942 | paramList.add(var); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 943 | } |
| 944 | )*)? <RIGHTPAREN> |
| 945 | { |
| 946 | return paramList; |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | boolean IfNotExists() throws ParseException: |
| 951 | { |
| 952 | } |
| 953 | { |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 954 | ( LOOKAHEAD(1) <IF> <NOT> <EXISTS> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 955 | { |
| 956 | return true; |
| 957 | } |
| 958 | )? |
| 959 | { |
| 960 | return false; |
| 961 | } |
| 962 | } |
| 963 | |
Xikui Wang | 9d63f62 | 2017-05-18 17:50:44 -0700 | [diff] [blame] | 964 | void ApplyFunction(List<FunctionSignature> funcSigs) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 965 | { |
| 966 | FunctionName functioName = null; |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 967 | String fqFunctionName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 968 | } |
| 969 | { |
| 970 | <APPLY> <FUNCTION> functioName = FunctionName() |
| 971 | { |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 972 | fqFunctionName = functioName.library == null ? functioName.function : functioName.library + "#" + functioName.function; |
| 973 | funcSigs.add(new FunctionSignature(functioName.dataverse, fqFunctionName, 1)); |
| 974 | } |
| 975 | ( |
| 976 | <COMMA> functioName = FunctionName() |
| 977 | { |
| 978 | fqFunctionName = functioName.library == null ? functioName.function : functioName.library + "#" + functioName.function; |
| 979 | funcSigs.add(new FunctionSignature(functioName.dataverse, fqFunctionName, 1)); |
| 980 | } |
| 981 | )* |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | String GetPolicy() throws ParseException: |
| 985 | { |
| 986 | String policy = null; |
| 987 | } |
| 988 | { |
| 989 | <USING> <POLICY> policy = Identifier() |
| 990 | { |
| 991 | return policy; |
| 992 | } |
| 993 | |
| 994 | } |
| 995 | |
| 996 | FunctionSignature FunctionSignature() throws ParseException: |
| 997 | { |
| 998 | FunctionName fctName = null; |
| 999 | int arity = 0; |
| 1000 | } |
| 1001 | { |
| 1002 | fctName = FunctionName() <ATT> <INTEGER_LITERAL> |
| 1003 | { |
| 1004 | arity = new Integer(token.image); |
| 1005 | if (arity < 0 && arity != FunctionIdentifier.VARARGS) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1006 | throw new SqlppParseException(getSourceLocation(token), "Invalid arity:" + arity); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1007 | } |
| 1008 | |
| 1009 | // TODO use fctName.library |
| 1010 | String fqFunctionName = fctName.library == null ? fctName.function : fctName.library + "#" + fctName.function; |
| 1011 | return new FunctionSignature(fctName.dataverse, fqFunctionName, arity); |
| 1012 | } |
| 1013 | } |
| 1014 | |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1015 | Pair<List<Integer>, List<List<String>>> PrimaryKey() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1016 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1017 | Pair<Integer, List<String>> tmp = null; |
| 1018 | List<Integer> keyFieldSourceIndicators = new ArrayList<Integer>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1019 | List<List<String>> primaryKeyFields = new ArrayList<List<String>>(); |
| 1020 | } |
| 1021 | { |
| 1022 | <PRIMARY> <KEY> tmp = NestedField() |
| 1023 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1024 | keyFieldSourceIndicators.add(tmp.first); |
| 1025 | primaryKeyFields.add(tmp.second); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1026 | } |
| 1027 | ( <COMMA> tmp = NestedField() |
| 1028 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1029 | keyFieldSourceIndicators.add(tmp.first); |
| 1030 | primaryKeyFields.add(tmp.second); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1031 | } |
| 1032 | )* |
| 1033 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1034 | return new Pair<List<Integer>, List<List<String>>> (keyFieldSourceIndicators, primaryKeyFields); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1035 | } |
| 1036 | } |
| 1037 | |
| 1038 | Statement DropStatement() throws ParseException: |
| 1039 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1040 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1041 | String id = null; |
| 1042 | Pair<Identifier,Identifier> pairId = null; |
| 1043 | Triple<Identifier,Identifier,Identifier> tripleId = null; |
| 1044 | FunctionSignature funcSig = null; |
| 1045 | boolean ifExists = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1046 | AbstractStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1047 | } |
| 1048 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1049 | <DROP> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1050 | ( |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 1051 | Dataset() pairId = QualifiedName() ifExists = IfExists() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1052 | { |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1053 | stmt = new DropDatasetStatement(pairId.first, pairId.second, ifExists); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1054 | } |
| 1055 | | <INDEX> tripleId = DoubleQualifiedName() ifExists = IfExists() |
| 1056 | { |
| 1057 | stmt = new IndexDropStatement(tripleId.first, tripleId.second, tripleId.third, ifExists); |
| 1058 | } |
| 1059 | | <NODEGROUP> id = Identifier() ifExists = IfExists() |
| 1060 | { |
| 1061 | stmt = new NodeGroupDropStatement(new Identifier(id), ifExists); |
| 1062 | } |
| 1063 | | <TYPE> pairId = TypeName() ifExists = IfExists() |
| 1064 | { |
| 1065 | stmt = new TypeDropStatement(pairId.first, pairId.second, ifExists); |
| 1066 | } |
| 1067 | | <DATAVERSE> id = Identifier() ifExists = IfExists() |
| 1068 | { |
| 1069 | stmt = new DataverseDropStatement(new Identifier(id), ifExists); |
| 1070 | } |
| 1071 | | <FUNCTION> funcSig = FunctionSignature() ifExists = IfExists() |
| 1072 | { |
| 1073 | stmt = new FunctionDropStatement(funcSig, ifExists); |
| 1074 | } |
| 1075 | | <FEED> pairId = QualifiedName() ifExists = IfExists() |
| 1076 | { |
| 1077 | stmt = new FeedDropStatement(pairId.first, pairId.second, ifExists); |
| 1078 | } |
Abdullah Alamoudi | 5dc73ed | 2016-07-28 05:03:13 +0300 | [diff] [blame] | 1079 | | <INGESTION> <POLICY> pairId = QualifiedName() ifExists = IfExists() |
| 1080 | { |
| 1081 | stmt = new FeedPolicyDropStatement(pairId.first, pairId.second, ifExists); |
| 1082 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1083 | ) |
| 1084 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1085 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1086 | } |
| 1087 | } |
| 1088 | |
| 1089 | boolean IfExists() throws ParseException : |
| 1090 | { |
| 1091 | } |
| 1092 | { |
| 1093 | ( LOOKAHEAD(1) <IF> <EXISTS> |
| 1094 | { |
| 1095 | return true; |
| 1096 | } |
| 1097 | )? |
| 1098 | { |
| 1099 | return false; |
| 1100 | } |
| 1101 | } |
| 1102 | |
| 1103 | InsertStatement InsertStatement() throws ParseException: |
| 1104 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1105 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1106 | Pair<Identifier,Identifier> nameComponents = null; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1107 | VariableExpr var = null; |
| 1108 | Query query = null; |
| 1109 | Expression returnExpression = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1110 | } |
| 1111 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1112 | <INSERT> { startToken = token; } <INTO> nameComponents = QualifiedName() (<AS> var = Variable())? |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 1113 | query = Query() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1114 | ( <RETURNING> returnExpression = Expression())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1115 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 1116 | if (var == null && returnExpression != null) { |
| 1117 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 1118 | addSourceLocation(var, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1119 | } |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 1120 | query.setTopLevel(true); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1121 | InsertStatement stmt = new InsertStatement(nameComponents.first, nameComponents.second, query, getVarCounter(), |
| 1122 | var, returnExpression); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1123 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | UpsertStatement UpsertStatement() throws ParseException: |
| 1128 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1129 | Token startToken = null; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1130 | Pair<Identifier,Identifier> nameComponents = null; |
| 1131 | VariableExpr var = null; |
| 1132 | Query query = null; |
| 1133 | Expression returnExpression = null; |
| 1134 | } |
| 1135 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1136 | <UPSERT> { startToken = token; } <INTO> nameComponents = QualifiedName() (<AS> var = Variable())? |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 1137 | query = Query() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1138 | ( <RETURNING> returnExpression = Expression())? |
| 1139 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 1140 | if (var == null && returnExpression != null) { |
| 1141 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 1142 | addSourceLocation(var, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 1143 | } |
| 1144 | query.setTopLevel(true); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1145 | UpsertStatement stmt = new UpsertStatement(nameComponents.first, nameComponents.second, query, getVarCounter(), |
| 1146 | var, returnExpression); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1147 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | DeleteStatement DeleteStatement() throws ParseException: |
| 1152 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1153 | Token startToken = null; |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 1154 | VariableExpr var = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1155 | Expression condition = null; |
| 1156 | Pair<Identifier, Identifier> nameComponents; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1157 | } |
| 1158 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1159 | <DELETE> { startToken = token; } |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 1160 | <FROM> nameComponents = QualifiedName() ((<AS>)? var = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1161 | (<WHERE> condition = Expression())? |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 1162 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 1163 | if (var == null) { |
| 1164 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 1165 | addSourceLocation(var, startToken); |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 1166 | } |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 1167 | DeleteStatement stmt = new DeleteStatement(var, nameComponents.first, nameComponents.second, |
Abdullah Alamoudi | 6eb0175 | 2017-04-01 21:51:19 -0700 | [diff] [blame] | 1168 | condition, getVarCounter()); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1169 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 1170 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | UpdateStatement UpdateStatement() throws ParseException: |
| 1174 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1175 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1176 | VariableExpr vars; |
| 1177 | Expression target; |
| 1178 | Expression condition; |
| 1179 | UpdateClause uc; |
| 1180 | List<UpdateClause> ucs = new ArrayList<UpdateClause>(); |
| 1181 | } |
| 1182 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1183 | <UPDATE> { startToken = token; } vars = Variable() <IN> target = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1184 | <WHERE> condition = Expression() |
| 1185 | <LEFTPAREN> (uc = UpdateClause() |
| 1186 | { |
| 1187 | ucs.add(uc); |
| 1188 | } |
| 1189 | (<COMMA> uc = UpdateClause() |
| 1190 | { |
| 1191 | ucs.add(uc); |
| 1192 | } |
| 1193 | )*) <RIGHTPAREN> |
| 1194 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1195 | UpdateStatement stmt = new UpdateStatement(vars, target, condition, ucs); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1196 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1197 | } |
| 1198 | } |
| 1199 | |
| 1200 | UpdateClause UpdateClause() throws ParseException: |
| 1201 | { |
| 1202 | Expression target = null; |
| 1203 | Expression value = null ; |
| 1204 | InsertStatement is = null; |
| 1205 | DeleteStatement ds = null; |
| 1206 | UpdateStatement us = null; |
| 1207 | Expression condition = null; |
| 1208 | UpdateClause ifbranch = null; |
| 1209 | UpdateClause elsebranch = null; |
| 1210 | } |
| 1211 | { |
| 1212 | (<SET> target = Expression() <EQ> value = Expression() |
| 1213 | | is = InsertStatement() |
| 1214 | | ds = DeleteStatement() |
| 1215 | | us = UpdateStatement() |
| 1216 | | <IF> <LEFTPAREN> condition = Expression() <RIGHTPAREN> |
| 1217 | <THEN> ifbranch = UpdateClause() |
| 1218 | [LOOKAHEAD(1) <ELSE> elsebranch = UpdateClause()] |
| 1219 | { |
| 1220 | return new UpdateClause(target, value, is, ds, us, condition, ifbranch, elsebranch); |
| 1221 | } |
| 1222 | ) |
| 1223 | } |
| 1224 | |
| 1225 | Statement SetStatement() throws ParseException: |
| 1226 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1227 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1228 | String pn = null; |
| 1229 | String pv = null; |
| 1230 | } |
| 1231 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1232 | <SET> { startToken = token; } pn = Identifier() pv = ConstantString() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1233 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1234 | SetStatement stmt = new SetStatement(pn, pv); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1235 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | Statement WriteStatement() throws ParseException: |
| 1240 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1241 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1242 | String nodeName = null; |
| 1243 | String fileName = null; |
| 1244 | Query query; |
| 1245 | String writerClass = null; |
| 1246 | Pair<Identifier,Identifier> nameComponents = null; |
| 1247 | } |
| 1248 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1249 | <WRITE> { startToken = token; } <OUTPUT> <TO> nodeName = Identifier() <COLON> fileName = ConstantString() |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 1250 | ( <USING> writerClass = ConstantString() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1251 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1252 | WriteStatement stmt = new WriteStatement(new Identifier(nodeName), fileName, writerClass); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1253 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1254 | } |
| 1255 | } |
| 1256 | |
| 1257 | LoadStatement LoadStatement() throws ParseException: |
| 1258 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1259 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1260 | Identifier dataverseName = null; |
| 1261 | Identifier datasetName = null; |
| 1262 | boolean alreadySorted = false; |
| 1263 | String adapterName; |
| 1264 | Map<String,String> properties; |
| 1265 | Pair<Identifier,Identifier> nameComponents = null; |
| 1266 | } |
| 1267 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1268 | <LOAD> { startToken = token; } Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1269 | { |
| 1270 | dataverseName = nameComponents.first; |
| 1271 | datasetName = nameComponents.second; |
| 1272 | } |
| 1273 | <USING> adapterName = AdapterName() properties = Configuration() |
| 1274 | (<PRESORTED> |
| 1275 | { |
| 1276 | alreadySorted = true; |
| 1277 | } |
| 1278 | )? |
| 1279 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1280 | LoadStatement stmt = new LoadStatement(dataverseName, datasetName, adapterName, properties, alreadySorted); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1281 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1282 | } |
| 1283 | } |
| 1284 | |
| 1285 | |
| 1286 | String AdapterName() throws ParseException : |
| 1287 | { |
| 1288 | String adapterName = null; |
| 1289 | } |
| 1290 | { |
| 1291 | adapterName = Identifier() |
| 1292 | { |
| 1293 | return adapterName; |
| 1294 | } |
| 1295 | } |
| 1296 | |
| 1297 | Statement CompactStatement() throws ParseException: |
| 1298 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1299 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1300 | Pair<Identifier,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1301 | } |
| 1302 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1303 | <COMPACT> { startToken = token; } Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1304 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1305 | CompactStatement stmt = new CompactStatement(nameComponents.first, nameComponents.second); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1306 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1307 | } |
| 1308 | } |
| 1309 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1310 | Statement ConnectionStatement() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1311 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1312 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1313 | Statement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1314 | } |
| 1315 | { |
| 1316 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1317 | <CONNECT> { startToken = token; } stmt = ConnectStatement(startToken) |
| 1318 | | <DISCONNECT> { startToken = token; } stmt = DisconnectStatement(startToken) |
| 1319 | | <START> { startToken = token; } stmt = StartStatement(startToken) |
| 1320 | | <STOP> { startToken = token; } stmt = StopStatement(startToken) |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1321 | ) |
| 1322 | { |
| 1323 | return stmt; |
| 1324 | } |
| 1325 | } |
| 1326 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1327 | Statement StartStatement(Token startStmtToken) throws ParseException: |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1328 | { |
| 1329 | Pair<Identifier,Identifier> feedNameComponents = null; |
| 1330 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1331 | AbstractStatement stmt = null; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1332 | } |
| 1333 | { |
| 1334 | <FEED> feedNameComponents = QualifiedName() |
| 1335 | { |
| 1336 | stmt = new StartFeedStatement (feedNameComponents); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1337 | return addSourceLocation(stmt, startStmtToken); |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1338 | } |
| 1339 | } |
| 1340 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1341 | AbstractStatement StopStatement(Token startStmtToken) throws ParseException: |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1342 | { |
| 1343 | Pair<Identifier,Identifier> feedNameComponents = null; |
| 1344 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1345 | AbstractStatement stmt = null; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1346 | } |
| 1347 | { |
| 1348 | <FEED> feedNameComponents = QualifiedName() |
| 1349 | { |
| 1350 | stmt = new StopFeedStatement (feedNameComponents); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1351 | return addSourceLocation(stmt, startStmtToken); |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1352 | } |
| 1353 | } |
| 1354 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1355 | AbstractStatement DisconnectStatement(Token startStmtToken) throws ParseException: |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1356 | { |
| 1357 | Pair<Identifier,Identifier> feedNameComponents = null; |
| 1358 | Pair<Identifier,Identifier> datasetNameComponents = null; |
| 1359 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1360 | AbstractStatement stmt = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1361 | } |
| 1362 | { |
| 1363 | ( |
| 1364 | <FEED> feedNameComponents = QualifiedName() <FROM> Dataset() datasetNameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1365 | { |
| 1366 | stmt = new DisconnectFeedStatement(feedNameComponents, datasetNameComponents); |
| 1367 | } |
| 1368 | ) |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1369 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1370 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1371 | } |
| 1372 | } |
| 1373 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1374 | AbstractStatement ConnectStatement(Token startStmtToken) throws ParseException: |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1375 | { |
| 1376 | Pair<Identifier,Identifier> feedNameComponents = null; |
| 1377 | Pair<Identifier,Identifier> datasetNameComponents = null; |
| 1378 | |
| 1379 | Map<String,String> configuration = null; |
Xikui Wang | 9d63f62 | 2017-05-18 17:50:44 -0700 | [diff] [blame] | 1380 | List<FunctionSignature> appliedFunctions = new ArrayList<FunctionSignature>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1381 | AbstractStatement stmt = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1382 | String policy = null; |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 1383 | String whereClauseBody = null; |
| 1384 | WhereClause whereClause = null; |
| 1385 | Token beginPos = null; |
| 1386 | Token endPos = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1387 | } |
| 1388 | { |
| 1389 | ( |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1390 | <FEED> feedNameComponents = QualifiedName() <TO> Dataset() datasetNameComponents = QualifiedName() |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 1391 | (ApplyFunction(appliedFunctions))? |
| 1392 | (policy = GetPolicy())? |
| 1393 | ( |
| 1394 | <WHERE> |
| 1395 | { |
| 1396 | beginPos = token; |
| 1397 | whereClause = new WhereClause(); |
| 1398 | Expression whereExpr; |
| 1399 | } |
| 1400 | whereExpr = Expression() |
| 1401 | { |
| 1402 | whereClause.setWhereExpr(whereExpr); |
| 1403 | } |
| 1404 | )? |
| 1405 | { |
| 1406 | if (whereClause != null) { |
| 1407 | endPos = token; |
| 1408 | whereClauseBody = extractFragment(beginPos.endLine, beginPos.endColumn, endPos.endLine, endPos.endColumn + 1); |
| 1409 | } |
| 1410 | } |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1411 | { |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 1412 | stmt = new ConnectFeedStatement(feedNameComponents, datasetNameComponents, appliedFunctions, |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 1413 | policy, whereClauseBody, getVarCounter()); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1414 | } |
| 1415 | ) |
| 1416 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1417 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 1418 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1419 | } |
| 1420 | |
| 1421 | Map<String,String> Configuration() throws ParseException : |
| 1422 | { |
| 1423 | Map<String,String> configuration = new LinkedHashMap<String,String>(); |
| 1424 | Pair<String, String> keyValuePair = null; |
| 1425 | } |
| 1426 | { |
| 1427 | <LEFTPAREN> ( keyValuePair = KeyValuePair() |
| 1428 | { |
| 1429 | configuration.put(keyValuePair.first, keyValuePair.second); |
| 1430 | } |
| 1431 | ( <COMMA> keyValuePair = KeyValuePair() |
| 1432 | { |
| 1433 | configuration.put(keyValuePair.first, keyValuePair.second); |
| 1434 | } |
| 1435 | )* )? <RIGHTPAREN> |
| 1436 | { |
| 1437 | return configuration; |
| 1438 | } |
| 1439 | } |
| 1440 | |
| 1441 | Pair<String, String> KeyValuePair() throws ParseException: |
| 1442 | { |
| 1443 | String key; |
| 1444 | String value; |
| 1445 | } |
| 1446 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 1447 | <LEFTPAREN> key = ConstantString() <EQ> value = ConstantString() <RIGHTPAREN> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1448 | { |
| 1449 | return new Pair<String, String>(key, value); |
| 1450 | } |
| 1451 | } |
| 1452 | |
| 1453 | Map<String,String> Properties() throws ParseException: |
| 1454 | { |
| 1455 | Map<String,String> properties = new HashMap<String,String>(); |
| 1456 | Pair<String, String> property; |
| 1457 | } |
| 1458 | { |
| 1459 | (LOOKAHEAD(1) <LEFTPAREN> property = Property() |
| 1460 | { |
| 1461 | properties.put(property.first, property.second); |
| 1462 | } |
| 1463 | ( <COMMA> property = Property() |
| 1464 | { |
| 1465 | properties.put(property.first, property.second); |
| 1466 | } |
| 1467 | )* <RIGHTPAREN> )? |
| 1468 | { |
| 1469 | return properties; |
| 1470 | } |
| 1471 | } |
| 1472 | |
| 1473 | Pair<String, String> Property() throws ParseException: |
| 1474 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 1475 | String key = null; |
| 1476 | String value = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1477 | } |
| 1478 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 1479 | (key = Identifier() | key = StringLiteral()) |
| 1480 | <EQ> |
| 1481 | ( value = ConstantString() | <INTEGER_LITERAL> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1482 | { |
| 1483 | try { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1484 | value = String.valueOf(Long.parseLong(token.image)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1485 | } catch (NumberFormatException nfe) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1486 | throw new SqlppParseException(getSourceLocation(token), "inapproriate value: " + token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1487 | } |
| 1488 | } |
| 1489 | ) |
| 1490 | { |
| 1491 | return new Pair<String, String>(key.toUpperCase(), value); |
| 1492 | } |
| 1493 | } |
| 1494 | |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1495 | IndexedTypeExpression IndexedTypeExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1496 | { |
| 1497 | TypeExpression typeExpr = null; |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1498 | boolean isUnknownable = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1499 | } |
| 1500 | { |
| 1501 | ( |
| 1502 | typeExpr = TypeReference() |
| 1503 | | typeExpr = OrderedListTypeDef() |
| 1504 | | typeExpr = UnorderedListTypeDef() |
| 1505 | ) |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1506 | ( <QUES> { isUnknownable = true; } )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1507 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1508 | return new IndexedTypeExpression(typeExpr, isUnknownable); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1509 | } |
| 1510 | } |
| 1511 | |
| 1512 | TypeExpression TypeExpr() throws ParseException: |
| 1513 | { |
| 1514 | TypeExpression typeExpr = null; |
| 1515 | } |
| 1516 | { |
| 1517 | ( |
| 1518 | typeExpr = RecordTypeDef() |
| 1519 | | typeExpr = TypeReference() |
| 1520 | | typeExpr = OrderedListTypeDef() |
| 1521 | | typeExpr = UnorderedListTypeDef() |
| 1522 | ) |
| 1523 | { |
| 1524 | return typeExpr; |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | RecordTypeDefinition RecordTypeDef() throws ParseException: |
| 1529 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1530 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1531 | RecordTypeDefinition recType = new RecordTypeDefinition(); |
| 1532 | RecordTypeDefinition.RecordKind recordKind = null; |
| 1533 | } |
| 1534 | { |
| 1535 | ( <CLOSED> { recordKind = RecordTypeDefinition.RecordKind.CLOSED; } |
| 1536 | | <OPEN> { recordKind = RecordTypeDefinition.RecordKind.OPEN; } )? |
| 1537 | <LEFTBRACE> |
| 1538 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1539 | startToken = token; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1540 | String hint = getHint(token); |
| 1541 | if (hint != null) { |
| 1542 | String splits[] = hint.split(" +"); |
| 1543 | if (splits[0].equals(GEN_FIELDS_HINT)) { |
| 1544 | if (splits.length != 5) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1545 | throw new SqlppParseException(getSourceLocation(getHintToken(token)), |
| 1546 | "Expecting: /*+ gen-fields <type> <min> <max> <prefix>*/"); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1547 | } |
| 1548 | if (!splits[1].equals("int")) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1549 | throw new SqlppParseException(getSourceLocation(getHintToken(token)), |
| 1550 | "The only supported type for gen-fields is int."); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1551 | } |
| 1552 | UndeclaredFieldsDataGen ufdg = new UndeclaredFieldsDataGen(UndeclaredFieldsDataGen.Type.INT, |
| 1553 | Integer.parseInt(splits[2]), Integer.parseInt(splits[3]), splits[4]); |
| 1554 | recType.setUndeclaredFieldsDataGen(ufdg); |
| 1555 | } |
| 1556 | } |
| 1557 | |
| 1558 | } |
| 1559 | ( |
| 1560 | RecordField(recType) |
| 1561 | ( <COMMA> RecordField(recType) )* |
| 1562 | )? |
| 1563 | <RIGHTBRACE> |
| 1564 | { |
| 1565 | if (recordKind == null) { |
| 1566 | recordKind = RecordTypeDefinition.RecordKind.OPEN; |
| 1567 | } |
| 1568 | recType.setRecordKind(recordKind); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1569 | return addSourceLocation(recType, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1570 | } |
| 1571 | } |
| 1572 | |
| 1573 | void RecordField(RecordTypeDefinition recType) throws ParseException: |
| 1574 | { |
| 1575 | String fieldName; |
| 1576 | TypeExpression type = null; |
| 1577 | boolean nullable = false; |
| 1578 | } |
| 1579 | { |
| 1580 | fieldName = Identifier() |
| 1581 | { |
| 1582 | String hint = getHint(token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1583 | IRecordFieldDataGen rfdg = hint != null ? parseFieldDataGen(hint, token.specialToken) : null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1584 | } |
| 1585 | <COLON> type = TypeExpr() (<QUES> { nullable = true; } )? |
| 1586 | { |
| 1587 | recType.addField(fieldName, type, nullable, rfdg); |
| 1588 | } |
| 1589 | } |
| 1590 | |
| 1591 | TypeReferenceExpression TypeReference() throws ParseException: |
| 1592 | { |
Abdullah Alamoudi | e4b318f | 2016-09-19 13:31:25 +0300 | [diff] [blame] | 1593 | Pair<Identifier,Identifier> id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1594 | } |
| 1595 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1596 | id = QualifiedName() |
| 1597 | { |
| 1598 | if (id.first == null && id.second.getValue().equalsIgnoreCase("int")) { |
| 1599 | id.second.setValue("int64"); |
| 1600 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1601 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1602 | TypeReferenceExpression typeRef = new TypeReferenceExpression(id); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1603 | return addSourceLocation(typeRef, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1604 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
| 1607 | OrderedListTypeDefinition OrderedListTypeDef() throws ParseException: |
| 1608 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1609 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1610 | TypeExpression type = null; |
| 1611 | } |
| 1612 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1613 | <LEFTBRACKET> { startToken = token; } |
| 1614 | ( type = TypeExpr() ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1615 | <RIGHTBRACKET> |
| 1616 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1617 | OrderedListTypeDefinition typeDef = new OrderedListTypeDefinition(type); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1618 | return addSourceLocation(typeDef, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1619 | } |
| 1620 | } |
| 1621 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1622 | UnorderedListTypeDefinition UnorderedListTypeDef() throws ParseException: |
| 1623 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1624 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1625 | TypeExpression type = null; |
| 1626 | } |
| 1627 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1628 | <LEFTDBLBRACE> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1629 | ( type = TypeExpr() ) |
| 1630 | <RIGHTDBLBRACE> |
| 1631 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1632 | UnorderedListTypeDefinition typeDef = new UnorderedListTypeDefinition(type); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1633 | return addSourceLocation(typeDef, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1634 | } |
| 1635 | } |
| 1636 | |
| 1637 | FunctionName FunctionName() throws ParseException: |
| 1638 | { |
| 1639 | String first = null; |
| 1640 | String second = null; |
| 1641 | String third = null; |
| 1642 | boolean secondAfterDot = false; |
| 1643 | } |
| 1644 | { |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 1645 | first = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1646 | { |
| 1647 | FunctionName result = new FunctionName(); |
| 1648 | result.hint = getHint(token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1649 | result.sourceLoc = getSourceLocation(token); |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 1650 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1651 | ( <DOT> second = Identifier() |
| 1652 | { |
| 1653 | secondAfterDot = true; |
| 1654 | } |
| 1655 | (<SHARP> third = Identifier())? | <SHARP> second = Identifier() )? |
| 1656 | { |
| 1657 | if (second == null) { |
| 1658 | result.dataverse = defaultDataverse; |
| 1659 | result.library = null; |
| 1660 | result.function = first; |
| 1661 | } else if (third == null) { |
| 1662 | if (secondAfterDot) { |
| 1663 | result.dataverse = first; |
| 1664 | result.library = null; |
| 1665 | result.function = second; |
| 1666 | } else { |
| 1667 | result.dataverse = defaultDataverse; |
| 1668 | result.library = first; |
| 1669 | result.function = second; |
| 1670 | } |
| 1671 | } else { |
| 1672 | result.dataverse = first; |
| 1673 | result.library = second; |
| 1674 | result.function = third; |
| 1675 | } |
| 1676 | |
| 1677 | if (result.function.equalsIgnoreCase("int")) { |
| 1678 | result.function = "int64"; |
| 1679 | } |
| 1680 | return result; |
| 1681 | } |
| 1682 | } |
| 1683 | |
| 1684 | Pair<Identifier,Identifier> TypeName() throws ParseException: |
| 1685 | { |
| 1686 | Pair<Identifier,Identifier> name = null; |
| 1687 | } |
| 1688 | { |
| 1689 | name = QualifiedName() |
| 1690 | { |
| 1691 | if (name.first == null) { |
| 1692 | name.first = new Identifier(defaultDataverse); |
| 1693 | } |
| 1694 | return name; |
| 1695 | } |
| 1696 | } |
| 1697 | |
| 1698 | String Identifier() throws ParseException: |
| 1699 | { |
| 1700 | String lit = null; |
| 1701 | } |
| 1702 | { |
| 1703 | (<IDENTIFIER> |
| 1704 | { |
| 1705 | return token.image; |
| 1706 | } |
| 1707 | | lit = QuotedString() |
| 1708 | { |
| 1709 | return lit; |
| 1710 | } |
| 1711 | ) |
| 1712 | } |
| 1713 | |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 1714 | void Dataset() throws ParseException: |
| 1715 | { |
| 1716 | } |
| 1717 | { |
| 1718 | (<DATASET>|<COLLECTION>) |
| 1719 | } |
| 1720 | |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1721 | Pair<Integer, Pair<List<String>, IndexedTypeExpression>> OpenField() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1722 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1723 | IndexedTypeExpression fieldType = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1724 | Pair<Integer, List<String>> fieldList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1725 | } |
| 1726 | { |
| 1727 | fieldList = NestedField() |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1728 | ( <COLON> fieldType = IndexedTypeExpr() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1729 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 1730 | return new Pair<Integer, Pair<List<String>, IndexedTypeExpression>> |
| 1731 | (fieldList.first, new Pair<List<String>, IndexedTypeExpression>(fieldList.second, fieldType)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1732 | } |
| 1733 | } |
| 1734 | |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1735 | Pair<Integer, List<String>> NestedField() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1736 | { |
| 1737 | List<String> exprList = new ArrayList<String>(); |
| 1738 | String lit = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1739 | Token litToken = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1740 | int source = 0; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1741 | } |
| 1742 | { |
| 1743 | lit = Identifier() |
| 1744 | { |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 1745 | boolean meetParens = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1746 | litToken = token; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 1747 | } |
| 1748 | ( |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1749 | LOOKAHEAD(1) |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 1750 | <LEFTPAREN><RIGHTPAREN> |
| 1751 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1752 | if(!lit.equalsIgnoreCase("meta")){ |
| 1753 | throw new SqlppParseException(getSourceLocation(litToken), "The string before () has to be \"meta\"."); |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 1754 | } |
| 1755 | meetParens = true; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1756 | source = 1; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 1757 | } |
| 1758 | )? |
| 1759 | { |
| 1760 | if(!meetParens){ |
| 1761 | exprList.add(lit); |
| 1762 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1763 | } |
| 1764 | (<DOT> |
| 1765 | lit = Identifier() |
| 1766 | { |
| 1767 | exprList.add(lit); |
| 1768 | } |
| 1769 | )* |
| 1770 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1771 | return new Pair<Integer, List<String>>(source, exprList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1772 | } |
| 1773 | } |
| 1774 | |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 1775 | String ConstantString() throws ParseException: |
| 1776 | { |
| 1777 | String value = null; |
| 1778 | } |
| 1779 | { |
| 1780 | (value = QuotedString() | value = StringLiteral()) |
| 1781 | { |
| 1782 | return value; |
| 1783 | } |
| 1784 | } |
| 1785 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1786 | String QuotedString() throws ParseException: |
| 1787 | { |
| 1788 | } |
| 1789 | { |
| 1790 | <QUOTED_STRING> |
| 1791 | { |
| 1792 | return removeQuotesAndEscapes(token.image); |
| 1793 | } |
| 1794 | } |
| 1795 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1796 | String StringLiteral() throws ParseException: |
| 1797 | { |
| 1798 | } |
| 1799 | { |
| 1800 | <STRING_LITERAL> |
| 1801 | { |
| 1802 | return removeQuotesAndEscapes(token.image); |
| 1803 | } |
| 1804 | } |
| 1805 | |
| 1806 | Pair<Identifier,Identifier> QualifiedName() throws ParseException: |
| 1807 | { |
| 1808 | String first = null; |
| 1809 | String second = null; |
| 1810 | } |
| 1811 | { |
| 1812 | first = Identifier() (<DOT> second = Identifier())? |
| 1813 | { |
| 1814 | Identifier id1 = null; |
| 1815 | Identifier id2 = null; |
| 1816 | if (second == null) { |
| 1817 | id2 = new Identifier(first); |
| 1818 | } else |
| 1819 | { |
| 1820 | id1 = new Identifier(first); |
| 1821 | id2 = new Identifier(second); |
| 1822 | } |
| 1823 | return new Pair<Identifier,Identifier>(id1, id2); |
| 1824 | } |
| 1825 | } |
| 1826 | |
| 1827 | Triple<Identifier,Identifier,Identifier> DoubleQualifiedName() throws ParseException: |
| 1828 | { |
| 1829 | String first = null; |
| 1830 | String second = null; |
| 1831 | String third = null; |
| 1832 | } |
| 1833 | { |
| 1834 | first = Identifier() <DOT> second = Identifier() (<DOT> third = Identifier())? |
| 1835 | { |
| 1836 | Identifier id1 = null; |
| 1837 | Identifier id2 = null; |
| 1838 | Identifier id3 = null; |
| 1839 | if (third == null) { |
| 1840 | id2 = new Identifier(first); |
| 1841 | id3 = new Identifier(second); |
| 1842 | } else { |
| 1843 | id1 = new Identifier(first); |
| 1844 | id2 = new Identifier(second); |
| 1845 | id3 = new Identifier(third); |
| 1846 | } |
| 1847 | return new Triple<Identifier,Identifier,Identifier>(id1, id2, id3); |
| 1848 | } |
| 1849 | } |
| 1850 | |
| 1851 | FunctionDecl FunctionDeclaration() throws ParseException: |
| 1852 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1853 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1854 | String functionName; |
| 1855 | List<VarIdentifier> paramList = new ArrayList<VarIdentifier>(); |
| 1856 | Expression funcBody; |
| 1857 | createNewScope(); |
| 1858 | } |
| 1859 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1860 | <DECLARE> { startToken = token; } <FUNCTION> |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1861 | functionName = Identifier() |
| 1862 | paramList = ParameterList() |
| 1863 | <LEFTBRACE> |
| 1864 | (funcBody = SelectExpression(true) | funcBody = Expression()) |
| 1865 | <RIGHTBRACE> |
| 1866 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1867 | FunctionSignature signature = new FunctionSignature(defaultDataverse, functionName, paramList.size()); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1868 | getCurrentScope().addFunctionDescriptor(signature, false); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1869 | FunctionDecl stmt = new FunctionDecl(signature, paramList, funcBody); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1870 | removeCurrentScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1871 | return addSourceLocation(stmt, startToken); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1872 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1873 | } |
| 1874 | |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 1875 | Query Query() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1876 | { |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame^] | 1877 | Query query = new Query(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1878 | Expression expr; |
| 1879 | } |
| 1880 | { |
| 1881 | ( |
| 1882 | expr = Expression() |
| 1883 | | |
| 1884 | expr = SelectExpression(false) |
| 1885 | ) |
| 1886 | { |
| 1887 | query.setBody(expr); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1888 | query.setSourceLocation(expr.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1889 | return query; |
| 1890 | } |
| 1891 | } |
| 1892 | |
| 1893 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1894 | Expression Expression(): |
| 1895 | { |
| 1896 | Expression expr = null; |
| 1897 | Expression exprP = null; |
| 1898 | } |
| 1899 | { |
| 1900 | ( |
| 1901 | LOOKAHEAD(2) |
| 1902 | expr = OperatorExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1903 | | expr = QuantifiedExpression() |
| 1904 | ) |
| 1905 | { |
| 1906 | return (exprP==null) ? expr : exprP; |
| 1907 | } |
| 1908 | } |
| 1909 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1910 | Expression OperatorExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1911 | { |
| 1912 | OperatorExpr op = null; |
| 1913 | Expression operand = null; |
| 1914 | } |
| 1915 | { |
| 1916 | operand = AndExpr() |
| 1917 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1918 | <OR> |
| 1919 | { |
| 1920 | if (op == null) { |
| 1921 | op = new OperatorExpr(); |
| 1922 | op.addOperand(operand); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1923 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1924 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1925 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1926 | try{ |
| 1927 | op.addOperator(token.image.toLowerCase()); |
| 1928 | } catch (Exception e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1929 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1930 | } |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1931 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1932 | |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 1933 | operand = AndExpr() |
| 1934 | { |
| 1935 | op.addOperand(operand); |
| 1936 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1937 | |
| 1938 | )* |
| 1939 | |
| 1940 | { |
| 1941 | return op==null? operand: op; |
| 1942 | } |
| 1943 | } |
| 1944 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1945 | Expression AndExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1946 | { |
| 1947 | OperatorExpr op = null; |
| 1948 | Expression operand = null; |
| 1949 | } |
| 1950 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1951 | operand = NotExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1952 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1953 | <AND> |
| 1954 | { |
| 1955 | if (op == null) { |
| 1956 | op = new OperatorExpr(); |
| 1957 | op.addOperand(operand); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1958 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1959 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1960 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1961 | try{ |
| 1962 | op.addOperator(token.image.toLowerCase()); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 1963 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1964 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1965 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1966 | } |
| 1967 | |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1968 | operand = NotExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1969 | { |
| 1970 | op.addOperand(operand); |
| 1971 | } |
| 1972 | |
| 1973 | )* |
| 1974 | |
| 1975 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1976 | return op==null ? operand: op; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1977 | } |
| 1978 | } |
| 1979 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1980 | Expression NotExpr() throws ParseException: |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1981 | { |
| 1982 | Expression inputExpr; |
| 1983 | boolean not = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1984 | Token startToken = null; |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1985 | } |
| 1986 | { |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 1987 | (LOOKAHEAD(2) <NOT> { not = true; startToken = token; } )? inputExpr = RelExpr() |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1988 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1989 | if(not) { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 1990 | FunctionSignature signature = new FunctionSignature(BuiltinFunctions.NOT); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1991 | CallExpr callExpr = new CallExpr(signature, new ArrayList<Expression>(Collections.singletonList(inputExpr))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1992 | return addSourceLocation(callExpr, startToken); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 1993 | } else { |
| 1994 | return inputExpr; |
| 1995 | } |
| 1996 | } |
| 1997 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1998 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1999 | Expression RelExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2000 | { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2001 | boolean not = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2002 | OperatorExpr op = null; |
| 2003 | Expression operand = null; |
| 2004 | boolean broadcast = false; |
| 2005 | IExpressionAnnotation annotation = null; |
| 2006 | } |
| 2007 | { |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2008 | operand = BetweenExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2009 | |
| 2010 | ( |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 2011 | LOOKAHEAD(2)( <LT> | <GT> | <LE> | <GE> | <EQ> | <NE> | <LG> |<SIMILAR> | (<NOT> { not = true; })? <IN>) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2012 | { |
| 2013 | String mhint = getHint(token); |
| 2014 | if (mhint != null) { |
| 2015 | if (mhint.equals(INDEXED_NESTED_LOOP_JOIN_HINT)) { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2016 | annotation = IndexedNLJoinExpressionAnnotation.INSTANCE; |
| 2017 | } else if (mhint.equals(SKIP_SECONDARY_INDEX_SEARCH_HINT)) { |
| 2018 | annotation = SkipSecondaryIndexSearchExpressionAnnotation.INSTANCE; |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 2019 | } else if (mhint.equals(BROADCAST_JOIN_HINT)) { |
| 2020 | broadcast = true; |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2021 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2022 | } |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 2023 | |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2024 | String operator = token.image.toLowerCase(); |
Yingyi Bu | 4a4b896 | 2016-09-16 12:09:11 -0700 | [diff] [blame] | 2025 | if (operator.equals("<>")){ |
| 2026 | operator = "!="; |
| 2027 | } |
| 2028 | if (not) { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2029 | operator = "not_" + operator; |
| 2030 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2031 | if (op == null) { |
| 2032 | op = new OperatorExpr(); |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 2033 | op.addOperand(operand, false); // broadcast is always for the right branch |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2034 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2035 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2036 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2037 | try{ |
| 2038 | op.addOperator(operator); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 2039 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2040 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2041 | } |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 2042 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2043 | |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2044 | operand = BetweenExpr() |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 2045 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2046 | op.addOperand(operand, broadcast); |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 2047 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2048 | )? |
| 2049 | |
| 2050 | { |
| 2051 | if (annotation != null) { |
| 2052 | op.addHint(annotation); |
| 2053 | } |
| 2054 | return op==null? operand: op; |
| 2055 | } |
| 2056 | } |
| 2057 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2058 | Expression BetweenExpr() throws ParseException: |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2059 | { |
| 2060 | boolean not = false; |
| 2061 | OperatorExpr op = null; |
| 2062 | Expression operand = null; |
| 2063 | IExpressionAnnotation annotation = null; |
| 2064 | } |
| 2065 | { |
| 2066 | operand = IsExpr() |
| 2067 | ( |
| 2068 | LOOKAHEAD(2) |
| 2069 | (<NOT> { not = true; })? <BETWEEN> |
| 2070 | { |
| 2071 | String mhint = getHint(token); |
| 2072 | if (mhint != null) { |
| 2073 | if (mhint.equals(INDEXED_NESTED_LOOP_JOIN_HINT)) { |
| 2074 | annotation = IndexedNLJoinExpressionAnnotation.INSTANCE; |
| 2075 | } else if (mhint.equals(SKIP_SECONDARY_INDEX_SEARCH_HINT)) { |
| 2076 | annotation = SkipSecondaryIndexSearchExpressionAnnotation.INSTANCE; |
| 2077 | } |
| 2078 | } |
| 2079 | String operator = token.image.toLowerCase(); |
| 2080 | if(not){ |
| 2081 | operator = "not_" + operator; |
| 2082 | } |
| 2083 | if (op == null) { |
| 2084 | op = new OperatorExpr(); |
| 2085 | op.addOperand(operand); |
| 2086 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2087 | addSourceLocation(op, token); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2088 | } |
| 2089 | try{ |
| 2090 | op.addOperator(operator); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 2091 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2092 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2093 | } |
| 2094 | } |
| 2095 | |
| 2096 | operand = IsExpr() |
| 2097 | { |
| 2098 | op.addOperand(operand); |
| 2099 | } |
| 2100 | |
| 2101 | <AND> |
| 2102 | operand = IsExpr() |
| 2103 | { |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 2104 | op.addOperator(OperatorType.AND); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2105 | op.addOperand(operand); |
| 2106 | } |
| 2107 | )? |
| 2108 | |
| 2109 | { |
| 2110 | if (annotation != null) { |
| 2111 | op.addHint(annotation); |
| 2112 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2113 | return op==null ? operand: op; |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 2114 | } |
| 2115 | } |
| 2116 | |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2117 | Expression IsExpr() throws ParseException: |
| 2118 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2119 | Token notToken = null; |
| 2120 | CallExpr expr = null; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2121 | Expression operand = null; |
| 2122 | boolean not = false; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 2123 | FunctionIdentifier fn = null; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2124 | } |
| 2125 | { |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 2126 | operand = LikeExpr() |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 2127 | ( <IS> |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2128 | (<NOT> { not = true; notToken = token; })? |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 2129 | ( |
| 2130 | <NULL> { fn = BuiltinFunctions.IS_NULL; } | |
| 2131 | <MISSING> { fn = BuiltinFunctions.IS_MISSING; } | |
Dmitry Lychagin | 7d594a3 | 2018-01-15 14:31:03 -0800 | [diff] [blame] | 2132 | <UNKNOWN> { fn = BuiltinFunctions.IS_UNKNOWN; } | |
Dmitry Lychagin | 1aa0dd4 | 2018-04-17 14:35:24 -0700 | [diff] [blame] | 2133 | (<KNOWN> | <VALUED>) { not = !not; fn = BuiltinFunctions.IS_UNKNOWN; } |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 2134 | ) |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2135 | { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 2136 | FunctionSignature signature = new FunctionSignature(fn); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2137 | expr = new CallExpr(signature, new ArrayList<Expression>(Collections.singletonList(operand))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2138 | addSourceLocation(expr, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2139 | if (not) { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 2140 | FunctionSignature notSignature = new FunctionSignature(BuiltinFunctions.NOT); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2141 | expr = new CallExpr(notSignature, new ArrayList<Expression>(Collections.singletonList(expr))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2142 | addSourceLocation(expr, notToken); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2143 | } |
| 2144 | } |
| 2145 | )? |
| 2146 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2147 | return expr == null ? operand : expr; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2148 | } |
| 2149 | } |
| 2150 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2151 | Expression LikeExpr() throws ParseException: |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 2152 | { |
| 2153 | boolean not = false; |
| 2154 | OperatorExpr op = null; |
| 2155 | Expression operand = null; |
| 2156 | } |
| 2157 | { |
| 2158 | operand = ConcatExpr() |
| 2159 | ( |
| 2160 | LOOKAHEAD(2) |
| 2161 | (<NOT> { not = true; })? <LIKE> |
| 2162 | { |
| 2163 | op = new OperatorExpr(); |
| 2164 | op.addOperand(operand); |
| 2165 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2166 | addSourceLocation(op, token); |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 2167 | |
| 2168 | String operator = token.image.toLowerCase(); |
| 2169 | if (not) { |
| 2170 | operator = "not_" + operator; |
| 2171 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2172 | try { |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 2173 | op.addOperator(operator); |
| 2174 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2175 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 2176 | } |
| 2177 | } |
| 2178 | |
| 2179 | operand = ConcatExpr() |
| 2180 | { |
| 2181 | op.addOperand(operand); |
| 2182 | } |
| 2183 | )? |
| 2184 | |
| 2185 | { |
| 2186 | return op == null ? operand : op; |
| 2187 | } |
| 2188 | } |
| 2189 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2190 | Expression ConcatExpr() throws ParseException: |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 2191 | { |
| 2192 | OperatorExpr op = null; |
| 2193 | Expression operand = null; |
| 2194 | } |
| 2195 | { |
| 2196 | operand = AddExpr() |
| 2197 | ( |
| 2198 | LOOKAHEAD(1) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2199 | <CONCAT> |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 2200 | { |
| 2201 | if (op == null) { |
| 2202 | op = new OperatorExpr(); |
| 2203 | op.addOperand(operand); |
| 2204 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2205 | addSourceLocation(op, token); |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 2206 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2207 | op.addOperator(OperatorType.CONCAT); |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 2208 | } |
| 2209 | operand = AddExpr() |
| 2210 | { |
| 2211 | op.addOperand(operand); |
| 2212 | } |
| 2213 | )* |
| 2214 | |
| 2215 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2216 | return op == null ? operand : op; |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 2217 | } |
| 2218 | } |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2219 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2220 | Expression AddExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2221 | { |
| 2222 | OperatorExpr op = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2223 | OperatorType opType = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2224 | Expression operand = null; |
| 2225 | } |
| 2226 | { |
| 2227 | operand = MultExpr() |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2228 | ( |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 2229 | LOOKAHEAD(1) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2230 | (<PLUS> { opType = OperatorType.PLUS; } | <MINUS> { opType = OperatorType.MINUS; } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2231 | { |
| 2232 | if (op == null) { |
| 2233 | op = new OperatorExpr(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2234 | op.addOperand(operand); |
| 2235 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2236 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2237 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2238 | op.addOperator(opType); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2239 | } |
| 2240 | |
| 2241 | operand = MultExpr() |
| 2242 | { |
| 2243 | op.addOperand(operand); |
| 2244 | } |
| 2245 | )* |
| 2246 | |
| 2247 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2248 | return op == null ? operand : op; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2249 | } |
| 2250 | } |
| 2251 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2252 | Expression MultExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2253 | { |
| 2254 | OperatorExpr op = null; |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 2255 | OperatorType opType = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2256 | Expression operand = null; |
| 2257 | } |
| 2258 | { |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2259 | operand = ExponentExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2260 | |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 2261 | ( ( |
| 2262 | <MUL> { opType = OperatorType.MUL; } | |
| 2263 | <DIVIDE> { opType = OperatorType.DIVIDE; } | |
| 2264 | <DIV> { opType = OperatorType.DIV; } | |
| 2265 | ( <MOD> | <PERCENT> ) { opType = OperatorType.MOD; } |
| 2266 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2267 | { |
| 2268 | if (op == null) { |
| 2269 | op = new OperatorExpr(); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2270 | op.addOperand(operand); |
| 2271 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2272 | addSourceLocation(op, token); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2273 | } |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 2274 | op.addOperator(opType); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2275 | } |
| 2276 | operand = ExponentExpr() |
| 2277 | { |
| 2278 | op.addOperand(operand); |
| 2279 | } |
| 2280 | )* |
| 2281 | |
| 2282 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2283 | return op == null ? operand : op; |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2284 | } |
| 2285 | } |
| 2286 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2287 | Expression ExponentExpr() throws ParseException: |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2288 | { |
| 2289 | OperatorExpr op = null; |
| 2290 | Expression operand = null; |
| 2291 | } |
| 2292 | { |
| 2293 | operand = UnaryExpr() |
| 2294 | (<CARET> |
| 2295 | { |
| 2296 | if (op == null) { |
| 2297 | op = new OperatorExpr(); |
| 2298 | op.addOperand(operand); |
| 2299 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2300 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2301 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2302 | op.addOperator(OperatorType.CARET); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2303 | } |
| 2304 | operand = UnaryExpr() |
| 2305 | { |
| 2306 | op.addOperand(operand); |
| 2307 | } |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2308 | )? |
| 2309 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2310 | return op == null ? operand : op; |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 2311 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2312 | } |
| 2313 | |
| 2314 | Expression UnaryExpr() throws ParseException: |
| 2315 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2316 | boolean not = false; |
| 2317 | UnaryExpr uexpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2318 | Expression expr = null; |
| 2319 | } |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2320 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2321 | ( (<PLUS> | <MINUS> | (<NOT> { not = true; } )? <EXISTS> ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2322 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2323 | String exprType = token.image.toLowerCase(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2324 | if (not) { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2325 | exprType = "not_" + exprType; |
| 2326 | } |
| 2327 | uexpr = new UnaryExpr(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2328 | addSourceLocation(uexpr, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2329 | try { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 2330 | uexpr.setExprType(exprType); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 2331 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2332 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2333 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2334 | } |
| 2335 | )? |
| 2336 | |
| 2337 | expr = ValueExpr() |
| 2338 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2339 | if (uexpr == null) { |
| 2340 | return expr; |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2341 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2342 | uexpr.setExpr(expr); |
| 2343 | return uexpr; |
| 2344 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2345 | } |
| 2346 | } |
| 2347 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2348 | Expression ValueExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2349 | { |
| 2350 | Expression expr = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2351 | AbstractAccessor accessor = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2352 | } |
| 2353 | { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2354 | expr = PrimaryExpr() |
| 2355 | ( |
| 2356 | accessor = FieldAccessor(accessor != null ? accessor : expr) |
| 2357 | | |
| 2358 | accessor = IndexAccessor(accessor != null ? accessor : expr) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2359 | )* |
| 2360 | { |
| 2361 | return accessor == null ? expr : accessor; |
| 2362 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2363 | } |
| 2364 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2365 | FieldAccessor FieldAccessor(Expression inputExpr) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2366 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2367 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2368 | String ident = null; |
| 2369 | } |
| 2370 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2371 | <DOT> { startToken = token; } ident = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2372 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2373 | FieldAccessor fa = new FieldAccessor(inputExpr, new Identifier(ident)); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2374 | return addSourceLocation(fa, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2375 | } |
| 2376 | } |
| 2377 | |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2378 | AbstractAccessor IndexAccessor(Expression inputExpr) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2379 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2380 | Token startToken = null; |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2381 | boolean isListSliceExpression = false; |
| 2382 | AbstractAccessor resultExpression = null; |
| 2383 | Expression argumentExpression1 = null; |
| 2384 | Expression argumentExpression2 = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2385 | } |
| 2386 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2387 | <LEFTBRACKET> { startToken = token; } |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2388 | ( argumentExpression1 = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2389 | { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2390 | if (argumentExpression1.getKind() == Expression.Kind.LITERAL_EXPRESSION) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2391 | { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2392 | Literal lit = ((LiteralExpr)argumentExpression1).getValue(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2393 | if (lit.getLiteralType() != Literal.Type.INTEGER && |
| 2394 | lit.getLiteralType() != Literal.Type.LONG) { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2395 | throw new SqlppParseException(argumentExpression1.getSourceLocation(), "Index should be an INTEGER"); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2396 | } |
| 2397 | } |
| 2398 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2399 | ) |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2400 | (<COLON> |
| 2401 | { |
| 2402 | isListSliceExpression = true; |
| 2403 | } |
| 2404 | ( argumentExpression2 = Expression() |
| 2405 | { |
| 2406 | if (argumentExpression2.getKind() == Expression.Kind.LITERAL_EXPRESSION) { |
| 2407 | Literal lit = ((LiteralExpr)argumentExpression2).getValue(); |
| 2408 | if (lit.getLiteralType() != Literal.Type.INTEGER && |
| 2409 | lit.getLiteralType() != Literal.Type.LONG) { |
| 2410 | throw new SqlppParseException(argumentExpression2.getSourceLocation(), "Index should be an INTEGER"); |
| 2411 | } |
| 2412 | } |
| 2413 | })? |
| 2414 | )? |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2415 | <RIGHTBRACKET> |
| 2416 | { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 2417 | if (!isListSliceExpression) { |
| 2418 | resultExpression = new IndexAccessor(inputExpr, argumentExpression1); |
| 2419 | } else { |
| 2420 | resultExpression = new ListSliceExpression(inputExpr, argumentExpression1, argumentExpression2); |
| 2421 | } |
| 2422 | |
| 2423 | return addSourceLocation(resultExpression, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2424 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2425 | } |
| 2426 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2427 | Expression PrimaryExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2428 | { |
| 2429 | Expression expr = null; |
| 2430 | } |
| 2431 | { |
| 2432 | ( LOOKAHEAD(4) |
| 2433 | expr = FunctionCallExpr() |
Dmitry Lychagin | 5fbd04b | 2018-04-19 16:54:28 -0700 | [diff] [blame] | 2434 | | expr = CaseExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2435 | | expr = Literal() |
| 2436 | | expr = VariableRef() |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 2437 | | expr = ExternalVariableRef() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2438 | | expr = ListConstructor() |
| 2439 | | expr = RecordConstructor() |
| 2440 | | expr = ParenthesizedExpression() |
| 2441 | ) |
| 2442 | { |
| 2443 | return expr; |
| 2444 | } |
| 2445 | } |
| 2446 | |
| 2447 | Expression Literal() throws ParseException: |
| 2448 | { |
| 2449 | LiteralExpr lit = new LiteralExpr(); |
| 2450 | String str = null; |
| 2451 | } |
| 2452 | { |
| 2453 | ( str = StringLiteral() |
| 2454 | { |
| 2455 | lit.setValue(new StringLiteral(str)); |
| 2456 | } |
| 2457 | | <INTEGER_LITERAL> |
| 2458 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 2459 | try { |
| 2460 | lit.setValue(new LongIntegerLiteral(Long.valueOf(token.image))); |
| 2461 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 2462 | throw new SqlppParseException(getSourceLocation(token), "Could not parse numeric literal \"" + LogRedactionUtil.userData(token.image) +'"'); |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 2463 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2464 | } |
| 2465 | | <FLOAT_LITERAL> |
| 2466 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 2467 | try { |
| 2468 | lit.setValue(new FloatLiteral(Float.valueOf(token.image))); |
| 2469 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 2470 | throw new SqlppParseException(getSourceLocation(token), "Could not parse numeric literal \"" + LogRedactionUtil.userData(token.image) +'"'); |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 2471 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2472 | } |
| 2473 | | <DOUBLE_LITERAL> |
| 2474 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 2475 | try { |
| 2476 | lit.setValue(new DoubleLiteral(Double.valueOf(token.image))); |
| 2477 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 2478 | throw new SqlppParseException(getSourceLocation(token), "Could not parse numeric literal \"" + LogRedactionUtil.userData(token.image) +'"'); |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 2479 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2480 | } |
Yingyi Bu | 535d86b | 2016-05-23 16:44:25 -0700 | [diff] [blame] | 2481 | | <MISSING> |
| 2482 | { |
| 2483 | lit.setValue(MissingLiteral.INSTANCE); |
| 2484 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2485 | | <NULL> |
| 2486 | { |
| 2487 | lit.setValue(NullLiteral.INSTANCE); |
| 2488 | } |
| 2489 | | <TRUE> |
| 2490 | { |
| 2491 | lit.setValue(TrueLiteral.INSTANCE); |
| 2492 | } |
| 2493 | | <FALSE> |
| 2494 | { |
| 2495 | lit.setValue(FalseLiteral.INSTANCE); |
| 2496 | } |
| 2497 | ) |
| 2498 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2499 | return addSourceLocation(lit, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2500 | } |
| 2501 | } |
| 2502 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2503 | VariableExpr VariableRef() throws ParseException: |
| 2504 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2505 | VarIdentifier var = new VarIdentifier(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2506 | String id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2507 | } |
| 2508 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2509 | (<IDENTIFIER> { id = token.image; } | id = QuotedString()) |
| 2510 | { |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 2511 | id = SqlppVariableUtil.toInternalVariableName(id); // Prefix user-defined variables with "$" |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2512 | Identifier ident = lookupSymbol(id); |
| 2513 | if (isInForbiddenScopes(id)) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2514 | throw new SqlppParseException(getSourceLocation(token), |
| 2515 | "Inside limit clauses, it is disallowed to reference a variable having the same name as any variable bound in the same scope as the limit clause."); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2516 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2517 | VariableExpr varExp = new VariableExpr(); |
| 2518 | if (ident != null) { // exist such ident |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2519 | varExp.setVar((VarIdentifier)ident); |
| 2520 | } else { |
| 2521 | varExp.setVar(var); |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 2522 | varExp.setIsNewVar(false); |
| 2523 | var.setValue(id); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2524 | } |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2525 | return addSourceLocation(varExp, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2526 | } |
| 2527 | } |
| 2528 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2529 | VariableExpr Variable() throws ParseException: |
| 2530 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2531 | VarIdentifier var = new VarIdentifier(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2532 | String id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2533 | } |
| 2534 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2535 | (<IDENTIFIER> { id = token.image; } | id = QuotedString()) |
| 2536 | { |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 2537 | id = SqlppVariableUtil.toInternalVariableName(id); // prefix user-defined variables with "$". |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2538 | Identifier ident = lookupSymbol(id); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2539 | VariableExpr varExp = new VariableExpr(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2540 | if(ident != null) { // exist such ident |
| 2541 | varExp.setIsNewVar(false); |
| 2542 | } |
| 2543 | varExp.setVar(var); |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 2544 | var.setValue(id); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2545 | return addSourceLocation(varExp, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2546 | } |
| 2547 | } |
| 2548 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 2549 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> VariableWithFieldMap() throws ParseException: |
| 2550 | { |
| 2551 | VariableExpr var = null; |
| 2552 | List<Pair<Expression, Identifier>> fieldList = new ArrayList<Pair<Expression, Identifier>>(); |
| 2553 | } |
| 2554 | { |
| 2555 | var = Variable() |
| 2556 | ( LOOKAHEAD(1) |
| 2557 | { |
| 2558 | VariableExpr fieldVarExpr = null; |
| 2559 | String fieldIdentifierStr = null; |
| 2560 | } |
| 2561 | <LEFTPAREN> |
| 2562 | fieldVarExpr = VariableRef() <AS> fieldIdentifierStr = Identifier() |
| 2563 | { |
| 2564 | fieldList.add(new Pair<Expression, Identifier>(fieldVarExpr, new Identifier(fieldIdentifierStr))); |
| 2565 | } |
| 2566 | (<COMMA> |
| 2567 | fieldVarExpr = VariableRef() <AS> fieldIdentifierStr = Identifier() |
| 2568 | { |
| 2569 | fieldList.add(new Pair<Expression, Identifier>(fieldVarExpr, new Identifier(fieldIdentifierStr))); |
| 2570 | } |
| 2571 | )* |
| 2572 | <RIGHTPAREN> |
| 2573 | )? |
| 2574 | { |
| 2575 | return new Pair<VariableExpr, List<Pair<Expression, Identifier>>>(var, fieldList); |
| 2576 | } |
| 2577 | } |
| 2578 | |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 2579 | VariableExpr ExternalVariableRef() throws ParseException: |
| 2580 | { |
| 2581 | String name = null; |
| 2582 | } |
| 2583 | { |
| 2584 | ( |
| 2585 | ( |
| 2586 | <DOLLAR> |
| 2587 | ( |
| 2588 | <INTEGER_LITERAL> { name = token.image; } | |
| 2589 | <IDENTIFIER> { name = token.image; } | |
| 2590 | name = QuotedString() |
| 2591 | ) |
| 2592 | ) |
| 2593 | | |
| 2594 | ( |
| 2595 | <QUES> { name = String.valueOf(++externalVarCounter); } |
| 2596 | ) |
| 2597 | ) |
| 2598 | { |
| 2599 | String idName = SqlppVariableUtil.toExternalVariableName(name); |
| 2600 | VarIdentifier id = new VarIdentifier(idName); |
| 2601 | VariableExpr varExp = new VariableExpr(id); |
| 2602 | return addSourceLocation(varExp, token); |
| 2603 | } |
| 2604 | } |
| 2605 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2606 | Expression ListConstructor() throws ParseException: |
| 2607 | { |
| 2608 | Expression expr = null; |
| 2609 | } |
| 2610 | { |
| 2611 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2612 | expr = OrderedListConstructor() | |
| 2613 | expr = UnorderedListConstructor() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2614 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2615 | { |
| 2616 | return expr; |
| 2617 | } |
| 2618 | } |
| 2619 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2620 | ListConstructor OrderedListConstructor() throws ParseException: |
| 2621 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2622 | Token startToken = null; |
| 2623 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2624 | } |
| 2625 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2626 | <LEFTBRACKET> { startToken = token; } |
| 2627 | exprList = ExpressionList() |
| 2628 | <RIGHTBRACKET> |
| 2629 | { |
| 2630 | ListConstructor expr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, exprList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2631 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2632 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2633 | } |
| 2634 | |
| 2635 | ListConstructor UnorderedListConstructor() throws ParseException: |
| 2636 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2637 | Token startToken = null; |
| 2638 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2639 | } |
| 2640 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2641 | <LEFTDBLBRACE> { startToken = token; } |
| 2642 | exprList = ExpressionList() |
| 2643 | <RIGHTDBLBRACE> |
| 2644 | { |
| 2645 | ListConstructor expr = new ListConstructor(ListConstructor.Type.UNORDERED_LIST_CONSTRUCTOR, exprList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2646 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2647 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2648 | } |
| 2649 | |
| 2650 | List<Expression> ExpressionList() throws ParseException: |
| 2651 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2652 | Expression expr = null; |
| 2653 | List<Expression> exprList = new ArrayList<Expression>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2654 | } |
| 2655 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2656 | ( |
| 2657 | expr = Expression() |
| 2658 | { |
| 2659 | exprList.add(expr); |
| 2660 | } |
| 2661 | ( <COMMA> expr = Expression() |
Till Westmann | 60f8998 | 2017-08-11 18:14:20 -0700 | [diff] [blame] | 2662 | { |
| 2663 | exprList.add(expr); |
| 2664 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2665 | )* |
| 2666 | )? |
| 2667 | { |
| 2668 | return exprList; |
| 2669 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2670 | } |
| 2671 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2672 | RecordConstructor RecordConstructor() throws ParseException: |
| 2673 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2674 | Token startToken = null; |
| 2675 | FieldBinding fb = null; |
| 2676 | List<FieldBinding> fbList = new ArrayList<FieldBinding>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2677 | } |
| 2678 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2679 | <LEFTBRACE> { startToken = token; } |
| 2680 | ( |
| 2681 | fb = FieldBinding() { fbList.add(fb); } |
| 2682 | (<COMMA> fb = FieldBinding() { fbList.add(fb); })* |
| 2683 | )? |
| 2684 | <RIGHTBRACE> |
| 2685 | { |
| 2686 | RecordConstructor expr = new RecordConstructor(fbList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2687 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2688 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2689 | } |
| 2690 | |
| 2691 | FieldBinding FieldBinding() throws ParseException: |
| 2692 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2693 | Expression left, right; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2694 | } |
| 2695 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2696 | left = Expression() <COLON> right = Expression() |
| 2697 | { |
| 2698 | return new FieldBinding(left, right); |
| 2699 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2700 | } |
| 2701 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2702 | Expression FunctionCallExpr() throws ParseException: |
| 2703 | { |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 2704 | Expression resultExpr; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 2705 | CallExpr callExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2706 | List<Expression> argList = new ArrayList<Expression>(); |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 2707 | Expression tmp = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2708 | int arity = 0; |
| 2709 | FunctionName funcName = null; |
| 2710 | String hint = null; |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 2711 | boolean star = false; |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 2712 | boolean distinct = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2713 | } |
| 2714 | { |
| 2715 | funcName = FunctionName() |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2716 | { |
| 2717 | hint = funcName.hint; |
| 2718 | } |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 2719 | <LEFTPAREN> ( |
| 2720 | ( <DISTINCT> { distinct = true; } )? |
| 2721 | ( tmp = Expression() | <MUL> { star = true; } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2722 | { |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 2723 | if(star){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2724 | if(!funcName.function.equalsIgnoreCase("count")){ |
| 2725 | throw new SqlppParseException(getSourceLocation(token), "The parameter * can only be used in COUNT()."); |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 2726 | } |
| 2727 | argList.add(new LiteralExpr(new LongIntegerLiteral(1L))); |
| 2728 | } else { |
| 2729 | argList.add(tmp); |
| 2730 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2731 | arity ++; |
| 2732 | } |
| 2733 | (<COMMA> tmp = Expression() |
| 2734 | { |
| 2735 | argList.add(tmp); |
| 2736 | arity++; |
| 2737 | } |
| 2738 | )*)? <RIGHTPAREN> |
| 2739 | { |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 2740 | String name = funcName.function; |
| 2741 | if (distinct) { |
Dmitry Lychagin | e5ea42d | 2019-03-15 11:38:09 -0700 | [diff] [blame] | 2742 | name += FunctionMapUtil.DISTINCT_AGGREGATE_SUFFIX; |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 2743 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2744 | // TODO use funcName.library |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 2745 | String fqFunctionName = funcName.library == null ? name : funcName.library + "#" + name; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2746 | FunctionSignature signature |
| 2747 | = lookupFunctionSignature(funcName.dataverse, fqFunctionName, arity); |
| 2748 | if (signature == null) { |
| 2749 | signature = new FunctionSignature(funcName.dataverse, fqFunctionName, arity); |
| 2750 | } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 2751 | callExpr = FunctionMapUtil.normalizedListInputFunctions(new CallExpr(signature,argList)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2752 | if (hint != null) { |
| 2753 | if (hint.startsWith(INDEXED_NESTED_LOOP_JOIN_HINT)) { |
| 2754 | callExpr.addHint(IndexedNLJoinExpressionAnnotation.INSTANCE); |
| 2755 | } else if (hint.startsWith(SKIP_SECONDARY_INDEX_SEARCH_HINT)) { |
| 2756 | callExpr.addHint(SkipSecondaryIndexSearchExpressionAnnotation.INSTANCE); |
| 2757 | } |
| 2758 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2759 | callExpr.setSourceLocation(funcName.sourceLoc); |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 2760 | resultExpr = callExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2761 | } |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 2762 | |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 2763 | ( LOOKAHEAD(5) resultExpr = WindowExpr(callExpr.getFunctionSignature(), callExpr.getExprList()) )? |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 2764 | |
| 2765 | { |
| 2766 | return resultExpr; |
| 2767 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2768 | } |
| 2769 | |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 2770 | WindowExpression WindowExpr(FunctionSignature signature, List<Expression> argList) throws ParseException: |
| 2771 | { |
| 2772 | Boolean fromLast = null, ignoreNulls = null; |
| 2773 | } |
| 2774 | { |
| 2775 | ( |
| 2776 | // FROM ( FIRST | LAST ) ( ( RESPECT | IGNORE ) NULLS )? OVER |
| 2777 | LOOKAHEAD(5, <FROM> <IDENTIFIER> ( <IDENTIFIER> <IDENTIFIER> )? <OVER>) |
| 2778 | <FROM> <IDENTIFIER> |
| 2779 | { |
| 2780 | if (isToken(FIRST)) { |
| 2781 | fromLast = false; |
| 2782 | } else if (isToken(LAST)) { |
| 2783 | fromLast = true; |
| 2784 | } else { |
| 2785 | throw createUnexpectedTokenError(); |
| 2786 | } |
| 2787 | } |
| 2788 | )? |
| 2789 | ( |
| 2790 | // ( RESPECT | IGNORE ) NULLS OVER |
| 2791 | LOOKAHEAD(3, <IDENTIFIER> <IDENTIFIER> <OVER>) |
| 2792 | <IDENTIFIER> |
| 2793 | { |
| 2794 | if (isToken(RESPECT)) { |
| 2795 | ignoreNulls = false; |
| 2796 | } else if (isToken(IGNORE)) { |
| 2797 | ignoreNulls = true; |
| 2798 | } else { |
| 2799 | throw createUnexpectedTokenError(); |
| 2800 | } |
| 2801 | } |
| 2802 | <IDENTIFIER> |
| 2803 | { |
| 2804 | if (!isToken(NULLS)) { |
| 2805 | throw createUnexpectedTokenError(); |
| 2806 | } |
| 2807 | } |
| 2808 | )? |
| 2809 | <OVER> |
| 2810 | { |
| 2811 | return OverClause(signature, argList, token, fromLast, ignoreNulls); |
| 2812 | } |
| 2813 | } |
| 2814 | |
| 2815 | WindowExpression OverClause(FunctionSignature signature, List<Expression> argList, Token startToken, Boolean fromLast, |
| 2816 | Boolean ignoreNulls) throws ParseException: |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 2817 | { |
| 2818 | Expression partitionExpr = null; |
| 2819 | List<Expression> partitionExprs = new ArrayList<Expression>(); |
| 2820 | OrderbyClause orderByClause = null; |
| 2821 | List<Expression> orderbyList = null; |
| 2822 | List<OrderbyClause.OrderModifier> orderbyModifierList = null; |
| 2823 | WindowExpression.FrameMode frameMode = null; |
| 2824 | Pair<WindowExpression.FrameBoundaryKind, Expression> frameStart = null, frameEnd = null; |
| 2825 | WindowExpression.FrameBoundaryKind frameStartKind = null, frameEndKind = null; |
| 2826 | Expression frameStartExpr = null, frameEndExpr = null; |
| 2827 | WindowExpression.FrameExclusionKind frameExclusionKind = null; |
| 2828 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> windowVarWithFieldList = null; |
| 2829 | VariableExpr windowVar = null; |
| 2830 | List<Pair<Expression, Identifier>> windowFieldList = null; |
| 2831 | } |
| 2832 | { |
| 2833 | ( |
| 2834 | windowVarWithFieldList = VariableWithFieldMap() <AS> |
| 2835 | { |
| 2836 | windowVar = windowVarWithFieldList.first; |
| 2837 | windowFieldList = windowVarWithFieldList.second; |
| 2838 | } |
| 2839 | )? |
| 2840 | <LEFTPAREN> |
| 2841 | ( |
| 2842 | <IDENTIFIER> { expectToken(PARTITION); } <BY> |
| 2843 | partitionExpr = Expression() { partitionExprs.add(partitionExpr); } |
| 2844 | ( <COMMA> partitionExpr = Expression() { partitionExprs.add(partitionExpr); } )* |
| 2845 | )? |
| 2846 | ( |
| 2847 | orderByClause = OrderbyClause() |
| 2848 | { |
| 2849 | orderbyList = orderByClause.getOrderbyList(); |
| 2850 | orderbyModifierList = orderByClause.getModifierList(); |
| 2851 | } |
| 2852 | ( |
| 2853 | frameMode = WindowFrameMode() |
| 2854 | ( |
| 2855 | frameStart = WindowFrameBoundary() | |
| 2856 | ( <BETWEEN> frameStart = WindowFrameBoundary() <AND> frameEnd = WindowFrameBoundary() ) |
| 2857 | ) |
| 2858 | ( frameExclusionKind = WindowFrameExclusion() )? |
| 2859 | { |
| 2860 | frameStartKind = frameStart.first; |
| 2861 | frameStartExpr = frameStart.second; |
| 2862 | if (frameEnd == null) { |
| 2863 | frameEndKind = WindowExpression.FrameBoundaryKind.CURRENT_ROW; |
| 2864 | } else { |
| 2865 | frameEndKind = frameEnd.first; |
| 2866 | frameEndExpr = frameEnd.second; |
| 2867 | } |
| 2868 | if (frameExclusionKind == null) { |
| 2869 | frameExclusionKind = WindowExpression.FrameExclusionKind.NO_OTHERS; |
| 2870 | } |
| 2871 | } |
| 2872 | )? |
| 2873 | )? |
| 2874 | <RIGHTPAREN> |
| 2875 | { |
| 2876 | WindowExpression winExp = new WindowExpression(signature, argList, partitionExprs, orderbyList, orderbyModifierList, |
| 2877 | frameMode, frameStartKind, frameStartExpr, frameEndKind, frameEndExpr, frameExclusionKind, windowVar, |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 2878 | windowFieldList, ignoreNulls, fromLast); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 2879 | return addSourceLocation(winExp, startToken); |
| 2880 | } |
| 2881 | } |
| 2882 | |
| 2883 | WindowExpression.FrameMode WindowFrameMode() throws ParseException: |
| 2884 | { |
| 2885 | } |
| 2886 | { |
| 2887 | <IDENTIFIER> |
| 2888 | { |
| 2889 | if (isToken(RANGE)) { |
| 2890 | return WindowExpression.FrameMode.RANGE; |
| 2891 | } else if (isToken(ROWS)) { |
| 2892 | return WindowExpression.FrameMode.ROWS; |
| 2893 | } else if (isToken(GROUPS)) { |
| 2894 | return WindowExpression.FrameMode.GROUPS; |
| 2895 | } else { |
| 2896 | throw createUnexpectedTokenError(); |
| 2897 | } |
| 2898 | } |
| 2899 | } |
| 2900 | |
| 2901 | Pair<WindowExpression.FrameBoundaryKind, Expression> WindowFrameBoundary() throws ParseException: |
| 2902 | { |
| 2903 | boolean current = false; |
| 2904 | Expression expr = null; |
| 2905 | } |
| 2906 | { |
| 2907 | ( |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 2908 | LOOKAHEAD({ laIdentifier(CURRENT) || laIdentifier(UNBOUNDED) }) <IDENTIFIER> { current = isToken(CURRENT); } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 2909 | | expr = Expression() |
| 2910 | ) |
| 2911 | <IDENTIFIER> |
| 2912 | { |
| 2913 | WindowExpression.FrameBoundaryKind kind; |
| 2914 | if (current && isToken(ROW)) { |
| 2915 | kind = WindowExpression.FrameBoundaryKind.CURRENT_ROW; |
| 2916 | } else if (!current && isToken(PRECEDING)) { |
| 2917 | kind = expr == null |
| 2918 | ? WindowExpression.FrameBoundaryKind.UNBOUNDED_PRECEDING |
| 2919 | : WindowExpression.FrameBoundaryKind.BOUNDED_PRECEDING; |
| 2920 | } else if (!current && isToken(FOLLOWING)) { |
| 2921 | kind = expr == null |
| 2922 | ? WindowExpression.FrameBoundaryKind.UNBOUNDED_FOLLOWING |
| 2923 | : WindowExpression.FrameBoundaryKind.BOUNDED_FOLLOWING; |
| 2924 | } else { |
| 2925 | throw createUnexpectedTokenError(); |
| 2926 | } |
| 2927 | return new Pair<WindowExpression.FrameBoundaryKind, Expression>(kind, expr); |
| 2928 | } |
| 2929 | } |
| 2930 | |
| 2931 | WindowExpression.FrameExclusionKind WindowFrameExclusion() throws ParseException: |
| 2932 | { |
| 2933 | boolean current = false, no = false; |
| 2934 | } |
| 2935 | { |
| 2936 | <IDENTIFIER> |
| 2937 | { |
| 2938 | expectToken(EXCLUDE); |
| 2939 | } |
| 2940 | ( |
| 2941 | <GROUP> |
| 2942 | { |
| 2943 | return WindowExpression.FrameExclusionKind.GROUP; |
| 2944 | } |
| 2945 | | |
| 2946 | ( |
| 2947 | <IDENTIFIER> |
| 2948 | { |
| 2949 | if (isToken(TIES)) { |
| 2950 | return WindowExpression.FrameExclusionKind.TIES; |
| 2951 | } else if (isToken(CURRENT)) { |
| 2952 | current = true; |
| 2953 | } else if (isToken(NO)) { |
| 2954 | no = true; |
| 2955 | } else { |
| 2956 | throw createUnexpectedTokenError(); |
| 2957 | } |
| 2958 | } |
| 2959 | <IDENTIFIER> |
| 2960 | { |
| 2961 | if (current && isToken(ROW)) { |
| 2962 | return WindowExpression.FrameExclusionKind.CURRENT_ROW; |
| 2963 | } else if (no && isToken(OTHERS)) { |
| 2964 | return WindowExpression.FrameExclusionKind.NO_OTHERS; |
| 2965 | } else { |
| 2966 | throw createUnexpectedTokenError(); |
| 2967 | } |
| 2968 | } |
| 2969 | ) |
| 2970 | ) |
| 2971 | } |
| 2972 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2973 | Expression ParenthesizedExpression() throws ParseException: |
| 2974 | { |
| 2975 | Expression expr; |
| 2976 | } |
| 2977 | { |
| 2978 | ( |
| 2979 | LOOKAHEAD(2) |
| 2980 | <LEFTPAREN> expr = Expression() <RIGHTPAREN> |
| 2981 | | |
| 2982 | expr = Subquery() |
| 2983 | ) |
| 2984 | { |
| 2985 | return expr; |
| 2986 | } |
| 2987 | } |
| 2988 | |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 2989 | Expression CaseExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2990 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2991 | Token startToken = null; |
| 2992 | Expression conditionExpr = null; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 2993 | List<Expression> whenExprs = new ArrayList<Expression>(); |
| 2994 | List<Expression> thenExprs = new ArrayList<Expression>(); |
| 2995 | Expression elseExpr = null; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 2996 | Expression whenExpr = null; |
| 2997 | Expression thenExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2998 | } |
| 2999 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3000 | <CASE> { startToken = token; } |
| 3001 | ( conditionExpr = Expression() )? |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 3002 | ( |
| 3003 | <WHEN> whenExpr = Expression() |
| 3004 | { |
| 3005 | whenExprs.add(whenExpr); |
| 3006 | } |
| 3007 | <THEN> thenExpr = Expression() |
| 3008 | { |
| 3009 | thenExprs.add(thenExpr); |
| 3010 | } |
| 3011 | )* |
| 3012 | (<ELSE> elseExpr = Expression() )? |
| 3013 | <END> |
| 3014 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3015 | if (conditionExpr == null) { |
| 3016 | LiteralExpr litExpr = new LiteralExpr(TrueLiteral.INSTANCE); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3017 | conditionExpr = addSourceLocation(litExpr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3018 | } |
| 3019 | CaseExpression caseExpr = new CaseExpression(conditionExpr, whenExprs, thenExprs, elseExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3020 | return addSourceLocation(caseExpr, startToken); |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 3021 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3022 | } |
| 3023 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3024 | SelectExpression SelectExpression(boolean subquery) throws ParseException: |
| 3025 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3026 | List<LetClause> letClauses = new ArrayList<LetClause>(); |
| 3027 | SelectSetOperation selectSetOperation; |
| 3028 | OrderbyClause orderbyClause = null; |
| 3029 | LimitClause limitClause = null; |
| 3030 | createNewScope(); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3031 | } |
| 3032 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3033 | ( letClauses = LetClause() )? |
| 3034 | selectSetOperation = SelectSetOperation() |
| 3035 | (orderbyClause = OrderbyClause() {})? |
| 3036 | (limitClause = LimitClause() {})? |
| 3037 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3038 | SelectExpression selectExpr = |
| 3039 | new SelectExpression(letClauses, selectSetOperation, orderbyClause, limitClause, subquery); |
| 3040 | selectExpr.setSourceLocation((!letClauses.isEmpty() ? letClauses.get(0) : selectSetOperation).getSourceLocation()); |
| 3041 | return selectExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3042 | } |
| 3043 | } |
| 3044 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3045 | SelectSetOperation SelectSetOperation() throws ParseException: |
| 3046 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3047 | SetOperationInput setOperationInputLeft; |
| 3048 | List<SetOperationRight> setOperationRights = new ArrayList<SetOperationRight>(); |
| 3049 | } |
| 3050 | { |
| 3051 | { |
| 3052 | SelectBlock selectBlockLeft = null; |
| 3053 | SelectExpression subqueryLeft = null; |
| 3054 | Expression expr = null; |
| 3055 | } |
| 3056 | selectBlockLeft = SelectBlock() |
| 3057 | { |
| 3058 | setOperationInputLeft = new SetOperationInput(selectBlockLeft, subqueryLeft); |
| 3059 | } |
| 3060 | ( |
| 3061 | { |
| 3062 | SetOpType opType = SetOpType.UNION; |
| 3063 | boolean setSemantics = true; |
| 3064 | SelectBlock selectBlockRight = null; |
| 3065 | SelectExpression subqueryRight = null; |
| 3066 | } |
| 3067 | (<UNION> {opType = SetOpType.UNION;} |<INTERSECT> {opType = SetOpType.INTERSECT;} |<EXCEPT> {opType = SetOpType.EXCEPT;}) (<ALL> {setSemantics = false;} )? |
| 3068 | (selectBlockRight = SelectBlock()| subqueryRight = Subquery()) |
| 3069 | { |
| 3070 | setOperationRights.add(new SetOperationRight(opType, setSemantics, new SetOperationInput(selectBlockRight, subqueryRight))); |
| 3071 | } |
| 3072 | )* |
| 3073 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3074 | SelectSetOperation selectSetOp = new SelectSetOperation(setOperationInputLeft, setOperationRights); |
| 3075 | selectSetOp.setSourceLocation(selectBlockLeft.getSourceLocation()); |
| 3076 | return selectSetOp; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3077 | } |
| 3078 | } |
| 3079 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3080 | SelectExpression Subquery() throws ParseException: |
| 3081 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3082 | SelectExpression selectExpr = null; |
| 3083 | } |
| 3084 | { |
| 3085 | <LEFTPAREN> selectExpr = SelectExpression(true) {} <RIGHTPAREN> |
| 3086 | { |
| 3087 | return selectExpr; |
| 3088 | } |
| 3089 | } |
| 3090 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3091 | SelectBlock SelectBlock() throws ParseException: |
| 3092 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3093 | SelectClause selectClause = null; |
| 3094 | FromClause fromClause = null; |
| 3095 | List<LetClause> fromLetClauses = null; |
| 3096 | WhereClause whereClause = null; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 3097 | List<AbstractClause> fromLetWhereClauses = new ArrayList<AbstractClause>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3098 | GroupbyClause groupbyClause = null; |
| 3099 | List<LetClause> gbyLetClauses = null; |
| 3100 | HavingClause havingClause = null; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 3101 | List<AbstractClause> gbyLetHavingClauses = new ArrayList<AbstractClause>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3102 | SourceLocation startSrcLoc = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3103 | } |
| 3104 | { |
| 3105 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3106 | selectClause = SelectClause() { startSrcLoc = selectClause.getSourceLocation(); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3107 | ( |
| 3108 | LOOKAHEAD(1) |
| 3109 | fromClause = FromClause() |
| 3110 | ( |
| 3111 | LOOKAHEAD(1) |
| 3112 | fromLetClauses = LetClause() |
| 3113 | )? |
| 3114 | )? |
| 3115 | (whereClause = WhereClause())? |
| 3116 | ( |
| 3117 | groupbyClause = GroupbyClause() |
| 3118 | ( |
| 3119 | LOOKAHEAD(1) |
| 3120 | gbyLetClauses = LetClause() |
| 3121 | )? |
| 3122 | (havingClause = HavingClause())? |
| 3123 | )? |
| 3124 | | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3125 | fromClause = FromClause() { startSrcLoc = fromClause.getSourceLocation(); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3126 | ( |
| 3127 | LOOKAHEAD(1) |
| 3128 | fromLetClauses = LetClause() |
| 3129 | )? |
| 3130 | (whereClause = WhereClause())? |
| 3131 | ( |
| 3132 | groupbyClause = GroupbyClause() |
| 3133 | ( |
| 3134 | gbyLetClauses = LetClause() |
| 3135 | )? |
| 3136 | (havingClause = HavingClause())? |
| 3137 | )? |
| 3138 | selectClause = SelectClause() |
| 3139 | ) |
| 3140 | { |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 3141 | if (fromLetClauses != null) { |
| 3142 | fromLetWhereClauses.addAll(fromLetClauses); |
| 3143 | } |
| 3144 | if (whereClause != null) { |
| 3145 | fromLetWhereClauses.add(whereClause); |
| 3146 | } |
| 3147 | if (gbyLetClauses != null) { |
| 3148 | gbyLetHavingClauses.addAll(gbyLetClauses); |
| 3149 | } |
| 3150 | if (havingClause != null) { |
| 3151 | gbyLetHavingClauses.add(havingClause); |
| 3152 | } |
| 3153 | SelectBlock selectBlock = new SelectBlock(selectClause, fromClause, fromLetWhereClauses, groupbyClause, |
| 3154 | gbyLetHavingClauses); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3155 | selectBlock.setSourceLocation(startSrcLoc); |
| 3156 | return selectBlock; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3157 | } |
| 3158 | } |
| 3159 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3160 | SelectClause SelectClause() throws ParseException: |
| 3161 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3162 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3163 | SelectRegular selectRegular = null; |
| 3164 | SelectElement selectElement = null; |
| 3165 | boolean distinct = false; |
| 3166 | } |
| 3167 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3168 | <SELECT> { startToken = token; } (<ALL>|<DISTINCT> { distinct = true; } )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3169 | ( |
| 3170 | selectRegular = SelectRegular() |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 3171 | | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3172 | selectElement = SelectElement() |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 3173 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3174 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3175 | SourceLocation sourceLoc = getSourceLocation(startToken); |
| 3176 | if (selectRegular == null && selectElement == null){ |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 3177 | Projection projection = new Projection(null, null, true, false); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3178 | projection.setSourceLocation(sourceLoc); |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 3179 | List<Projection> projections = new ArrayList<Projection>(); |
| 3180 | projections.add(projection); |
| 3181 | selectRegular = new SelectRegular(projections); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3182 | selectRegular.setSourceLocation(sourceLoc); |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 3183 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3184 | SelectClause selectClause = new SelectClause(selectElement, selectRegular, distinct); |
| 3185 | selectClause.setSourceLocation(sourceLoc); |
| 3186 | return selectClause; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3187 | } |
| 3188 | } |
| 3189 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3190 | SelectRegular SelectRegular() throws ParseException: |
| 3191 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3192 | SourceLocation startSrcLoc = null; |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 3193 | List<Projection> projections = new ArrayList<Projection>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3194 | Projection projection = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3195 | } |
| 3196 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3197 | projection = Projection() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3198 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3199 | projections.add(projection); |
| 3200 | startSrcLoc = projection.getSourceLocation(); |
| 3201 | } |
| 3202 | ( LOOKAHEAD(2) <COMMA> projection = Projection() |
| 3203 | { |
| 3204 | projections.add(projection); |
| 3205 | } |
| 3206 | )* |
| 3207 | { |
| 3208 | SelectRegular selectRegular = new SelectRegular(projections); |
| 3209 | selectRegular.setSourceLocation(startSrcLoc); |
| 3210 | return selectRegular; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3211 | } |
| 3212 | } |
| 3213 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3214 | SelectElement SelectElement() throws ParseException: |
| 3215 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3216 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3217 | Expression expr = null; |
| 3218 | String name = null; |
| 3219 | } |
| 3220 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3221 | (<RAW>|<ELEMENT>|<VALUE>) { startToken = token; } expr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3222 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3223 | SelectElement selectElement = new SelectElement(expr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3224 | return addSourceLocation(selectElement, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3225 | } |
| 3226 | } |
| 3227 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 3228 | Projection Projection() throws ParseException : |
| 3229 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3230 | SourceLocation startSrcLoc = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3231 | Expression expr = null; |
| 3232 | Identifier identifier = null; |
| 3233 | String name = null; |
| 3234 | boolean star = false; |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 3235 | boolean varStar = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3236 | } |
| 3237 | { |
| 3238 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3239 | <MUL> { star = true; startSrcLoc = getSourceLocation(token); } |
| 3240 | | LOOKAHEAD(3) expr = VariableRef() <DOT> <MUL> { varStar = true; } |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 3241 | | expr = Expression() ((<AS>)? name = Identifier())? |
| 3242 | { |
| 3243 | if (name == null) { |
| 3244 | String generatedColumnIdentifier = ExpressionToVariableUtil.getGeneratedIdentifier(expr, false); |
| 3245 | if (generatedColumnIdentifier != null) { |
| 3246 | name = SqlppVariableUtil.toUserDefinedName(generatedColumnIdentifier); |
| 3247 | } |
| 3248 | } |
| 3249 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3250 | ) |
| 3251 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3252 | Projection projection = new Projection(expr, name, star, varStar); |
| 3253 | projection.setSourceLocation(expr != null ? expr.getSourceLocation() : startSrcLoc); |
| 3254 | return projection; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3255 | } |
| 3256 | } |
| 3257 | |
| 3258 | FromClause FromClause() throws ParseException : |
| 3259 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3260 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3261 | List<FromTerm> fromTerms = new ArrayList<FromTerm>(); |
| 3262 | extendCurrentScope(); |
| 3263 | } |
| 3264 | { |
| 3265 | { |
| 3266 | FromTerm fromTerm = null; |
| 3267 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3268 | <FROM> { startToken = token; } fromTerm = FromTerm() { fromTerms.add(fromTerm); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3269 | (LOOKAHEAD(2) <COMMA> fromTerm = FromTerm() { fromTerms.add(fromTerm); } )* |
| 3270 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3271 | FromClause fromClause = new FromClause(fromTerms); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3272 | return addSourceLocation(fromClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3273 | } |
| 3274 | } |
| 3275 | |
| 3276 | FromTerm FromTerm() throws ParseException : |
| 3277 | { |
| 3278 | Expression leftExpr = null; |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 3279 | VariableExpr leftVar = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3280 | VariableExpr posVar = null; |
| 3281 | List<AbstractBinaryCorrelateClause> correlateClauses = new ArrayList<AbstractBinaryCorrelateClause>(); |
| 3282 | } |
| 3283 | { |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 3284 | leftExpr = Expression() ((<AS>)? leftVar = Variable())? (<AT> posVar = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3285 | ( |
| 3286 | {JoinType joinType = JoinType.INNER; } |
| 3287 | (joinType = JoinType())? |
| 3288 | { |
| 3289 | AbstractBinaryCorrelateClause correlateClause = null; |
| 3290 | } |
| 3291 | (correlateClause = JoinClause(joinType) |
Yingyi Bu | 6d999ed | 2016-07-13 11:59:06 -0700 | [diff] [blame] | 3292 | | correlateClause = UnnestClause(joinType) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3293 | ) |
| 3294 | { |
| 3295 | correlateClauses.add(correlateClause); |
| 3296 | } |
| 3297 | )* |
| 3298 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3299 | if (leftVar == null) { |
Yingyi Bu | 5b2d4c8 | 2016-07-13 17:56:48 -0700 | [diff] [blame] | 3300 | leftVar = ExpressionToVariableUtil.getGeneratedVariable(leftExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 3301 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3302 | FromTerm fromTerm = new FromTerm(leftExpr, leftVar, posVar, correlateClauses); |
| 3303 | fromTerm.setSourceLocation(leftExpr.getSourceLocation()); |
| 3304 | return fromTerm; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3305 | } |
| 3306 | } |
| 3307 | |
| 3308 | JoinClause JoinClause(JoinType joinType) throws ParseException : |
| 3309 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3310 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3311 | Expression rightExpr = null; |
| 3312 | VariableExpr rightVar = null; |
| 3313 | VariableExpr posVar = null; |
| 3314 | Expression conditionExpr = null; |
| 3315 | } |
| 3316 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3317 | <JOIN> { startToken = token; } rightExpr = Expression() ((<AS>)? rightVar = Variable())? (<AT> posVar = Variable())? <ON> conditionExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3318 | { |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 3319 | if(rightVar==null){ |
Yingyi Bu | 5b2d4c8 | 2016-07-13 17:56:48 -0700 | [diff] [blame] | 3320 | rightVar = ExpressionToVariableUtil.getGeneratedVariable(rightExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 3321 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3322 | JoinClause joinClause = new JoinClause(joinType, rightExpr, rightVar, posVar, conditionExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3323 | return addSourceLocation(joinClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3324 | } |
| 3325 | } |
| 3326 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3327 | UnnestClause UnnestClause(JoinType joinType) throws ParseException : |
| 3328 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3329 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3330 | Expression rightExpr; |
| 3331 | VariableExpr rightVar; |
| 3332 | VariableExpr posVar = null; |
| 3333 | } |
| 3334 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3335 | (<UNNEST>|<CORRELATE>|<FLATTEN>) { startToken = token; } rightExpr = Expression() ((<AS>)? rightVar = Variable()) (<AT> posVar = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3336 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3337 | if (rightVar == null) { |
| 3338 | rightVar = ExpressionToVariableUtil.getGeneratedVariable(rightExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 3339 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3340 | UnnestClause unnestClause = new UnnestClause(joinType, rightExpr, rightVar, posVar); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3341 | return addSourceLocation(unnestClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3342 | } |
| 3343 | } |
| 3344 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3345 | JoinType JoinType() throws ParseException : |
| 3346 | { |
| 3347 | JoinType joinType = JoinType.INNER; |
| 3348 | } |
| 3349 | { |
| 3350 | (<INNER>|<LEFT> (<OUTER>)? {joinType = JoinType.LEFTOUTER; }) |
| 3351 | { |
| 3352 | return joinType; |
| 3353 | } |
| 3354 | } |
| 3355 | |
| 3356 | List<LetClause> LetClause() throws ParseException: |
| 3357 | { |
| 3358 | List<LetClause> letList = new ArrayList<LetClause>(); |
| 3359 | LetClause letClause; |
| 3360 | } |
| 3361 | { |
| 3362 | ( |
| 3363 | (<LET>|<LETTING>) letClause = LetElement() { letList.add(letClause); } (LOOKAHEAD(1) <COMMA> letClause = LetElement() { letList.add(letClause); })* |
| 3364 | | |
| 3365 | <WITH> letClause = WithElement() { letList.add(letClause); } (LOOKAHEAD(1) <COMMA> letClause = WithElement() { letList.add(letClause); })* |
| 3366 | ) |
| 3367 | { |
| 3368 | return letList; |
| 3369 | } |
| 3370 | } |
| 3371 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3372 | WhereClause WhereClause() throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3373 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3374 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3375 | Expression whereExpr; |
| 3376 | } |
| 3377 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3378 | <WHERE> { startToken = token; } whereExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3379 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3380 | WhereClause wc = new WhereClause(whereExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3381 | return addSourceLocation(wc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3382 | } |
| 3383 | } |
| 3384 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3385 | OrderbyClause OrderbyClause() throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3386 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3387 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3388 | OrderbyClause oc = new OrderbyClause(); |
| 3389 | Expression orderbyExpr; |
| 3390 | List<Expression> orderbyList = new ArrayList<Expression>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3391 | List<OrderbyClause.OrderModifier> modifierList = new ArrayList<OrderbyClause.OrderModifier>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3392 | int numOfOrderby = 0; |
| 3393 | } |
| 3394 | { |
| 3395 | <ORDER> |
| 3396 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3397 | startToken = token; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3398 | String hint = getHint(token); |
| 3399 | if (hint != null) { |
| 3400 | if (hint.startsWith(INMEMORY_HINT)) { |
| 3401 | String splits[] = hint.split(" +"); |
| 3402 | int numFrames = Integer.parseInt(splits[1]); |
| 3403 | int numTuples = Integer.parseInt(splits[2]); |
| 3404 | oc.setNumFrames(numFrames); |
| 3405 | oc.setNumTuples(numTuples); |
| 3406 | } |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 3407 | if (hint.startsWith(RANGE_HINT)) { |
| 3408 | try { |
| 3409 | oc.setRangeMap(RangeMapBuilder.parseHint(createNewParser(hint.substring(RANGE_HINT.length())))); |
| 3410 | } catch (CompilationException e) { |
| 3411 | throw new SqlppParseException(getSourceLocation(getHintToken(token)), e.getMessage()); |
| 3412 | } |
| 3413 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3414 | } |
| 3415 | } |
| 3416 | <BY> orderbyExpr = Expression() |
| 3417 | { |
| 3418 | orderbyList.add(orderbyExpr); |
| 3419 | OrderbyClause.OrderModifier modif = OrderbyClause.OrderModifier.ASC; |
| 3420 | } |
| 3421 | ( (<ASC> { modif = OrderbyClause.OrderModifier.ASC; }) |
| 3422 | | (<DESC> { modif = OrderbyClause.OrderModifier.DESC; }))? |
| 3423 | { |
| 3424 | modifierList.add(modif); |
| 3425 | } |
| 3426 | |
| 3427 | (LOOKAHEAD(2) <COMMA> orderbyExpr = Expression() |
| 3428 | { |
| 3429 | orderbyList.add(orderbyExpr); |
| 3430 | modif = OrderbyClause.OrderModifier.ASC; |
| 3431 | } |
| 3432 | ( (<ASC> { modif = OrderbyClause.OrderModifier.ASC; }) |
| 3433 | | (<DESC> { modif = OrderbyClause.OrderModifier.DESC; }))? |
| 3434 | { |
| 3435 | modifierList.add(modif); |
| 3436 | } |
| 3437 | )* |
| 3438 | |
| 3439 | { |
| 3440 | oc.setModifierList(modifierList); |
| 3441 | oc.setOrderbyList(orderbyList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3442 | return addSourceLocation(oc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3443 | } |
| 3444 | } |
| 3445 | |
| 3446 | GroupbyClause GroupbyClause()throws ParseException : |
| 3447 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3448 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3449 | GroupbyClause gbc = new GroupbyClause(); |
| 3450 | List<GbyVariableExpressionPair> vePairList = new ArrayList<GbyVariableExpressionPair>(); |
| 3451 | VariableExpr var = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3452 | Expression expr = null; |
| 3453 | VariableExpr decorVar = null; |
| 3454 | Expression decorExpr = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 3455 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> groupVarWithFieldList = null; |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 3456 | VariableExpr groupVar = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 3457 | List<Pair<Expression, Identifier>> groupFieldList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3458 | } |
| 3459 | { |
| 3460 | { |
| 3461 | Scope newScope = extendCurrentScopeNoPush(true); |
| 3462 | // extendCurrentScope(true); |
| 3463 | } |
| 3464 | <GROUP> |
| 3465 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3466 | startToken = token; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3467 | String hint = getHint(token); |
| 3468 | if (hint != null && hint.equals(HASH_GROUP_BY_HINT)) { |
| 3469 | gbc.setHashGroupByHint(true); |
| 3470 | } |
| 3471 | } |
| 3472 | <BY> ( |
| 3473 | expr = Expression() |
| 3474 | (LOOKAHEAD(1) (<AS>)? |
| 3475 | var = Variable() |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 3476 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3477 | { |
| 3478 | GbyVariableExpressionPair pair1 = new GbyVariableExpressionPair(var, expr); |
| 3479 | vePairList.add(pair1); |
| 3480 | } |
| 3481 | ( LOOKAHEAD(1) <COMMA> |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 3482 | { |
| 3483 | var = null; |
| 3484 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3485 | expr = Expression() |
| 3486 | (LOOKAHEAD(1) (<AS>)? |
| 3487 | var = Variable() |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 3488 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3489 | { |
| 3490 | GbyVariableExpressionPair pair2 = new GbyVariableExpressionPair(var, expr); |
| 3491 | vePairList.add(pair2); |
| 3492 | } |
| 3493 | )* |
| 3494 | ) |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 3495 | (<GROUP> <AS> groupVarWithFieldList = VariableWithFieldMap() |
| 3496 | { |
| 3497 | groupVar = groupVarWithFieldList.first; |
| 3498 | groupFieldList = groupVarWithFieldList.second; |
| 3499 | } |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 3500 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3501 | { |
| 3502 | gbc.setGbyPairList(vePairList); |
| 3503 | gbc.setDecorPairList(new ArrayList<GbyVariableExpressionPair>()); |
Yingyi Bu | 8671ddf | 2016-08-14 23:58:43 -0700 | [diff] [blame] | 3504 | gbc.setWithVarMap(new HashMap<Expression, VariableExpr>()); |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 3505 | gbc.setGroupVar(groupVar); |
| 3506 | gbc.setGroupFieldList(groupFieldList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3507 | replaceCurrentScope(newScope); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3508 | return addSourceLocation(gbc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3509 | } |
| 3510 | } |
| 3511 | |
| 3512 | HavingClause HavingClause() throws ParseException: |
| 3513 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3514 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3515 | Expression filterExpr = null; |
| 3516 | } |
| 3517 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3518 | <HAVING> { startToken = token; } filterExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3519 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3520 | HavingClause havingClause = new HavingClause(filterExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3521 | return addSourceLocation(havingClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3522 | } |
| 3523 | } |
| 3524 | |
| 3525 | LimitClause LimitClause() throws ParseException: |
| 3526 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3527 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3528 | LimitClause lc = new LimitClause(); |
| 3529 | Expression expr; |
| 3530 | pushForbiddenScope(getCurrentScope()); |
| 3531 | } |
| 3532 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3533 | <LIMIT> { startToken = token; } expr = Expression() { lc.setLimitExpr(expr); } |
| 3534 | (<OFFSET> expr = Expression() { lc.setOffset(expr); })? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3535 | |
| 3536 | { |
| 3537 | popForbiddenScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3538 | return addSourceLocation(lc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3539 | } |
| 3540 | } |
| 3541 | |
| 3542 | QuantifiedExpression QuantifiedExpression()throws ParseException: |
| 3543 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3544 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3545 | QuantifiedExpression qc = new QuantifiedExpression(); |
| 3546 | List<QuantifiedPair> quantifiedList = new ArrayList<QuantifiedPair>(); |
| 3547 | Expression satisfiesExpr; |
| 3548 | VariableExpr var; |
| 3549 | Expression inExpr; |
| 3550 | QuantifiedPair pair; |
| 3551 | } |
| 3552 | { |
| 3553 | { |
| 3554 | createNewScope(); |
| 3555 | } |
| 3556 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3557 | ( ((<ANY>|<SOME>) { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.SOME); }) |
| 3558 | | (<EVERY> { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.EVERY); })) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3559 | var = Variable() <IN> inExpr = Expression() |
| 3560 | { |
| 3561 | pair = new QuantifiedPair(var, inExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3562 | quantifiedList.add(pair); |
| 3563 | } |
| 3564 | ( |
| 3565 | <COMMA> var = Variable() <IN> inExpr = Expression() |
| 3566 | { |
| 3567 | pair = new QuantifiedPair(var, inExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3568 | quantifiedList.add(pair); |
| 3569 | } |
| 3570 | )* |
Yingyi Bu | 858efae | 2016-10-13 17:31:57 -0700 | [diff] [blame] | 3571 | <SATISFIES> satisfiesExpr = Expression() (<END>)? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3572 | { |
| 3573 | qc.setSatisfiesExpr(satisfiesExpr); |
| 3574 | qc.setQuantifiedList(quantifiedList); |
| 3575 | removeCurrentScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3576 | return addSourceLocation(qc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3577 | } |
| 3578 | } |
| 3579 | |
| 3580 | LetClause LetElement() throws ParseException: |
| 3581 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3582 | VariableExpr varExp; |
| 3583 | Expression beExp; |
| 3584 | extendCurrentScope(); |
| 3585 | } |
| 3586 | { |
| 3587 | varExp = Variable() <EQ> beExp = Expression() |
| 3588 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3589 | LetClause lc = new LetClause(varExp, beExp); |
| 3590 | lc.setSourceLocation(varExp.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3591 | return lc; |
| 3592 | } |
| 3593 | } |
| 3594 | |
| 3595 | LetClause WithElement() throws ParseException: |
| 3596 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3597 | VariableExpr varExp; |
| 3598 | Expression beExp; |
| 3599 | extendCurrentScope(); |
| 3600 | } |
| 3601 | { |
| 3602 | varExp = Variable() <AS> beExp = Expression() |
| 3603 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3604 | LetClause lc = new LetClause(varExp, beExp); |
| 3605 | lc.setSourceLocation(varExp.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3606 | return lc; |
| 3607 | } |
| 3608 | } |
| 3609 | |
| 3610 | TOKEN_MGR_DECLS: |
| 3611 | { |
| 3612 | public int commentDepth = 0; |
Till Westmann | e9b2adf | 2016-10-15 12:39:01 -0700 | [diff] [blame] | 3613 | public ArrayDeque<Integer> lexerStateStack = new ArrayDeque<Integer>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3614 | |
| 3615 | public void pushState() { |
| 3616 | lexerStateStack.push( curLexState ); |
| 3617 | } |
| 3618 | |
| 3619 | public void popState(String token) { |
| 3620 | if (lexerStateStack.size() > 0) { |
| 3621 | SwitchTo( lexerStateStack.pop() ); |
| 3622 | } else { |
| 3623 | int errorLine = input_stream.getEndLine(); |
| 3624 | int errorColumn = input_stream.getEndColumn(); |
| 3625 | String msg = "Lexical error at line " + errorLine + ", column " + errorColumn + ". Encountered \"" + token |
| 3626 | + "\" but state stack is empty."; |
| 3627 | throw new TokenMgrError(msg, -1); |
| 3628 | } |
| 3629 | } |
| 3630 | } |
| 3631 | |
| 3632 | <DEFAULT,IN_DBL_BRACE> |
| 3633 | TOKEN [IGNORE_CASE]: |
| 3634 | { |
| 3635 | <ALL : "all"> |
| 3636 | | <AND : "and"> |
Yingyi Bu | 8aac724 | 2016-09-13 23:14:09 -0700 | [diff] [blame] | 3637 | | <ANY : "any"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3638 | | <APPLY : "apply"> |
| 3639 | | <AS : "as"> |
| 3640 | | <ASC : "asc"> |
| 3641 | | <AT : "at"> |
| 3642 | | <AUTOGENERATED : "autogenerated"> |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3643 | | <BETWEEN : "between"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3644 | | <BTREE : "btree"> |
| 3645 | | <BY : "by"> |
| 3646 | | <CASE : "case"> |
| 3647 | | <CLOSED : "closed"> |
| 3648 | | <CREATE : "create"> |
| 3649 | | <COMPACTION : "compaction"> |
| 3650 | | <COMPACT : "compact"> |
| 3651 | | <CONNECT : "connect"> |
| 3652 | | <CORRELATE : "correlate"> |
Yingyi Bu | d56ff03 | 2016-08-01 10:26:57 -0700 | [diff] [blame] | 3653 | | <DATASET : "dataset"> |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 3654 | | <COLLECTION : "collection"> |
Yingyi Bu | d56ff03 | 2016-08-01 10:26:57 -0700 | [diff] [blame] | 3655 | | <DATAVERSE : "dataverse"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3656 | | <DECLARE : "declare"> |
| 3657 | | <DEFINITION : "definition"> |
| 3658 | | <DELETE : "delete"> |
| 3659 | | <DESC : "desc"> |
| 3660 | | <DISCONNECT : "disconnect"> |
| 3661 | | <DISTINCT : "distinct"> |
Murtadha Hubail | 29f6391 | 2019-04-21 14:23:57 +0300 | [diff] [blame] | 3662 | | <DIV : "div"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3663 | | <DROP : "drop"> |
| 3664 | | <ELEMENT : "element"> |
Till Westmann | 516d1a8 | 2016-08-02 14:45:53 -0700 | [diff] [blame] | 3665 | | <EXPLAIN : "explain"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3666 | | <ELSE : "else"> |
| 3667 | | <ENFORCED : "enforced"> |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 3668 | | <END : "end"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3669 | | <EVERY : "every"> |
| 3670 | | <EXCEPT : "except"> |
| 3671 | | <EXISTS : "exists"> |
| 3672 | | <EXTERNAL : "external"> |
| 3673 | | <FEED : "feed"> |
| 3674 | | <FILTER : "filter"> |
| 3675 | | <FLATTEN : "flatten"> |
| 3676 | | <FOR : "for"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3677 | | <FROM : "from"> |
| 3678 | | <FULL : "full"> |
Taewoo Kim | c49405a | 2017-01-04 00:30:43 -0800 | [diff] [blame] | 3679 | | <FULLTEXT : "fulltext"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3680 | | <FUNCTION : "function"> |
| 3681 | | <GROUP : "group"> |
| 3682 | | <HAVING : "having"> |
| 3683 | | <HINTS : "hints"> |
| 3684 | | <IF : "if"> |
| 3685 | | <INTO : "into"> |
| 3686 | | <IN : "in"> |
| 3687 | | <INDEX : "index"> |
| 3688 | | <INGESTION : "ingestion"> |
| 3689 | | <INNER : "inner"> |
| 3690 | | <INSERT : "insert"> |
| 3691 | | <INTERNAL : "internal"> |
| 3692 | | <INTERSECT : "intersect"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3693 | | <IS : "is"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3694 | | <JOIN : "join"> |
| 3695 | | <KEYWORD : "keyword"> |
| 3696 | | <KEY : "key"> |
Dmitry Lychagin | 1aa0dd4 | 2018-04-17 14:35:24 -0700 | [diff] [blame] | 3697 | | <KNOWN : "known"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3698 | | <LEFT : "left"> |
| 3699 | | <LETTING : "letting"> |
| 3700 | | <LET : "let"> |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3701 | | <LIKE : "like"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3702 | | <LIMIT : "limit"> |
| 3703 | | <LOAD : "load"> |
Murtadha Hubail | 29f6391 | 2019-04-21 14:23:57 +0300 | [diff] [blame] | 3704 | | <MOD : "mod"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3705 | | <NODEGROUP : "nodegroup"> |
| 3706 | | <NGRAM : "ngram"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3707 | | <NOT : "not"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3708 | | <OFFSET : "offset"> |
| 3709 | | <ON : "on"> |
| 3710 | | <OPEN : "open"> |
| 3711 | | <OR : "or"> |
| 3712 | | <ORDER : "order"> |
| 3713 | | <OUTER : "outer"> |
| 3714 | | <OUTPUT : "output"> |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 3715 | | <OVER: "over"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3716 | | <PATH : "path"> |
| 3717 | | <POLICY : "policy"> |
| 3718 | | <PRESORTED : "pre-sorted"> |
| 3719 | | <PRIMARY : "primary"> |
| 3720 | | <RAW : "raw"> |
| 3721 | | <REFRESH : "refresh"> |
| 3722 | | <RETURN : "return"> |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 3723 | | <RETURNING : "returning"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3724 | | <RTREE : "rtree"> |
| 3725 | | <RUN : "run"> |
| 3726 | | <SATISFIES : "satisfies"> |
| 3727 | | <SECONDARY : "secondary"> |
| 3728 | | <SELECT : "select"> |
| 3729 | | <SET : "set"> |
| 3730 | | <SOME : "some"> |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 3731 | | <START : "start"> |
| 3732 | | <STOP : "stop"> |
Murtadha Hubail | 2c04ae0 | 2017-11-21 15:58:01 +0300 | [diff] [blame] | 3733 | | <TEMPORARY : "temporary"> // intentionally not used but reserved for future usage |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3734 | | <THEN : "then"> |
| 3735 | | <TYPE : "type"> |
| 3736 | | <TO : "to"> |
| 3737 | | <UNION : "union"> |
Dmitry Lychagin | 8b6578a | 2017-11-08 15:04:35 -0800 | [diff] [blame] | 3738 | | <UNKNOWN : "unknown"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3739 | | <UNNEST : "unnest"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3740 | | <UPDATE : "update"> |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 3741 | | <UPSERT : "upsert"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3742 | | <USE : "use"> |
| 3743 | | <USING : "using"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3744 | | <VALUE : "value"> |
Dmitry Lychagin | 7d594a3 | 2018-01-15 14:31:03 -0800 | [diff] [blame] | 3745 | | <VALUED : "valued"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3746 | | <WHEN : "when"> |
| 3747 | | <WHERE : "where"> |
| 3748 | | <WITH : "with"> |
| 3749 | | <WRITE : "write"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3750 | } |
| 3751 | |
| 3752 | <DEFAULT,IN_DBL_BRACE> |
| 3753 | TOKEN : |
| 3754 | { |
| 3755 | <CARET : "^"> |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3756 | | <CONCAT : "||"> |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 3757 | | <DIVIDE : "/"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3758 | | <MINUS : "-"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3759 | | <MUL : "*"> |
| 3760 | | <PLUS : "+"> |
| 3761 | |
| 3762 | | <LEFTPAREN : "("> |
| 3763 | | <RIGHTPAREN : ")"> |
| 3764 | | <LEFTBRACKET : "["> |
| 3765 | | <RIGHTBRACKET : "]"> |
| 3766 | |
| 3767 | | <ATT : "@"> |
| 3768 | | <COLON : ":"> |
| 3769 | | <COMMA : ","> |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 3770 | | <DOLLAR: "$"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3771 | | <DOT : "."> |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 3772 | | <PERCENT: "%"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3773 | | <QUES : "?"> |
| 3774 | | <SEMICOLON : ";"> |
| 3775 | | <SHARP : "#"> |
| 3776 | |
| 3777 | | <LT : "<"> |
| 3778 | | <GT : ">"> |
| 3779 | | <LE : "<="> |
| 3780 | | <GE : ">="> |
| 3781 | | <EQ : "="> |
| 3782 | | <NE : "!="> |
Yingyi Bu | 4a4b896 | 2016-09-16 12:09:11 -0700 | [diff] [blame] | 3783 | | <LG : "<>"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3784 | | <SIMILAR : "~="> |
| 3785 | } |
| 3786 | |
| 3787 | <DEFAULT,IN_DBL_BRACE> |
| 3788 | TOKEN : |
| 3789 | { |
| 3790 | <LEFTBRACE : "{"> { pushState(); } : DEFAULT |
| 3791 | } |
| 3792 | |
| 3793 | <DEFAULT> |
| 3794 | TOKEN : |
| 3795 | { |
| 3796 | <RIGHTBRACE : "}"> { popState("}"); } |
| 3797 | } |
| 3798 | |
| 3799 | <DEFAULT,IN_DBL_BRACE> |
| 3800 | TOKEN : |
| 3801 | { |
| 3802 | <LEFTDBLBRACE : "{{"> { pushState(); } : IN_DBL_BRACE |
| 3803 | } |
| 3804 | |
| 3805 | <IN_DBL_BRACE> |
| 3806 | TOKEN : |
| 3807 | { |
| 3808 | <RIGHTDBLBRACE : "}}"> { popState("}}"); } |
| 3809 | } |
| 3810 | |
| 3811 | <DEFAULT,IN_DBL_BRACE> |
| 3812 | TOKEN : |
| 3813 | { |
| 3814 | <INTEGER_LITERAL : (<DIGIT>)+ > |
| 3815 | } |
| 3816 | |
| 3817 | <DEFAULT,IN_DBL_BRACE> |
Yingyi Bu | e311a63 | 2016-06-07 18:23:16 -0700 | [diff] [blame] | 3818 | TOKEN [IGNORE_CASE]: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3819 | { |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 3820 | <MISSING : "missing"> |
| 3821 | | <NULL : "null"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3822 | | <TRUE : "true"> |
| 3823 | | <FALSE : "false"> |
| 3824 | } |
| 3825 | |
| 3826 | <DEFAULT,IN_DBL_BRACE> |
| 3827 | TOKEN : |
| 3828 | { |
| 3829 | <#DIGIT : ["0" - "9"]> |
| 3830 | } |
| 3831 | |
| 3832 | <DEFAULT,IN_DBL_BRACE> |
| 3833 | TOKEN: |
| 3834 | { |
Dmitry Lychagin | ee8526b | 2018-03-30 14:21:01 -0700 | [diff] [blame] | 3835 | < DOUBLE_LITERAL: <DIGITS> ( "." <DIGITS> ) (("e"|"E") ("+"|"-")? <DIGITS>)? |
| 3836 | | <DIGITS> (("e"|"E") ("+"|"-")? <DIGITS>) |
| 3837 | | "." <DIGITS> (("e"|"E") ("+"|"-")? <DIGITS>)? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3838 | > |
Yingyi Bu | e4d919e | 2016-10-30 10:47:03 -0700 | [diff] [blame] | 3839 | | < FLOAT_LITERAL: <DIGITS> ( "f" | "F" ) |
| 3840 | | <DIGITS> ( "." <DIGITS> ( "f" | "F" ) )? |
| 3841 | | "." <DIGITS> ( "f" | "F" ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3842 | > |
| 3843 | | <DIGITS : (<DIGIT>)+ > |
| 3844 | } |
| 3845 | |
| 3846 | <DEFAULT,IN_DBL_BRACE> |
| 3847 | TOKEN : |
| 3848 | { |
| 3849 | <#LETTER : ["A" - "Z", "a" - "z"]> |
Dmitry Lychagin | 9c83efb | 2018-01-16 14:31:58 -0800 | [diff] [blame] | 3850 | | <#IDENTIFIER_SPECIALCHARS_START : ["_"]> |
| 3851 | | <#IDENTIFIER_SPECIALCHARS_REST : ["$"]> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3852 | } |
| 3853 | |
| 3854 | <DEFAULT,IN_DBL_BRACE> |
| 3855 | TOKEN : |
| 3856 | { |
| 3857 | // backslash u + 4 hex digits escapes are handled in the underlying JavaCharStream |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3858 | <QUOTED_STRING : "`" ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3859 | <EscapeQuot> |
| 3860 | | <EscapeBslash> |
| 3861 | | <EscapeSlash> |
| 3862 | | <EscapeBspace> |
| 3863 | | <EscapeFormf> |
| 3864 | | <EscapeNl> |
| 3865 | | <EscapeCr> |
| 3866 | | <EscapeTab> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3867 | | ~["`","\\"])* "`"> |
| 3868 | | <STRING_LITERAL : ("\"" ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3869 | <EscapeQuot> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3870 | | <EscapeBslash> |
| 3871 | | <EscapeSlash> |
| 3872 | | <EscapeBspace> |
| 3873 | | <EscapeFormf> |
| 3874 | | <EscapeNl> |
| 3875 | | <EscapeCr> |
| 3876 | | <EscapeTab> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3877 | | ~["\"","\\"])* "\"") |
| 3878 | | ("\'"( |
| 3879 | <EscapeApos> |
| 3880 | | <EscapeBslash> |
| 3881 | | <EscapeSlash> |
| 3882 | | <EscapeBspace> |
| 3883 | | <EscapeFormf> |
| 3884 | | <EscapeNl> |
| 3885 | | <EscapeCr> |
| 3886 | | <EscapeTab> |
| 3887 | | ~["\'","\\"])* "\'")> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3888 | | < #EscapeQuot: "\\\"" > |
| 3889 | | < #EscapeApos: "\\\'" > |
| 3890 | | < #EscapeBslash: "\\\\" > |
| 3891 | | < #EscapeSlash: "\\/" > |
| 3892 | | < #EscapeBspace: "\\b" > |
| 3893 | | < #EscapeFormf: "\\f" > |
| 3894 | | < #EscapeNl: "\\n" > |
| 3895 | | < #EscapeCr: "\\r" > |
| 3896 | | < #EscapeTab: "\\t" > |
| 3897 | } |
| 3898 | |
| 3899 | <DEFAULT,IN_DBL_BRACE> |
| 3900 | TOKEN : |
| 3901 | { |
Dmitry Lychagin | 9c83efb | 2018-01-16 14:31:58 -0800 | [diff] [blame] | 3902 | <IDENTIFIER : ( <LETTER> | <IDENTIFIER_SPECIALCHARS_START> ) |
| 3903 | ( <LETTER> | <DIGIT> | <IDENTIFIER_SPECIALCHARS_START> | <IDENTIFIER_SPECIALCHARS_REST> )*> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3904 | } |
| 3905 | |
| 3906 | <DEFAULT,IN_DBL_BRACE> |
| 3907 | SKIP: |
| 3908 | { |
| 3909 | " " |
| 3910 | | "\t" |
| 3911 | | "\r" |
| 3912 | | "\n" |
| 3913 | } |
| 3914 | |
| 3915 | <DEFAULT,IN_DBL_BRACE> |
| 3916 | SKIP: |
| 3917 | { |
| 3918 | <"//" (~["\n"])* "\n"> |
| 3919 | } |
| 3920 | |
| 3921 | <DEFAULT,IN_DBL_BRACE> |
| 3922 | SKIP: |
| 3923 | { |
| 3924 | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")?> |
| 3925 | } |
| 3926 | |
| 3927 | <DEFAULT,IN_DBL_BRACE> |
| 3928 | SKIP: |
| 3929 | { |
Yingyi Bu | 93846a7 | 2016-09-13 16:30:39 -0700 | [diff] [blame] | 3930 | <"--" (~["\n"])* "\n"> |
| 3931 | } |
| 3932 | |
| 3933 | |
| 3934 | <DEFAULT,IN_DBL_BRACE> |
| 3935 | SKIP: |
| 3936 | { |
| 3937 | <"--" (~["\n","\r"])* ("\n"|"\r"|"\r\n")?> |
| 3938 | } |
| 3939 | |
| 3940 | <DEFAULT,IN_DBL_BRACE> |
| 3941 | SKIP: |
| 3942 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3943 | <"/*"> { pushState(); } : INSIDE_COMMENT |
| 3944 | } |
| 3945 | |
| 3946 | <INSIDE_COMMENT> |
| 3947 | SPECIAL_TOKEN: |
| 3948 | { |
| 3949 | <"+"(" ")*(~["*"])*> |
| 3950 | } |
| 3951 | |
| 3952 | <INSIDE_COMMENT> |
| 3953 | SKIP: |
| 3954 | { |
| 3955 | <"/*"> { pushState(); } |
| 3956 | } |
| 3957 | |
| 3958 | <INSIDE_COMMENT> |
| 3959 | SKIP: |
| 3960 | { |
| 3961 | <"*/"> { popState("*/"); } |
| 3962 | | <~[]> |
| 3963 | } |