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