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