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; |
Ali Alsuliman | ba91b1c | 2023-02-22 21:33:55 -0800 | [diff] [blame] | 55 | import org.apache.asterix.common.annotations.ExternalSubpathAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 56 | import org.apache.asterix.common.annotations.FieldIntervalDataGen; |
| 57 | import org.apache.asterix.common.annotations.FieldValFileDataGen; |
| 58 | import org.apache.asterix.common.annotations.FieldValFileSameIndexDataGen; |
| 59 | import org.apache.asterix.common.annotations.IRecordFieldDataGen; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 60 | import org.apache.asterix.common.annotations.IndexedNLJoinExpressionAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 61 | import org.apache.asterix.common.annotations.InsertRandIntDataGen; |
| 62 | import org.apache.asterix.common.annotations.ListDataGen; |
| 63 | import org.apache.asterix.common.annotations.ListValFileDataGen; |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 64 | import org.apache.asterix.common.annotations.RangeAnnotation; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 65 | import org.apache.asterix.common.annotations.SecondaryIndexSearchPreferenceAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 66 | import org.apache.asterix.common.annotations.SkipSecondaryIndexSearchExpressionAnnotation; |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 67 | import org.apache.asterix.common.annotations.SpatialJoinAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 68 | import org.apache.asterix.common.annotations.TypeDataGen; |
| 69 | import org.apache.asterix.common.annotations.UndeclaredFieldsDataGen; |
| 70 | import org.apache.asterix.common.config.DatasetConfig.DatasetType; |
| 71 | import org.apache.asterix.common.config.DatasetConfig.IndexType; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 72 | import org.apache.asterix.common.exceptions.AsterixException; |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 73 | import org.apache.asterix.common.exceptions.CompilationException; |
Dmitry Lychagin | 85142c0 | 2018-04-05 17:27:36 -0700 | [diff] [blame] | 74 | import org.apache.asterix.common.exceptions.ErrorCode; |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 75 | import org.apache.asterix.common.exceptions.WarningCollector; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 76 | import org.apache.asterix.common.functions.FunctionConstants; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 77 | import org.apache.asterix.common.functions.FunctionSignature; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 78 | import org.apache.asterix.common.metadata.DataverseName; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 79 | import org.apache.asterix.common.metadata.DatasetFullyQualifiedName; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 80 | import org.apache.asterix.external.dataset.adapter.AdapterIdentifier; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 81 | import org.apache.asterix.lang.common.base.AbstractClause; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 82 | import org.apache.asterix.lang.common.base.AbstractLangExpression; |
| 83 | import org.apache.asterix.lang.common.base.AbstractStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 84 | import org.apache.asterix.lang.common.base.Expression; |
| 85 | import org.apache.asterix.lang.common.base.Literal; |
| 86 | import org.apache.asterix.lang.common.base.IParser; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 87 | import org.apache.asterix.lang.common.base.ILangExpression; |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 88 | import org.apache.asterix.lang.common.base.IParserFactory; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 89 | import org.apache.asterix.lang.common.base.Statement; |
| 90 | import org.apache.asterix.lang.common.clause.GroupbyClause; |
| 91 | import org.apache.asterix.lang.common.clause.LetClause; |
| 92 | import org.apache.asterix.lang.common.clause.LimitClause; |
| 93 | import org.apache.asterix.lang.common.clause.OrderbyClause; |
| 94 | import org.apache.asterix.lang.common.clause.UpdateClause; |
| 95 | import org.apache.asterix.lang.common.clause.WhereClause; |
| 96 | import org.apache.asterix.lang.common.context.RootScopeFactory; |
| 97 | import org.apache.asterix.lang.common.context.Scope; |
| 98 | import org.apache.asterix.lang.common.expression.AbstractAccessor; |
| 99 | import org.apache.asterix.lang.common.expression.CallExpr; |
| 100 | import org.apache.asterix.lang.common.expression.FieldAccessor; |
| 101 | import org.apache.asterix.lang.common.expression.FieldBinding; |
| 102 | import org.apache.asterix.lang.common.expression.GbyVariableExpressionPair; |
| 103 | import org.apache.asterix.lang.common.expression.IfExpr; |
| 104 | import org.apache.asterix.lang.common.expression.IndexAccessor; |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 105 | import org.apache.asterix.lang.common.expression.IndexedTypeExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 106 | import org.apache.asterix.lang.common.expression.ListConstructor; |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 107 | import org.apache.asterix.lang.common.expression.ListSliceExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 108 | import org.apache.asterix.lang.common.expression.LiteralExpr; |
| 109 | import org.apache.asterix.lang.common.expression.OperatorExpr; |
| 110 | import org.apache.asterix.lang.common.expression.OrderedListTypeDefinition; |
| 111 | import org.apache.asterix.lang.common.expression.QuantifiedExpression; |
| 112 | import org.apache.asterix.lang.common.expression.RecordConstructor; |
| 113 | import org.apache.asterix.lang.common.expression.RecordTypeDefinition; |
| 114 | import org.apache.asterix.lang.common.expression.TypeExpression; |
| 115 | import org.apache.asterix.lang.common.expression.TypeReferenceExpression; |
| 116 | import org.apache.asterix.lang.common.expression.UnaryExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 117 | import org.apache.asterix.lang.common.expression.UnorderedListTypeDefinition; |
| 118 | import org.apache.asterix.lang.common.expression.VariableExpr; |
| 119 | import org.apache.asterix.lang.common.literal.DoubleLiteral; |
| 120 | import org.apache.asterix.lang.common.literal.FalseLiteral; |
| 121 | import org.apache.asterix.lang.common.literal.FloatLiteral; |
| 122 | import org.apache.asterix.lang.common.literal.LongIntegerLiteral; |
Yingyi Bu | 535d86b | 2016-05-23 16:44:25 -0700 | [diff] [blame] | 123 | import org.apache.asterix.lang.common.literal.MissingLiteral; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 124 | import org.apache.asterix.lang.common.literal.NullLiteral; |
| 125 | import org.apache.asterix.lang.common.literal.StringLiteral; |
| 126 | import org.apache.asterix.lang.common.literal.TrueLiteral; |
| 127 | import org.apache.asterix.lang.common.parser.ScopeChecker; |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 128 | import org.apache.asterix.lang.common.statement.AdapterDropStatement; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 129 | import org.apache.asterix.lang.common.statement.AnalyzeStatement; |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 130 | import org.apache.asterix.lang.common.statement.AnalyzeDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 131 | import org.apache.asterix.lang.common.statement.CompactStatement; |
| 132 | import org.apache.asterix.lang.common.statement.ConnectFeedStatement; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 133 | import org.apache.asterix.lang.common.statement.StartFeedStatement; |
| 134 | import org.apache.asterix.lang.common.statement.StopFeedStatement; |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 135 | import org.apache.asterix.lang.common.statement.CreateAdapterStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 136 | import org.apache.asterix.lang.common.statement.CreateDataverseStatement; |
| 137 | import org.apache.asterix.lang.common.statement.CreateFeedPolicyStatement; |
| 138 | import org.apache.asterix.lang.common.statement.CreateFeedStatement; |
| 139 | import org.apache.asterix.lang.common.statement.CreateFunctionStatement; |
| 140 | import org.apache.asterix.lang.common.statement.CreateIndexStatement; |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 141 | import org.apache.asterix.lang.common.statement.CreateSynonymStatement; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 142 | import org.apache.asterix.lang.common.statement.CreateFullTextFilterStatement; |
| 143 | import org.apache.asterix.lang.common.statement.CreateFullTextConfigStatement; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 144 | import org.apache.asterix.lang.common.statement.CreateViewStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 145 | import org.apache.asterix.lang.common.statement.DatasetDecl; |
| 146 | import org.apache.asterix.lang.common.statement.DataverseDecl; |
| 147 | import org.apache.asterix.lang.common.statement.DataverseDropStatement; |
| 148 | import org.apache.asterix.lang.common.statement.DeleteStatement; |
| 149 | import org.apache.asterix.lang.common.statement.DisconnectFeedStatement; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 150 | import org.apache.asterix.lang.common.statement.DropDatasetStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 151 | import org.apache.asterix.lang.common.statement.ExternalDetailsDecl; |
| 152 | import org.apache.asterix.lang.common.statement.FeedDropStatement; |
Abdullah Alamoudi | 5dc73ed | 2016-07-28 05:03:13 +0300 | [diff] [blame] | 153 | import org.apache.asterix.lang.common.statement.FeedPolicyDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 154 | import org.apache.asterix.lang.common.statement.FunctionDecl; |
| 155 | import org.apache.asterix.lang.common.statement.FunctionDropStatement; |
| 156 | import org.apache.asterix.lang.common.statement.IndexDropStatement; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 157 | import org.apache.asterix.lang.common.statement.FullTextFilterDropStatement; |
| 158 | import org.apache.asterix.lang.common.statement.FullTextConfigDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 159 | import org.apache.asterix.lang.common.statement.InsertStatement; |
| 160 | import org.apache.asterix.lang.common.statement.InternalDetailsDecl; |
| 161 | import org.apache.asterix.lang.common.statement.LoadStatement; |
| 162 | import org.apache.asterix.lang.common.statement.NodeGroupDropStatement; |
| 163 | import org.apache.asterix.lang.common.statement.NodegroupDecl; |
| 164 | import org.apache.asterix.lang.common.statement.Query; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 165 | import org.apache.asterix.lang.common.statement.SetStatement; |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 166 | import org.apache.asterix.lang.common.statement.SynonymDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 167 | import org.apache.asterix.lang.common.statement.TypeDecl; |
| 168 | import org.apache.asterix.lang.common.statement.TypeDropStatement; |
| 169 | import org.apache.asterix.lang.common.statement.UpdateStatement; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 170 | import org.apache.asterix.lang.common.statement.UpsertStatement; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 171 | import org.apache.asterix.lang.common.statement.ViewDecl; |
| 172 | import org.apache.asterix.lang.common.statement.ViewDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 173 | import org.apache.asterix.lang.common.struct.Identifier; |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 174 | import org.apache.asterix.lang.common.struct.OperatorType; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 175 | import org.apache.asterix.lang.common.struct.QuantifiedPair; |
| 176 | import org.apache.asterix.lang.common.struct.VarIdentifier; |
Dmitry Lychagin | 4fb583d | 2021-11-10 17:25:28 -0800 | [diff] [blame] | 177 | import org.apache.asterix.lang.common.util.DatasetDeclParametersUtil; |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 178 | import org.apache.asterix.lang.common.util.ExpressionUtils; |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 179 | import org.apache.asterix.lang.common.util.RangeMapBuilder; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 180 | import org.apache.asterix.lang.sqlpp.clause.AbstractBinaryCorrelateClause; |
| 181 | import org.apache.asterix.lang.sqlpp.clause.FromClause; |
| 182 | import org.apache.asterix.lang.sqlpp.clause.FromTerm; |
| 183 | import org.apache.asterix.lang.sqlpp.clause.HavingClause; |
| 184 | import org.apache.asterix.lang.sqlpp.clause.JoinClause; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 185 | import org.apache.asterix.lang.sqlpp.clause.Projection; |
| 186 | import org.apache.asterix.lang.sqlpp.clause.SelectBlock; |
| 187 | import org.apache.asterix.lang.sqlpp.clause.SelectClause; |
| 188 | import org.apache.asterix.lang.sqlpp.clause.SelectElement; |
| 189 | import org.apache.asterix.lang.sqlpp.clause.SelectRegular; |
| 190 | import org.apache.asterix.lang.sqlpp.clause.SelectSetOperation; |
| 191 | import org.apache.asterix.lang.sqlpp.clause.UnnestClause; |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 192 | import org.apache.asterix.lang.common.clause.WhereClause; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 193 | import org.apache.asterix.lang.sqlpp.expression.CaseExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 194 | import org.apache.asterix.lang.sqlpp.expression.SelectExpression; |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 195 | import org.apache.asterix.lang.sqlpp.expression.WindowExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 196 | import org.apache.asterix.lang.sqlpp.optype.JoinType; |
| 197 | import org.apache.asterix.lang.sqlpp.optype.SetOpType; |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 198 | import org.apache.asterix.lang.sqlpp.optype.UnnestType; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 199 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser; |
| 200 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.GroupingElement; |
| 201 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.GroupingSet; |
| 202 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.GroupingSets; |
| 203 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.RollupCube; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 204 | import org.apache.asterix.lang.sqlpp.parser.SqlppHint; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 205 | import org.apache.asterix.lang.sqlpp.struct.SetOperationInput; |
| 206 | import org.apache.asterix.lang.sqlpp.struct.SetOperationRight; |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 207 | import org.apache.asterix.lang.sqlpp.util.ExpressionToVariableUtil; |
Xikui Wang | 96fd402 | 2017-04-10 14:23:31 -0700 | [diff] [blame] | 208 | import org.apache.asterix.lang.sqlpp.util.FunctionMapUtil; |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 209 | import org.apache.asterix.lang.sqlpp.util.SqlppVariableUtil; |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame^] | 210 | import org.apache.asterix.metadata.bootstrap.MetadataBuiltinEntities; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 211 | import org.apache.asterix.metadata.utils.MetadataConstants; |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 212 | import org.apache.asterix.om.exceptions.TypeMismatchException; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 213 | import org.apache.asterix.om.functions.BuiltinFunctions; |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 214 | import org.apache.asterix.om.types.BuiltinType; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 215 | import org.apache.commons.lang3.ArrayUtils; |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 216 | import org.apache.commons.lang3.StringUtils; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 217 | import org.apache.hyracks.algebricks.common.utils.Pair; |
| 218 | import org.apache.hyracks.algebricks.common.utils.Triple; |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 219 | import org.apache.hyracks.algebricks.common.exceptions.AlgebricksException; |
Shiva | 2ea7323 | 2019-10-09 18:04:05 -0700 | [diff] [blame] | 220 | import org.apache.hyracks.algebricks.core.algebra.expressions.BroadcastExpressionAnnotation; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 221 | import org.apache.hyracks.algebricks.core.algebra.expressions.HashJoinExpressionAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 222 | import org.apache.hyracks.algebricks.core.algebra.expressions.IExpressionAnnotation; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 223 | import org.apache.hyracks.algebricks.core.algebra.expressions.JoinProductivityAnnotation; |
| 224 | import org.apache.hyracks.algebricks.core.algebra.expressions.PredicateCardinalityAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 225 | import org.apache.hyracks.algebricks.core.algebra.functions.FunctionIdentifier; |
Dmitry Lychagin | 67714e2 | 2021-01-29 11:18:58 -0800 | [diff] [blame] | 226 | import org.apache.hyracks.api.exceptions.IWarningCollector; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 227 | import org.apache.hyracks.api.exceptions.SourceLocation; |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 228 | import org.apache.hyracks.api.exceptions.Warning; |
Dmitry Lychagin | 70bf47a | 2020-10-22 13:25:57 -0700 | [diff] [blame] | 229 | import org.apache.hyracks.dataflow.common.data.partition.range.RangeMap; |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 230 | import org.apache.hyracks.util.LogRedactionUtil; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 231 | import org.apache.hyracks.util.StringUtil; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 232 | import java.util.regex.Matcher; |
| 233 | import java.util.regex.Pattern; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 234 | |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 235 | class SQLPPParser extends ScopeChecker implements IParser { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 236 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 237 | // tokens parsed as identifiers |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 238 | private static final String CUBE = "CUBE"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 239 | private static final String CURRENT = "CURRENT"; |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 240 | private static final String DEFAULT = "DEFAULT"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 241 | private static final String EXCLUDE = "EXCLUDE"; |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 242 | private static final String INCLUDE = "INCLUDE"; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 243 | private static final String FIRST = "FIRST"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 244 | private static final String FOLLOWING = "FOLLOWING"; |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 245 | private static final String FOREIGN = "FOREIGN"; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 246 | private static final String GROUPING = "GROUPING"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 247 | private static final String GROUPS = "GROUPS"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 248 | private static final String IGNORE = "IGNORE"; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 249 | private static final String LAST = "LAST"; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 250 | private static final String META = "META"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 251 | private static final String NO = "NO"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 252 | private static final String NULLS = "NULLS"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 253 | private static final String OTHERS = "OTHERS"; |
| 254 | private static final String PARTITION = "PARTITION"; |
| 255 | private static final String PRECEDING = "PRECEDING"; |
| 256 | private static final String RANGE = "RANGE"; |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 257 | private static final String REFERENCES = "REFERENCES"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 258 | private static final String RESPECT = "RESPECT"; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 259 | private static final String ROLLUP = "ROLLUP"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 260 | private static final String ROW = "ROW"; |
| 261 | private static final String ROWS = "ROWS"; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 262 | private static final String SETS = "SETS"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 263 | private static final String TIES = "TIES"; |
| 264 | private static final String UNBOUNDED = "UNBOUNDED"; |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 265 | private static final String REPLACE = "REPLACE"; |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 266 | private static final String RETURNS = "RETURNS"; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 267 | private static final String CONFIG = "CONFIG"; |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 268 | private static final String STATISTICS = "STATISTICS"; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 269 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 270 | |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 271 | private static final String INT_TYPE_NAME = "int"; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 272 | private static final String UDF_VARARGS_PARAM_NAME = "args"; // Note: this value is stored in the function metadata |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 273 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 274 | // error configuration |
| 275 | protected static final boolean REPORT_EXPECTED_TOKENS = false; |
| 276 | |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 277 | private int externalVarCounter; |
| 278 | |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 279 | private DataverseName defaultDataverse; |
| 280 | |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 281 | private SqlppGroupingSetsParser groupingSetsParser; |
| 282 | |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 283 | private final WarningCollector warningCollector = new WarningCollector(); |
| 284 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 285 | private final Map<SourceLocation, String> hintCollector = new HashMap<SourceLocation, String>(); |
| 286 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 287 | private static class IndexParams { |
| 288 | public IndexType type; |
| 289 | public int gramLength; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 290 | public String fullTextConfig; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 291 | |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 292 | public IndexParams(IndexType type, int gramLength, String fullTextConfig) { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 293 | this.type = type; |
| 294 | this.gramLength = gramLength; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 295 | this.fullTextConfig = fullTextConfig; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 296 | } |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 297 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 298 | |
| 299 | private static class FunctionName { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 300 | public DataverseName dataverse; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 301 | public String library; |
| 302 | public String function; |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 303 | public Token hintToken; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 304 | public SourceLocation sourceLoc; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 307 | private IRecordFieldDataGen parseFieldDataGen(Token hintToken) throws ParseException { |
| 308 | String[] splits = hintToken.hintParams != null ? hintToken.hintParams.split("\\s+") : null; |
| 309 | switch (hintToken.hint) { |
| 310 | case VAL_FILE_HINT: |
| 311 | File[] valFiles = new File[splits.length]; |
| 312 | for (int k=0; k<splits.length; k++) { |
| 313 | valFiles[k] = new File(splits[k]); |
| 314 | } |
| 315 | return new FieldValFileDataGen(valFiles); |
| 316 | case VAL_FILE_SAME_INDEX_HINT: |
| 317 | return new FieldValFileSameIndexDataGen(new File(splits[0]), splits[1]); |
| 318 | case LIST_VAL_FILE_HINT: |
| 319 | return new ListValFileDataGen(new File(splits[0]), Integer.parseInt(splits[1]), Integer.parseInt(splits[2])); |
| 320 | case LIST_HINT: |
| 321 | return new ListDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1])); |
| 322 | case INTERVAL_HINT: |
| 323 | FieldIntervalDataGen.ValueType vt; |
| 324 | switch (splits[0]) { |
| 325 | case "int": |
| 326 | vt = FieldIntervalDataGen.ValueType.INT; |
| 327 | break; |
| 328 | case "long": |
| 329 | vt = FieldIntervalDataGen.ValueType.LONG; |
| 330 | break; |
| 331 | case "float": |
| 332 | vt = FieldIntervalDataGen.ValueType.FLOAT; |
| 333 | break; |
| 334 | case "double": |
| 335 | vt = FieldIntervalDataGen.ValueType.DOUBLE; |
| 336 | break; |
| 337 | default: |
| 338 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 339 | "Unknown type for interval data gen: " + splits[0]); |
| 340 | } |
| 341 | return new FieldIntervalDataGen(vt, splits[1], splits[2]); |
| 342 | case INSERT_RAND_INT_HINT: |
| 343 | return new InsertRandIntDataGen(splits[0], splits[1]); |
| 344 | case DATE_BETWEEN_YEARS_HINT: |
| 345 | return new DateBetweenYearsDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1])); |
| 346 | case DATETIME_BETWEEN_YEARS_HINT: |
| 347 | return new DatetimeBetweenYearsDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1])); |
| 348 | case DATETIME_ADD_RAND_HOURS_HINT: |
| 349 | return new DatetimeAddRandHoursDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1]), splits[2]); |
| 350 | case AUTO_HINT: |
| 351 | return new AutoDataGen(splits[0]); |
| 352 | default: |
| 353 | return null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 354 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 357 | public SQLPPParser(String s) { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 358 | this(new StringReader(s)); |
| 359 | super.setInput(s); |
| 360 | } |
| 361 | |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 362 | public static void main(String[] args) throws ParseException, TokenMgrError, IOException, FileNotFoundException, CompilationException { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 363 | File file = new File(args[0]); |
| 364 | Reader fis = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8")); |
| 365 | SQLPPParser parser = new SQLPPParser(fis); |
| 366 | List<Statement> st = parser.parse(); |
| 367 | //st.accept(new SQLPPPrintVisitor(), 0); |
| 368 | } |
| 369 | |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 370 | @Override |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 371 | public List<Statement> parse() throws CompilationException { |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 372 | return parseImpl(new ParseFunction<List<Statement>>() { |
| 373 | @Override |
| 374 | public List<Statement> parse() throws ParseException { |
| 375 | return SQLPPParser.this.Statement(); |
| 376 | } |
| 377 | }); |
| 378 | } |
| 379 | |
Dmitry Lychagin | 62f0beb | 2020-09-08 11:44:19 -0700 | [diff] [blame] | 380 | @Override |
| 381 | public Expression parseExpression() throws CompilationException { |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 382 | return parseImpl(new ParseFunction<Expression>() { |
| 383 | @Override |
| 384 | public Expression parse() throws ParseException { |
| 385 | return SQLPPParser.this.Expression(); |
| 386 | } |
| 387 | }); |
| 388 | } |
| 389 | |
| 390 | private static Expression parseExpression(String text) throws CompilationException { |
| 391 | return new SQLPPParser(text).parseExpression(); |
| 392 | } |
| 393 | |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 394 | @Override |
Dmitry Lychagin | ef680d7d | 2020-10-15 13:10:41 -0700 | [diff] [blame] | 395 | public List<String> parseMultipartIdentifier() throws CompilationException { |
| 396 | return parseImpl(new ParseFunction<List<String>>() { |
| 397 | @Override |
| 398 | public List<String> parse() throws ParseException { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 399 | return SQLPPParser.this.MultipartIdentifier().first; |
Dmitry Lychagin | ef680d7d | 2020-10-15 13:10:41 -0700 | [diff] [blame] | 400 | } |
| 401 | }); |
| 402 | } |
| 403 | |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 404 | private List<String> parseParenthesizedIdentifierList() throws CompilationException { |
| 405 | return parseImpl(new ParseFunction<List<String>>() { |
| 406 | @Override |
| 407 | public List<String> parse() throws ParseException { |
| 408 | return SQLPPParser.this.ParenthesizedIdentifierList(); |
| 409 | } |
| 410 | }); |
| 411 | } |
| 412 | |
| 413 | private static List<String> parseParenthesizedIdentifierList(String text) throws CompilationException { |
| 414 | return new SQLPPParser(text).parseParenthesizedIdentifierList(); |
| 415 | } |
| 416 | |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 417 | private Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> parseHashJoinParams() throws CompilationException { |
| 418 | return parseImpl(new ParseFunction<Pair<HashJoinExpressionAnnotation.BuildOrProbe, String>>() { |
| 419 | @Override |
| 420 | public Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> parse() throws ParseException { |
| 421 | return SQLPPParser.this.buildOrProbeParenthesizedIdentifier(); |
| 422 | } |
| 423 | }); |
| 424 | } |
| 425 | |
| 426 | private static Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> parseHashJoinParams(String text) throws CompilationException { |
| 427 | return new SQLPPParser(text).parseHashJoinParams(); |
| 428 | } |
| 429 | |
| 430 | private String parseBroadcastJoinParams() throws CompilationException { |
| 431 | return parseImpl(new ParseFunction<String>() { |
| 432 | @Override |
| 433 | public String parse() throws ParseException { |
| 434 | return SQLPPParser.this.parenthesizedIdentifier(); |
| 435 | } |
| 436 | }); |
| 437 | } |
| 438 | |
| 439 | private static String parseBroadcastJoinParams(String text) throws CompilationException { |
| 440 | return new SQLPPParser(text).parseBroadcastJoinParams(); |
| 441 | } |
| 442 | |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 443 | private List<Literal> parseParenthesizedLiteralList() throws CompilationException { |
| 444 | return parseImpl(new ParseFunction<List<Literal>>() { |
| 445 | @Override |
| 446 | public List<Literal> parse() throws ParseException { |
| 447 | return SQLPPParser.this.ParenthesizedLiteralList(); |
| 448 | } |
| 449 | }); |
| 450 | } |
| 451 | |
| 452 | private static List<Literal> parseParenthesizedLiteralList(String text) throws CompilationException { |
| 453 | return new SQLPPParser(text).parseParenthesizedLiteralList(); |
| 454 | } |
| 455 | |
Dmitry Lychagin | ef680d7d | 2020-10-15 13:10:41 -0700 | [diff] [blame] | 456 | @Override |
Dmitry Lychagin | 9ba7487 | 2021-04-05 14:38:20 -0700 | [diff] [blame] | 457 | public FunctionDecl parseFunctionBody(FunctionSignature signature, List<String> paramNames, boolean isStored) |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 458 | throws CompilationException { |
Dmitry Lychagin | e74454b | 2020-02-06 13:44:21 -0800 | [diff] [blame] | 459 | return parseImpl(new ParseFunction<FunctionDecl>() { |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 460 | @Override |
Dmitry Lychagin | e74454b | 2020-02-06 13:44:21 -0800 | [diff] [blame] | 461 | public FunctionDecl parse() throws ParseException { |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 462 | DataverseName dataverse = defaultDataverse; |
| 463 | defaultDataverse = signature.getDataverseName(); |
| 464 | createNewScope(); |
Dmitry Lychagin | e74454b | 2020-02-06 13:44:21 -0800 | [diff] [blame] | 465 | List<VarIdentifier> paramVars = new ArrayList<VarIdentifier>(paramNames.size()); |
| 466 | for (String paramName : paramNames) { |
| 467 | paramVars.add(SqlppVariableUtil.toInternalVariableIdentifier(paramName)); |
| 468 | } |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 469 | Expression functionBodyExpr = SQLPPParser.this.FunctionBody(); |
| 470 | removeCurrentScope(); |
| 471 | defaultDataverse = dataverse; |
Dmitry Lychagin | 9ba7487 | 2021-04-05 14:38:20 -0700 | [diff] [blame] | 472 | return new FunctionDecl(signature, paramVars, functionBodyExpr, isStored); |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 473 | } |
| 474 | }); |
| 475 | } |
| 476 | |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 477 | @Override |
| 478 | public ViewDecl parseViewBody(DatasetFullyQualifiedName viewName) throws CompilationException { |
| 479 | return parseImpl(new ParseFunction<ViewDecl>() { |
| 480 | @Override |
| 481 | public ViewDecl parse() throws ParseException { |
| 482 | DataverseName dataverse = defaultDataverse; |
| 483 | defaultDataverse = viewName.getDataverseName(); |
| 484 | createNewScope(); |
| 485 | Expression viewBodyExpr = SQLPPParser.this.ViewBody(); |
| 486 | removeCurrentScope(); |
| 487 | defaultDataverse = dataverse; |
| 488 | return new ViewDecl(viewName, viewBodyExpr); |
| 489 | } |
| 490 | }); |
| 491 | } |
| 492 | |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 493 | private <T> T parseImpl(ParseFunction<T> parseFunction) throws CompilationException { |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 494 | warningCollector.clear(); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 495 | hintCollector.clear(); |
Dmitry Lychagin | 67714e2 | 2021-01-29 11:18:58 -0800 | [diff] [blame] | 496 | token_source.hintCollector = hintCollector; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 497 | try { |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 498 | return parseFunction.parse(); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 499 | } catch (SqlppParseException e) { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 500 | if (e.getCause() instanceof AlgebricksException) { |
| 501 | AlgebricksException cause = (AlgebricksException) e.getCause(); |
| 502 | if (cause.getError().isPresent() && cause.getError().get() instanceof ErrorCode) { |
| 503 | throw new CompilationException((ErrorCode) cause.getError().get(), e.getSourceLocation(), |
| 504 | cause.getParams()); |
| 505 | } |
| 506 | } |
| 507 | throw new CompilationException(ErrorCode.PARSE_ERROR, e.getSourceLocation(), |
| 508 | LogRedactionUtil.userData(getMessage(e))); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 509 | } catch (ParseException e) { |
| 510 | throw new CompilationException(ErrorCode.PARSE_ERROR, LogRedactionUtil.userData(getMessage(e))); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 511 | } catch (Error e) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 512 | // this is here as the JavaCharStream that's below the lexer sometimes throws Errors that are not handled |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 513 | // by the 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] | 514 | final String msg = e.getClass().getSimpleName() + (e.getMessage() != null ? ": " + e.getMessage() : ""); |
Ali Alsuliman | fe90189 | 2019-03-19 01:40:35 -0700 | [diff] [blame] | 515 | throw new CompilationException(ErrorCode.PARSE_ERROR, LogRedactionUtil.userData(msg)); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 516 | } finally { |
| 517 | reportUnclaimedHints(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 518 | } |
| 519 | } |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 520 | |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 521 | @FunctionalInterface |
| 522 | private interface ParseFunction<T> { |
| 523 | T parse() throws ParseException; |
| 524 | } |
| 525 | |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 526 | @Override |
Dmitry Lychagin | 67714e2 | 2021-01-29 11:18:58 -0800 | [diff] [blame] | 527 | public void getWarnings(IWarningCollector outWarningCollector) { |
| 528 | warningCollector.getWarnings(outWarningCollector); |
| 529 | } |
| 530 | |
| 531 | @Override |
Ali Alsuliman | 6a9e2b0 | 2019-09-16 20:50:41 -0700 | [diff] [blame] | 532 | public void getWarnings(Collection<? super Warning> outWarnings, long maxWarnings) { |
| 533 | warningCollector.getWarnings(outWarnings, maxWarnings); |
| 534 | } |
| 535 | |
| 536 | @Override |
| 537 | public long getTotalWarningsCount() { |
| 538 | return warningCollector.getTotalWarningsCount(); |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 541 | protected String getMessage(ParseException pe) { |
| 542 | Token currentToken = pe.currentToken; |
| 543 | if (currentToken == null) { |
| 544 | return pe.getMessage(); |
| 545 | } |
| 546 | int[][] expectedTokenSequences = pe.expectedTokenSequences; |
| 547 | String[] tokenImage = pe.tokenImage; |
| 548 | String sep = REPORT_EXPECTED_TOKENS ? eol : " "; |
| 549 | StringBuilder expected = REPORT_EXPECTED_TOKENS ? new StringBuilder() : null; |
| 550 | int maxSize = appendExpected(expected, expectedTokenSequences, tokenImage); |
| 551 | Token tok = currentToken.next; |
| 552 | int line = tok.beginLine; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 553 | StringBuilder message = new StringBuilder(128); |
| 554 | 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] | 555 | for (int i = 0; i < maxSize; i++) { |
| 556 | if (i != 0) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 557 | message.append(' '); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 558 | } |
| 559 | if (tok.kind == 0) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 560 | message.append(fixQuotes(tokenImage[0])); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 561 | break; |
| 562 | } |
Till Westmann | e3c9f27 | 2016-10-09 11:09:26 -0700 | [diff] [blame] | 563 | final String fixedTokenImage = tokenImage[tok.kind]; |
| 564 | if (! tok.image.equalsIgnoreCase(stripQuotes(fixedTokenImage))) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 565 | message.append(fixQuotes(fixedTokenImage)).append(' '); |
Till Westmann | e3c9f27 | 2016-10-09 11:09:26 -0700 | [diff] [blame] | 566 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 567 | message.append(quot).append(addEscapes(tok.image)).append(quot); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 568 | tok = tok.next; |
| 569 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 570 | message.append(" at column ").append(currentToken.next.beginColumn).append('.').append(sep); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 571 | if (REPORT_EXPECTED_TOKENS) { |
| 572 | if (expectedTokenSequences.length == 1) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 573 | message.append("Was expecting:").append(sep).append(" "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 574 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 575 | message.append("Was expecting one of:").append(sep).append(" "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 576 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 577 | message.append(expected); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 578 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 579 | return message.toString(); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 582 | protected static SourceLocation getSourceLocation(Token token) { |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 583 | return |
| 584 | token == null ? null : |
| 585 | token.sourceLocation != null ? token.sourceLocation : |
| 586 | new SourceLocation(token.beginLine, token.beginColumn); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 587 | } |
| 588 | |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 589 | protected static <T extends AbstractLangExpression> T addSourceLocation(T expr, Token token) { |
| 590 | expr.setSourceLocation(getSourceLocation(token)); |
| 591 | return expr; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 592 | } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 593 | |
| 594 | private boolean isToken(String image) { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 595 | return isToken(token, image); |
| 596 | } |
| 597 | |
| 598 | private static boolean isToken(Token token, String image) { |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 599 | return token.image.equalsIgnoreCase(image); |
| 600 | } |
| 601 | |
| 602 | private void expectToken(String image) throws SqlppParseException { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 603 | expectToken(token, image); |
| 604 | } |
| 605 | |
| 606 | private static void expectToken(Token token, String image) throws SqlppParseException { |
| 607 | if (!isToken(token, image)) { |
| 608 | throw createUnexpectedTokenError(token); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
| 612 | private SqlppParseException createUnexpectedTokenError() { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 613 | return createUnexpectedTokenError(token, null); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 616 | private static SqlppParseException createUnexpectedTokenError(Token t) { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 617 | return createUnexpectedTokenError(t, null); |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | private SqlppParseException createUnexpectedTokenError(String expected) { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 621 | return createUnexpectedTokenError(token, expected); |
| 622 | } |
| 623 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 624 | private static SqlppParseException createUnexpectedTokenError(Token t, String expected) { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 625 | String message = "Unexpected token: " + LogRedactionUtil.userData(t.image) + |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 626 | (expected == null ? "" : ". Expected: " + LogRedactionUtil.userData(expected)); |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 627 | return new SqlppParseException(getSourceLocation(t), message); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 628 | } |
| 629 | |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 630 | private boolean laToken(int idx, int kind) { |
| 631 | Token t = getToken(idx); |
| 632 | return t.kind == kind; |
| 633 | } |
| 634 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 635 | private boolean laToken(int idx, int kind, String image) { |
| 636 | Token t = getToken(idx); |
| 637 | return t.kind == kind && t.image.equalsIgnoreCase(image); |
| 638 | } |
| 639 | |
| 640 | private boolean laIdentifier(int idx, String image) { |
| 641 | return laToken(idx, IDENTIFIER, image); |
| 642 | } |
| 643 | |
| 644 | private boolean laIdentifier(String image) { |
| 645 | return laIdentifier(1, image); |
| 646 | } |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 647 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 648 | private Token fetchHint(Token token, SqlppHint... expectedHints) { |
| 649 | Token hintToken = token.specialToken; |
| 650 | if (hintToken == null) { |
| 651 | return null; |
| 652 | } |
| 653 | SourceLocation sourceLoc = getSourceLocation(hintToken); |
| 654 | hintCollector.remove(sourceLoc); |
| 655 | if (hintToken.hint == null) { |
| 656 | warnUnexpectedHint(hintToken.hintParams, sourceLoc, expectedHints); |
| 657 | return null; |
| 658 | } else if (!ArrayUtils.contains(expectedHints, hintToken.hint)) { |
| 659 | warnUnexpectedHint(hintToken.hint.getIdentifier(), sourceLoc, expectedHints); |
| 660 | return null; |
| 661 | } else { |
| 662 | return hintToken; |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | private void reportUnclaimedHints() { |
| 667 | for (Map.Entry<SourceLocation, String> me : hintCollector.entrySet()) { |
| 668 | warnUnexpectedHint(me.getValue(), me.getKey(), "None"); |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | private void warnUnexpectedHint(String actualHint, SourceLocation sourceLoc, SqlppHint... expectedHints) { |
| 673 | warnUnexpectedHint(actualHint, sourceLoc, StringUtil.join(expectedHints, ", ", "\"")); |
| 674 | } |
| 675 | |
| 676 | private void warnUnexpectedHint(String actualHint, SourceLocation sourceLoc, String expectedHints) { |
Ali Alsuliman | aa11886 | 2019-09-10 20:55:45 -0700 | [diff] [blame] | 677 | if (warningCollector.shouldWarn()) { |
Michael Blow | 7c838de | 2021-02-23 16:12:48 -0500 | [diff] [blame] | 678 | warningCollector.warn(Warning.of(sourceLoc, ErrorCode.UNEXPECTED_HINT, actualHint, expectedHints)); |
Ali Alsuliman | aa11886 | 2019-09-10 20:55:45 -0700 | [diff] [blame] | 679 | } |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 680 | } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 681 | |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 682 | private IExpressionAnnotation parseExpressionAnnotation(Token hintToken) { |
| 683 | // placeholder for the annotation that should be returned if this hint's parameters cannot be parsed |
| 684 | IExpressionAnnotation onParseErrorReturn = null; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 685 | double selectivity, cardinality, productivity; |
| 686 | Pattern number = Pattern.compile("\\d+\\.\\d+"); |
| 687 | Pattern stringNumber = Pattern.compile("\\w+\\s+\\d+\\.\\d+"); |
| 688 | Pattern lessThanOnePat = Pattern.compile("0\\.\\d+"); |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 689 | try { |
| 690 | switch (hintToken.hint) { |
Vijay Sarathy | 7ba271a | 2023-03-09 08:07:43 -0800 | [diff] [blame] | 691 | case SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT: |
| 692 | if (hintToken.hintParams == null) { |
| 693 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected selectivity value"); |
| 694 | } |
| 695 | else { |
| 696 | selectivity = 1.0; // uninitialized |
| 697 | Matcher mat = lessThanOnePat.matcher(hintToken.hintParams); |
| 698 | if (mat.find()) { |
| 699 | selectivity = Double.parseDouble (mat.group()); |
| 700 | } |
| 701 | else { |
Vijay Sarathy | c70bae0 | 2023-03-13 13:24:05 -0700 | [diff] [blame] | 702 | throw new SqlppParseException(getSourceLocation(hintToken), "Selectivity has to be a decimal value greater than 0 and less than 1"); |
Vijay Sarathy | 7ba271a | 2023-03-09 08:07:43 -0800 | [diff] [blame] | 703 | } |
| 704 | return new PredicateCardinalityAnnotation(selectivity); |
| 705 | } |
| 706 | case JOIN_PREDICATE_PRODUCTIVITY_HINT: |
| 707 | if (hintToken.hintParams == null) { |
| 708 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected productivity collection name and value"); |
| 709 | } |
| 710 | else { |
| 711 | productivity = 1.0; // uninitialized |
| 712 | String leftSideDataSet = null; |
| 713 | Matcher StringNum = stringNumber.matcher(hintToken.hintParams); |
| 714 | if (StringNum.find()) { |
| 715 | String matchedGroup = StringNum.group(); |
| 716 | Pattern var = Pattern.compile("[a-zA-Z]\\w*"); // any word character [a-zA-Z_0-9] |
| 717 | Matcher matVar = var.matcher(matchedGroup); |
| 718 | if (matVar.find()) { |
| 719 | leftSideDataSet = matVar.group(); |
| 720 | } |
| 721 | else { |
| 722 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected productivity collection name"); |
| 723 | } |
| 724 | Matcher numMat = number.matcher(matchedGroup); |
| 725 | if (numMat.find()) { |
| 726 | productivity = Double.parseDouble (numMat.group()); |
| 727 | } |
| 728 | else { |
Vijay Sarathy | c70bae0 | 2023-03-13 13:24:05 -0700 | [diff] [blame] | 729 | throw new SqlppParseException(getSourceLocation(hintToken), "Productivity has to be a decimal value greater than 0"); |
Vijay Sarathy | 7ba271a | 2023-03-09 08:07:43 -0800 | [diff] [blame] | 730 | } |
| 731 | } |
| 732 | else { |
| 733 | throw new SqlppParseException(getSourceLocation(hintToken), "Invalid format for productivity values"); |
| 734 | } |
| 735 | // attach hint to global scope |
| 736 | return new JoinProductivityAnnotation (productivity, leftSideDataSet); |
| 737 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 738 | case HASH_BROADCAST_JOIN_HINT: |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 739 | if (hintToken.hintParams == null) { |
| 740 | return new BroadcastExpressionAnnotation(BroadcastExpressionAnnotation.BroadcastSide.RIGHT); |
| 741 | } |
| 742 | else { |
| 743 | // if parameter parsing fails then ignore this hint. |
| 744 | String name = parseBroadcastJoinParams(hintToken.hintParams); |
| 745 | return new BroadcastExpressionAnnotation(name); |
| 746 | } |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 747 | case HASH_JOIN_HINT: |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 748 | if (hintToken.hintParams == null) { |
| 749 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected hash join build/probe collection name"); |
| 750 | } |
| 751 | else { |
| 752 | // if parameter parsing fails then ignore this hint. |
| 753 | Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> pair = parseHashJoinParams(hintToken.hintParams); |
| 754 | return new HashJoinExpressionAnnotation(pair); |
| 755 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 756 | case INDEXED_NESTED_LOOP_JOIN_HINT: |
| 757 | if (hintToken.hintParams == null) { |
| 758 | return IndexedNLJoinExpressionAnnotation.INSTANCE_ANY_INDEX; |
| 759 | } else { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 760 | // if parameter parsing fails then return hint annotation without parameters |
| 761 | onParseErrorReturn = IndexedNLJoinExpressionAnnotation.INSTANCE_ANY_INDEX; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 762 | List<String> indexNames = parseParenthesizedIdentifierList(hintToken.hintParams); |
| 763 | return IndexedNLJoinExpressionAnnotation.newInstance(indexNames); |
| 764 | } |
| 765 | case RANGE_HINT: |
| 766 | Expression rangeExpr = parseExpression(hintToken.hintParams); |
| 767 | RangeMap rangeMap = RangeMapBuilder.parseHint(rangeExpr); |
| 768 | return new RangeAnnotation(rangeMap); |
| 769 | case SKIP_SECONDARY_INDEX_SEARCH_HINT: |
| 770 | if (hintToken.hintParams == null) { |
| 771 | return SkipSecondaryIndexSearchExpressionAnnotation.INSTANCE_ANY_INDEX; |
| 772 | } else { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 773 | // if parameter parsing fails then ignore this hint |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 774 | List<String> indexNames = parseParenthesizedIdentifierList(hintToken.hintParams); |
| 775 | return SkipSecondaryIndexSearchExpressionAnnotation.newInstance(indexNames); |
| 776 | } |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 777 | case SPATIAL_JOIN_HINT: |
| 778 | List<Literal> hintValues = parseParenthesizedLiteralList(hintToken.hintParams); |
| 779 | |
| 780 | // Handle exceptions |
| 781 | if (hintValues.size() != 6) { |
| 782 | throw new SqlppParseException(getSourceLocation(hintToken), String.format("Unexpected hint: %s. 6 arguments are required.", |
| 783 | hintToken.hint.toString())); |
| 784 | } |
| 785 | |
| 786 | for (int i = 0; i < 4; i++) { |
| 787 | Literal lit = hintValues.get(i); |
| 788 | if ((lit.getLiteralType() != Literal.Type.DOUBLE) |
| 789 | && (lit.getLiteralType() != Literal.Type.FLOAT) |
| 790 | && (lit.getLiteralType() != Literal.Type.LONG) |
| 791 | && (lit.getLiteralType() != Literal.Type.INTEGER)){ |
| 792 | throw new SqlppParseException(getSourceLocation(hintToken), String.format("Unexpected hint: %s. Numeric value is required for first 4 arguments.", |
| 793 | hintToken.hint.toString())); |
| 794 | } |
| 795 | } |
| 796 | |
| 797 | for (int i = 4; i < 6; i++) { |
| 798 | Literal lit = hintValues.get(i); |
| 799 | if ((lit.getLiteralType() != Literal.Type.LONG) |
| 800 | && (lit.getLiteralType() != Literal.Type.INTEGER)) { |
| 801 | throw new SqlppParseException(getSourceLocation(hintToken), String.format("Unexpected hint: %s. Long/int is required for last 2 arguments.", |
| 802 | hintToken.hint.toString())); |
| 803 | } |
| 804 | } |
| 805 | |
| 806 | try { |
| 807 | double minX = ExpressionUtils.getDoubleValue(hintValues.get(0)); |
| 808 | double minY = ExpressionUtils.getDoubleValue(hintValues.get(1)); |
| 809 | double maxX = ExpressionUtils.getDoubleValue(hintValues.get(2)); |
| 810 | double maxY = ExpressionUtils.getDoubleValue(hintValues.get(3)); |
| 811 | int numRows = (int) ExpressionUtils.getLongValue(hintValues.get(4)); |
| 812 | int numColumns = (int) ExpressionUtils.getLongValue(hintValues.get(5)); |
| 813 | SpatialJoinAnnotation spatialJoinAnn = new SpatialJoinAnnotation(minX, minY, maxX, maxY, numRows, numColumns); |
| 814 | return spatialJoinAnn; |
| 815 | } catch (TypeMismatchException e) { |
| 816 | throw new SqlppParseException(getSourceLocation(hintToken), e.getMessage()); |
| 817 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 818 | case USE_SECONDARY_INDEX_SEARCH_HINT: |
| 819 | if (hintToken.hintParams == null) { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 820 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected index name(s)"); |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 821 | } else { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 822 | // if parameter parsing fails then ignore this hint |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 823 | List<String> indexNames = parseParenthesizedIdentifierList(hintToken.hintParams); |
| 824 | return SecondaryIndexSearchPreferenceAnnotation.newInstance(indexNames); |
| 825 | } |
| 826 | default: |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 827 | throw new SqlppParseException(getSourceLocation(hintToken), "Unexpected hint"); |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 828 | } |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 829 | } catch (SqlppParseException e) { |
| 830 | if (warningCollector.shouldWarn()) { |
Michael Blow | 7c838de | 2021-02-23 16:12:48 -0500 | [diff] [blame] | 831 | warningCollector.warn(Warning.of(getSourceLocation(hintToken), ErrorCode.INVALID_HINT, |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 832 | hintToken.hint.toString(), e.getMessage())); |
| 833 | } |
| 834 | return onParseErrorReturn; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 835 | } catch (CompilationException e) { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 836 | if (warningCollector.shouldWarn()) { |
Michael Blow | 7c838de | 2021-02-23 16:12:48 -0500 | [diff] [blame] | 837 | warningCollector.warn(Warning.of(getSourceLocation(hintToken), ErrorCode.INVALID_HINT, |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 838 | hintToken.hint.toString(), e.getMessage())); |
| 839 | } |
| 840 | return onParseErrorReturn; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 841 | } |
| 842 | } |
| 843 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 844 | private void ensureNoTypeDeclsInFunction(String fnName, List<Pair<VarIdentifier, TypeExpression>> paramList, |
| 845 | TypeExpression returnType, Token startToken) throws SqlppParseException { |
| 846 | for (Pair<VarIdentifier, TypeExpression> p : paramList) { |
| 847 | if (p.second != null) { |
| 848 | String paramName = SqlppVariableUtil.toUserDefinedName(p.first.getValue()); |
| 849 | throw new SqlppParseException(getSourceLocation(startToken), |
| 850 | "Unexpected type declaration for parameter " + paramName + " in function " + fnName); |
| 851 | } |
| 852 | } |
| 853 | if (returnType != null) { |
| 854 | throw new SqlppParseException(getSourceLocation(startToken), |
| 855 | "Unexpected return type declaration for function " + fnName); |
| 856 | } |
| 857 | } |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 858 | |
| 859 | private void ensureIntegerLiteral(LiteralExpr expr, String errorPrefix) throws SqlppParseException { |
| 860 | Literal lit = expr.getValue(); |
| 861 | if (lit.getLiteralType() != Literal.Type.INTEGER && lit.getLiteralType() != Literal.Type.LONG) { |
| 862 | throw new SqlppParseException(expr.getSourceLocation(), errorPrefix + " should be an INTEGER"); |
| 863 | } |
| 864 | } |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 865 | |
| 866 | private DataverseName createDataverseName(List<String> parts, int fromIndex, int toIndex, Token startToken) |
| 867 | throws SqlppParseException { |
| 868 | try { |
| 869 | return DataverseName.create(parts, fromIndex, toIndex); |
| 870 | } catch (AsterixException e) { |
| 871 | SqlppParseException pe = new SqlppParseException(getSourceLocation(startToken), e.getMessage()); |
| 872 | pe.initCause(e); |
| 873 | throw pe; |
| 874 | } |
| 875 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | PARSER_END(SQLPPParser) |
| 879 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 880 | List<Statement> Statement() throws ParseException: |
| 881 | { |
| 882 | scopeStack.push(RootScopeFactory.createRootScope(this)); |
| 883 | List<Statement> decls = new ArrayList<Statement>(); |
| 884 | Statement stmt = null; |
| 885 | } |
| 886 | { |
Murtadha Hubail | dc77522 | 2017-08-21 15:22:45 +0300 | [diff] [blame] | 887 | ( |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 888 | (stmt = ExplainStatement() |
Murtadha Hubail | dc77522 | 2017-08-21 15:22:45 +0300 | [diff] [blame] | 889 | { |
| 890 | decls.add(stmt); |
| 891 | } |
| 892 | )? |
| 893 | (<SEMICOLON>)+ |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 894 | )* |
| 895 | <EOF> |
| 896 | { |
| 897 | return decls; |
| 898 | } |
| 899 | } |
| 900 | |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 901 | Statement ExplainStatement() throws ParseException: |
| 902 | { |
| 903 | Statement stmt = null; |
| 904 | Token explainToken = null; |
| 905 | } |
| 906 | { |
| 907 | ( <EXPLAIN> { explainToken = token; } )? |
| 908 | stmt = SingleStatement() |
| 909 | { |
| 910 | if (explainToken != null) { |
| 911 | if (stmt.getKind() == Statement.Kind.QUERY) { |
| 912 | ((Query)stmt).setExplain(true); |
| 913 | } else { |
| 914 | throw new SqlppParseException(getSourceLocation(explainToken), |
| 915 | "EXPLAIN is not supported for this kind of statement"); |
| 916 | } |
| 917 | } |
| 918 | return stmt; |
| 919 | } |
| 920 | } |
| 921 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 922 | Statement SingleStatement() throws ParseException: |
| 923 | { |
| 924 | Statement stmt = null; |
| 925 | } |
| 926 | { |
| 927 | ( |
| 928 | stmt = DataverseDeclaration() |
| 929 | | stmt = FunctionDeclaration() |
| 930 | | stmt = CreateStatement() |
| 931 | | stmt = LoadStatement() |
| 932 | | stmt = DropStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 933 | | stmt = SetStatement() |
| 934 | | stmt = InsertStatement() |
| 935 | | stmt = DeleteStatement() |
| 936 | | stmt = UpdateStatement() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 937 | | stmt = UpsertStatement() |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 938 | | stmt = ConnectionStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 939 | | stmt = CompactStatement() |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 940 | | stmt = AnalyzeStatement() |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 941 | | stmt = Query() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 942 | ) |
| 943 | { |
| 944 | return stmt; |
| 945 | } |
| 946 | } |
| 947 | |
| 948 | DataverseDecl DataverseDeclaration() throws ParseException: |
| 949 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 950 | Token startToken = null; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 951 | DataverseName dvName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 952 | } |
| 953 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 954 | <USE> { startToken = token; } dvName = DataverseName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 955 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 956 | defaultDataverse = dvName; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 957 | DataverseDecl dvDecl = new DataverseDecl(defaultDataverse); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 958 | return addSourceLocation(dvDecl, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 959 | } |
| 960 | } |
| 961 | |
| 962 | Statement CreateStatement() throws ParseException: |
| 963 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 964 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 965 | Statement stmt = null; |
| 966 | } |
| 967 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 968 | <CREATE> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 969 | ( |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 970 | stmt = CreateOrReplaceStatement(startToken) |
| 971 | | stmt = CreateTypeStatement(startToken) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 972 | | stmt = CreateNodegroupStatement(startToken) |
| 973 | | stmt = CreateDatasetStatement(startToken) |
| 974 | | stmt = CreateIndexStatement(startToken) |
| 975 | | stmt = CreateDataverseStatement(startToken) |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 976 | | stmt = CreateFunctionStatement(startToken, false) |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 977 | | stmt = CreateAdapterStatement(startToken) |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 978 | | stmt = CreateSynonymStatement(startToken) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 979 | | stmt = CreateFeedStatement(startToken) |
| 980 | | stmt = CreateFeedPolicyStatement(startToken) |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 981 | | stmt = CreateFullTextStatement(startToken) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 982 | | stmt = CreateViewStatement(startToken, false) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 983 | ) |
| 984 | { |
| 985 | return stmt; |
| 986 | } |
| 987 | } |
| 988 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 989 | Statement CreateOrReplaceStatement(Token startStmtToken) throws ParseException: |
| 990 | { |
| 991 | Statement stmt = null; |
| 992 | Token replaceToken = null; |
| 993 | } |
| 994 | { |
| 995 | <OR> <IDENTIFIER> { replaceToken = token; } |
| 996 | ( |
| 997 | stmt = CreateFunctionStatement(startStmtToken, true) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 998 | | stmt = CreateViewStatement(startStmtToken, true) |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 999 | ) |
| 1000 | { |
| 1001 | // check expected token here to make the grammar extension plugin happy |
| 1002 | expectToken(replaceToken, REPLACE); |
| 1003 | return stmt; |
| 1004 | } |
| 1005 | } |
| 1006 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1007 | TypeDecl CreateTypeStatement(Token startStmtToken) throws ParseException: |
| 1008 | { |
| 1009 | TypeDecl stmt = null; |
| 1010 | } |
| 1011 | { |
| 1012 | <TYPE> stmt = TypeSpecification(startStmtToken) |
| 1013 | { |
| 1014 | return stmt; |
| 1015 | } |
| 1016 | } |
| 1017 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 1018 | TypeDecl TypeSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1019 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1020 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1021 | boolean ifNotExists = false; |
| 1022 | TypeExpression typeExpr = null; |
| 1023 | } |
| 1024 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1025 | nameComponents = TypeName() ifNotExists = IfNotExists() |
Till Westmann | f602827 | 2016-09-30 14:34:42 -0700 | [diff] [blame] | 1026 | <AS> typeExpr = RecordTypeDef() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1027 | { |
| 1028 | boolean dgen = false; |
| 1029 | long numValues = -1; |
| 1030 | String filename = null; |
| 1031 | Token hintToken = fetchHint(startStmtToken, SqlppHint.DGEN_HINT); |
| 1032 | if (hintToken != null) { |
| 1033 | String hintParams = hintToken.hintParams; |
| 1034 | String[] splits = hintParams != null ? hintParams.split("\\s+") : null; |
| 1035 | if (splits == null || splits.length != 2) { |
| 1036 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 1037 | "Expecting /*+ dgen <filename> <numberOfItems> */"); |
| 1038 | } |
| 1039 | dgen = true; |
| 1040 | filename = splits[0]; |
| 1041 | numValues = Long.parseLong(splits[1]); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1042 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1043 | TypeDataGen tddg = new TypeDataGen(dgen, filename, numValues); |
| 1044 | TypeDecl stmt = new TypeDecl(nameComponents.first, nameComponents.second, typeExpr, tddg, ifNotExists); |
| 1045 | return addSourceLocation(stmt, startStmtToken); |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | NodegroupDecl CreateNodegroupStatement(Token startStmtToken) throws ParseException: |
| 1050 | { |
| 1051 | NodegroupDecl stmt = null; |
| 1052 | } |
| 1053 | { |
| 1054 | <NODEGROUP> stmt = NodegroupSpecification(startStmtToken) |
| 1055 | { |
| 1056 | return stmt; |
| 1057 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1060 | NodegroupDecl NodegroupSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1061 | { |
| 1062 | String name = null; |
| 1063 | String tmp = null; |
| 1064 | boolean ifNotExists = false; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1065 | List<Identifier> ncNames = new ArrayList<Identifier>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1066 | } |
| 1067 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1068 | name = Identifier() ifNotExists = IfNotExists() |
| 1069 | <ON> tmp = Identifier() |
| 1070 | { |
| 1071 | ncNames.add(new Identifier(tmp)); |
| 1072 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1073 | ( <COMMA> tmp = Identifier() |
| 1074 | { |
| 1075 | ncNames.add(new Identifier(tmp)); |
| 1076 | } |
| 1077 | )* |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1078 | { |
| 1079 | NodegroupDecl stmt = new NodegroupDecl(new Identifier(name), ncNames, ifNotExists); |
| 1080 | return addSourceLocation(stmt, startStmtToken); |
| 1081 | } |
| 1082 | } |
| 1083 | |
| 1084 | void Dataset() throws ParseException: |
| 1085 | { |
| 1086 | } |
| 1087 | { |
| 1088 | (<DATASET>|<COLLECTION>) |
| 1089 | } |
| 1090 | |
Ali Alsuliman | 7e5c574 | 2022-11-18 12:21:13 -0800 | [diff] [blame] | 1091 | void DatasetToken() throws ParseException: |
| 1092 | { |
| 1093 | } |
| 1094 | { |
| 1095 | Dataset() |
| 1096 | } |
| 1097 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1098 | DatasetDecl CreateDatasetStatement(Token startStmtToken) throws ParseException: |
| 1099 | { |
| 1100 | DatasetDecl stmt = null; |
| 1101 | } |
| 1102 | { |
| 1103 | ( |
| 1104 | (<INTERNAL>)? Dataset() stmt = DatasetSpecification(startStmtToken) |
| 1105 | | <EXTERNAL> Dataset() stmt = ExternalDatasetSpecification(startStmtToken) |
| 1106 | ) |
| 1107 | { |
| 1108 | return stmt; |
| 1109 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1110 | } |
| 1111 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1112 | DatasetDecl DatasetSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1113 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1114 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1115 | boolean ifNotExists = false; |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1116 | TypeExpression typeExpr = null; |
| 1117 | TypeExpression metaTypeExpr = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1118 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame^] | 1119 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> primaryKeyFieldsWithTypes = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1120 | Map<String,String> hints = new HashMap<String,String>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1121 | DatasetDecl stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1122 | boolean autogenerated = false; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1123 | Pair<Integer, List<String>> filterField = null; |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 1124 | RecordConstructor withRecord = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1125 | } |
| 1126 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1127 | nameComponents = QualifiedName() |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame^] | 1128 | (typeExpr = DatasetTypeSpecification())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1129 | ( |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1130 | { String name; } |
| 1131 | <WITH> |
| 1132 | name = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1133 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1134 | if (!name.equalsIgnoreCase("meta")){ |
| 1135 | throw new SqlppParseException(getSourceLocation(startStmtToken), |
| 1136 | "We can only support one additional associated field called \"meta\"."); |
| 1137 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1138 | } |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 1139 | metaTypeExpr = DatasetTypeSpecification() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1140 | )? |
| 1141 | ifNotExists = IfNotExists() |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame^] | 1142 | (LOOKAHEAD(3) primaryKeyFieldsWithTypes = PrimaryKeyWithType() |
| 1143 | | primaryKeyFields = PrimaryKey()) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1144 | (<AUTOGENERATED> { autogenerated = true; } )? |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1145 | ( <HINTS> hints = Properties() )? |
| 1146 | ( LOOKAHEAD(2) <WITH> <FILTER> <ON> filterField = NestedField() )? |
| 1147 | ( <WITH> withRecord = RecordConstructor() )? |
| 1148 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1149 | try { |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame^] | 1150 | if (typeExpr == null) { |
| 1151 | InternalDetailsDecl idd = new InternalDetailsDecl(primaryKeyFieldsWithTypes.second, |
| 1152 | primaryKeyFieldsWithTypes.first, autogenerated, filterField == null? null : filterField.first, |
| 1153 | filterField == null? null : filterField.second, primaryKeyFieldsWithTypes.third); |
| 1154 | final TypeReferenceExpression anyObjectReference = new TypeReferenceExpression( |
| 1155 | new Pair(MetadataBuiltinEntities.ANY_OBJECT_DATATYPE.getDataverseName(), |
| 1156 | new Identifier(MetadataBuiltinEntities.ANY_OBJECT_DATATYPE.getDatatypeName()))); |
| 1157 | stmt = new DatasetDecl(nameComponents.first, nameComponents.second, anyObjectReference, null, hints, |
| 1158 | DatasetType.INTERNAL, idd, withRecord, ifNotExists); |
| 1159 | return addSourceLocation(stmt, startStmtToken); |
| 1160 | } else { |
| 1161 | InternalDetailsDecl idd = new InternalDetailsDecl(primaryKeyFields.second, primaryKeyFields.first, autogenerated, |
| 1162 | filterField == null? null : filterField.first, filterField == null? null : filterField.second); |
| 1163 | DatasetDeclParametersUtil.adjustInlineTypeDecl(typeExpr, primaryKeyFields.second, primaryKeyFields.first, false); |
| 1164 | if (metaTypeExpr != null) { |
| 1165 | DatasetDeclParametersUtil.adjustInlineTypeDecl(metaTypeExpr, primaryKeyFields.second, primaryKeyFields.first, |
| 1166 | true); |
| 1167 | } |
| 1168 | stmt = new DatasetDecl(nameComponents.first, nameComponents.second, typeExpr, metaTypeExpr, hints, |
| 1169 | DatasetType.INTERNAL, idd, withRecord, ifNotExists); |
| 1170 | return addSourceLocation(stmt, startStmtToken); |
Dmitry Lychagin | 4fb583d | 2021-11-10 17:25:28 -0800 | [diff] [blame] | 1171 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1172 | } catch (CompilationException e) { |
| 1173 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 1174 | } |
| 1175 | } |
| 1176 | } |
| 1177 | |
| 1178 | DatasetDecl ExternalDatasetSpecification(Token startStmtToken) throws ParseException: |
| 1179 | { |
| 1180 | Pair<DataverseName,Identifier> nameComponents = null; |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 1181 | TypeExpression typeExpr = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1182 | boolean ifNotExists = false; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1183 | String adapterName = null; |
| 1184 | Map<String,String> properties = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1185 | Map<String,String> hints = new HashMap<String,String>(); |
| 1186 | DatasetDecl stmt = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1187 | RecordConstructor withRecord = null; |
| 1188 | } |
| 1189 | { |
| 1190 | nameComponents = QualifiedName() |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 1191 | typeExpr = DatasetTypeSpecification() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1192 | ifNotExists = IfNotExists() |
| 1193 | <USING> adapterName = AdapterName() properties = Configuration() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1194 | ( <HINTS> hints = Properties() )? |
| 1195 | ( <WITH> withRecord = RecordConstructor() )? |
| 1196 | { |
| 1197 | ExternalDetailsDecl edd = new ExternalDetailsDecl(); |
| 1198 | edd.setAdapter(adapterName); |
| 1199 | edd.setProperties(properties); |
| 1200 | try { |
Murtadha Hubail | 353e95f | 2020-08-24 22:18:04 +0300 | [diff] [blame] | 1201 | stmt = new DatasetDecl(nameComponents.first, nameComponents.second, typeExpr, null, hints, DatasetType.EXTERNAL, |
| 1202 | edd, withRecord, ifNotExists); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1203 | return addSourceLocation(stmt, startStmtToken); |
| 1204 | } catch (CompilationException e) { |
| 1205 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 1206 | } |
| 1207 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1208 | } |
| 1209 | |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1210 | TypeExpression DatasetTypeSpecification() throws ParseException: |
| 1211 | { |
| 1212 | TypeExpression typeExpr = null; |
| 1213 | } |
| 1214 | { |
| 1215 | ( |
| 1216 | LOOKAHEAD(3) typeExpr = DatasetRecordTypeSpecification(true) |
| 1217 | | typeExpr = DatasetReferenceTypeSpecification() |
| 1218 | ) |
| 1219 | { |
| 1220 | return typeExpr; |
| 1221 | } |
| 1222 | } |
| 1223 | |
| 1224 | TypeExpression DatasetReferenceTypeSpecification() throws ParseException: |
| 1225 | { |
| 1226 | TypeExpression typeExpr = null; |
| 1227 | } |
| 1228 | { |
| 1229 | <LEFTPAREN> typeExpr = TypeReference() <RIGHTPAREN> |
| 1230 | { |
| 1231 | return typeExpr; |
| 1232 | } |
| 1233 | } |
| 1234 | |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1235 | RecordTypeDefinition DatasetRecordTypeSpecification(boolean allowRecordKindModifier) throws ParseException: |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1236 | { |
| 1237 | RecordTypeDefinition recordTypeDef = null; |
| 1238 | RecordTypeDefinition.RecordKind recordKind = null; |
Dmitry Lychagin | 6c239e7 | 2020-06-19 19:46:27 -0700 | [diff] [blame] | 1239 | Token startToken = null, recordKindToken = null; |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1240 | } |
| 1241 | { |
Dmitry Lychagin | 6c239e7 | 2020-06-19 19:46:27 -0700 | [diff] [blame] | 1242 | <LEFTPAREN> { startToken = token; } recordTypeDef = DatasetRecordTypeDef() <RIGHTPAREN> |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1243 | ( recordKind = RecordTypeKind() { recordKindToken = token; } <TYPE> )? |
| 1244 | { |
| 1245 | if (recordKind == null) { |
| 1246 | recordKind = RecordTypeDefinition.RecordKind.CLOSED; |
| 1247 | } else if (!allowRecordKindModifier) { |
| 1248 | throw createUnexpectedTokenError(recordKindToken); |
| 1249 | } |
| 1250 | recordTypeDef.setRecordKind(recordKind); |
Dmitry Lychagin | 6c239e7 | 2020-06-19 19:46:27 -0700 | [diff] [blame] | 1251 | return addSourceLocation(recordTypeDef, startToken); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1252 | } |
| 1253 | } |
| 1254 | |
| 1255 | RecordTypeDefinition DatasetRecordTypeDef() throws ParseException: |
| 1256 | { |
| 1257 | RecordTypeDefinition recType = new RecordTypeDefinition(); |
| 1258 | } |
| 1259 | { |
| 1260 | DatasetRecordField(recType) ( <COMMA> DatasetRecordField(recType) )* |
| 1261 | { |
| 1262 | return recType; |
| 1263 | } |
| 1264 | } |
| 1265 | |
| 1266 | void DatasetRecordField(RecordTypeDefinition recType) throws ParseException: |
| 1267 | { |
| 1268 | String fieldName; |
| 1269 | TypeExpression type = null; |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 1270 | boolean nullable = true, missable = true; |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1271 | } |
| 1272 | { |
| 1273 | fieldName = Identifier() |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 1274 | type = TypeReference() ( <NOT> <UNKNOWN> { nullable = false; missable = false; } )? |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1275 | { |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 1276 | recType.addField(fieldName, type, nullable, missable); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1277 | } |
| 1278 | } |
| 1279 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1280 | CreateIndexStatement CreateIndexStatement(Token startStmtToken) throws ParseException: |
| 1281 | { |
| 1282 | CreateIndexStatement stmt = null; |
| 1283 | } |
| 1284 | { |
| 1285 | ( |
| 1286 | <INDEX> stmt = IndexSpecification(startStmtToken) |
| 1287 | | <PRIMARY> <INDEX> stmt = PrimaryIndexSpecification(startStmtToken) |
| 1288 | ) |
| 1289 | { |
| 1290 | return stmt; |
| 1291 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1292 | } |
| 1293 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1294 | CreateIndexStatement IndexSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1295 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1296 | Pair<DataverseName,Identifier> nameComponents = null; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1297 | String indexName = null; |
| 1298 | IndexParams indexParams = null; |
| 1299 | CreateIndexStatement.IndexedElement indexedElement = null; |
| 1300 | List<CreateIndexStatement.IndexedElement> indexedElementList = new ArrayList<CreateIndexStatement.IndexedElement>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1301 | boolean enforced = false; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1302 | boolean ifNotExists = false; |
| 1303 | boolean hasUnnest = false; |
| 1304 | String fullTextConfigName = null; |
| 1305 | Token startElementToken = null; |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 1306 | Boolean excludeUnknown = null; |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1307 | Pair<Map<String, String>, Boolean> castConfigDefaultNull; |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 1308 | Boolean castDefaultNull = null; |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1309 | Map<String, String> castConfig = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1310 | } |
| 1311 | { |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1312 | ( |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1313 | indexName = Identifier() ifNotExists = IfNotExists() |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1314 | <ON> nameComponents = QualifiedName() |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1315 | <LEFTPAREN> { startElementToken = token; } |
| 1316 | indexedElement = IndexedElement(startElementToken) { |
| 1317 | indexedElementList.add(indexedElement); |
| 1318 | hasUnnest |= indexedElement.hasUnnest(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1319 | } |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1320 | (<COMMA> { startElementToken = token; } |
| 1321 | indexedElement = IndexedElement(startElementToken) { |
| 1322 | indexedElementList.add(indexedElement); |
| 1323 | hasUnnest |= indexedElement.hasUnnest(); |
| 1324 | } |
| 1325 | )* |
| 1326 | <RIGHTPAREN> |
| 1327 | ( <TYPE> indexParams = IndexType() )? ( <ENFORCED> { enforced = true; } )? |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 1328 | ( LOOKAHEAD({laIdentifier(EXCLUDE) || laIdentifier(INCLUDE)}) <IDENTIFIER> |
| 1329 | { |
| 1330 | if (isToken(EXCLUDE)) { |
| 1331 | excludeUnknown = true; |
| 1332 | } else if (isToken(INCLUDE)) { |
| 1333 | excludeUnknown = false; |
| 1334 | } else { |
| 1335 | throw createUnexpectedTokenError(); |
| 1336 | } |
| 1337 | } <UNKNOWN> <KEY> |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 1338 | )? |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 1339 | |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1340 | ( <CAST><LEFTPAREN> castConfigDefaultNull = CastDefaultNull() <RIGHTPAREN> |
| 1341 | { |
| 1342 | castConfig = castConfigDefaultNull.first; |
| 1343 | castDefaultNull = castConfigDefaultNull.second; |
| 1344 | } |
| 1345 | )? |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1346 | ) |
| 1347 | { |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1348 | IndexType indexType; |
| 1349 | int gramLength; |
| 1350 | if (indexParams != null) { |
| 1351 | indexType = indexParams.type; |
| 1352 | gramLength = indexParams.gramLength; |
| 1353 | fullTextConfigName = indexParams.fullTextConfig; |
| 1354 | } else { |
| 1355 | indexType = hasUnnest ? IndexType.ARRAY : IndexType.BTREE; |
| 1356 | gramLength = -1; |
| 1357 | fullTextConfigName = null; |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1358 | } |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1359 | CreateIndexStatement stmt = new CreateIndexStatement(nameComponents.first, nameComponents.second, |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 1360 | new Identifier(indexName), indexType, indexedElementList, enforced, gramLength, fullTextConfigName, ifNotExists, |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1361 | excludeUnknown, castDefaultNull, castConfig); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1362 | return addSourceLocation(stmt, startStmtToken); |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1363 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1364 | } |
| 1365 | |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1366 | CreateIndexStatement.IndexedElement IndexedElement(Token startElementToken) throws ParseException: |
| 1367 | { |
| 1368 | Triple<Integer, List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> element = null; |
| 1369 | Pair<List<String>, IndexedTypeExpression> elementSimple = null; |
| 1370 | int elementSimpleSource = 0; |
| 1371 | } |
| 1372 | { |
| 1373 | ( |
| 1374 | element = IndexedElementUnnestSelect() |
| 1375 | | ( |
| 1376 | LOOKAHEAD({ laIdentifier(META) && laToken(2, LEFTPAREN) && laToken(3, RIGHTPAREN) }) |
| 1377 | <IDENTIFIER> { expectToken(META); } <LEFTPAREN> <RIGHTPAREN> |
| 1378 | <DOT> elementSimple = IndexedField() |
| 1379 | { elementSimpleSource = 1; } |
| 1380 | ) |
| 1381 | | elementSimple = IndexedField() |
| 1382 | | <LEFTPAREN> ( element = IndexedElementUnnestSelect() | elementSimple = IndexedField() ) <RIGHTPAREN> |
| 1383 | ) |
| 1384 | { |
| 1385 | int source; |
| 1386 | List<List<String>> unnestList; |
| 1387 | List<Pair<List<String>, IndexedTypeExpression>> projectList; |
| 1388 | if (elementSimple != null) { |
| 1389 | source = elementSimpleSource; |
| 1390 | unnestList = null; |
| 1391 | projectList = Collections.singletonList(elementSimple); |
| 1392 | } else { |
| 1393 | source = element.first; |
| 1394 | unnestList = element.second; |
| 1395 | projectList = element.third; |
| 1396 | } |
| 1397 | CreateIndexStatement.IndexedElement ie = new CreateIndexStatement.IndexedElement(source, unnestList, projectList); |
| 1398 | ie.setSourceLocation(getSourceLocation(startElementToken)); |
| 1399 | return ie; |
| 1400 | } |
| 1401 | } |
| 1402 | |
| 1403 | Triple<Integer, List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> IndexedElementUnnestSelect() |
| 1404 | throws ParseException: |
| 1405 | { |
| 1406 | int source = 0; |
| 1407 | Pair<List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> element = null; |
| 1408 | } |
| 1409 | { |
| 1410 | <UNNEST> |
| 1411 | ( |
| 1412 | ( |
| 1413 | LOOKAHEAD({ laIdentifier(META) && laToken(2, LEFTPAREN) && laToken(3, RIGHTPAREN) }) |
| 1414 | <IDENTIFIER> { expectToken(META); } <LEFTPAREN> <RIGHTPAREN> |
| 1415 | <DOT> element = IndexedElementUnnestSelectBody() { source = 1; } |
| 1416 | ) | element = IndexedElementUnnestSelectBody() |
| 1417 | ) |
| 1418 | { |
| 1419 | return new Triple<Integer, List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>>( |
| 1420 | source, element.first, element.second |
| 1421 | ); |
| 1422 | } |
| 1423 | } |
| 1424 | |
| 1425 | Pair<List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> IndexedElementUnnestSelectBody() |
| 1426 | throws ParseException: |
| 1427 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1428 | Triple<List<String>, Token, Token> path = null; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1429 | IndexedTypeExpression type = null; |
| 1430 | List<List<String>> unnestList = new ArrayList(); |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1431 | List<Pair<List<String>, IndexedTypeExpression>> projectList = new ArrayList(); |
| 1432 | } |
| 1433 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1434 | path = MultipartIdentifier() { unnestList.add(path.first); } |
| 1435 | ( <UNNEST> path = MultipartIdentifier() { unnestList.add(path.first); })* |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1436 | ( |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1437 | ( <COLON> type = IndexedTypeExpr(false) |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1438 | { |
| 1439 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(null, type)); |
| 1440 | } |
| 1441 | ) | |
| 1442 | ( |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1443 | <SELECT> path = MultipartIdentifier() ( <COLON> type = IndexedTypeExpr(false) )? |
| 1444 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1445 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(path.first, type)); |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1446 | } |
| 1447 | ( <COMMA> path = MultipartIdentifier() ( <COLON> type = IndexedTypeExpr(false) )? |
| 1448 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1449 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(path.first, type)); |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1450 | } |
| 1451 | )* |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1452 | ) |
| 1453 | )? |
| 1454 | { |
| 1455 | if (projectList.isEmpty()) { |
| 1456 | // To support the case (<UNNEST> IDENTIFIER)* IDENTIFIER w/o any type specification. |
| 1457 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(null, null)); |
| 1458 | } |
| 1459 | |
| 1460 | return new Pair<List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>>(unnestList, projectList); |
| 1461 | } |
| 1462 | } |
| 1463 | |
| 1464 | Pair<List<String>, IndexedTypeExpression> IndexedField() throws ParseException: |
| 1465 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1466 | Triple<List<String>, Token, Token> path = null; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1467 | IndexedTypeExpression type = null; |
| 1468 | } |
| 1469 | { |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1470 | path = MultipartIdentifier() ( <COLON> type = IndexedTypeExpr(true) )? |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1471 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1472 | return new Pair<List<String>, IndexedTypeExpression>(path.first, type); |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1473 | } |
| 1474 | } |
| 1475 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1476 | CreateIndexStatement PrimaryIndexSpecification(Token startStmtToken) throws ParseException: |
| 1477 | { |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1478 | Pair<DataverseName,Identifier> nameComponents = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1479 | String indexName = null; |
| 1480 | boolean ifNotExists = false; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1481 | } |
| 1482 | { |
| 1483 | (indexName = Identifier())? ifNotExists = IfNotExists() |
| 1484 | <ON> nameComponents = QualifiedName() (<TYPE> <BTREE>)? |
| 1485 | { |
| 1486 | if (indexName == null) { |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 1487 | indexName = MetadataConstants.PRIMARY_INDEX_PREFIX + nameComponents.second; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1488 | } |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1489 | CreateIndexStatement stmt = new CreateIndexStatement(nameComponents.first, nameComponents.second, |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1490 | new Identifier(indexName), IndexType.BTREE, Collections.emptyList(), false, -1, null, ifNotExists, null, null, |
| 1491 | Collections.emptyMap()); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1492 | return addSourceLocation(stmt, startStmtToken); |
| 1493 | } |
| 1494 | } |
| 1495 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1496 | String FilterField() throws ParseException : |
| 1497 | { |
| 1498 | String filterField = null; |
| 1499 | } |
| 1500 | { |
| 1501 | filterField = Identifier() |
| 1502 | { |
| 1503 | return filterField; |
| 1504 | } |
| 1505 | } |
| 1506 | |
| 1507 | IndexParams IndexType() throws ParseException: |
| 1508 | { |
| 1509 | IndexType type = null; |
| 1510 | int gramLength = 0; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1511 | String fullTextConfig = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1512 | } |
| 1513 | { |
| 1514 | (<BTREE> |
| 1515 | { |
| 1516 | type = IndexType.BTREE; |
| 1517 | } |
| 1518 | | <RTREE> |
| 1519 | { |
| 1520 | type = IndexType.RTREE; |
| 1521 | } |
| 1522 | | <KEYWORD> |
| 1523 | { |
| 1524 | type = IndexType.LENGTH_PARTITIONED_WORD_INVIX; |
| 1525 | } |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1526 | | <FULLTEXT> |
Taewoo Kim | c49405a | 2017-01-04 00:30:43 -0800 | [diff] [blame] | 1527 | { |
| 1528 | type = IndexType.SINGLE_PARTITION_WORD_INVIX; |
| 1529 | } |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1530 | // For now we don't allow inverted index creation using a full-text config in another data verse. |
| 1531 | // We may want to support corss-dataverse full-text config access later |
| 1532 | // If so, replace the Identifier() with QualifiedName() to get the dataverse name |
| 1533 | ( <USING> Identifier() |
| 1534 | { |
| 1535 | fullTextConfig = token.image; |
| 1536 | } |
| 1537 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1538 | | <NGRAM> <LEFTPAREN> <INTEGER_LITERAL> |
| 1539 | { |
| 1540 | type = IndexType.LENGTH_PARTITIONED_NGRAM_INVIX; |
| 1541 | gramLength = Integer.valueOf(token.image); |
| 1542 | } |
| 1543 | <RIGHTPAREN>) |
| 1544 | { |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1545 | return new IndexParams(type, gramLength, fullTextConfig); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1546 | } |
| 1547 | } |
| 1548 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1549 | CreateDataverseStatement CreateDataverseStatement(Token startStmtToken) throws ParseException : |
| 1550 | { |
| 1551 | CreateDataverseStatement stmt = null; |
| 1552 | } |
| 1553 | { |
| 1554 | <DATAVERSE> stmt = DataverseSpecification(startStmtToken) |
| 1555 | { |
| 1556 | return stmt; |
| 1557 | } |
| 1558 | } |
| 1559 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1560 | CreateDataverseStatement DataverseSpecification(Token startStmtToken) throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1561 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 1562 | DataverseName dvName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1563 | boolean ifNotExists = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1564 | } |
| 1565 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 1566 | dvName = DataverseName() ifNotExists = IfNotExists() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1567 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 1568 | CreateDataverseStatement stmt = new CreateDataverseStatement(dvName, null, ifNotExists); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1569 | return addSourceLocation(stmt, startStmtToken); |
| 1570 | } |
| 1571 | } |
| 1572 | |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1573 | CreateAdapterStatement CreateAdapterStatement(Token startStmtToken) throws ParseException: |
| 1574 | { |
| 1575 | CreateAdapterStatement stmt = null; |
| 1576 | } |
| 1577 | { |
| 1578 | <ADAPTER> stmt = AdapterSpecification(startStmtToken) |
| 1579 | { |
| 1580 | return stmt; |
| 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | CreateAdapterStatement AdapterSpecification(Token startStmtToken) throws ParseException: |
| 1585 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1586 | Pair<DataverseName,Identifier> adapterName = null; |
| 1587 | Pair<DataverseName,Identifier> libraryName = null; |
| 1588 | List<String> externalIdentifier = null; |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1589 | boolean ifNotExists = false; |
| 1590 | } |
| 1591 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1592 | adapterName = QualifiedName() |
| 1593 | ifNotExists = IfNotExists() |
| 1594 | <AS> externalIdentifier = FunctionExternalIdentifier() |
| 1595 | <AT> libraryName = QualifiedName() |
| 1596 | { |
| 1597 | CreateAdapterStatement stmt = new CreateAdapterStatement(adapterName.first, adapterName.second.getValue(), |
| 1598 | libraryName.first, libraryName.second.getValue(), externalIdentifier, ifNotExists); |
| 1599 | return addSourceLocation(stmt, startStmtToken); |
| 1600 | } |
| 1601 | } |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1602 | |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1603 | CreateViewStatement CreateViewStatement(Token startStmtToken, boolean orReplace) throws ParseException: |
| 1604 | { |
| 1605 | CreateViewStatement stmt = null; |
| 1606 | } |
| 1607 | { |
| 1608 | <VIEW> stmt = ViewSpecification(startStmtToken, orReplace) |
| 1609 | { |
| 1610 | return stmt; |
| 1611 | } |
| 1612 | } |
| 1613 | |
| 1614 | CreateViewStatement ViewSpecification(Token startStmtToken, boolean orReplace) throws ParseException: |
| 1615 | { |
| 1616 | Pair<DataverseName, Identifier> nameComponents = null; |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1617 | TypeExpression typeExpr = null; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1618 | boolean ifNotExists = false; |
| 1619 | Token beginPos = null, endPos = null; |
| 1620 | Expression viewBodyExpr = null; |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1621 | Pair<Map<String, String>, Boolean> viewConfigDefaultNull; |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1622 | Boolean defaultNull = null; |
Dmitry Lychagin | 1f6f24e | 2021-08-19 21:41:57 -0700 | [diff] [blame] | 1623 | Map<String, String> viewConfig = null; |
Dmitry Lychagin | 81578f9 | 2021-08-24 11:57:07 -0700 | [diff] [blame] | 1624 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 1625 | Pair<List<Integer>, List<List<String>>> foreignKeyFields = null; |
| 1626 | Pair<DataverseName, Identifier> refNameComponents = null; |
| 1627 | List<CreateViewStatement.ForeignKeyDecl> foreignKeyDecls = null; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1628 | DataverseName currentDataverse = defaultDataverse; |
| 1629 | } |
| 1630 | { |
| 1631 | nameComponents = QualifiedName() |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1632 | ( |
Dmitry Lychagin | 1f6f24e | 2021-08-19 21:41:57 -0700 | [diff] [blame] | 1633 | ( |
| 1634 | typeExpr = DatasetTypeSpecification() |
| 1635 | ifNotExists = IfNotExists() |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1636 | viewConfigDefaultNull = CastDefaultNull() |
| 1637 | { |
| 1638 | viewConfig = viewConfigDefaultNull.first; |
| 1639 | defaultNull = viewConfigDefaultNull.second; |
| 1640 | } |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 1641 | ( |
| 1642 | <PRIMARY> <KEY> <LEFTPAREN> primaryKeyFields = PrimaryKeyFields() <RIGHTPAREN> |
| 1643 | <NOT> <ENFORCED> |
| 1644 | )? |
| 1645 | ( |
| 1646 | <IDENTIFIER> { expectToken(FOREIGN); } <KEY> <LEFTPAREN> foreignKeyFields = PrimaryKeyFields() <RIGHTPAREN> |
| 1647 | <IDENTIFIER> { expectToken(REFERENCES); } refNameComponents = QualifiedName() |
| 1648 | <NOT> <ENFORCED> |
| 1649 | { |
| 1650 | if (foreignKeyDecls == null) { |
| 1651 | foreignKeyDecls = new ArrayList<CreateViewStatement.ForeignKeyDecl>(); |
| 1652 | } |
| 1653 | foreignKeyDecls.add(new CreateViewStatement.ForeignKeyDecl(foreignKeyFields.second, |
| 1654 | foreignKeyFields.first, refNameComponents.first, refNameComponents.second)); |
| 1655 | } |
| 1656 | )* |
Dmitry Lychagin | 1f6f24e | 2021-08-19 21:41:57 -0700 | [diff] [blame] | 1657 | ) |
| 1658 | | |
| 1659 | ( ifNotExists = IfNotExists() ) |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1660 | ) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1661 | { |
| 1662 | if (orReplace && ifNotExists) { |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1663 | throw new SqlppParseException(getSourceLocation(startStmtToken), "Unexpected IF NOT EXISTS"); |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1664 | } |
| 1665 | } |
| 1666 | <AS> |
| 1667 | { |
| 1668 | beginPos = token; |
| 1669 | createNewScope(); |
| 1670 | if (nameComponents.first != null) { |
| 1671 | defaultDataverse = nameComponents.first; |
| 1672 | } |
| 1673 | } |
| 1674 | viewBodyExpr = ViewBody() |
| 1675 | { |
| 1676 | endPos = token; |
| 1677 | String viewBody = extractFragment(beginPos.beginLine, beginPos.beginColumn + 1, endPos.endLine, |
| 1678 | endPos.endColumn + 1); |
| 1679 | removeCurrentScope(); |
| 1680 | defaultDataverse = currentDataverse; |
Dmitry Lychagin | 4fb583d | 2021-11-10 17:25:28 -0800 | [diff] [blame] | 1681 | if (typeExpr != null && primaryKeyFields != null) { |
| 1682 | DatasetDeclParametersUtil.adjustInlineTypeDecl(typeExpr, primaryKeyFields.second, primaryKeyFields.first, false); |
| 1683 | } |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 1684 | CreateViewStatement.KeyDecl primaryKeyDecl = primaryKeyFields != null ? |
| 1685 | new CreateViewStatement.KeyDecl(primaryKeyFields.second, primaryKeyFields.first) : null; |
| 1686 | CreateViewStatement stmt = new CreateViewStatement(nameComponents.first, nameComponents.second.getValue(), |
| 1687 | typeExpr, viewBody, viewBodyExpr, defaultNull, viewConfig, primaryKeyDecl, foreignKeyDecls, orReplace, |
| 1688 | ifNotExists); |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1689 | return addSourceLocation(stmt, startStmtToken); |
| 1690 | } |
| 1691 | } |
| 1692 | |
| 1693 | Expression ViewBody() throws ParseException: |
| 1694 | { |
| 1695 | Expression viewBodyExpr = null; |
| 1696 | } |
| 1697 | { |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1698 | ( |
| 1699 | ( viewBodyExpr = VariableRef() ( viewBodyExpr = FieldAccessor(viewBodyExpr) )* ) |
| 1700 | | viewBodyExpr = SelectExpression(true) |
| 1701 | ) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1702 | { |
| 1703 | return viewBodyExpr; |
| 1704 | } |
| 1705 | } |
| 1706 | |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1707 | Pair<Map<String, String>, Boolean> CastDefaultNull() throws ParseException: |
| 1708 | { |
| 1709 | Map<String, String> castConfig = null; |
| 1710 | Boolean defaultNull = null; |
| 1711 | String propertyName = null, propertyValue = null; |
| 1712 | } |
| 1713 | { |
| 1714 | <IDENTIFIER> { expectToken(DEFAULT); } <NULL> { defaultNull = true; } |
| 1715 | ( |
| 1716 | LOOKAHEAD(2) <IDENTIFIER> { propertyName = token.image.toLowerCase(); } propertyValue = StringLiteral() |
| 1717 | { |
| 1718 | if (castConfig == null) { |
| 1719 | castConfig = new HashMap<String, String>(); |
| 1720 | } |
| 1721 | castConfig.put(propertyName, propertyValue); |
| 1722 | } |
| 1723 | )* |
| 1724 | { |
| 1725 | return new Pair<Map<String, String>, Boolean>(castConfig, defaultNull); |
| 1726 | } |
| 1727 | } |
| 1728 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1729 | CreateFunctionStatement CreateFunctionStatement(Token startStmtToken, boolean orReplace) throws ParseException: |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1730 | { |
| 1731 | CreateFunctionStatement stmt = null; |
| 1732 | } |
| 1733 | { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1734 | <FUNCTION> stmt = FunctionSpecification(startStmtToken, orReplace) |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1735 | { |
| 1736 | return stmt; |
| 1737 | } |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1738 | } |
| 1739 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1740 | CreateFunctionStatement FunctionSpecification(Token startStmtToken, boolean orReplace) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1741 | { |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1742 | FunctionSignature signature = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1743 | FunctionName fctName = null; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1744 | Pair<Integer, List<Pair<VarIdentifier,TypeExpression>>> paramsWithArity = null; |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1745 | List<Pair<VarIdentifier,TypeExpression>> params = null; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1746 | int arity = 0; |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1747 | TypeExpression returnType = null; |
| 1748 | Token beginPos = null, endPos = null; |
| 1749 | Expression functionBodyExpr = null; |
| 1750 | Pair<DataverseName,Identifier> libraryName = null; |
| 1751 | List<String> externalIdentifier = null; |
| 1752 | RecordConstructor withOptions = null; |
| 1753 | boolean ifNotExists = false; |
| 1754 | CreateFunctionStatement stmt = null; |
| 1755 | DataverseName currentDataverse = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1756 | } |
| 1757 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1758 | fctName = FunctionName() |
Steven Glenn Jacobs | 665e9fe | 2017-12-27 10:30:39 -0800 | [diff] [blame] | 1759 | { |
| 1760 | defaultDataverse = fctName.dataverse; |
| 1761 | } |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1762 | paramsWithArity = FunctionParameters() |
| 1763 | { |
| 1764 | arity = paramsWithArity.first; |
| 1765 | params = paramsWithArity.second; |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1766 | signature = new FunctionSignature(fctName.dataverse, fctName.function, arity); |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1767 | } |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1768 | ifNotExists = IfNotExists() |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1769 | { |
| 1770 | if (orReplace && ifNotExists) { |
| 1771 | throw new SqlppParseException(getSourceLocation(token), "Unexpected IF NOT EXISTS"); |
| 1772 | } |
| 1773 | } |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1774 | returnType = FunctionReturnType() |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1775 | ( |
| 1776 | ( |
| 1777 | <LEFTBRACE> |
| 1778 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1779 | beginPos = token; |
| 1780 | createNewScope(); |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1781 | } |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 1782 | functionBodyExpr = FunctionBody() |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1783 | <RIGHTBRACE> |
| 1784 | { |
| 1785 | endPos = token; |
| 1786 | String functionBody = extractFragment(beginPos.beginLine, beginPos.beginColumn, endPos.beginLine, |
| 1787 | endPos.beginColumn); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1788 | getCurrentScope().addFunctionDescriptor(signature, false); |
| 1789 | removeCurrentScope(); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1790 | ensureNoTypeDeclsInFunction(fctName.function, params, returnType, startStmtToken); |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1791 | stmt = new CreateFunctionStatement(signature, params, functionBody, functionBodyExpr, orReplace, ifNotExists); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1792 | } |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1793 | ) |
| 1794 | | |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1795 | ( |
| 1796 | <AS> externalIdentifier = FunctionExternalIdentifier() |
| 1797 | <AT> libraryName = QualifiedName() |
| 1798 | (<WITH> withOptions = RecordConstructor())? |
| 1799 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1800 | try { |
| 1801 | stmt = new CreateFunctionStatement(signature, params, returnType, libraryName.first, |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1802 | libraryName.second.getValue(), externalIdentifier, withOptions, orReplace, ifNotExists); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1803 | } catch (AlgebricksException e) { |
| 1804 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 1805 | } |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1806 | } |
| 1807 | ) |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1808 | ) |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1809 | { |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1810 | defaultDataverse = currentDataverse; |
| 1811 | return addSourceLocation(stmt, startStmtToken); |
| 1812 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1813 | } |
| 1814 | |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1815 | Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>> FunctionParameters() : |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1816 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1817 | Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>> params = null; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1818 | } |
| 1819 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1820 | <LEFTPAREN> (params = FunctionParameterList())? <RIGHTPAREN> |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1821 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1822 | if (params == null) { |
| 1823 | params = new Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>>( |
| 1824 | 0, Collections.<Pair<VarIdentifier, TypeExpression>>emptyList() |
| 1825 | ); |
| 1826 | } |
| 1827 | return params; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1828 | } |
| 1829 | } |
| 1830 | |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1831 | Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>> FunctionParameterList() : |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1832 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1833 | List<Pair<VarIdentifier, TypeExpression>> paramList = null; |
| 1834 | Pair<VarIdentifier, TypeExpression> param = null; |
| 1835 | int arity = 0; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1836 | } |
| 1837 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1838 | ( |
| 1839 | ( |
| 1840 | <DOT> <DOT> <DOT> |
| 1841 | { |
| 1842 | param = new Pair<VarIdentifier, TypeExpression>( |
| 1843 | SqlppVariableUtil.toInternalVariableIdentifier(UDF_VARARGS_PARAM_NAME), null |
| 1844 | ); |
| 1845 | paramList = Collections.<Pair<VarIdentifier, TypeExpression>>singletonList(param); |
| 1846 | arity = FunctionIdentifier.VARARGS; |
| 1847 | } |
| 1848 | ) |
| 1849 | | |
| 1850 | ( |
| 1851 | param = FunctionParameter() |
| 1852 | { |
| 1853 | paramList = new ArrayList<Pair<VarIdentifier, TypeExpression>>(); |
| 1854 | paramList.add(param); |
| 1855 | } |
| 1856 | ( <COMMA> param = FunctionParameter() { paramList.add(param); } )* |
| 1857 | { |
| 1858 | arity = paramList.size(); |
| 1859 | } |
| 1860 | ) |
| 1861 | ) |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1862 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1863 | return new Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>>(arity, paramList); |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1864 | } |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1865 | } |
| 1866 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1867 | Pair<VarIdentifier,TypeExpression> FunctionParameter() throws ParseException: |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1868 | { |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1869 | String name = null; |
| 1870 | TypeExpression type = null; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1871 | } |
| 1872 | { |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1873 | name = VariableIdentifier() |
| 1874 | ( LOOKAHEAD(3) (<COLON>)? type = TypeExpr(false) )? |
| 1875 | { |
| 1876 | return new Pair<VarIdentifier,TypeExpression>(new VarIdentifier(name), type); |
| 1877 | } |
| 1878 | } |
| 1879 | |
| 1880 | TypeExpression FunctionReturnType() throws ParseException: |
| 1881 | { |
| 1882 | TypeExpression returnType = null; |
| 1883 | } |
| 1884 | { |
| 1885 | ( LOOKAHEAD({laIdentifier(RETURNS)}) <IDENTIFIER> returnType = TypeExpr(false) )? |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1886 | { |
| 1887 | return returnType; |
| 1888 | } |
| 1889 | } |
| 1890 | |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 1891 | Expression FunctionBody() throws ParseException: |
| 1892 | { |
| 1893 | Expression functionBodyExpr = null; |
| 1894 | } |
| 1895 | { |
| 1896 | ( functionBodyExpr = SelectExpression(true) | functionBodyExpr = Expression() ) |
| 1897 | { |
| 1898 | return functionBodyExpr; |
| 1899 | } |
| 1900 | } |
| 1901 | |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1902 | List<String> FunctionExternalIdentifier() throws ParseException: |
| 1903 | { |
| 1904 | String ident = null; |
| 1905 | List<String> identList = new ArrayList(2); |
| 1906 | } |
| 1907 | { |
| 1908 | ident = StringLiteral() { identList.add(ident.trim()); } |
| 1909 | ( <COMMA> ident = StringLiteral() { identList.add(ident.trim()); } )* |
| 1910 | { |
| 1911 | return identList; |
| 1912 | } |
| 1913 | } |
| 1914 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1915 | CreateFeedStatement CreateFeedStatement(Token startStmtToken) throws ParseException: |
| 1916 | { |
| 1917 | CreateFeedStatement stmt = null; |
| 1918 | } |
| 1919 | { |
| 1920 | <FEED> stmt = FeedSpecification(startStmtToken) |
| 1921 | { |
| 1922 | return stmt; |
| 1923 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1924 | } |
| 1925 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1926 | CreateFeedStatement FeedSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1927 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1928 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1929 | boolean ifNotExists = false; |
| 1930 | String adapterName = null; |
| 1931 | Map<String,String> properties = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1932 | CreateFeedStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1933 | Pair<Identifier,Identifier> sourceNameComponents = null; |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1934 | RecordConstructor withRecord = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1935 | } |
| 1936 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1937 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1938 | <WITH> withRecord = RecordConstructor() |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1939 | { |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1940 | try { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1941 | stmt = new CreateFeedStatement(nameComponents, withRecord, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1942 | return addSourceLocation(stmt, startStmtToken); |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1943 | } catch (AlgebricksException e) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1944 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1945 | } |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1946 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1947 | } |
| 1948 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1949 | CreateFeedPolicyStatement CreateFeedPolicyStatement(Token startStmtToken) throws ParseException: |
| 1950 | { |
| 1951 | CreateFeedPolicyStatement stmt = null; |
| 1952 | } |
| 1953 | { |
| 1954 | <INGESTION> <POLICY> stmt = FeedPolicySpecification(startStmtToken) |
| 1955 | { |
| 1956 | return stmt; |
| 1957 | } |
| 1958 | } |
| 1959 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1960 | CreateFeedPolicyStatement FeedPolicySpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1961 | { |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 1962 | String policyName = null; |
| 1963 | String basePolicyName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1964 | String sourcePolicyFile = null; |
| 1965 | String definition = null; |
| 1966 | boolean ifNotExists = false; |
| 1967 | Map<String,String> properties = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1968 | CreateFeedPolicyStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1969 | } |
| 1970 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1971 | policyName = Identifier() ifNotExists = IfNotExists() |
| 1972 | <FROM> |
| 1973 | (<POLICY> basePolicyName = Identifier() properties = Configuration() (<DEFINITION> definition = ConstantString())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1974 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1975 | stmt = new CreateFeedPolicyStatement(policyName, basePolicyName, properties, definition, ifNotExists); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1976 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1977 | | <PATH> sourcePolicyFile = ConstantString() (<DEFINITION> definition = ConstantString())? |
| 1978 | { |
| 1979 | stmt = new CreateFeedPolicyStatement(policyName, sourcePolicyFile, definition, ifNotExists); |
| 1980 | } |
| 1981 | ) |
| 1982 | { |
| 1983 | return addSourceLocation(stmt, startStmtToken); |
| 1984 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1985 | } |
| 1986 | |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1987 | Statement CreateFullTextStatement(Token startStmtToken) throws ParseException: |
| 1988 | { |
| 1989 | Statement stmt = null; |
| 1990 | } |
| 1991 | { |
| 1992 | ( |
| 1993 | <FULLTEXT> |
| 1994 | ( |
| 1995 | <FILTER> stmt = CreateFullTextFilterSpec(startStmtToken) |
| 1996 | | (<IDENTIFIER> { expectToken(CONFIG); } stmt = CreateFullTextConfigSpec(startStmtToken)) |
| 1997 | ) |
| 1998 | ) |
| 1999 | { |
| 2000 | return stmt; |
| 2001 | } |
| 2002 | } |
| 2003 | |
| 2004 | CreateFullTextFilterStatement CreateFullTextFilterSpec(Token startStmtToken) throws ParseException: |
| 2005 | { |
| 2006 | CreateFullTextFilterStatement stmt = null; |
| 2007 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2008 | boolean ifNotExists = false; |
| 2009 | RecordConstructor expr = null; |
| 2010 | } |
| 2011 | { |
| 2012 | ( |
| 2013 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
| 2014 | <AS> |
| 2015 | expr = RecordConstructor() |
| 2016 | ) |
| 2017 | { |
| 2018 | try { |
| 2019 | stmt = new CreateFullTextFilterStatement(nameComponents.first, nameComponents.second.getValue(), ifNotExists, expr); |
| 2020 | return addSourceLocation(stmt, startStmtToken); |
| 2021 | } catch (CompilationException e) { |
| 2022 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 2023 | } |
| 2024 | } |
| 2025 | } |
| 2026 | |
| 2027 | CreateFullTextConfigStatement CreateFullTextConfigSpec(Token startStmtToken) throws ParseException: |
| 2028 | { |
| 2029 | CreateFullTextConfigStatement stmt = null; |
| 2030 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2031 | boolean ifNotExists = false; |
| 2032 | RecordConstructor expr = null; |
| 2033 | } |
| 2034 | { |
| 2035 | ( |
| 2036 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
| 2037 | <AS> |
| 2038 | expr = RecordConstructor() |
| 2039 | ) |
| 2040 | { |
| 2041 | try { |
| 2042 | stmt = new CreateFullTextConfigStatement(nameComponents.first, nameComponents.second.getValue(), ifNotExists, expr); |
| 2043 | return addSourceLocation(stmt, startStmtToken); |
| 2044 | } catch (CompilationException e) { |
| 2045 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 2046 | } |
| 2047 | } |
| 2048 | } |
| 2049 | |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2050 | CreateSynonymStatement CreateSynonymStatement(Token startStmtToken) throws ParseException: |
| 2051 | { |
| 2052 | CreateSynonymStatement stmt = null; |
| 2053 | } |
| 2054 | { |
| 2055 | <SYNONYM> stmt = SynonymSpecification(startStmtToken) |
| 2056 | { |
| 2057 | return stmt; |
| 2058 | } |
| 2059 | } |
| 2060 | |
| 2061 | CreateSynonymStatement SynonymSpecification(Token startStmtToken) throws ParseException: |
| 2062 | { |
| 2063 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2064 | Pair<DataverseName,Identifier> objectNameComponents = null; |
| 2065 | boolean ifNotExists = false; |
| 2066 | } |
| 2067 | { |
| 2068 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
| 2069 | <FOR> objectNameComponents = QualifiedName() |
| 2070 | { |
| 2071 | CreateSynonymStatement stmt = new CreateSynonymStatement(nameComponents.first, nameComponents.second.getValue(), |
| 2072 | objectNameComponents.first, objectNameComponents.second.getValue(), ifNotExists); |
| 2073 | return addSourceLocation(stmt, startStmtToken); |
| 2074 | } |
| 2075 | } |
| 2076 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2077 | boolean IfNotExists() throws ParseException: |
| 2078 | { |
| 2079 | } |
| 2080 | { |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2081 | ( LOOKAHEAD(1) <IF> <NOT> <EXISTS> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2082 | { |
| 2083 | return true; |
| 2084 | } |
| 2085 | )? |
| 2086 | { |
| 2087 | return false; |
| 2088 | } |
| 2089 | } |
| 2090 | |
Xikui Wang | 9d63f62 | 2017-05-18 17:50:44 -0700 | [diff] [blame] | 2091 | void ApplyFunction(List<FunctionSignature> funcSigs) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2092 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2093 | FunctionName functionName = null; |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2094 | String fqFunctionName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2095 | } |
| 2096 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2097 | <APPLY> <FUNCTION> functionName = FunctionName() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2098 | { |
| 2099 | fqFunctionName = functionName.library == null ? functionName.function : functionName.library + "#" + functionName.function; |
| 2100 | funcSigs.add(new FunctionSignature(functionName.dataverse, fqFunctionName, 1)); |
| 2101 | } |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2102 | ( |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2103 | <COMMA> functionName = FunctionName() |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2104 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2105 | fqFunctionName = functionName.library == null ? functionName.function : functionName.library + "#" + functionName.function; |
| 2106 | funcSigs.add(new FunctionSignature(functionName.dataverse, fqFunctionName, 1)); |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2107 | } |
| 2108 | )* |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2109 | } |
| 2110 | |
| 2111 | String GetPolicy() throws ParseException: |
| 2112 | { |
| 2113 | String policy = null; |
| 2114 | } |
| 2115 | { |
| 2116 | <USING> <POLICY> policy = Identifier() |
| 2117 | { |
| 2118 | return policy; |
| 2119 | } |
| 2120 | |
| 2121 | } |
| 2122 | |
| 2123 | FunctionSignature FunctionSignature() throws ParseException: |
| 2124 | { |
| 2125 | FunctionName fctName = null; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 2126 | Pair<Integer, List<Pair<VarIdentifier,TypeExpression>>> params = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2127 | int arity = 0; |
| 2128 | } |
| 2129 | { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2130 | fctName = FunctionName() |
| 2131 | ( |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 2132 | LOOKAHEAD(2) params = FunctionParameters() { arity = params.first; } |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2133 | | ( <LEFTPAREN> arity = FunctionArity() <RIGHTPAREN> ) |
| 2134 | | ( <ATT> arity = FunctionArity() ) // back-compat |
| 2135 | ) |
| 2136 | { |
| 2137 | return new FunctionSignature(fctName.dataverse, fctName.function, arity); |
| 2138 | } |
| 2139 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2140 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2141 | int FunctionArity() throws ParseException: |
| 2142 | { |
| 2143 | int arity; |
| 2144 | } |
| 2145 | { |
| 2146 | <INTEGER_LITERAL> |
| 2147 | { |
| 2148 | try { |
| 2149 | arity = Integer.parseInt(token.image); |
| 2150 | } catch (NumberFormatException e) { |
| 2151 | throw new SqlppParseException(getSourceLocation(token), "Invalid arity: " + token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2152 | } |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2153 | if (arity < 0 && arity != FunctionIdentifier.VARARGS) { |
| 2154 | throw new SqlppParseException(getSourceLocation(token), "Invalid arity: " + arity); |
| 2155 | } |
| 2156 | return arity; |
| 2157 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2158 | } |
| 2159 | |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame^] | 2160 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> PrimaryKeyWithType() throws ParseException: |
| 2161 | { |
| 2162 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> primaryKeyFieldsWithTypes = null; |
| 2163 | } |
| 2164 | { |
| 2165 | <PRIMARY> <KEY> <LEFTPAREN> primaryKeyFieldsWithTypes = PrimaryKeyFieldsWithType() <RIGHTPAREN> |
| 2166 | { |
| 2167 | return primaryKeyFieldsWithTypes; |
| 2168 | } |
| 2169 | } |
| 2170 | |
| 2171 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> PrimaryKeyFieldsWithType() throws ParseException: |
| 2172 | { |
| 2173 | Pair<Integer, List<String>> tmp = null; |
| 2174 | List<Integer> keyFieldSourceIndicators = new ArrayList<Integer>(); |
| 2175 | List<List<String>> primaryKeyFields = new ArrayList<List<String>>(); |
| 2176 | List<TypeExpression> primaryKeyFieldTypes = new ArrayList<TypeExpression>(); |
| 2177 | TypeExpression type = null; |
| 2178 | } |
| 2179 | { |
| 2180 | tmp = NestedField() <COLON> type = TypeReference() |
| 2181 | { |
| 2182 | keyFieldSourceIndicators.add(tmp.first); |
| 2183 | primaryKeyFields.add(tmp.second); |
| 2184 | primaryKeyFieldTypes.add(type); |
| 2185 | } |
| 2186 | ( <COMMA> tmp = NestedField() <COLON> type = TypeReference() |
| 2187 | { |
| 2188 | keyFieldSourceIndicators.add(tmp.first); |
| 2189 | primaryKeyFields.add(tmp.second); |
| 2190 | primaryKeyFieldTypes.add(type); |
| 2191 | } |
| 2192 | )* |
| 2193 | { |
| 2194 | return new Triple<List<Integer>, List<List<String>>, List<TypeExpression>> (keyFieldSourceIndicators, |
| 2195 | primaryKeyFields, primaryKeyFieldTypes); |
| 2196 | } |
| 2197 | } |
| 2198 | |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2199 | Pair<List<Integer>, List<List<String>>> PrimaryKey() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2200 | { |
Dmitry Lychagin | 81578f9 | 2021-08-24 11:57:07 -0700 | [diff] [blame] | 2201 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
| 2202 | } |
| 2203 | { |
| 2204 | <PRIMARY> <KEY> primaryKeyFields = PrimaryKeyFields() |
| 2205 | { |
| 2206 | return primaryKeyFields; |
| 2207 | } |
| 2208 | } |
| 2209 | |
| 2210 | Pair<List<Integer>, List<List<String>>> PrimaryKeyFields() throws ParseException: |
| 2211 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2212 | Pair<Integer, List<String>> tmp = null; |
| 2213 | List<Integer> keyFieldSourceIndicators = new ArrayList<Integer>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2214 | List<List<String>> primaryKeyFields = new ArrayList<List<String>>(); |
| 2215 | } |
| 2216 | { |
Dmitry Lychagin | 81578f9 | 2021-08-24 11:57:07 -0700 | [diff] [blame] | 2217 | tmp = NestedField() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2218 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2219 | keyFieldSourceIndicators.add(tmp.first); |
| 2220 | primaryKeyFields.add(tmp.second); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2221 | } |
| 2222 | ( <COMMA> tmp = NestedField() |
| 2223 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2224 | keyFieldSourceIndicators.add(tmp.first); |
| 2225 | primaryKeyFields.add(tmp.second); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2226 | } |
| 2227 | )* |
| 2228 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2229 | return new Pair<List<Integer>, List<List<String>>> (keyFieldSourceIndicators, primaryKeyFields); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2230 | } |
| 2231 | } |
| 2232 | |
| 2233 | Statement DropStatement() throws ParseException: |
| 2234 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2235 | Token startToken = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2236 | Statement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2237 | } |
| 2238 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2239 | <DROP> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2240 | ( |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2241 | stmt = DropDatasetStatement(startToken) |
| 2242 | | stmt = DropIndexStatement(startToken) |
| 2243 | | stmt = DropNodeGroupStatement(startToken) |
| 2244 | | stmt = DropTypeStatement(startToken) |
| 2245 | | stmt = DropDataverseStatement(startToken) |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 2246 | | stmt = DropAdapterStatement(startToken) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2247 | | stmt = DropFunctionStatement(startToken) |
| 2248 | | stmt = DropFeedStatement(startToken) |
| 2249 | | stmt = DropFeedPolicyStatement(startToken) |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2250 | | stmt = DropSynonymStatement(startToken) |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 2251 | | stmt = DropFullTextStatement(startToken) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 2252 | | stmt = DropViewStatement(startToken) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2253 | ) |
| 2254 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2255 | return stmt; |
| 2256 | } |
| 2257 | } |
| 2258 | |
| 2259 | DropDatasetStatement DropDatasetStatement(Token startStmtToken) throws ParseException: |
| 2260 | { |
| 2261 | DropDatasetStatement stmt = null; |
| 2262 | } |
| 2263 | { |
| 2264 | Dataset() stmt = DropDatasetSpecification(startStmtToken) |
| 2265 | { |
| 2266 | return stmt; |
| 2267 | } |
| 2268 | } |
| 2269 | |
| 2270 | DropDatasetStatement DropDatasetSpecification(Token startStmtToken) throws ParseException: |
| 2271 | { |
| 2272 | Pair<DataverseName,Identifier> pairId = null; |
| 2273 | boolean ifExists = false; |
| 2274 | } |
| 2275 | { |
| 2276 | pairId = QualifiedName() ifExists = IfExists() |
| 2277 | { |
| 2278 | DropDatasetStatement stmt = new DropDatasetStatement(pairId.first, pairId.second, ifExists); |
| 2279 | return addSourceLocation(stmt, startStmtToken); |
| 2280 | } |
| 2281 | } |
| 2282 | |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 2283 | ViewDropStatement DropViewStatement(Token startStmtToken) throws ParseException: |
| 2284 | { |
| 2285 | ViewDropStatement stmt = null; |
| 2286 | } |
| 2287 | { |
| 2288 | <VIEW> stmt = DropViewSpecification(startStmtToken) |
| 2289 | { |
| 2290 | return stmt; |
| 2291 | } |
| 2292 | } |
| 2293 | |
| 2294 | ViewDropStatement DropViewSpecification(Token startStmtToken) throws ParseException: |
| 2295 | { |
| 2296 | Pair<DataverseName,Identifier> pairId = null; |
| 2297 | boolean ifExists = false; |
| 2298 | } |
| 2299 | { |
| 2300 | pairId = QualifiedName() ifExists = IfExists() |
| 2301 | { |
| 2302 | ViewDropStatement stmt = new ViewDropStatement(pairId.first, pairId.second, ifExists); |
| 2303 | return addSourceLocation(stmt, startStmtToken); |
| 2304 | } |
| 2305 | } |
| 2306 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2307 | IndexDropStatement DropIndexStatement(Token startStmtToken) throws ParseException: |
| 2308 | { |
| 2309 | IndexDropStatement stmt = null; |
| 2310 | } |
| 2311 | { |
| 2312 | <INDEX> stmt = DropIndexSpecification(startStmtToken) |
| 2313 | { |
| 2314 | return stmt; |
| 2315 | } |
| 2316 | } |
| 2317 | |
| 2318 | IndexDropStatement DropIndexSpecification(Token startStmtToken) throws ParseException: |
| 2319 | { |
| 2320 | Triple<DataverseName,Identifier,Identifier> tripleId = null; |
| 2321 | boolean ifExists = false; |
| 2322 | } |
| 2323 | { |
| 2324 | tripleId = DoubleQualifiedName() ifExists = IfExists() |
| 2325 | { |
| 2326 | IndexDropStatement stmt = new IndexDropStatement(tripleId.first, tripleId.second, tripleId.third, ifExists); |
| 2327 | return addSourceLocation(stmt, startStmtToken); |
| 2328 | } |
| 2329 | } |
| 2330 | |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 2331 | Statement DropFullTextStatement(Token startStmtToken) throws ParseException: |
| 2332 | { |
| 2333 | Statement stmt = null; |
| 2334 | } |
| 2335 | { |
| 2336 | <FULLTEXT> |
| 2337 | ( |
| 2338 | <FILTER> stmt = DropFullTextFilterSpec(startStmtToken) |
| 2339 | | (<IDENTIFIER> { expectToken(CONFIG); } stmt = DropFullTextConfigSpec(startStmtToken)) |
| 2340 | ) |
| 2341 | { |
| 2342 | return stmt; |
| 2343 | } |
| 2344 | } |
| 2345 | |
| 2346 | FullTextFilterDropStatement DropFullTextFilterSpec(Token startStmtToken) throws ParseException: |
| 2347 | { |
| 2348 | FullTextFilterDropStatement stmt = null; |
| 2349 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2350 | boolean ifExists = false; |
| 2351 | } |
| 2352 | { |
| 2353 | nameComponents = QualifiedName() ifExists = IfExists() |
| 2354 | { |
| 2355 | stmt = new FullTextFilterDropStatement(nameComponents.first, nameComponents.second.getValue(), ifExists); |
| 2356 | return addSourceLocation(stmt, startStmtToken); |
| 2357 | } |
| 2358 | } |
| 2359 | |
| 2360 | FullTextConfigDropStatement DropFullTextConfigSpec(Token startStmtToken) throws ParseException: |
| 2361 | { |
| 2362 | FullTextConfigDropStatement stmt = null; |
| 2363 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2364 | boolean ifExists = false; |
| 2365 | } |
| 2366 | { |
| 2367 | nameComponents = QualifiedName() ifExists = IfExists() |
| 2368 | { |
| 2369 | stmt = new FullTextConfigDropStatement(nameComponents.first, nameComponents.second.getValue(), ifExists); |
| 2370 | return addSourceLocation(stmt, startStmtToken); |
| 2371 | } |
| 2372 | } |
| 2373 | |
| 2374 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2375 | NodeGroupDropStatement DropNodeGroupStatement(Token startStmtToken) throws ParseException: |
| 2376 | { |
| 2377 | NodeGroupDropStatement stmt = null; |
| 2378 | } |
| 2379 | { |
| 2380 | <NODEGROUP> stmt = DropNodeGroupSpecification(startStmtToken) |
| 2381 | { |
| 2382 | return stmt; |
| 2383 | } |
| 2384 | } |
| 2385 | |
| 2386 | NodeGroupDropStatement DropNodeGroupSpecification(Token startStmtToken) throws ParseException: |
| 2387 | { |
| 2388 | String id = null; |
| 2389 | boolean ifExists = false; |
| 2390 | } |
| 2391 | { |
| 2392 | id = Identifier() ifExists = IfExists() |
| 2393 | { |
| 2394 | NodeGroupDropStatement stmt = new NodeGroupDropStatement(new Identifier(id), ifExists); |
| 2395 | return addSourceLocation(stmt, startStmtToken); |
| 2396 | } |
| 2397 | } |
| 2398 | |
| 2399 | TypeDropStatement DropTypeStatement(Token startStmtToken) throws ParseException: |
| 2400 | { |
| 2401 | TypeDropStatement stmt = null; |
| 2402 | } |
| 2403 | { |
| 2404 | <TYPE> stmt = DropTypeSpecification(startStmtToken) |
| 2405 | { |
| 2406 | return stmt; |
| 2407 | } |
| 2408 | } |
| 2409 | |
| 2410 | TypeDropStatement DropTypeSpecification(Token startStmtToken) throws ParseException: |
| 2411 | { |
| 2412 | Pair<DataverseName,Identifier> pairId = null; |
| 2413 | boolean ifExists = false; |
| 2414 | } |
| 2415 | { |
| 2416 | pairId = TypeName() ifExists = IfExists() |
| 2417 | { |
| 2418 | TypeDropStatement stmt = new TypeDropStatement(pairId.first, pairId.second, ifExists); |
| 2419 | return addSourceLocation(stmt, startStmtToken); |
| 2420 | } |
| 2421 | } |
| 2422 | |
| 2423 | DataverseDropStatement DropDataverseStatement(Token startStmtToken) throws ParseException: |
| 2424 | { |
| 2425 | DataverseDropStatement stmt = null; |
| 2426 | } |
| 2427 | { |
| 2428 | <DATAVERSE> stmt = DropDataverseSpecification(startStmtToken) |
| 2429 | { |
| 2430 | return stmt; |
| 2431 | } |
| 2432 | } |
| 2433 | |
| 2434 | DataverseDropStatement DropDataverseSpecification(Token startStmtToken) throws ParseException: |
| 2435 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 2436 | DataverseName dvName = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2437 | boolean ifExists = false; |
| 2438 | } |
| 2439 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 2440 | dvName = DataverseName() ifExists = IfExists() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2441 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 2442 | DataverseDropStatement stmt = new DataverseDropStatement(dvName, ifExists); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2443 | return addSourceLocation(stmt, startStmtToken); |
| 2444 | } |
| 2445 | } |
| 2446 | |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 2447 | AdapterDropStatement DropAdapterStatement(Token startStmtToken) throws ParseException: |
| 2448 | { |
| 2449 | AdapterDropStatement stmt = null; |
| 2450 | } |
| 2451 | { |
| 2452 | <ADAPTER> stmt = DropAdapterSpecification(startStmtToken) |
| 2453 | { |
| 2454 | return stmt; |
| 2455 | } |
| 2456 | } |
| 2457 | |
| 2458 | AdapterDropStatement DropAdapterSpecification(Token startStmtToken) throws ParseException: |
| 2459 | { |
| 2460 | Pair<DataverseName,Identifier> adapterName = null; |
| 2461 | boolean ifExists = false; |
| 2462 | } |
| 2463 | { |
| 2464 | adapterName = QualifiedName() ifExists = IfExists() |
| 2465 | { |
| 2466 | AdapterDropStatement stmt = new AdapterDropStatement(adapterName.first, adapterName.second.getValue(), ifExists); |
| 2467 | return addSourceLocation(stmt, startStmtToken); |
| 2468 | } |
| 2469 | } |
| 2470 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2471 | FunctionDropStatement DropFunctionStatement(Token startStmtToken) throws ParseException: |
| 2472 | { |
| 2473 | FunctionDropStatement stmt = null; |
| 2474 | } |
| 2475 | { |
| 2476 | <FUNCTION> stmt = DropFunctionSpecification(startStmtToken) |
| 2477 | { |
| 2478 | return stmt; |
| 2479 | } |
| 2480 | } |
| 2481 | |
| 2482 | FunctionDropStatement DropFunctionSpecification(Token startStmtToken) throws ParseException: |
| 2483 | { |
| 2484 | FunctionSignature funcSig = null; |
| 2485 | boolean ifExists = false; |
| 2486 | } |
| 2487 | { |
| 2488 | funcSig = FunctionSignature() ifExists = IfExists() |
| 2489 | { |
| 2490 | FunctionDropStatement stmt = new FunctionDropStatement(funcSig, ifExists); |
| 2491 | return addSourceLocation(stmt, startStmtToken); |
| 2492 | } |
| 2493 | } |
| 2494 | |
| 2495 | FeedDropStatement DropFeedStatement(Token startStmtToken) throws ParseException: |
| 2496 | { |
| 2497 | FeedDropStatement stmt = null; |
| 2498 | } |
| 2499 | { |
| 2500 | <FEED> stmt = DropFeedSpecification(startStmtToken) |
| 2501 | { |
| 2502 | return stmt; |
| 2503 | } |
| 2504 | } |
| 2505 | |
| 2506 | FeedDropStatement DropFeedSpecification(Token startStmtToken) throws ParseException: |
| 2507 | { |
| 2508 | Pair<DataverseName,Identifier> pairId = null; |
| 2509 | boolean ifExists = false; |
| 2510 | } |
| 2511 | { |
| 2512 | pairId = QualifiedName() ifExists = IfExists() |
| 2513 | { |
| 2514 | FeedDropStatement stmt = new FeedDropStatement(pairId.first, pairId.second, ifExists); |
| 2515 | return addSourceLocation(stmt, startStmtToken); |
| 2516 | } |
| 2517 | } |
| 2518 | |
| 2519 | FeedPolicyDropStatement DropFeedPolicyStatement(Token startStmtToken) throws ParseException: |
| 2520 | { |
| 2521 | FeedPolicyDropStatement stmt = null; |
| 2522 | } |
| 2523 | { |
| 2524 | <INGESTION> <POLICY> stmt = DropFeedPolicySpecification(startStmtToken) |
| 2525 | { |
| 2526 | return stmt; |
| 2527 | } |
| 2528 | } |
| 2529 | |
| 2530 | FeedPolicyDropStatement DropFeedPolicySpecification(Token startStmtToken) throws ParseException: |
| 2531 | { |
| 2532 | Pair<DataverseName,Identifier> pairId = null; |
| 2533 | boolean ifExists = false; |
| 2534 | } |
| 2535 | { |
| 2536 | pairId = QualifiedName() ifExists = IfExists() |
| 2537 | { |
| 2538 | FeedPolicyDropStatement stmt = new FeedPolicyDropStatement(pairId.first, pairId.second, ifExists); |
| 2539 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2540 | } |
| 2541 | } |
| 2542 | |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2543 | SynonymDropStatement DropSynonymStatement(Token startStmtToken) throws ParseException: |
| 2544 | { |
| 2545 | SynonymDropStatement stmt = null; |
| 2546 | } |
| 2547 | { |
| 2548 | <SYNONYM> stmt = DropSynonymSpecification(startStmtToken) |
| 2549 | { |
| 2550 | return stmt; |
| 2551 | } |
| 2552 | } |
| 2553 | |
| 2554 | SynonymDropStatement DropSynonymSpecification(Token startStmtToken) throws ParseException: |
| 2555 | { |
| 2556 | Pair<DataverseName,Identifier> pairId = null; |
| 2557 | boolean ifExists = false; |
| 2558 | } |
| 2559 | { |
| 2560 | pairId = QualifiedName() ifExists = IfExists() |
| 2561 | { |
| 2562 | SynonymDropStatement stmt = new SynonymDropStatement(pairId.first, pairId.second.getValue(), ifExists); |
| 2563 | return addSourceLocation(stmt, startStmtToken); |
| 2564 | } |
| 2565 | } |
| 2566 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2567 | boolean IfExists() throws ParseException : |
| 2568 | { |
| 2569 | } |
| 2570 | { |
| 2571 | ( LOOKAHEAD(1) <IF> <EXISTS> |
| 2572 | { |
| 2573 | return true; |
| 2574 | } |
| 2575 | )? |
| 2576 | { |
| 2577 | return false; |
| 2578 | } |
| 2579 | } |
| 2580 | |
| 2581 | InsertStatement InsertStatement() throws ParseException: |
| 2582 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2583 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2584 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2585 | VariableExpr var = null; |
| 2586 | Query query = null; |
| 2587 | Expression returnExpression = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2588 | } |
| 2589 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2590 | <INSERT> { startToken = token; } <INTO> nameComponents = QualifiedName() (<AS> var = Variable())? |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 2591 | query = Query() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2592 | ( <RETURNING> returnExpression = Expression())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2593 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2594 | if (var == null && returnExpression != null) { |
| 2595 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 2596 | addSourceLocation(var, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2597 | } |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 2598 | query.setTopLevel(true); |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2599 | InsertStatement stmt = new InsertStatement(nameComponents.first, nameComponents.second.getValue(), query, |
| 2600 | getVarCounter(), var, returnExpression); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2601 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2602 | } |
| 2603 | } |
| 2604 | |
| 2605 | UpsertStatement UpsertStatement() throws ParseException: |
| 2606 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2607 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2608 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2609 | VariableExpr var = null; |
| 2610 | Query query = null; |
| 2611 | Expression returnExpression = null; |
| 2612 | } |
| 2613 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2614 | <UPSERT> { startToken = token; } <INTO> nameComponents = QualifiedName() (<AS> var = Variable())? |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 2615 | query = Query() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2616 | ( <RETURNING> returnExpression = Expression())? |
| 2617 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2618 | if (var == null && returnExpression != null) { |
| 2619 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 2620 | addSourceLocation(var, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2621 | } |
| 2622 | query.setTopLevel(true); |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2623 | UpsertStatement stmt = new UpsertStatement(nameComponents.first, nameComponents.second.getValue(), query, |
| 2624 | getVarCounter(), var, returnExpression); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2625 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2626 | } |
| 2627 | } |
| 2628 | |
| 2629 | DeleteStatement DeleteStatement() throws ParseException: |
| 2630 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2631 | Token startToken = null; |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2632 | VariableExpr var = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2633 | Expression condition = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2634 | Pair<DataverseName, Identifier> nameComponents; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2635 | } |
| 2636 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2637 | <DELETE> { startToken = token; } |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2638 | <FROM> nameComponents = QualifiedName() ((<AS>)? var = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2639 | (<WHERE> condition = Expression())? |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 2640 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2641 | if (var == null) { |
| 2642 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 2643 | addSourceLocation(var, startToken); |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 2644 | } |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2645 | DeleteStatement stmt = new DeleteStatement(var, nameComponents.first, nameComponents.second.getValue(), |
Abdullah Alamoudi | 6eb0175 | 2017-04-01 21:51:19 -0700 | [diff] [blame] | 2646 | condition, getVarCounter()); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2647 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 2648 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2649 | } |
| 2650 | |
| 2651 | UpdateStatement UpdateStatement() throws ParseException: |
| 2652 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2653 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2654 | VariableExpr vars; |
| 2655 | Expression target; |
| 2656 | Expression condition; |
| 2657 | UpdateClause uc; |
| 2658 | List<UpdateClause> ucs = new ArrayList<UpdateClause>(); |
| 2659 | } |
| 2660 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2661 | <UPDATE> { startToken = token; } vars = Variable() <IN> target = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2662 | <WHERE> condition = Expression() |
| 2663 | <LEFTPAREN> (uc = UpdateClause() |
| 2664 | { |
| 2665 | ucs.add(uc); |
| 2666 | } |
| 2667 | (<COMMA> uc = UpdateClause() |
| 2668 | { |
| 2669 | ucs.add(uc); |
| 2670 | } |
| 2671 | )*) <RIGHTPAREN> |
| 2672 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2673 | UpdateStatement stmt = new UpdateStatement(vars, target, condition, ucs); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2674 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2675 | } |
| 2676 | } |
| 2677 | |
| 2678 | UpdateClause UpdateClause() throws ParseException: |
| 2679 | { |
| 2680 | Expression target = null; |
| 2681 | Expression value = null ; |
| 2682 | InsertStatement is = null; |
| 2683 | DeleteStatement ds = null; |
| 2684 | UpdateStatement us = null; |
| 2685 | Expression condition = null; |
| 2686 | UpdateClause ifbranch = null; |
| 2687 | UpdateClause elsebranch = null; |
| 2688 | } |
| 2689 | { |
| 2690 | (<SET> target = Expression() <EQ> value = Expression() |
| 2691 | | is = InsertStatement() |
| 2692 | | ds = DeleteStatement() |
| 2693 | | us = UpdateStatement() |
| 2694 | | <IF> <LEFTPAREN> condition = Expression() <RIGHTPAREN> |
| 2695 | <THEN> ifbranch = UpdateClause() |
| 2696 | [LOOKAHEAD(1) <ELSE> elsebranch = UpdateClause()] |
| 2697 | { |
| 2698 | return new UpdateClause(target, value, is, ds, us, condition, ifbranch, elsebranch); |
| 2699 | } |
| 2700 | ) |
| 2701 | } |
| 2702 | |
| 2703 | Statement SetStatement() throws ParseException: |
| 2704 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2705 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2706 | String pn = null; |
| 2707 | String pv = null; |
| 2708 | } |
| 2709 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2710 | <SET> { startToken = token; } pn = Identifier() pv = ConstantString() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2711 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2712 | SetStatement stmt = new SetStatement(pn, pv); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2713 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2714 | } |
| 2715 | } |
| 2716 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2717 | LoadStatement LoadStatement() throws ParseException: |
| 2718 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2719 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2720 | DataverseName dataverseName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2721 | Identifier datasetName = null; |
| 2722 | boolean alreadySorted = false; |
| 2723 | String adapterName; |
| 2724 | Map<String,String> properties; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2725 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2726 | } |
| 2727 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2728 | <LOAD> { startToken = token; } Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2729 | { |
| 2730 | dataverseName = nameComponents.first; |
| 2731 | datasetName = nameComponents.second; |
| 2732 | } |
| 2733 | <USING> adapterName = AdapterName() properties = Configuration() |
| 2734 | (<PRESORTED> |
| 2735 | { |
| 2736 | alreadySorted = true; |
| 2737 | } |
| 2738 | )? |
| 2739 | { |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2740 | LoadStatement stmt = new LoadStatement(dataverseName, datasetName.getValue(), adapterName, properties, |
| 2741 | alreadySorted); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2742 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2743 | } |
| 2744 | } |
| 2745 | |
| 2746 | |
| 2747 | String AdapterName() throws ParseException : |
| 2748 | { |
| 2749 | String adapterName = null; |
| 2750 | } |
| 2751 | { |
| 2752 | adapterName = Identifier() |
| 2753 | { |
| 2754 | return adapterName; |
| 2755 | } |
| 2756 | } |
| 2757 | |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2758 | Statement AnalyzeStatement() throws ParseException: |
| 2759 | { |
| 2760 | Token startToken = null; |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2761 | Statement stmt = null; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2762 | Pair<DataverseName,Identifier> nameComponents = null; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2763 | } |
| 2764 | { |
Ali Alsuliman | 7e5c574 | 2022-11-18 12:21:13 -0800 | [diff] [blame] | 2765 | <ANALYZE> { startToken = token; } DatasetToken() nameComponents = QualifiedName() |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2766 | ( |
| 2767 | stmt = AnalyzeDatasetDropStatement(startToken, nameComponents.first, nameComponents.second) |
| 2768 | | stmt = AnalyzeDatasetStatement(startToken, nameComponents.first, nameComponents.second) |
| 2769 | ) |
| 2770 | { |
| 2771 | return stmt; |
| 2772 | } |
| 2773 | } |
| 2774 | |
| 2775 | Statement AnalyzeDatasetStatement(Token startToken, DataverseName dvName, Identifier identifier) throws ParseException: |
| 2776 | { |
| 2777 | RecordConstructor withRecord = null; |
| 2778 | } |
| 2779 | { |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2780 | ( <WITH> withRecord = RecordConstructor() )? |
| 2781 | { |
| 2782 | try { |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2783 | AnalyzeStatement stmt = new AnalyzeStatement(dvName, identifier.getValue(), withRecord); |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2784 | return addSourceLocation(stmt, startToken); |
| 2785 | } catch (CompilationException e) { |
| 2786 | throw new SqlppParseException(getSourceLocation(startToken), e.getMessage()); |
| 2787 | } |
| 2788 | } |
| 2789 | } |
| 2790 | |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2791 | Statement AnalyzeDatasetDropStatement(Token startToken, DataverseName dvName, Identifier identifier) throws ParseException: |
| 2792 | { |
| 2793 | } |
| 2794 | { |
| 2795 | <DROP> <IDENTIFIER> { expectToken(STATISTICS); } |
| 2796 | { |
| 2797 | AnalyzeDropStatement stmt = new AnalyzeDropStatement(dvName, identifier.getValue()); |
| 2798 | return addSourceLocation(stmt, startToken); |
| 2799 | } |
| 2800 | } |
| 2801 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2802 | Statement CompactStatement() throws ParseException: |
| 2803 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2804 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2805 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2806 | } |
| 2807 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2808 | <COMPACT> { startToken = token; } Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2809 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2810 | CompactStatement stmt = new CompactStatement(nameComponents.first, nameComponents.second); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2811 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2812 | } |
| 2813 | } |
| 2814 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2815 | Statement ConnectionStatement() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2816 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2817 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2818 | Statement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2819 | } |
| 2820 | { |
| 2821 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2822 | <CONNECT> { startToken = token; } stmt = ConnectStatement(startToken) |
| 2823 | | <DISCONNECT> { startToken = token; } stmt = DisconnectStatement(startToken) |
| 2824 | | <START> { startToken = token; } stmt = StartStatement(startToken) |
| 2825 | | <STOP> { startToken = token; } stmt = StopStatement(startToken) |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2826 | ) |
| 2827 | { |
| 2828 | return stmt; |
| 2829 | } |
| 2830 | } |
| 2831 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2832 | Statement StartStatement(Token startStmtToken) throws ParseException: |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2833 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2834 | Pair<DataverseName,Identifier> feedNameComponents = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2835 | AbstractStatement stmt = null; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2836 | } |
| 2837 | { |
| 2838 | <FEED> feedNameComponents = QualifiedName() |
| 2839 | { |
| 2840 | stmt = new StartFeedStatement (feedNameComponents); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2841 | return addSourceLocation(stmt, startStmtToken); |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2842 | } |
| 2843 | } |
| 2844 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2845 | AbstractStatement StopStatement(Token startStmtToken) throws ParseException: |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2846 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2847 | Pair<DataverseName,Identifier> feedNameComponents = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2848 | AbstractStatement stmt = null; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2849 | } |
| 2850 | { |
| 2851 | <FEED> feedNameComponents = QualifiedName() |
| 2852 | { |
| 2853 | stmt = new StopFeedStatement (feedNameComponents); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2854 | return addSourceLocation(stmt, startStmtToken); |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2855 | } |
| 2856 | } |
| 2857 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2858 | AbstractStatement DisconnectStatement(Token startStmtToken) throws ParseException: |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2859 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2860 | Pair<DataverseName,Identifier> feedNameComponents = null; |
| 2861 | Pair<DataverseName,Identifier> datasetNameComponents = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2862 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2863 | AbstractStatement stmt = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2864 | } |
| 2865 | { |
| 2866 | ( |
| 2867 | <FEED> feedNameComponents = QualifiedName() <FROM> Dataset() datasetNameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2868 | { |
| 2869 | stmt = new DisconnectFeedStatement(feedNameComponents, datasetNameComponents); |
| 2870 | } |
| 2871 | ) |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2872 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2873 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2874 | } |
| 2875 | } |
| 2876 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2877 | AbstractStatement ConnectStatement(Token startStmtToken) throws ParseException: |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2878 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2879 | Pair<DataverseName,Identifier> feedNameComponents = null; |
| 2880 | Pair<DataverseName,Identifier> datasetNameComponents = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2881 | |
| 2882 | Map<String,String> configuration = null; |
Xikui Wang | 9d63f62 | 2017-05-18 17:50:44 -0700 | [diff] [blame] | 2883 | List<FunctionSignature> appliedFunctions = new ArrayList<FunctionSignature>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2884 | AbstractStatement stmt = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2885 | String policy = null; |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 2886 | String whereClauseBody = null; |
| 2887 | WhereClause whereClause = null; |
| 2888 | Token beginPos = null; |
| 2889 | Token endPos = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2890 | } |
| 2891 | { |
| 2892 | ( |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2893 | <FEED> feedNameComponents = QualifiedName() <TO> Dataset() datasetNameComponents = QualifiedName() |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 2894 | (ApplyFunction(appliedFunctions))? |
| 2895 | (policy = GetPolicy())? |
| 2896 | ( |
| 2897 | <WHERE> |
| 2898 | { |
| 2899 | beginPos = token; |
| 2900 | whereClause = new WhereClause(); |
| 2901 | Expression whereExpr; |
| 2902 | } |
| 2903 | whereExpr = Expression() |
| 2904 | { |
| 2905 | whereClause.setWhereExpr(whereExpr); |
| 2906 | } |
| 2907 | )? |
| 2908 | { |
| 2909 | if (whereClause != null) { |
| 2910 | endPos = token; |
| 2911 | whereClauseBody = extractFragment(beginPos.endLine, beginPos.endColumn, endPos.endLine, endPos.endColumn + 1); |
| 2912 | } |
| 2913 | } |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2914 | { |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2915 | stmt = new ConnectFeedStatement(feedNameComponents, datasetNameComponents, appliedFunctions, |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 2916 | policy, whereClauseBody, getVarCounter()); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2917 | } |
| 2918 | ) |
| 2919 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2920 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2921 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2922 | } |
| 2923 | |
| 2924 | Map<String,String> Configuration() throws ParseException : |
| 2925 | { |
| 2926 | Map<String,String> configuration = new LinkedHashMap<String,String>(); |
| 2927 | Pair<String, String> keyValuePair = null; |
| 2928 | } |
| 2929 | { |
| 2930 | <LEFTPAREN> ( keyValuePair = KeyValuePair() |
| 2931 | { |
| 2932 | configuration.put(keyValuePair.first, keyValuePair.second); |
| 2933 | } |
| 2934 | ( <COMMA> keyValuePair = KeyValuePair() |
| 2935 | { |
| 2936 | configuration.put(keyValuePair.first, keyValuePair.second); |
| 2937 | } |
| 2938 | )* )? <RIGHTPAREN> |
| 2939 | { |
| 2940 | return configuration; |
| 2941 | } |
| 2942 | } |
| 2943 | |
| 2944 | Pair<String, String> KeyValuePair() throws ParseException: |
| 2945 | { |
| 2946 | String key; |
| 2947 | String value; |
| 2948 | } |
| 2949 | { |
Ali Alsuliman | e298601 | 2020-05-14 18:14:22 -0700 | [diff] [blame] | 2950 | <LEFTPAREN> key = ConstantString() |
| 2951 | <EQ> ( value = ConstantString() | (<TRUE> | <FALSE>) {value = token.image.toLowerCase();} ) |
| 2952 | <RIGHTPAREN> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2953 | { |
| 2954 | return new Pair<String, String>(key, value); |
| 2955 | } |
| 2956 | } |
| 2957 | |
| 2958 | Map<String,String> Properties() throws ParseException: |
| 2959 | { |
| 2960 | Map<String,String> properties = new HashMap<String,String>(); |
| 2961 | Pair<String, String> property; |
| 2962 | } |
| 2963 | { |
| 2964 | (LOOKAHEAD(1) <LEFTPAREN> property = Property() |
| 2965 | { |
| 2966 | properties.put(property.first, property.second); |
| 2967 | } |
| 2968 | ( <COMMA> property = Property() |
| 2969 | { |
| 2970 | properties.put(property.first, property.second); |
| 2971 | } |
| 2972 | )* <RIGHTPAREN> )? |
| 2973 | { |
| 2974 | return properties; |
| 2975 | } |
| 2976 | } |
| 2977 | |
| 2978 | Pair<String, String> Property() throws ParseException: |
| 2979 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 2980 | String key = null; |
| 2981 | String value = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2982 | } |
| 2983 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 2984 | (key = Identifier() | key = StringLiteral()) |
| 2985 | <EQ> |
| 2986 | ( value = ConstantString() | <INTEGER_LITERAL> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2987 | { |
| 2988 | try { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2989 | value = String.valueOf(Long.parseLong(token.image)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2990 | } catch (NumberFormatException nfe) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2991 | throw new SqlppParseException(getSourceLocation(token), "inapproriate value: " + token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2992 | } |
| 2993 | } |
| 2994 | ) |
| 2995 | { |
| 2996 | return new Pair<String, String>(key.toUpperCase(), value); |
| 2997 | } |
| 2998 | } |
| 2999 | |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3000 | IndexedTypeExpression IndexedTypeExpr(boolean allowQues) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3001 | { |
| 3002 | TypeExpression typeExpr = null; |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3003 | boolean isUnknownable = !allowQues; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3004 | } |
| 3005 | { |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3006 | typeExpr = TypeExpr(false) |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3007 | ( <QUES> |
| 3008 | { |
| 3009 | if (!allowQues) { |
| 3010 | throw new SqlppParseException(getSourceLocation(token), "'?' quantifier is illegal for the type expression."); |
| 3011 | } |
| 3012 | isUnknownable = true; |
| 3013 | } |
| 3014 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3015 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3016 | return new IndexedTypeExpression(typeExpr, isUnknownable); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3017 | } |
| 3018 | } |
| 3019 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3020 | TypeExpression TypeExpr(boolean allowRecordTypeDef) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3021 | { |
| 3022 | TypeExpression typeExpr = null; |
| 3023 | } |
| 3024 | { |
| 3025 | ( |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3026 | typeExpr = TypeReference() |
| 3027 | | typeExpr = OrderedListTypeDef(allowRecordTypeDef) |
| 3028 | | typeExpr = UnorderedListTypeDef(allowRecordTypeDef) |
| 3029 | | typeExpr = RecordTypeDef() { |
| 3030 | if (!allowRecordTypeDef) { |
| 3031 | throw new SqlppParseException(typeExpr.getSourceLocation(), "Unexpected record type declaration"); |
| 3032 | } |
| 3033 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3034 | ) |
| 3035 | { |
| 3036 | return typeExpr; |
| 3037 | } |
| 3038 | } |
| 3039 | |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 3040 | RecordTypeDefinition.RecordKind RecordTypeKind() throws ParseException: |
| 3041 | { |
| 3042 | RecordTypeDefinition.RecordKind recordKind = null; |
| 3043 | } |
| 3044 | { |
| 3045 | ( |
| 3046 | <CLOSED> { recordKind = RecordTypeDefinition.RecordKind.CLOSED; } |
| 3047 | | <OPEN> { recordKind = RecordTypeDefinition.RecordKind.OPEN; } |
| 3048 | ) |
| 3049 | { |
| 3050 | return recordKind; |
| 3051 | } |
| 3052 | } |
| 3053 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3054 | RecordTypeDefinition RecordTypeDef() throws ParseException: |
| 3055 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3056 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3057 | RecordTypeDefinition recType = new RecordTypeDefinition(); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 3058 | RecordTypeDefinition.RecordKind recordKind = RecordTypeDefinition.RecordKind.OPEN; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3059 | } |
| 3060 | { |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 3061 | ( recordKind = RecordTypeKind() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3062 | <LEFTBRACE> |
| 3063 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3064 | startToken = token; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3065 | Token hintToken = fetchHint(token, SqlppHint.GEN_FIELDS_HINT); |
| 3066 | if (hintToken != null) { |
| 3067 | String hintParams = hintToken.hintParams; |
| 3068 | String[] splits = hintParams != null ? hintParams.split("\\s+") : null; |
| 3069 | if (splits == null || splits.length != 4) { |
| 3070 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 3071 | "Expecting: /*+ gen-fields <type> <min> <max> <prefix>*/"); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3072 | } |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3073 | if (!splits[0].equals("int")) { |
| 3074 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 3075 | "The only supported type for gen-fields is int."); |
| 3076 | } |
| 3077 | UndeclaredFieldsDataGen ufdg = new UndeclaredFieldsDataGen(UndeclaredFieldsDataGen.Type.INT, |
| 3078 | Integer.parseInt(splits[1]), Integer.parseInt(splits[2]), splits[3]); |
| 3079 | recType.setUndeclaredFieldsDataGen(ufdg); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3080 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3081 | } |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3082 | ( |
| 3083 | RecordField(recType) |
| 3084 | ( <COMMA> RecordField(recType) )* |
| 3085 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3086 | <RIGHTBRACE> |
| 3087 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3088 | recType.setRecordKind(recordKind); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3089 | return addSourceLocation(recType, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3090 | } |
| 3091 | } |
| 3092 | |
| 3093 | void RecordField(RecordTypeDefinition recType) throws ParseException: |
| 3094 | { |
| 3095 | String fieldName; |
| 3096 | TypeExpression type = null; |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 3097 | boolean nullable = false, missable = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3098 | } |
| 3099 | { |
| 3100 | fieldName = Identifier() |
| 3101 | { |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3102 | Token hintToken = fetchHint(token, SqlppHint.VAL_FILE_HINT, SqlppHint.VAL_FILE_SAME_INDEX_HINT, |
| 3103 | SqlppHint.LIST_VAL_FILE_HINT, SqlppHint.LIST_HINT, SqlppHint.INTERVAL_HINT, SqlppHint.INSERT_RAND_INT_HINT, |
| 3104 | SqlppHint.DATE_BETWEEN_YEARS_HINT, SqlppHint.DATETIME_ADD_RAND_HOURS_HINT, SqlppHint.AUTO_HINT); |
| 3105 | IRecordFieldDataGen rfdg = hintToken != null ? parseFieldDataGen(hintToken) : null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3106 | } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3107 | <COLON> type = TypeExpr(true) ( <QUES> { nullable = true; missable = true; } )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3108 | { |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 3109 | recType.addField(fieldName, type, nullable, missable, rfdg); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3110 | } |
| 3111 | } |
| 3112 | |
| 3113 | TypeReferenceExpression TypeReference() throws ParseException: |
| 3114 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3115 | Pair<DataverseName,Identifier> id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3116 | } |
| 3117 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3118 | id = QualifiedName() |
| 3119 | { |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 3120 | if (id.first == null && id.second.getValue().equalsIgnoreCase(INT_TYPE_NAME)) { |
| 3121 | id.second = new Identifier(BuiltinType.AINT64.getTypeName()); |
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 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3124 | TypeReferenceExpression typeRef = new TypeReferenceExpression(id); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3125 | return addSourceLocation(typeRef, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3126 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3127 | } |
| 3128 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3129 | OrderedListTypeDefinition OrderedListTypeDef(boolean allowRecordTypeDef) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3130 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3131 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3132 | TypeExpression type = null; |
| 3133 | } |
| 3134 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3135 | <LEFTBRACKET> { startToken = token; } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3136 | ( type = TypeExpr(allowRecordTypeDef) ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3137 | <RIGHTBRACKET> |
| 3138 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3139 | OrderedListTypeDefinition typeDef = new OrderedListTypeDefinition(type); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3140 | return addSourceLocation(typeDef, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3141 | } |
| 3142 | } |
| 3143 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3144 | UnorderedListTypeDefinition UnorderedListTypeDef(boolean allowRecordTypeDef) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3145 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3146 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3147 | TypeExpression type = null; |
| 3148 | } |
| 3149 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3150 | <LEFTDBLBRACE> { startToken = token; } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3151 | ( type = TypeExpr(allowRecordTypeDef) ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3152 | <RIGHTDBLBRACE> |
| 3153 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3154 | UnorderedListTypeDefinition typeDef = new UnorderedListTypeDefinition(type); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3155 | return addSourceLocation(typeDef, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3156 | } |
| 3157 | } |
| 3158 | |
| 3159 | FunctionName FunctionName() throws ParseException: |
| 3160 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3161 | Triple<List<String>, Token, Token> prefix = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3162 | String suffix = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3163 | } |
| 3164 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3165 | // Note: there's a copy of this production in PrimaryExpr() (LOOKAHEAD for FunctionCallExpr()) |
| 3166 | // that copy must be kept in sync with this code |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3167 | prefix = MultipartIdentifierWithHints( |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3168 | SqlppHint.INDEXED_NESTED_LOOP_JOIN_HINT, SqlppHint.RANGE_HINT, SqlppHint.HASH_JOIN_HINT, SqlppHint.SKIP_SECONDARY_INDEX_SEARCH_HINT, |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 3169 | SqlppHint.SPATIAL_JOIN_HINT, SqlppHint.USE_SECONDARY_INDEX_SEARCH_HINT |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3170 | ) |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3171 | (<SHARP> suffix = Identifier())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3172 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3173 | Token startToken = prefix.second; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3174 | FunctionName result = new FunctionName(); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3175 | result.sourceLoc = getSourceLocation(startToken); |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 3176 | result.hintToken = prefix.third; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3177 | List<String> list = prefix.first; |
| 3178 | int ln = list.size(); |
| 3179 | String last = list.get(ln - 1); |
| 3180 | if (suffix == null) { |
| 3181 | // prefix = (dv_part1.dv_part2...dv_partN.)?func_name |
| 3182 | // no library name |
| 3183 | result.function = last; |
| 3184 | } else { |
| 3185 | // prefix = (dv_part1.dv_part2...dv_partN.)?lib_name |
| 3186 | // suffix = func_name |
| 3187 | result.library = last; |
| 3188 | result.function = suffix; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3189 | } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3190 | if (ln > 1) { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3191 | result.dataverse = createDataverseName(list, 0, ln - 1, startToken); |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3192 | } else { |
| 3193 | result.dataverse = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3194 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3195 | |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3196 | if (result.function.equalsIgnoreCase(INT_TYPE_NAME)) { |
| 3197 | result.function = BuiltinType.AINT64.getTypeName(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3198 | } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3199 | return result; |
| 3200 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3201 | } |
| 3202 | |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3203 | Pair<DataverseName,Identifier> TypeName() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3204 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3205 | Pair<DataverseName,Identifier> name = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3206 | } |
| 3207 | { |
| 3208 | name = QualifiedName() |
| 3209 | { |
| 3210 | if (name.first == null) { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3211 | name.first = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3212 | } |
| 3213 | return name; |
| 3214 | } |
| 3215 | } |
| 3216 | |
| 3217 | String Identifier() throws ParseException: |
| 3218 | { |
| 3219 | String lit = null; |
| 3220 | } |
| 3221 | { |
| 3222 | (<IDENTIFIER> |
| 3223 | { |
| 3224 | return token.image; |
| 3225 | } |
| 3226 | | lit = QuotedString() |
| 3227 | { |
| 3228 | return lit; |
| 3229 | } |
| 3230 | ) |
| 3231 | } |
| 3232 | |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3233 | List<String> ParenthesizedIdentifierList() throws ParseException: |
| 3234 | { |
| 3235 | List<String> list = new ArrayList<String>(); |
| 3236 | String ident = null; |
| 3237 | } |
| 3238 | { |
| 3239 | <LEFTPAREN> |
| 3240 | ident = Identifier() { list.add(ident); } |
| 3241 | ( <COMMA> ident = Identifier() { list.add(ident); } )* |
| 3242 | <RIGHTPAREN> |
| 3243 | { |
| 3244 | return list; |
| 3245 | } |
| 3246 | } |
| 3247 | |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 3248 | Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> buildOrProbeParenthesizedIdentifier() throws ParseException: |
| 3249 | { |
| 3250 | String ident1 = null; |
| 3251 | String ident2 = null; |
| 3252 | } |
| 3253 | { |
| 3254 | ident1 = Identifier() <LEFTPAREN> ident2 = Identifier() <RIGHTPAREN> |
| 3255 | { |
| 3256 | // check |
| 3257 | if (ident1.equals("build")) { |
| 3258 | return new Pair<HashJoinExpressionAnnotation.BuildOrProbe, String>(HashJoinExpressionAnnotation.BuildOrProbe.BUILD, ident2); |
| 3259 | } |
| 3260 | else if (ident1.equals("probe")) { |
| 3261 | return new Pair<HashJoinExpressionAnnotation.BuildOrProbe, String>(HashJoinExpressionAnnotation.BuildOrProbe.PROBE, ident2); |
| 3262 | } |
| 3263 | else { |
| 3264 | throw new SqlppParseException(getSourceLocation(token), "The string after hashjoin has to be \"build\" or \"probe\"."); |
| 3265 | } |
| 3266 | return null; |
| 3267 | } |
| 3268 | } |
| 3269 | |
| 3270 | String parenthesizedIdentifier() throws ParseException: |
| 3271 | { |
| 3272 | String ident = null; |
| 3273 | } |
| 3274 | { |
| 3275 | <LEFTPAREN> ident = Identifier() <RIGHTPAREN> |
| 3276 | { |
| 3277 | return ident; |
| 3278 | } |
| 3279 | } |
| 3280 | |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 3281 | List<Literal> ParenthesizedLiteralList() throws ParseException: |
| 3282 | { |
| 3283 | List<Literal> list = new ArrayList<Literal>(); |
| 3284 | boolean minus = false; |
| 3285 | Expression litExpr = null; |
| 3286 | Literal lit = null; |
| 3287 | } |
| 3288 | { |
| 3289 | <LEFTPAREN> |
| 3290 | (<MINUS> { minus = true; })? litExpr = Literal() |
| 3291 | { |
| 3292 | lit = ((LiteralExpr) litExpr).getValue(); |
| 3293 | if (minus) |
| 3294 | { |
| 3295 | try { |
| 3296 | lit = ExpressionUtils.reverseSign(lit); |
| 3297 | } catch (TypeMismatchException e) { |
| 3298 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
| 3299 | } |
| 3300 | minus = false; |
| 3301 | } |
| 3302 | list.add(lit); |
| 3303 | } |
| 3304 | ( <COMMA> (<MINUS> { minus = true; })? litExpr = Literal() |
| 3305 | { |
| 3306 | lit = ((LiteralExpr) litExpr).getValue(); |
| 3307 | if (minus) |
| 3308 | { |
| 3309 | try { |
| 3310 | lit = ExpressionUtils.reverseSign(lit); |
| 3311 | } catch (TypeMismatchException e) { |
| 3312 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
| 3313 | } |
| 3314 | minus = false; |
| 3315 | } |
| 3316 | list.add(lit); |
| 3317 | } )* |
| 3318 | <RIGHTPAREN> |
| 3319 | { |
| 3320 | return list; |
| 3321 | } |
| 3322 | } |
| 3323 | |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3324 | Pair<Integer, Pair<List<String>, IndexedTypeExpression>> OpenField() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3325 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3326 | IndexedTypeExpression fieldType = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3327 | Pair<Integer, List<String>> fieldList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3328 | } |
| 3329 | { |
| 3330 | fieldList = NestedField() |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3331 | ( <COLON> fieldType = IndexedTypeExpr(true) )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3332 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3333 | return new Pair<Integer, Pair<List<String>, IndexedTypeExpression>> |
| 3334 | (fieldList.first, new Pair<List<String>, IndexedTypeExpression>(fieldList.second, fieldType)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3335 | } |
| 3336 | } |
| 3337 | |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3338 | Pair<Integer, List<String>> NestedField() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3339 | { |
| 3340 | List<String> exprList = new ArrayList<String>(); |
| 3341 | String lit = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3342 | Token litToken = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3343 | int source = 0; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3344 | } |
| 3345 | { |
| 3346 | lit = Identifier() |
| 3347 | { |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3348 | boolean meetParens = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3349 | litToken = token; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3350 | } |
| 3351 | ( |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3352 | LOOKAHEAD(1) |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3353 | <LEFTPAREN><RIGHTPAREN> |
| 3354 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3355 | if(!lit.equalsIgnoreCase("meta")){ |
| 3356 | throw new SqlppParseException(getSourceLocation(litToken), "The string before () has to be \"meta\"."); |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3357 | } |
| 3358 | meetParens = true; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3359 | source = 1; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3360 | } |
| 3361 | )? |
| 3362 | { |
| 3363 | if(!meetParens){ |
| 3364 | exprList.add(lit); |
| 3365 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3366 | } |
| 3367 | (<DOT> |
| 3368 | lit = Identifier() |
| 3369 | { |
| 3370 | exprList.add(lit); |
| 3371 | } |
| 3372 | )* |
| 3373 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3374 | return new Pair<Integer, List<String>>(source, exprList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3375 | } |
| 3376 | } |
| 3377 | |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3378 | String ConstantString() throws ParseException: |
| 3379 | { |
| 3380 | String value = null; |
| 3381 | } |
| 3382 | { |
| 3383 | (value = QuotedString() | value = StringLiteral()) |
| 3384 | { |
| 3385 | return value; |
| 3386 | } |
| 3387 | } |
| 3388 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3389 | String QuotedString() throws ParseException: |
| 3390 | { |
| 3391 | } |
| 3392 | { |
| 3393 | <QUOTED_STRING> |
| 3394 | { |
| 3395 | return removeQuotesAndEscapes(token.image); |
| 3396 | } |
| 3397 | } |
| 3398 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3399 | String StringLiteral() throws ParseException: |
| 3400 | { |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3401 | StringBuilder str = null; |
| 3402 | char quote = 0; |
| 3403 | boolean ext = false; |
| 3404 | Token litToken = null; |
| 3405 | String lit = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3406 | } |
| 3407 | { |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3408 | ( <STRING_LITERAL> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3409 | { |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3410 | String quoted = token.image; |
| 3411 | char q = quoted.charAt(0); |
| 3412 | boolean e = q == 'E'; |
| 3413 | if (e) { |
| 3414 | q = quoted.charAt(1); |
| 3415 | quoted = quoted.substring(1); |
| 3416 | } |
| 3417 | if (lit == null) { |
| 3418 | quote = q; |
| 3419 | ext = e; |
| 3420 | } else { |
| 3421 | boolean isAdjacent = litToken.endLine == token.beginLine && litToken.endColumn + 1 == token.beginColumn; |
| 3422 | if (!isAdjacent || ext || e || (q != quote)) { |
| 3423 | throw new SqlppParseException(getSourceLocation(token), "Invalid string literal"); |
| 3424 | } |
| 3425 | if (str == null) { |
| 3426 | str = new StringBuilder(); |
| 3427 | } |
| 3428 | str.append(lit); |
| 3429 | str.append(quote); |
| 3430 | } |
| 3431 | lit = removeQuotesAndEscapes(quoted); |
| 3432 | litToken = token; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3433 | } |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3434 | )+ |
| 3435 | { |
| 3436 | if (str == null) { |
| 3437 | return lit; |
| 3438 | } else { |
| 3439 | str.append(lit); |
| 3440 | return str.toString(); |
| 3441 | } |
| 3442 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3443 | } |
| 3444 | |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3445 | Triple<List<String>, Token, Token> MultipartIdentifier() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3446 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3447 | Triple<List<String>, Token, Token> result = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3448 | } |
| 3449 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3450 | result = MultipartIdentifierWithHints(null) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3451 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3452 | return result; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3453 | } |
| 3454 | } |
| 3455 | |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3456 | Triple<List<String>, Token, Token> MultipartIdentifierWithHints(SqlppHint... expectedHints) |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3457 | throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3458 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3459 | List<String> list = new ArrayList<String>(); |
| 3460 | SourceLocation sourceLoc = null; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3461 | Token startToken, hintToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3462 | String item = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3463 | } |
| 3464 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3465 | item = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3466 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3467 | list.add(item); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3468 | startToken = token; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3469 | if (expectedHints != null && expectedHints.length > 0) { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3470 | hintToken = fetchHint(token, expectedHints); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3471 | } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3472 | } |
| 3473 | (<DOT> item = Identifier() { list.add(item); } )* |
| 3474 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3475 | return new Triple<List<String>, Token, Token>(list, startToken, hintToken); |
| 3476 | } |
| 3477 | } |
| 3478 | |
| 3479 | DataverseName DataverseName() throws ParseException: |
| 3480 | { |
| 3481 | Triple<List<String>, Token, Token> ident = null; |
| 3482 | } |
| 3483 | { |
| 3484 | ident = MultipartIdentifier() |
| 3485 | { |
| 3486 | List<String> list = ident.first; |
| 3487 | Token startToken = ident.second; |
| 3488 | return createDataverseName(list, 0, list.size(), startToken); |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3489 | } |
| 3490 | } |
| 3491 | |
| 3492 | Pair<DataverseName,Identifier> QualifiedName() throws ParseException: |
| 3493 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3494 | Triple<List<String>, Token, Token> ident = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3495 | } |
| 3496 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3497 | ident = MultipartIdentifier() |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3498 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3499 | List<String> list = ident.first; |
| 3500 | Token startToken = ident.second; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3501 | int len = list.size(); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3502 | DataverseName id1 = len > 1 ? createDataverseName(list, 0, len - 1, startToken) : null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3503 | Identifier id2 = new Identifier(list.get(len - 1)); |
| 3504 | return new Pair<DataverseName,Identifier>(id1, id2); |
| 3505 | } |
| 3506 | } |
| 3507 | |
| 3508 | Triple<DataverseName, Identifier, Identifier> DoubleQualifiedName() throws ParseException: |
| 3509 | { |
| 3510 | List<String> list = new ArrayList<String>(); |
| 3511 | String item = null; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3512 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3513 | } |
| 3514 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3515 | item = Identifier() { list.add(item); startToken = token; } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3516 | (<DOT> item = Identifier() { list.add(item); } )+ |
| 3517 | { |
| 3518 | int len = list.size(); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3519 | DataverseName id1 = len > 2 ? createDataverseName(list, 0, len - 2, startToken) : null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3520 | Identifier id2 = new Identifier(list.get(len - 2)); |
| 3521 | Identifier id3 = new Identifier(list.get(len - 1)); |
| 3522 | return new Triple<DataverseName,Identifier,Identifier>(id1, id2, id3); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3523 | } |
| 3524 | } |
| 3525 | |
| 3526 | FunctionDecl FunctionDeclaration() throws ParseException: |
| 3527 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3528 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3529 | String functionName; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 3530 | Pair<Integer, List<Pair<VarIdentifier,TypeExpression>>> paramsWithArity = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3531 | Expression funcBody; |
| 3532 | createNewScope(); |
| 3533 | } |
| 3534 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3535 | <DECLARE> { startToken = token; } <FUNCTION> |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3536 | functionName = Identifier() |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 3537 | paramsWithArity = FunctionParameters() |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3538 | <LEFTBRACE> |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 3539 | funcBody = FunctionBody() |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3540 | <RIGHTBRACE> |
| 3541 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 3542 | int arity = paramsWithArity.first; |
| 3543 | List<Pair<VarIdentifier,TypeExpression>> paramList = paramsWithArity.second; |
| 3544 | FunctionSignature signature = new FunctionSignature(defaultDataverse, functionName, arity); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3545 | getCurrentScope().addFunctionDescriptor(signature, false); |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3546 | ensureNoTypeDeclsInFunction(functionName, paramList, null, startToken); |
| 3547 | List<VarIdentifier> params = new ArrayList<VarIdentifier>(paramList.size()); |
| 3548 | for (Pair<VarIdentifier,TypeExpression> p: paramList) { |
| 3549 | params.add(p.getFirst()); |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 3550 | } |
Dmitry Lychagin | 9ba7487 | 2021-04-05 14:38:20 -0700 | [diff] [blame] | 3551 | FunctionDecl stmt = new FunctionDecl(signature, params, funcBody, false); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3552 | removeCurrentScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3553 | return addSourceLocation(stmt, startToken); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3554 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3555 | } |
| 3556 | |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 3557 | Query Query() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3558 | { |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 3559 | Query query = new Query(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3560 | Expression expr; |
| 3561 | } |
| 3562 | { |
| 3563 | ( |
| 3564 | expr = Expression() |
| 3565 | | |
| 3566 | expr = SelectExpression(false) |
| 3567 | ) |
| 3568 | { |
| 3569 | query.setBody(expr); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3570 | query.setSourceLocation(expr.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3571 | return query; |
| 3572 | } |
| 3573 | } |
| 3574 | |
| 3575 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3576 | Expression Expression(): |
| 3577 | { |
| 3578 | Expression expr = null; |
| 3579 | Expression exprP = null; |
| 3580 | } |
| 3581 | { |
| 3582 | ( |
| 3583 | LOOKAHEAD(2) |
| 3584 | expr = OperatorExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3585 | | expr = QuantifiedExpression() |
| 3586 | ) |
| 3587 | { |
| 3588 | return (exprP==null) ? expr : exprP; |
| 3589 | } |
| 3590 | } |
| 3591 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3592 | Expression OperatorExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3593 | { |
| 3594 | OperatorExpr op = null; |
| 3595 | Expression operand = null; |
| 3596 | } |
| 3597 | { |
| 3598 | operand = AndExpr() |
| 3599 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3600 | <OR> |
| 3601 | { |
| 3602 | if (op == null) { |
| 3603 | op = new OperatorExpr(); |
| 3604 | op.addOperand(operand); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3605 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3606 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3607 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3608 | try{ |
| 3609 | op.addOperator(token.image.toLowerCase()); |
| 3610 | } catch (Exception e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3611 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3612 | } |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3613 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3614 | |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3615 | operand = AndExpr() |
| 3616 | { |
| 3617 | op.addOperand(operand); |
| 3618 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3619 | |
| 3620 | )* |
| 3621 | |
| 3622 | { |
| 3623 | return op==null? operand: op; |
| 3624 | } |
| 3625 | } |
| 3626 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3627 | Expression AndExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3628 | { |
| 3629 | OperatorExpr op = null; |
| 3630 | Expression operand = null; |
| 3631 | } |
| 3632 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3633 | operand = NotExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3634 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3635 | <AND> |
| 3636 | { |
| 3637 | if (op == null) { |
| 3638 | op = new OperatorExpr(); |
| 3639 | op.addOperand(operand); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3640 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3641 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3642 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3643 | try{ |
| 3644 | op.addOperator(token.image.toLowerCase()); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 3645 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3646 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3647 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3648 | } |
| 3649 | |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3650 | operand = NotExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3651 | { |
| 3652 | op.addOperand(operand); |
| 3653 | } |
| 3654 | |
| 3655 | )* |
| 3656 | |
| 3657 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3658 | return op==null ? operand: op; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3659 | } |
| 3660 | } |
| 3661 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3662 | Expression NotExpr() throws ParseException: |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3663 | { |
| 3664 | Expression inputExpr; |
| 3665 | boolean not = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3666 | Token startToken = null; |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3667 | } |
| 3668 | { |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 3669 | (LOOKAHEAD(2) <NOT> { not = true; startToken = token; } )? inputExpr = RelExpr() |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3670 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3671 | if(not) { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3672 | FunctionSignature signature = new FunctionSignature(BuiltinFunctions.NOT); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3673 | CallExpr callExpr = new CallExpr(signature, new ArrayList<Expression>(Collections.singletonList(inputExpr))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3674 | return addSourceLocation(callExpr, startToken); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3675 | } else { |
| 3676 | return inputExpr; |
| 3677 | } |
| 3678 | } |
| 3679 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3680 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3681 | Expression RelExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3682 | { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3683 | boolean not = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3684 | OperatorExpr op = null; |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3685 | Token opToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3686 | Expression operand = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3687 | IExpressionAnnotation annotation = null; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3688 | List<IExpressionAnnotation> annotationList = new ArrayList<IExpressionAnnotation>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3689 | } |
| 3690 | { |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3691 | operand = BetweenExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3692 | |
| 3693 | ( |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3694 | LOOKAHEAD(3)( <LT> | <GT> | <LE> | <GE> | <EQ> | <NE> | <LG> |<SIMILAR> | (<NOT> { not = true; })? <IN> | |
| 3695 | <IS> (<NOT> { not = true; })? <DISTINCT> { opToken = token; } <FROM> ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3696 | { |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3697 | if (opToken == null) { |
| 3698 | opToken = token; |
| 3699 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3700 | Token hintToken = fetchHint(token, |
| 3701 | SqlppHint.HASH_BROADCAST_JOIN_HINT, SqlppHint.INDEXED_NESTED_LOOP_JOIN_HINT, |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3702 | SqlppHint.HASH_JOIN_HINT, SqlppHint.SKIP_SECONDARY_INDEX_SEARCH_HINT, SqlppHint.USE_SECONDARY_INDEX_SEARCH_HINT, |
| 3703 | SqlppHint.SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT, SqlppHint.JOIN_PREDICATE_PRODUCTIVITY_HINT |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3704 | ); |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3705 | while (hintToken != null) { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3706 | annotation = parseExpressionAnnotation(hintToken); |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3707 | annotationList.add(annotation); |
| 3708 | hintToken = hintToken.specialToken; |
Vijay Sarathy | 8f4fccd | 2022-12-05 14:29:02 -0800 | [diff] [blame] | 3709 | if (hintToken != null) { |
| 3710 | SourceLocation sourceLoc = getSourceLocation(hintToken); |
| 3711 | hintCollector.remove(sourceLoc); |
| 3712 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3713 | } |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3714 | String operator = opToken.image.toLowerCase(); |
Yingyi Bu | 4a4b896 | 2016-09-16 12:09:11 -0700 | [diff] [blame] | 3715 | if (operator.equals("<>")){ |
| 3716 | operator = "!="; |
| 3717 | } |
| 3718 | if (not) { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3719 | operator = "not_" + operator; |
| 3720 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3721 | if (op == null) { |
| 3722 | op = new OperatorExpr(); |
Shiva | 2ea7323 | 2019-10-09 18:04:05 -0700 | [diff] [blame] | 3723 | op.addOperand(operand); |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3724 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3725 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3726 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3727 | try{ |
| 3728 | op.addOperator(operator); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 3729 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3730 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3731 | } |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3732 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3733 | |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3734 | operand = BetweenExpr() |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 3735 | { |
Shiva | 2ea7323 | 2019-10-09 18:04:05 -0700 | [diff] [blame] | 3736 | op.addOperand(operand); |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 3737 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3738 | )? |
| 3739 | |
| 3740 | { |
| 3741 | if (annotation != null) { |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3742 | op.addHints(annotationList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3743 | } |
| 3744 | return op==null? operand: op; |
| 3745 | } |
| 3746 | } |
| 3747 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3748 | Expression BetweenExpr() throws ParseException: |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3749 | { |
| 3750 | boolean not = false; |
| 3751 | OperatorExpr op = null; |
| 3752 | Expression operand = null; |
| 3753 | IExpressionAnnotation annotation = null; |
| 3754 | } |
| 3755 | { |
| 3756 | operand = IsExpr() |
| 3757 | ( |
| 3758 | LOOKAHEAD(2) |
| 3759 | (<NOT> { not = true; })? <BETWEEN> |
| 3760 | { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3761 | Token hintToken = fetchHint(token, |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3762 | SqlppHint.INDEXED_NESTED_LOOP_JOIN_HINT, SqlppHint.SKIP_SECONDARY_INDEX_SEARCH_HINT, SqlppHint.HASH_JOIN_HINT, |
| 3763 | SqlppHint.USE_SECONDARY_INDEX_SEARCH_HINT, SqlppHint.SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3764 | ); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3765 | if (hintToken != null) { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3766 | annotation = parseExpressionAnnotation(hintToken); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3767 | } |
| 3768 | String operator = token.image.toLowerCase(); |
| 3769 | if(not){ |
| 3770 | operator = "not_" + operator; |
| 3771 | } |
| 3772 | if (op == null) { |
| 3773 | op = new OperatorExpr(); |
| 3774 | op.addOperand(operand); |
| 3775 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3776 | addSourceLocation(op, token); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3777 | } |
| 3778 | try{ |
| 3779 | op.addOperator(operator); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 3780 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3781 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3782 | } |
| 3783 | } |
| 3784 | |
| 3785 | operand = IsExpr() |
| 3786 | { |
| 3787 | op.addOperand(operand); |
| 3788 | } |
| 3789 | |
| 3790 | <AND> |
| 3791 | operand = IsExpr() |
| 3792 | { |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 3793 | op.addOperator(OperatorType.AND); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3794 | op.addOperand(operand); |
| 3795 | } |
| 3796 | )? |
| 3797 | |
| 3798 | { |
| 3799 | if (annotation != null) { |
| 3800 | op.addHint(annotation); |
| 3801 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3802 | return op==null ? operand: op; |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3803 | } |
| 3804 | } |
| 3805 | |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3806 | Expression IsExpr() throws ParseException: |
| 3807 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3808 | Token notToken = null; |
| 3809 | CallExpr expr = null; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3810 | Expression operand = null; |
| 3811 | boolean not = false; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3812 | FunctionIdentifier fn = null; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3813 | } |
| 3814 | { |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3815 | operand = LikeExpr() |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3816 | ( |
| 3817 | LOOKAHEAD(3) |
| 3818 | <IS> |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3819 | (<NOT> { not = true; notToken = token; })? |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3820 | ( |
| 3821 | <NULL> { fn = BuiltinFunctions.IS_NULL; } | |
| 3822 | <MISSING> { fn = BuiltinFunctions.IS_MISSING; } | |
Dmitry Lychagin | 7d594a3 | 2018-01-15 14:31:03 -0800 | [diff] [blame] | 3823 | <UNKNOWN> { fn = BuiltinFunctions.IS_UNKNOWN; } | |
Dmitry Lychagin | 1aa0dd4 | 2018-04-17 14:35:24 -0700 | [diff] [blame] | 3824 | (<KNOWN> | <VALUED>) { not = !not; fn = BuiltinFunctions.IS_UNKNOWN; } |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3825 | ) |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3826 | { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3827 | FunctionSignature signature = new FunctionSignature(fn); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3828 | expr = new CallExpr(signature, new ArrayList<Expression>(Collections.singletonList(operand))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3829 | addSourceLocation(expr, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3830 | if (not) { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3831 | FunctionSignature notSignature = new FunctionSignature(BuiltinFunctions.NOT); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3832 | expr = new CallExpr(notSignature, new ArrayList<Expression>(Collections.singletonList(expr))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3833 | addSourceLocation(expr, notToken); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3834 | } |
| 3835 | } |
| 3836 | )? |
| 3837 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3838 | return expr == null ? operand : expr; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3839 | } |
| 3840 | } |
| 3841 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3842 | Expression LikeExpr() throws ParseException: |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3843 | { |
| 3844 | boolean not = false; |
| 3845 | OperatorExpr op = null; |
| 3846 | Expression operand = null; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3847 | IExpressionAnnotation annotation = null; |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3848 | } |
| 3849 | { |
| 3850 | operand = ConcatExpr() |
| 3851 | ( |
| 3852 | LOOKAHEAD(2) |
| 3853 | (<NOT> { not = true; })? <LIKE> |
| 3854 | { |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3855 | Token hintToken = fetchHint(token, SqlppHint.SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT); |
| 3856 | if (hintToken != null) { |
| 3857 | annotation = parseExpressionAnnotation(hintToken); |
| 3858 | } |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3859 | op = new OperatorExpr(); |
| 3860 | op.addOperand(operand); |
| 3861 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3862 | addSourceLocation(op, token); |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3863 | |
| 3864 | String operator = token.image.toLowerCase(); |
| 3865 | if (not) { |
| 3866 | operator = "not_" + operator; |
| 3867 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3868 | try { |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3869 | op.addOperator(operator); |
| 3870 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3871 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3872 | } |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3873 | if (annotation != null) { |
| 3874 | op.addHint(annotation); |
| 3875 | } |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3876 | } |
| 3877 | |
| 3878 | operand = ConcatExpr() |
| 3879 | { |
| 3880 | op.addOperand(operand); |
| 3881 | } |
| 3882 | )? |
| 3883 | |
| 3884 | { |
| 3885 | return op == null ? operand : op; |
| 3886 | } |
| 3887 | } |
| 3888 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3889 | Expression ConcatExpr() throws ParseException: |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3890 | { |
| 3891 | OperatorExpr op = null; |
| 3892 | Expression operand = null; |
| 3893 | } |
| 3894 | { |
| 3895 | operand = AddExpr() |
| 3896 | ( |
| 3897 | LOOKAHEAD(1) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3898 | <CONCAT> |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3899 | { |
| 3900 | if (op == null) { |
| 3901 | op = new OperatorExpr(); |
| 3902 | op.addOperand(operand); |
| 3903 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3904 | addSourceLocation(op, token); |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3905 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3906 | op.addOperator(OperatorType.CONCAT); |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3907 | } |
| 3908 | operand = AddExpr() |
| 3909 | { |
| 3910 | op.addOperand(operand); |
| 3911 | } |
| 3912 | )* |
| 3913 | |
| 3914 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3915 | return op == null ? operand : op; |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3916 | } |
| 3917 | } |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3918 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3919 | Expression AddExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3920 | { |
| 3921 | OperatorExpr op = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3922 | OperatorType opType = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3923 | Expression operand = null; |
| 3924 | } |
| 3925 | { |
| 3926 | operand = MultExpr() |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3927 | ( |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3928 | LOOKAHEAD(1) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3929 | (<PLUS> { opType = OperatorType.PLUS; } | <MINUS> { opType = OperatorType.MINUS; } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3930 | { |
| 3931 | if (op == null) { |
| 3932 | op = new OperatorExpr(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3933 | op.addOperand(operand); |
| 3934 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3935 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3936 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3937 | op.addOperator(opType); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3938 | } |
| 3939 | |
| 3940 | operand = MultExpr() |
| 3941 | { |
| 3942 | op.addOperand(operand); |
| 3943 | } |
| 3944 | )* |
| 3945 | |
| 3946 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3947 | return op == null ? operand : op; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3948 | } |
| 3949 | } |
| 3950 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3951 | Expression MultExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3952 | { |
| 3953 | OperatorExpr op = null; |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 3954 | OperatorType opType = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3955 | Expression operand = null; |
| 3956 | } |
| 3957 | { |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 3958 | operand = ExponentExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3959 | |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 3960 | ( ( |
| 3961 | <MUL> { opType = OperatorType.MUL; } | |
| 3962 | <DIVIDE> { opType = OperatorType.DIVIDE; } | |
| 3963 | <DIV> { opType = OperatorType.DIV; } | |
| 3964 | ( <MOD> | <PERCENT> ) { opType = OperatorType.MOD; } |
| 3965 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3966 | { |
| 3967 | if (op == null) { |
| 3968 | op = new OperatorExpr(); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 3969 | op.addOperand(operand); |
| 3970 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3971 | addSourceLocation(op, token); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 3972 | } |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 3973 | op.addOperator(opType); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 3974 | } |
| 3975 | operand = ExponentExpr() |
| 3976 | { |
| 3977 | op.addOperand(operand); |
| 3978 | } |
| 3979 | )* |
| 3980 | |
| 3981 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3982 | return op == null ? operand : op; |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 3983 | } |
| 3984 | } |
| 3985 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3986 | Expression ExponentExpr() throws ParseException: |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 3987 | { |
| 3988 | OperatorExpr op = null; |
| 3989 | Expression operand = null; |
| 3990 | } |
| 3991 | { |
| 3992 | operand = UnaryExpr() |
| 3993 | (<CARET> |
| 3994 | { |
| 3995 | if (op == null) { |
| 3996 | op = new OperatorExpr(); |
| 3997 | op.addOperand(operand); |
| 3998 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3999 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4000 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4001 | op.addOperator(OperatorType.CARET); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4002 | } |
| 4003 | operand = UnaryExpr() |
| 4004 | { |
| 4005 | op.addOperand(operand); |
| 4006 | } |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4007 | )? |
| 4008 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4009 | return op == null ? operand : op; |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4010 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4011 | } |
| 4012 | |
| 4013 | Expression UnaryExpr() throws ParseException: |
| 4014 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4015 | boolean not = false; |
| 4016 | UnaryExpr uexpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4017 | Expression expr = null; |
| 4018 | } |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 4019 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4020 | ( (<PLUS> | <MINUS> | (<NOT> { not = true; } )? <EXISTS> ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4021 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4022 | String exprType = token.image.toLowerCase(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4023 | if (not) { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4024 | exprType = "not_" + exprType; |
| 4025 | } |
| 4026 | uexpr = new UnaryExpr(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4027 | addSourceLocation(uexpr, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4028 | try { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4029 | uexpr.setExprType(exprType); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 4030 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4031 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 4032 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4033 | } |
| 4034 | )? |
| 4035 | |
| 4036 | expr = ValueExpr() |
| 4037 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4038 | if (uexpr == null) { |
| 4039 | return expr; |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4040 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4041 | uexpr.setExpr(expr); |
| 4042 | return uexpr; |
| 4043 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4044 | } |
| 4045 | } |
| 4046 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4047 | Expression ValueExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4048 | { |
| 4049 | Expression expr = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4050 | AbstractAccessor accessor = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4051 | } |
| 4052 | { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 4053 | expr = PrimaryExpr() |
| 4054 | ( |
| 4055 | accessor = FieldAccessor(accessor != null ? accessor : expr) |
| 4056 | | |
| 4057 | accessor = IndexAccessor(accessor != null ? accessor : expr) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4058 | )* |
| 4059 | { |
| 4060 | return accessor == null ? expr : accessor; |
| 4061 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4062 | } |
| 4063 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4064 | FieldAccessor FieldAccessor(Expression inputExpr) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4065 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4066 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4067 | String ident = null; |
| 4068 | } |
| 4069 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4070 | <DOT> { startToken = token; } ident = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4071 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4072 | FieldAccessor fa = new FieldAccessor(inputExpr, new Identifier(ident)); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4073 | return addSourceLocation(fa, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4074 | } |
| 4075 | } |
| 4076 | |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 4077 | AbstractAccessor IndexAccessor(Expression inputExpr) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4078 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4079 | Token startToken = null; |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4080 | boolean star = false, slice = false; |
| 4081 | Expression expr1 = null, expr2 = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4082 | } |
| 4083 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4084 | <LEFTBRACKET> { startToken = token; } |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4085 | ( |
| 4086 | <MUL> { star = true; } |
| 4087 | | |
| 4088 | ( expr1 = Expression() ( <COLON> { slice = true; } ( expr2 = Expression() )? )? ) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4089 | ) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4090 | <RIGHTBRACKET> |
| 4091 | { |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4092 | if (expr1 != null && expr1.getKind() == Expression.Kind.LITERAL_EXPRESSION) { |
| 4093 | ensureIntegerLiteral( (LiteralExpr) expr1, "Index"); |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 4094 | } |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4095 | if (expr2 != null && expr2.getKind() == Expression.Kind.LITERAL_EXPRESSION) { |
| 4096 | ensureIntegerLiteral( (LiteralExpr) expr2, "Index"); |
| 4097 | } |
| 4098 | AbstractAccessor resultAccessor; |
| 4099 | if (slice) { |
| 4100 | resultAccessor = new ListSliceExpression(inputExpr, expr1, expr2); |
| 4101 | } else if (star) { |
| 4102 | resultAccessor = new IndexAccessor(inputExpr, IndexAccessor.IndexKind.STAR, null); |
| 4103 | } else { |
| 4104 | resultAccessor = new IndexAccessor(inputExpr, IndexAccessor.IndexKind.ELEMENT, expr1); |
| 4105 | } |
| 4106 | return addSourceLocation(resultAccessor, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4107 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4108 | } |
| 4109 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4110 | Expression PrimaryExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4111 | { |
| 4112 | Expression expr = null; |
| 4113 | } |
| 4114 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 4115 | ( |
| 4116 | LOOKAHEAD(Identifier() (<DOT> Identifier())* (<SHARP> Identifier())? <LEFTPAREN>) expr = FunctionCallExpr() |
Dmitry Lychagin | 5fbd04b | 2018-04-19 16:54:28 -0700 | [diff] [blame] | 4117 | | expr = CaseExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4118 | | expr = Literal() |
| 4119 | | expr = VariableRef() |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 4120 | | expr = ExternalVariableRef() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4121 | | expr = ListConstructor() |
| 4122 | | expr = RecordConstructor() |
| 4123 | | expr = ParenthesizedExpression() |
| 4124 | ) |
| 4125 | { |
| 4126 | return expr; |
| 4127 | } |
| 4128 | } |
| 4129 | |
| 4130 | Expression Literal() throws ParseException: |
| 4131 | { |
| 4132 | LiteralExpr lit = new LiteralExpr(); |
| 4133 | String str = null; |
| 4134 | } |
| 4135 | { |
| 4136 | ( str = StringLiteral() |
| 4137 | { |
| 4138 | lit.setValue(new StringLiteral(str)); |
| 4139 | } |
| 4140 | | <INTEGER_LITERAL> |
| 4141 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 4142 | try { |
| 4143 | lit.setValue(new LongIntegerLiteral(Long.valueOf(token.image))); |
| 4144 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 4145 | 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] | 4146 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4147 | } |
| 4148 | | <FLOAT_LITERAL> |
| 4149 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 4150 | try { |
| 4151 | lit.setValue(new FloatLiteral(Float.valueOf(token.image))); |
| 4152 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 4153 | 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] | 4154 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4155 | } |
| 4156 | | <DOUBLE_LITERAL> |
| 4157 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 4158 | try { |
| 4159 | lit.setValue(new DoubleLiteral(Double.valueOf(token.image))); |
| 4160 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 4161 | 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] | 4162 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4163 | } |
Yingyi Bu | 535d86b | 2016-05-23 16:44:25 -0700 | [diff] [blame] | 4164 | | <MISSING> |
| 4165 | { |
| 4166 | lit.setValue(MissingLiteral.INSTANCE); |
| 4167 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4168 | | <NULL> |
| 4169 | { |
| 4170 | lit.setValue(NullLiteral.INSTANCE); |
| 4171 | } |
| 4172 | | <TRUE> |
| 4173 | { |
| 4174 | lit.setValue(TrueLiteral.INSTANCE); |
| 4175 | } |
| 4176 | | <FALSE> |
| 4177 | { |
| 4178 | lit.setValue(FalseLiteral.INSTANCE); |
| 4179 | } |
| 4180 | ) |
| 4181 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4182 | return addSourceLocation(lit, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4183 | } |
| 4184 | } |
| 4185 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4186 | VariableExpr VariableRef() throws ParseException: |
| 4187 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4188 | String id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4189 | } |
| 4190 | { |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 4191 | id = VariableIdentifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4192 | { |
| 4193 | Identifier ident = lookupSymbol(id); |
| 4194 | if (isInForbiddenScopes(id)) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4195 | throw new SqlppParseException(getSourceLocation(token), |
| 4196 | "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] | 4197 | } |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4198 | VariableExpr varExp; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4199 | if (ident != null) { // exist such ident |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4200 | varExp = new VariableExpr((VarIdentifier)ident); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4201 | } else { |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4202 | varExp = new VariableExpr(new VarIdentifier(id)); |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 4203 | varExp.setIsNewVar(false); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4204 | } |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4205 | return addSourceLocation(varExp, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4206 | } |
| 4207 | } |
| 4208 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4209 | VariableExpr Variable() throws ParseException: |
| 4210 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4211 | String id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4212 | } |
| 4213 | { |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 4214 | id = VariableIdentifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4215 | { |
| 4216 | Identifier ident = lookupSymbol(id); |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4217 | VariableExpr varExp = new VariableExpr(new VarIdentifier(id)); |
| 4218 | if (ident != null) { // exist such ident |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4219 | varExp.setIsNewVar(false); |
| 4220 | } |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4221 | return addSourceLocation(varExp, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4222 | } |
| 4223 | } |
| 4224 | |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 4225 | String VariableIdentifier() throws ParseException: |
| 4226 | { |
| 4227 | String id = null; |
| 4228 | } |
| 4229 | { |
| 4230 | (<IDENTIFIER> { id = token.image; } | id = QuotedString()) |
| 4231 | { |
| 4232 | return SqlppVariableUtil.toInternalVariableName(id); // prefix user-defined variables with "$". |
| 4233 | } |
| 4234 | } |
| 4235 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4236 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> VariableWithFieldMap() throws ParseException: |
| 4237 | { |
| 4238 | VariableExpr var = null; |
| 4239 | List<Pair<Expression, Identifier>> fieldList = new ArrayList<Pair<Expression, Identifier>>(); |
| 4240 | } |
| 4241 | { |
| 4242 | var = Variable() |
| 4243 | ( LOOKAHEAD(1) |
| 4244 | { |
| 4245 | VariableExpr fieldVarExpr = null; |
| 4246 | String fieldIdentifierStr = null; |
| 4247 | } |
| 4248 | <LEFTPAREN> |
| 4249 | fieldVarExpr = VariableRef() <AS> fieldIdentifierStr = Identifier() |
| 4250 | { |
| 4251 | fieldList.add(new Pair<Expression, Identifier>(fieldVarExpr, new Identifier(fieldIdentifierStr))); |
| 4252 | } |
| 4253 | (<COMMA> |
| 4254 | fieldVarExpr = VariableRef() <AS> fieldIdentifierStr = Identifier() |
| 4255 | { |
| 4256 | fieldList.add(new Pair<Expression, Identifier>(fieldVarExpr, new Identifier(fieldIdentifierStr))); |
| 4257 | } |
| 4258 | )* |
| 4259 | <RIGHTPAREN> |
| 4260 | )? |
| 4261 | { |
| 4262 | return new Pair<VariableExpr, List<Pair<Expression, Identifier>>>(var, fieldList); |
| 4263 | } |
| 4264 | } |
| 4265 | |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 4266 | VariableExpr ExternalVariableRef() throws ParseException: |
| 4267 | { |
| 4268 | String name = null; |
| 4269 | } |
| 4270 | { |
| 4271 | ( |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 4272 | <DOLLAR_IDENTIFIER> { name = token.image.substring(1); } |
| 4273 | | <DOLLAR_INTEGER_LITERAL> { name = token.image.substring(1); } |
| 4274 | | <DOLLAR_QUOTED_STRING> { name = removeQuotesAndEscapes(token.image.substring(1)); } |
| 4275 | | <QUES> { name = String.valueOf(++externalVarCounter); } |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 4276 | ) |
| 4277 | { |
| 4278 | String idName = SqlppVariableUtil.toExternalVariableName(name); |
| 4279 | VarIdentifier id = new VarIdentifier(idName); |
| 4280 | VariableExpr varExp = new VariableExpr(id); |
| 4281 | return addSourceLocation(varExp, token); |
| 4282 | } |
| 4283 | } |
| 4284 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4285 | Expression ListConstructor() throws ParseException: |
| 4286 | { |
| 4287 | Expression expr = null; |
| 4288 | } |
| 4289 | { |
| 4290 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4291 | expr = OrderedListConstructor() | |
| 4292 | expr = UnorderedListConstructor() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4293 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4294 | { |
| 4295 | return expr; |
| 4296 | } |
| 4297 | } |
| 4298 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4299 | ListConstructor OrderedListConstructor() throws ParseException: |
| 4300 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4301 | Token startToken = null; |
| 4302 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4303 | } |
| 4304 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4305 | <LEFTBRACKET> { startToken = token; } |
| 4306 | exprList = ExpressionList() |
| 4307 | <RIGHTBRACKET> |
| 4308 | { |
| 4309 | ListConstructor expr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, exprList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4310 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4311 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4312 | } |
| 4313 | |
| 4314 | ListConstructor UnorderedListConstructor() throws ParseException: |
| 4315 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4316 | Token startToken = null; |
| 4317 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4318 | } |
| 4319 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4320 | <LEFTDBLBRACE> { startToken = token; } |
| 4321 | exprList = ExpressionList() |
| 4322 | <RIGHTDBLBRACE> |
| 4323 | { |
| 4324 | ListConstructor expr = new ListConstructor(ListConstructor.Type.UNORDERED_LIST_CONSTRUCTOR, exprList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4325 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4326 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4327 | } |
| 4328 | |
| 4329 | List<Expression> ExpressionList() throws ParseException: |
| 4330 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4331 | Expression expr = null; |
| 4332 | List<Expression> exprList = new ArrayList<Expression>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4333 | } |
| 4334 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4335 | ( |
| 4336 | expr = Expression() |
| 4337 | { |
| 4338 | exprList.add(expr); |
| 4339 | } |
| 4340 | ( <COMMA> expr = Expression() |
Till Westmann | 60f8998 | 2017-08-11 18:14:20 -0700 | [diff] [blame] | 4341 | { |
| 4342 | exprList.add(expr); |
| 4343 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4344 | )* |
| 4345 | )? |
| 4346 | { |
| 4347 | return exprList; |
| 4348 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4349 | } |
| 4350 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4351 | RecordConstructor RecordConstructor() throws ParseException: |
| 4352 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4353 | Token startToken = null; |
| 4354 | FieldBinding fb = null; |
| 4355 | List<FieldBinding> fbList = new ArrayList<FieldBinding>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4356 | } |
| 4357 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4358 | <LEFTBRACE> { startToken = token; } |
| 4359 | ( |
| 4360 | fb = FieldBinding() { fbList.add(fb); } |
| 4361 | (<COMMA> fb = FieldBinding() { fbList.add(fb); })* |
| 4362 | )? |
| 4363 | <RIGHTBRACE> |
| 4364 | { |
| 4365 | RecordConstructor expr = new RecordConstructor(fbList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4366 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4367 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4368 | } |
| 4369 | |
| 4370 | FieldBinding FieldBinding() throws ParseException: |
| 4371 | { |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4372 | Expression left, right = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4373 | } |
| 4374 | { |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4375 | left = Expression() ( <COLON> right = Expression() )? |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4376 | { |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4377 | if (right == null) { |
| 4378 | String generatedIdentifier = ExpressionToVariableUtil.getGeneratedIdentifier(left, false); |
| 4379 | if (generatedIdentifier == null) { |
| 4380 | throw new SqlppParseException(getSourceLocation(token), "Cannot infer field name"); |
| 4381 | } |
| 4382 | String generatedName = SqlppVariableUtil.toUserDefinedName(generatedIdentifier); |
Ali Alsuliman | 5760e9e | 2019-08-22 16:37:36 -0700 | [diff] [blame] | 4383 | LiteralExpr generatedNameExpr = new LiteralExpr(new StringLiteral(generatedName)); |
| 4384 | generatedNameExpr.setSourceLocation(left.getSourceLocation()); |
| 4385 | return new FieldBinding(generatedNameExpr, left); |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4386 | } else { |
| 4387 | return new FieldBinding(left, right); |
| 4388 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4389 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4390 | } |
| 4391 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4392 | Expression FunctionCallExpr() throws ParseException: |
| 4393 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4394 | List<Expression> argList = new ArrayList<Expression>(); |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4395 | Expression argExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4396 | FunctionName funcName = null; |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 4397 | boolean star = false; |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 4398 | boolean distinct = false; |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4399 | Expression filterExpr = null; |
| 4400 | WindowExpression windowExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4401 | } |
| 4402 | { |
| 4403 | funcName = FunctionName() |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 4404 | <LEFTPAREN> ( |
| 4405 | ( <DISTINCT> { distinct = true; } )? |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4406 | ( argExpr = Expression() | <MUL> { star = true; } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4407 | { |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4408 | if (star) { |
| 4409 | if (funcName.function.equalsIgnoreCase(BuiltinFunctions.SCALAR_COUNT.getName())) { |
| 4410 | argExpr = new LiteralExpr(new LongIntegerLiteral(1L)); |
| 4411 | } else { |
| 4412 | throw new SqlppParseException(getSourceLocation(token), |
| 4413 | "The parameter * can only be used in " + BuiltinFunctions.SCALAR_COUNT.getName() + "()."); |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 4414 | } |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 4415 | } |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4416 | argList.add(argExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4417 | } |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4418 | (<COMMA> argExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4419 | { |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4420 | argList.add(argExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4421 | } |
| 4422 | )*)? <RIGHTPAREN> |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4423 | |
| 4424 | { |
| 4425 | String name = funcName.function; |
| 4426 | if (distinct) { |
| 4427 | name += FunctionMapUtil.DISTINCT_AGGREGATE_SUFFIX; |
| 4428 | } |
| 4429 | String fqFunctionName = funcName.library == null ? name : funcName.library + "#" + name; |
| 4430 | int arity = argList.size(); |
| 4431 | FunctionSignature signature = lookupFunctionSignature(funcName.dataverse, fqFunctionName, arity); |
| 4432 | if (signature == null) { |
| 4433 | signature = new FunctionSignature(funcName.dataverse, fqFunctionName, arity); |
| 4434 | } |
| 4435 | } |
| 4436 | |
| 4437 | ( <FILTER> <LEFTPAREN> <WHERE> filterExpr = Expression() <RIGHTPAREN> )? |
| 4438 | |
| 4439 | ( LOOKAHEAD(5) windowExpr = WindowExpr(signature, argList, filterExpr) )? |
| 4440 | |
| 4441 | { |
| 4442 | if (windowExpr != null) { |
| 4443 | return windowExpr; |
| 4444 | } else { |
| 4445 | CallExpr callExpr = new CallExpr(signature, argList, filterExpr); |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 4446 | if (funcName.hintToken != null) { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 4447 | IExpressionAnnotation annotation = parseExpressionAnnotation(funcName.hintToken); |
| 4448 | if (annotation != null) { |
| 4449 | callExpr.addHint(annotation); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4450 | } |
| 4451 | } |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4452 | FunctionMapUtil.normalizedListInputFunctions(callExpr); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4453 | callExpr.setSourceLocation(funcName.sourceLoc); |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4454 | return callExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4455 | } |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 4456 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4457 | } |
| 4458 | |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4459 | WindowExpression WindowExpr(FunctionSignature signature, List<Expression> argList, Expression aggFilterExpr) |
| 4460 | throws ParseException: |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4461 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4462 | WindowExpression windowExpr = null; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4463 | Boolean fromLast = null, ignoreNulls = null; |
| 4464 | } |
| 4465 | { |
| 4466 | ( |
| 4467 | // FROM ( FIRST | LAST ) ( ( RESPECT | IGNORE ) NULLS )? OVER |
| 4468 | LOOKAHEAD(5, <FROM> <IDENTIFIER> ( <IDENTIFIER> <IDENTIFIER> )? <OVER>) |
| 4469 | <FROM> <IDENTIFIER> |
| 4470 | { |
| 4471 | if (isToken(FIRST)) { |
| 4472 | fromLast = false; |
| 4473 | } else if (isToken(LAST)) { |
| 4474 | fromLast = true; |
| 4475 | } else { |
| 4476 | throw createUnexpectedTokenError(); |
| 4477 | } |
| 4478 | } |
| 4479 | )? |
| 4480 | ( |
| 4481 | // ( RESPECT | IGNORE ) NULLS OVER |
| 4482 | LOOKAHEAD(3, <IDENTIFIER> <IDENTIFIER> <OVER>) |
| 4483 | <IDENTIFIER> |
| 4484 | { |
| 4485 | if (isToken(RESPECT)) { |
| 4486 | ignoreNulls = false; |
| 4487 | } else if (isToken(IGNORE)) { |
| 4488 | ignoreNulls = true; |
| 4489 | } else { |
| 4490 | throw createUnexpectedTokenError(); |
| 4491 | } |
| 4492 | } |
| 4493 | <IDENTIFIER> |
| 4494 | { |
| 4495 | if (!isToken(NULLS)) { |
| 4496 | throw createUnexpectedTokenError(); |
| 4497 | } |
| 4498 | } |
| 4499 | )? |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4500 | <OVER> windowExpr = OverClause(signature, argList, aggFilterExpr, token, fromLast, ignoreNulls) |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4501 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4502 | return windowExpr; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4503 | } |
| 4504 | } |
| 4505 | |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4506 | WindowExpression OverClause(FunctionSignature signature, List<Expression> argList, Expression aggFilterExpr, |
| 4507 | Token startToken, Boolean fromLast, Boolean ignoreNulls) throws ParseException: |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4508 | { |
| 4509 | Expression partitionExpr = null; |
| 4510 | List<Expression> partitionExprs = new ArrayList<Expression>(); |
| 4511 | OrderbyClause orderByClause = null; |
| 4512 | List<Expression> orderbyList = null; |
| 4513 | List<OrderbyClause.OrderModifier> orderbyModifierList = null; |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4514 | List<OrderbyClause.NullOrderModifier> orderbyNullModifierList = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4515 | WindowExpression.FrameMode frameMode = null; |
| 4516 | Pair<WindowExpression.FrameBoundaryKind, Expression> frameStart = null, frameEnd = null; |
| 4517 | WindowExpression.FrameBoundaryKind frameStartKind = null, frameEndKind = null; |
| 4518 | Expression frameStartExpr = null, frameEndExpr = null; |
| 4519 | WindowExpression.FrameExclusionKind frameExclusionKind = null; |
| 4520 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> windowVarWithFieldList = null; |
| 4521 | VariableExpr windowVar = null; |
| 4522 | List<Pair<Expression, Identifier>> windowFieldList = null; |
| 4523 | } |
| 4524 | { |
| 4525 | ( |
| 4526 | windowVarWithFieldList = VariableWithFieldMap() <AS> |
| 4527 | { |
| 4528 | windowVar = windowVarWithFieldList.first; |
| 4529 | windowFieldList = windowVarWithFieldList.second; |
| 4530 | } |
| 4531 | )? |
| 4532 | <LEFTPAREN> |
| 4533 | ( |
| 4534 | <IDENTIFIER> { expectToken(PARTITION); } <BY> |
| 4535 | partitionExpr = Expression() { partitionExprs.add(partitionExpr); } |
| 4536 | ( <COMMA> partitionExpr = Expression() { partitionExprs.add(partitionExpr); } )* |
| 4537 | )? |
| 4538 | ( |
| 4539 | orderByClause = OrderbyClause() |
| 4540 | { |
| 4541 | orderbyList = orderByClause.getOrderbyList(); |
| 4542 | orderbyModifierList = orderByClause.getModifierList(); |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4543 | orderbyNullModifierList = orderByClause.getNullModifierList(); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4544 | } |
| 4545 | ( |
| 4546 | frameMode = WindowFrameMode() |
| 4547 | ( |
| 4548 | frameStart = WindowFrameBoundary() | |
| 4549 | ( <BETWEEN> frameStart = WindowFrameBoundary() <AND> frameEnd = WindowFrameBoundary() ) |
| 4550 | ) |
| 4551 | ( frameExclusionKind = WindowFrameExclusion() )? |
| 4552 | { |
| 4553 | frameStartKind = frameStart.first; |
| 4554 | frameStartExpr = frameStart.second; |
| 4555 | if (frameEnd == null) { |
| 4556 | frameEndKind = WindowExpression.FrameBoundaryKind.CURRENT_ROW; |
| 4557 | } else { |
| 4558 | frameEndKind = frameEnd.first; |
| 4559 | frameEndExpr = frameEnd.second; |
| 4560 | } |
| 4561 | if (frameExclusionKind == null) { |
| 4562 | frameExclusionKind = WindowExpression.FrameExclusionKind.NO_OTHERS; |
| 4563 | } |
| 4564 | } |
| 4565 | )? |
| 4566 | )? |
| 4567 | <RIGHTPAREN> |
| 4568 | { |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4569 | WindowExpression winExpr = new WindowExpression(signature, argList, aggFilterExpr, partitionExprs, orderbyList, |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4570 | orderbyModifierList, orderbyNullModifierList, frameMode, frameStartKind, frameStartExpr, frameEndKind, |
| 4571 | frameEndExpr, frameExclusionKind, windowVar, windowFieldList, ignoreNulls, fromLast); |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4572 | return addSourceLocation(winExpr, startToken); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4573 | } |
| 4574 | } |
| 4575 | |
| 4576 | WindowExpression.FrameMode WindowFrameMode() throws ParseException: |
| 4577 | { |
| 4578 | } |
| 4579 | { |
| 4580 | <IDENTIFIER> |
| 4581 | { |
| 4582 | if (isToken(RANGE)) { |
| 4583 | return WindowExpression.FrameMode.RANGE; |
| 4584 | } else if (isToken(ROWS)) { |
| 4585 | return WindowExpression.FrameMode.ROWS; |
| 4586 | } else if (isToken(GROUPS)) { |
| 4587 | return WindowExpression.FrameMode.GROUPS; |
| 4588 | } else { |
| 4589 | throw createUnexpectedTokenError(); |
| 4590 | } |
| 4591 | } |
| 4592 | } |
| 4593 | |
| 4594 | Pair<WindowExpression.FrameBoundaryKind, Expression> WindowFrameBoundary() throws ParseException: |
| 4595 | { |
| 4596 | boolean current = false; |
| 4597 | Expression expr = null; |
| 4598 | } |
| 4599 | { |
| 4600 | ( |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4601 | LOOKAHEAD({ laIdentifier(CURRENT) || laIdentifier(UNBOUNDED) }) <IDENTIFIER> { current = isToken(CURRENT); } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4602 | | expr = Expression() |
| 4603 | ) |
| 4604 | <IDENTIFIER> |
| 4605 | { |
| 4606 | WindowExpression.FrameBoundaryKind kind; |
| 4607 | if (current && isToken(ROW)) { |
| 4608 | kind = WindowExpression.FrameBoundaryKind.CURRENT_ROW; |
| 4609 | } else if (!current && isToken(PRECEDING)) { |
| 4610 | kind = expr == null |
| 4611 | ? WindowExpression.FrameBoundaryKind.UNBOUNDED_PRECEDING |
| 4612 | : WindowExpression.FrameBoundaryKind.BOUNDED_PRECEDING; |
| 4613 | } else if (!current && isToken(FOLLOWING)) { |
| 4614 | kind = expr == null |
| 4615 | ? WindowExpression.FrameBoundaryKind.UNBOUNDED_FOLLOWING |
| 4616 | : WindowExpression.FrameBoundaryKind.BOUNDED_FOLLOWING; |
| 4617 | } else { |
| 4618 | throw createUnexpectedTokenError(); |
| 4619 | } |
| 4620 | return new Pair<WindowExpression.FrameBoundaryKind, Expression>(kind, expr); |
| 4621 | } |
| 4622 | } |
| 4623 | |
| 4624 | WindowExpression.FrameExclusionKind WindowFrameExclusion() throws ParseException: |
| 4625 | { |
| 4626 | boolean current = false, no = false; |
| 4627 | } |
| 4628 | { |
| 4629 | <IDENTIFIER> |
| 4630 | { |
| 4631 | expectToken(EXCLUDE); |
| 4632 | } |
| 4633 | ( |
| 4634 | <GROUP> |
| 4635 | { |
| 4636 | return WindowExpression.FrameExclusionKind.GROUP; |
| 4637 | } |
| 4638 | | |
| 4639 | ( |
| 4640 | <IDENTIFIER> |
| 4641 | { |
| 4642 | if (isToken(TIES)) { |
| 4643 | return WindowExpression.FrameExclusionKind.TIES; |
| 4644 | } else if (isToken(CURRENT)) { |
| 4645 | current = true; |
| 4646 | } else if (isToken(NO)) { |
| 4647 | no = true; |
| 4648 | } else { |
| 4649 | throw createUnexpectedTokenError(); |
| 4650 | } |
| 4651 | } |
| 4652 | <IDENTIFIER> |
| 4653 | { |
| 4654 | if (current && isToken(ROW)) { |
| 4655 | return WindowExpression.FrameExclusionKind.CURRENT_ROW; |
| 4656 | } else if (no && isToken(OTHERS)) { |
| 4657 | return WindowExpression.FrameExclusionKind.NO_OTHERS; |
| 4658 | } else { |
| 4659 | throw createUnexpectedTokenError(); |
| 4660 | } |
| 4661 | } |
| 4662 | ) |
| 4663 | ) |
| 4664 | } |
| 4665 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4666 | Expression ParenthesizedExpression() throws ParseException: |
| 4667 | { |
Dmitry Lychagin | e963059 | 2021-08-30 15:29:30 -0700 | [diff] [blame] | 4668 | Token startToken = null; |
| 4669 | Expression expr = null, expr2 = null; |
| 4670 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4671 | } |
| 4672 | { |
| 4673 | ( |
| 4674 | LOOKAHEAD(2) |
Dmitry Lychagin | e963059 | 2021-08-30 15:29:30 -0700 | [diff] [blame] | 4675 | <LEFTPAREN> { startToken = token; } expr = Expression() |
| 4676 | ( |
| 4677 | <COMMA> expr2 = Expression() |
| 4678 | { |
| 4679 | if (exprList == null) { |
| 4680 | exprList = new ArrayList<Expression>(); |
| 4681 | exprList.add(expr); |
| 4682 | } |
| 4683 | exprList.add(expr2); |
| 4684 | } |
| 4685 | )* |
| 4686 | <RIGHTPAREN> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4687 | | |
| 4688 | expr = Subquery() |
| 4689 | ) |
| 4690 | { |
Dmitry Lychagin | e963059 | 2021-08-30 15:29:30 -0700 | [diff] [blame] | 4691 | if (exprList != null) { |
| 4692 | ListConstructor listExpr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, exprList); |
| 4693 | return addSourceLocation(listExpr, startToken); |
| 4694 | } else { |
| 4695 | return expr; |
| 4696 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4697 | } |
| 4698 | } |
| 4699 | |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4700 | Expression CaseExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4701 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4702 | Token startToken = null; |
| 4703 | Expression conditionExpr = null; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4704 | List<Expression> whenExprs = new ArrayList<Expression>(); |
| 4705 | List<Expression> thenExprs = new ArrayList<Expression>(); |
| 4706 | Expression elseExpr = null; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4707 | Expression whenExpr = null; |
| 4708 | Expression thenExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4709 | } |
| 4710 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4711 | <CASE> { startToken = token; } |
| 4712 | ( conditionExpr = Expression() )? |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4713 | ( |
| 4714 | <WHEN> whenExpr = Expression() |
| 4715 | { |
| 4716 | whenExprs.add(whenExpr); |
| 4717 | } |
| 4718 | <THEN> thenExpr = Expression() |
| 4719 | { |
| 4720 | thenExprs.add(thenExpr); |
| 4721 | } |
| 4722 | )* |
| 4723 | (<ELSE> elseExpr = Expression() )? |
| 4724 | <END> |
| 4725 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4726 | if (conditionExpr == null) { |
| 4727 | LiteralExpr litExpr = new LiteralExpr(TrueLiteral.INSTANCE); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4728 | conditionExpr = addSourceLocation(litExpr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4729 | } |
| 4730 | CaseExpression caseExpr = new CaseExpression(conditionExpr, whenExprs, thenExprs, elseExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4731 | return addSourceLocation(caseExpr, startToken); |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4732 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4733 | } |
| 4734 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4735 | SelectExpression SelectExpression(boolean subquery) throws ParseException: |
| 4736 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4737 | List<LetClause> letClauses = new ArrayList<LetClause>(); |
| 4738 | SelectSetOperation selectSetOperation; |
| 4739 | OrderbyClause orderbyClause = null; |
| 4740 | LimitClause limitClause = null; |
| 4741 | createNewScope(); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4742 | } |
| 4743 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4744 | ( letClauses = LetClause() )? |
| 4745 | selectSetOperation = SelectSetOperation() |
| 4746 | (orderbyClause = OrderbyClause() {})? |
| 4747 | (limitClause = LimitClause() {})? |
| 4748 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4749 | SelectExpression selectExpr = |
| 4750 | new SelectExpression(letClauses, selectSetOperation, orderbyClause, limitClause, subquery); |
| 4751 | selectExpr.setSourceLocation((!letClauses.isEmpty() ? letClauses.get(0) : selectSetOperation).getSourceLocation()); |
| 4752 | return selectExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4753 | } |
| 4754 | } |
| 4755 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4756 | SelectSetOperation SelectSetOperation() throws ParseException: |
| 4757 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4758 | SetOperationInput setOperationInputLeft; |
| 4759 | List<SetOperationRight> setOperationRights = new ArrayList<SetOperationRight>(); |
| 4760 | } |
| 4761 | { |
| 4762 | { |
| 4763 | SelectBlock selectBlockLeft = null; |
| 4764 | SelectExpression subqueryLeft = null; |
| 4765 | Expression expr = null; |
| 4766 | } |
| 4767 | selectBlockLeft = SelectBlock() |
| 4768 | { |
| 4769 | setOperationInputLeft = new SetOperationInput(selectBlockLeft, subqueryLeft); |
| 4770 | } |
| 4771 | ( |
| 4772 | { |
| 4773 | SetOpType opType = SetOpType.UNION; |
| 4774 | boolean setSemantics = true; |
| 4775 | SelectBlock selectBlockRight = null; |
| 4776 | SelectExpression subqueryRight = null; |
| 4777 | } |
| 4778 | (<UNION> {opType = SetOpType.UNION;} |<INTERSECT> {opType = SetOpType.INTERSECT;} |<EXCEPT> {opType = SetOpType.EXCEPT;}) (<ALL> {setSemantics = false;} )? |
| 4779 | (selectBlockRight = SelectBlock()| subqueryRight = Subquery()) |
| 4780 | { |
| 4781 | setOperationRights.add(new SetOperationRight(opType, setSemantics, new SetOperationInput(selectBlockRight, subqueryRight))); |
| 4782 | } |
| 4783 | )* |
| 4784 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4785 | SelectSetOperation selectSetOp = new SelectSetOperation(setOperationInputLeft, setOperationRights); |
| 4786 | selectSetOp.setSourceLocation(selectBlockLeft.getSourceLocation()); |
| 4787 | return selectSetOp; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4788 | } |
| 4789 | } |
| 4790 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4791 | SelectExpression Subquery() throws ParseException: |
| 4792 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4793 | SelectExpression selectExpr = null; |
| 4794 | } |
| 4795 | { |
| 4796 | <LEFTPAREN> selectExpr = SelectExpression(true) {} <RIGHTPAREN> |
| 4797 | { |
| 4798 | return selectExpr; |
| 4799 | } |
| 4800 | } |
| 4801 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4802 | SelectBlock SelectBlock() throws ParseException: |
| 4803 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4804 | SelectClause selectClause = null; |
| 4805 | FromClause fromClause = null; |
| 4806 | List<LetClause> fromLetClauses = null; |
| 4807 | WhereClause whereClause = null; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 4808 | List<AbstractClause> fromLetWhereClauses = new ArrayList<AbstractClause>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4809 | GroupbyClause groupbyClause = null; |
| 4810 | List<LetClause> gbyLetClauses = null; |
| 4811 | HavingClause havingClause = null; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 4812 | List<AbstractClause> gbyLetHavingClauses = new ArrayList<AbstractClause>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4813 | SourceLocation startSrcLoc = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4814 | } |
| 4815 | { |
| 4816 | ( |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4817 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4818 | selectClause = SelectClause() { startSrcLoc = selectClause.getSourceLocation(); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4819 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4820 | ( |
Dmitry Lychagin | 368092d | 2019-06-06 14:39:38 -0700 | [diff] [blame] | 4821 | fromClause = FromClause() |
| 4822 | ( |
| 4823 | fromLetClauses = LetClause() |
| 4824 | )? |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4825 | (whereClause = WhereClause())? |
| 4826 | ( |
| 4827 | groupbyClause = GroupbyClause() |
| 4828 | ( |
| 4829 | gbyLetClauses = LetClause() |
| 4830 | )? |
| 4831 | (havingClause = HavingClause())? |
| 4832 | )? |
Dmitry Lychagin | 368092d | 2019-06-06 14:39:38 -0700 | [diff] [blame] | 4833 | ) |
| 4834 | | |
| 4835 | ( |
| 4836 | fromLetClauses = LetClause() |
| 4837 | { |
| 4838 | // LET without FROM -> create dummy FROM clause: FROM {{missing}} AS #0 |
| 4839 | SourceLocation sourceLoc = getSourceLocation(token); |
| 4840 | LiteralExpr missingExpr = new LiteralExpr(MissingLiteral.INSTANCE); |
| 4841 | missingExpr.setSourceLocation(sourceLoc); |
| 4842 | List<Expression> list = new ArrayList<Expression>(1); |
| 4843 | list.add(missingExpr); |
| 4844 | ListConstructor listExpr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, list); |
| 4845 | listExpr.setSourceLocation(sourceLoc); |
| 4846 | List<FromTerm> fromTerms = new ArrayList<FromTerm>(1); |
| 4847 | VariableExpr fromVar = new VariableExpr(new VarIdentifier("#0")); |
| 4848 | fromVar.setSourceLocation(sourceLoc); |
| 4849 | fromTerms.add(new FromTerm(listExpr, fromVar, null, new ArrayList<AbstractBinaryCorrelateClause>())); |
| 4850 | fromClause = new FromClause(fromTerms); |
| 4851 | } |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4852 | (whereClause = WhereClause())? |
Dmitry Lychagin | 368092d | 2019-06-06 14:39:38 -0700 | [diff] [blame] | 4853 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4854 | )? |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4855 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4856 | | |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4857 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4858 | fromClause = FromClause() { startSrcLoc = fromClause.getSourceLocation(); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4859 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4860 | fromLetClauses = LetClause() |
| 4861 | )? |
| 4862 | (whereClause = WhereClause())? |
| 4863 | ( |
| 4864 | groupbyClause = GroupbyClause() |
| 4865 | ( |
| 4866 | gbyLetClauses = LetClause() |
| 4867 | )? |
| 4868 | (havingClause = HavingClause())? |
| 4869 | )? |
| 4870 | selectClause = SelectClause() |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4871 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4872 | ) |
| 4873 | { |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 4874 | if (fromLetClauses != null) { |
| 4875 | fromLetWhereClauses.addAll(fromLetClauses); |
| 4876 | } |
| 4877 | if (whereClause != null) { |
| 4878 | fromLetWhereClauses.add(whereClause); |
| 4879 | } |
| 4880 | if (gbyLetClauses != null) { |
| 4881 | gbyLetHavingClauses.addAll(gbyLetClauses); |
| 4882 | } |
| 4883 | if (havingClause != null) { |
| 4884 | gbyLetHavingClauses.add(havingClause); |
| 4885 | } |
| 4886 | SelectBlock selectBlock = new SelectBlock(selectClause, fromClause, fromLetWhereClauses, groupbyClause, |
| 4887 | gbyLetHavingClauses); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4888 | selectBlock.setSourceLocation(startSrcLoc); |
| 4889 | return selectBlock; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4890 | } |
| 4891 | } |
| 4892 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4893 | SelectClause SelectClause() throws ParseException: |
| 4894 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4895 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4896 | SelectRegular selectRegular = null; |
| 4897 | SelectElement selectElement = null; |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4898 | List<List<String>> fieldExclusions = new ArrayList<List<String>>(); |
| 4899 | List<String> nestedField = new ArrayList<String>(); |
| 4900 | String identifier; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4901 | boolean distinct = false; |
| 4902 | } |
| 4903 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4904 | <SELECT> { startToken = token; } (<ALL>|<DISTINCT> { distinct = true; } )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4905 | ( |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4906 | ( |
| 4907 | selectRegular = SelectRegular() |
| 4908 | ( LOOKAHEAD({laIdentifier(EXCLUDE)}) <IDENTIFIER> |
| 4909 | identifier = Identifier() { nestedField.add(identifier); } |
| 4910 | ( <DOT> identifier = Identifier() { nestedField.add(identifier); } )* |
| 4911 | { |
| 4912 | fieldExclusions.add(nestedField); |
| 4913 | nestedField = new ArrayList<String>(); |
| 4914 | } |
| 4915 | ( LOOKAHEAD(1) // Force <COMMA> to be recognized for a nested field in our EXCLUDE list. |
| 4916 | <COMMA> identifier = Identifier() { nestedField.add(identifier); } |
| 4917 | ( <DOT> identifier = Identifier() { nestedField.add(identifier); } )* |
| 4918 | { |
| 4919 | fieldExclusions.add(nestedField); |
| 4920 | nestedField = new ArrayList<String>(); |
| 4921 | } |
| 4922 | )* |
| 4923 | )? |
| 4924 | ) |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 4925 | | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4926 | selectElement = SelectElement() |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 4927 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4928 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4929 | SourceLocation sourceLoc = getSourceLocation(startToken); |
| 4930 | if (selectRegular == null && selectElement == null){ |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 4931 | Projection projection = new Projection(Projection.Kind.STAR, null, null); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4932 | projection.setSourceLocation(sourceLoc); |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 4933 | List<Projection> projections = new ArrayList<Projection>(); |
| 4934 | projections.add(projection); |
| 4935 | selectRegular = new SelectRegular(projections); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4936 | selectRegular.setSourceLocation(sourceLoc); |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 4937 | } |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4938 | SelectClause selectClause = new SelectClause(selectElement, selectRegular, fieldExclusions, distinct); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4939 | selectClause.setSourceLocation(sourceLoc); |
| 4940 | return selectClause; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4941 | } |
| 4942 | } |
| 4943 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4944 | SelectRegular SelectRegular() throws ParseException: |
| 4945 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4946 | SourceLocation startSrcLoc = null; |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 4947 | List<Projection> projections = new ArrayList<Projection>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4948 | Projection projection = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4949 | } |
| 4950 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4951 | projection = Projection() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4952 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4953 | projections.add(projection); |
| 4954 | startSrcLoc = projection.getSourceLocation(); |
| 4955 | } |
| 4956 | ( LOOKAHEAD(2) <COMMA> projection = Projection() |
| 4957 | { |
| 4958 | projections.add(projection); |
| 4959 | } |
| 4960 | )* |
| 4961 | { |
| 4962 | SelectRegular selectRegular = new SelectRegular(projections); |
| 4963 | selectRegular.setSourceLocation(startSrcLoc); |
| 4964 | return selectRegular; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4965 | } |
| 4966 | } |
| 4967 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4968 | SelectElement SelectElement() throws ParseException: |
| 4969 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4970 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4971 | Expression expr = null; |
| 4972 | String name = null; |
| 4973 | } |
| 4974 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4975 | (<RAW>|<ELEMENT>|<VALUE>) { startToken = token; } expr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4976 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4977 | SelectElement selectElement = new SelectElement(expr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4978 | return addSourceLocation(selectElement, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4979 | } |
| 4980 | } |
| 4981 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4982 | Projection Projection() throws ParseException : |
| 4983 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4984 | SourceLocation startSrcLoc = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4985 | Expression expr = null; |
| 4986 | Identifier identifier = null; |
| 4987 | String name = null; |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 4988 | Projection.Kind kind = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4989 | boolean star = false; |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 4990 | boolean varStar = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4991 | } |
| 4992 | { |
| 4993 | ( |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 4994 | <MUL> { kind = Projection.Kind.STAR; startSrcLoc = getSourceLocation(token); } |
| 4995 | | LOOKAHEAD(3) expr = VariableRef() <DOT> <MUL> { kind = Projection.Kind.VAR_STAR; } |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4996 | | expr = Expression() |
| 4997 | ( // EXCLUDE is a soft-keyword-- we want to avoid mistaking EXCLUDE as an identifier here. |
| 4998 | LOOKAHEAD({ getToken(1).kind == AS || getToken(1).kind == QUOTED_STRING |
| 4999 | || (getToken(1).kind == IDENTIFIER && !laIdentifier(1, EXCLUDE)) }) |
| 5000 | (<AS>)? name = Identifier() |
| 5001 | )? |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 5002 | { |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 5003 | kind = Projection.Kind.NAMED_EXPR; |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 5004 | if (name == null) { |
| 5005 | String generatedColumnIdentifier = ExpressionToVariableUtil.getGeneratedIdentifier(expr, false); |
| 5006 | if (generatedColumnIdentifier != null) { |
| 5007 | name = SqlppVariableUtil.toUserDefinedName(generatedColumnIdentifier); |
| 5008 | } |
| 5009 | } |
| 5010 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5011 | ) |
| 5012 | { |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 5013 | Projection projection = new Projection(kind, expr, name); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5014 | projection.setSourceLocation(expr != null ? expr.getSourceLocation() : startSrcLoc); |
| 5015 | return projection; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5016 | } |
| 5017 | } |
| 5018 | |
| 5019 | FromClause FromClause() throws ParseException : |
| 5020 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5021 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5022 | List<FromTerm> fromTerms = new ArrayList<FromTerm>(); |
| 5023 | extendCurrentScope(); |
| 5024 | } |
| 5025 | { |
| 5026 | { |
| 5027 | FromTerm fromTerm = null; |
| 5028 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5029 | <FROM> { startToken = token; } fromTerm = FromTerm() { fromTerms.add(fromTerm); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5030 | (LOOKAHEAD(2) <COMMA> fromTerm = FromTerm() { fromTerms.add(fromTerm); } )* |
| 5031 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5032 | FromClause fromClause = new FromClause(fromTerms); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5033 | return addSourceLocation(fromClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5034 | } |
| 5035 | } |
| 5036 | |
| 5037 | FromTerm FromTerm() throws ParseException : |
| 5038 | { |
| 5039 | Expression leftExpr = null; |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 5040 | VariableExpr leftVar = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5041 | VariableExpr posVar = null; |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5042 | AbstractBinaryCorrelateClause correlateClause = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5043 | List<AbstractBinaryCorrelateClause> correlateClauses = new ArrayList<AbstractBinaryCorrelateClause>(); |
| 5044 | } |
| 5045 | { |
Ali Alsuliman | ba91b1c | 2023-02-22 21:33:55 -0800 | [diff] [blame] | 5046 | leftExpr = Expression() |
| 5047 | { |
| 5048 | if (leftExpr.getKind() == Expression.Kind.VARIABLE_EXPRESSION) { |
| 5049 | Token hintToken = fetchHint(token, SqlppHint.SUBPATH_HINT); |
| 5050 | if (hintToken != null) { |
| 5051 | String subPath = hintToken.hintParams; |
| 5052 | ((VariableExpr) leftExpr).addHint(new ExternalSubpathAnnotation(subPath)); |
| 5053 | } |
| 5054 | } |
| 5055 | } ((<AS>)? leftVar = Variable())? (<AT> posVar = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5056 | ( |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5057 | ( |
| 5058 | correlateClause = JoinOrUnnestClause(JoinType.INNER, UnnestType.INNER) |
| 5059 | | ( <INNER> correlateClause = JoinOrUnnestClause(JoinType.INNER, UnnestType.INNER) ) |
| 5060 | | ( <LEFT> ( <OUTER> )? correlateClause = JoinOrUnnestClause(JoinType.LEFTOUTER, UnnestType.LEFTOUTER) ) |
| 5061 | | ( <RIGHT> ( <OUTER> )? correlateClause = JoinClause(JoinType.RIGHTOUTER) ) |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5062 | | ( <CROSS> correlateClause = CrossJoinClause() ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5063 | ) |
| 5064 | { |
| 5065 | correlateClauses.add(correlateClause); |
| 5066 | } |
| 5067 | )* |
| 5068 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5069 | if (leftVar == null) { |
Yingyi Bu | 5b2d4c8 | 2016-07-13 17:56:48 -0700 | [diff] [blame] | 5070 | leftVar = ExpressionToVariableUtil.getGeneratedVariable(leftExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 5071 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5072 | FromTerm fromTerm = new FromTerm(leftExpr, leftVar, posVar, correlateClauses); |
| 5073 | fromTerm.setSourceLocation(leftExpr.getSourceLocation()); |
| 5074 | return fromTerm; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5075 | } |
| 5076 | } |
| 5077 | |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5078 | AbstractBinaryCorrelateClause JoinOrUnnestClause(JoinType joinType, UnnestType unnestType) throws ParseException : |
| 5079 | { |
| 5080 | AbstractBinaryCorrelateClause correlateClause = null; |
| 5081 | } |
| 5082 | { |
| 5083 | ( correlateClause = JoinClause(joinType) | correlateClause = UnnestClause(unnestType) ) |
| 5084 | { |
| 5085 | return correlateClause; |
| 5086 | } |
| 5087 | } |
| 5088 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5089 | JoinClause JoinClause(JoinType joinType) throws ParseException : |
| 5090 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5091 | Token startToken = null; |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5092 | Triple<Expression, VariableExpr, VariableExpr> rightInput = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5093 | Expression conditionExpr = null; |
| 5094 | } |
| 5095 | { |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5096 | <JOIN> { startToken = token; } rightInput = JoinClauseRightInput() <ON> conditionExpr = Expression() |
| 5097 | { |
| 5098 | JoinClause joinClause = new JoinClause(joinType, rightInput.first, rightInput.second, rightInput.third, |
Dmitry Lychagin | 34b72ac | 2021-11-29 16:25:40 -0800 | [diff] [blame] | 5099 | conditionExpr, joinType == JoinType.INNER ? null : Literal.Type.MISSING); |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5100 | return addSourceLocation(joinClause, startToken); |
| 5101 | } |
| 5102 | } |
| 5103 | |
| 5104 | JoinClause CrossJoinClause() throws ParseException : |
| 5105 | { |
| 5106 | Token startToken = null; |
| 5107 | Triple<Expression, VariableExpr, VariableExpr> rightInput = null; |
| 5108 | Expression conditionExpr = null; |
| 5109 | } |
| 5110 | { |
| 5111 | <JOIN> { startToken = token; } rightInput = JoinClauseRightInput() |
| 5112 | { |
| 5113 | JoinClause joinClause = new JoinClause(JoinType.INNER, rightInput.first, rightInput.second, rightInput.third, |
Dmitry Lychagin | 34b72ac | 2021-11-29 16:25:40 -0800 | [diff] [blame] | 5114 | new LiteralExpr(TrueLiteral.INSTANCE), null); |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5115 | return addSourceLocation(joinClause, startToken); |
| 5116 | } |
| 5117 | } |
| 5118 | |
| 5119 | Triple<Expression, VariableExpr, VariableExpr> JoinClauseRightInput() throws ParseException : |
| 5120 | { |
| 5121 | Expression rightExpr = null; |
| 5122 | VariableExpr rightVar = null; |
| 5123 | VariableExpr posVar = null; |
| 5124 | } |
| 5125 | { |
Ali Alsuliman | ba91b1c | 2023-02-22 21:33:55 -0800 | [diff] [blame] | 5126 | rightExpr = Expression() |
| 5127 | { |
| 5128 | if (rightExpr.getKind() == Expression.Kind.VARIABLE_EXPRESSION) { |
| 5129 | Token hintToken = fetchHint(token, SqlppHint.SUBPATH_HINT); |
| 5130 | if (hintToken != null) { |
| 5131 | String subPath = hintToken.hintParams; |
| 5132 | ((VariableExpr) rightExpr).addHint(new ExternalSubpathAnnotation(subPath)); |
| 5133 | } |
| 5134 | } |
| 5135 | } ((<AS>)? rightVar = Variable())? (<AT> posVar = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5136 | { |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5137 | if (rightVar == null) { |
| 5138 | rightVar = ExpressionToVariableUtil.getGeneratedVariable(rightExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 5139 | } |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5140 | return new Triple<Expression, VariableExpr, VariableExpr>(rightExpr, rightVar, posVar); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5141 | } |
| 5142 | } |
| 5143 | |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5144 | UnnestClause UnnestClause(UnnestType unnestType) throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5145 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5146 | Token startToken = null; |
Dmitry Lychagin | 4cf91e4 | 2021-03-12 12:53:15 -0800 | [diff] [blame] | 5147 | Expression rightExpr = null; |
| 5148 | VariableExpr rightVar = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5149 | VariableExpr posVar = null; |
| 5150 | } |
| 5151 | { |
Dmitry Lychagin | 4cf91e4 | 2021-03-12 12:53:15 -0800 | [diff] [blame] | 5152 | (<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] | 5153 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5154 | if (rightVar == null) { |
| 5155 | rightVar = ExpressionToVariableUtil.getGeneratedVariable(rightExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 5156 | } |
Dmitry Lychagin | 34b72ac | 2021-11-29 16:25:40 -0800 | [diff] [blame] | 5157 | UnnestClause unnestClause = new UnnestClause(unnestType, rightExpr, rightVar, posVar, |
| 5158 | unnestType == UnnestType.INNER ? null : Literal.Type.MISSING); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5159 | return addSourceLocation(unnestClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5160 | } |
| 5161 | } |
| 5162 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5163 | List<LetClause> LetClause() throws ParseException: |
| 5164 | { |
| 5165 | List<LetClause> letList = new ArrayList<LetClause>(); |
| 5166 | LetClause letClause; |
| 5167 | } |
| 5168 | { |
| 5169 | ( |
| 5170 | (<LET>|<LETTING>) letClause = LetElement() { letList.add(letClause); } (LOOKAHEAD(1) <COMMA> letClause = LetElement() { letList.add(letClause); })* |
| 5171 | | |
| 5172 | <WITH> letClause = WithElement() { letList.add(letClause); } (LOOKAHEAD(1) <COMMA> letClause = WithElement() { letList.add(letClause); })* |
| 5173 | ) |
| 5174 | { |
| 5175 | return letList; |
| 5176 | } |
| 5177 | } |
| 5178 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5179 | WhereClause WhereClause() throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5180 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5181 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5182 | Expression whereExpr; |
| 5183 | } |
| 5184 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5185 | <WHERE> { startToken = token; } whereExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5186 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5187 | WhereClause wc = new WhereClause(whereExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5188 | return addSourceLocation(wc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5189 | } |
| 5190 | } |
| 5191 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5192 | OrderbyClause OrderbyClause() throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5193 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5194 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5195 | OrderbyClause oc = new OrderbyClause(); |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5196 | Triple<Expression, OrderbyClause.OrderModifier, OrderbyClause.NullOrderModifier> orderbyExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5197 | List<Expression> orderbyList = new ArrayList<Expression>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5198 | List<OrderbyClause.OrderModifier> modifierList = new ArrayList<OrderbyClause.OrderModifier>(); |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5199 | List<OrderbyClause.NullOrderModifier> nullModifierList = new ArrayList<OrderbyClause.NullOrderModifier>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5200 | } |
| 5201 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5202 | <ORDER> |
| 5203 | { |
| 5204 | startToken = token; |
| 5205 | Token hintToken = fetchHint(token, SqlppHint.INMEMORY_HINT, SqlppHint.RANGE_HINT); |
| 5206 | if (hintToken != null) { |
| 5207 | switch (hintToken.hint) { |
| 5208 | case INMEMORY_HINT: |
| 5209 | String[] splits = hintToken.hintParams.split("\\s+"); |
| 5210 | int numFrames = Integer.parseInt(splits[0]); |
| 5211 | int numTuples = Integer.parseInt(splits[1]); |
| 5212 | oc.setNumFrames(numFrames); |
| 5213 | oc.setNumTuples(numTuples); |
| 5214 | break; |
| 5215 | case RANGE_HINT: |
| 5216 | try { |
| 5217 | Expression rangeExpr = parseExpression(hintToken.hintParams); |
| 5218 | RangeMap rangeMap = RangeMapBuilder.parseHint(rangeExpr); |
| 5219 | oc.setRangeMap(rangeMap); |
| 5220 | } catch (CompilationException e) { |
| 5221 | throw new SqlppParseException(getSourceLocation(hintToken), e.getMessage()); |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 5222 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5223 | break; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5224 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5225 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5226 | } |
| 5227 | <BY> orderbyExpr = OrderByExpression() |
| 5228 | { |
| 5229 | orderbyList.add(orderbyExpr.first); |
| 5230 | modifierList.add(orderbyExpr.second); |
| 5231 | nullModifierList.add(orderbyExpr.third); |
| 5232 | } |
| 5233 | ( |
| 5234 | LOOKAHEAD(2) <COMMA> orderbyExpr = OrderByExpression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5235 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5236 | orderbyList.add(orderbyExpr.first); |
| 5237 | modifierList.add(orderbyExpr.second); |
| 5238 | nullModifierList.add(orderbyExpr.third); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5239 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5240 | )* |
| 5241 | { |
| 5242 | oc.setOrderbyList(orderbyList); |
| 5243 | oc.setModifierList(modifierList); |
| 5244 | oc.setNullModifierList(nullModifierList); |
| 5245 | return addSourceLocation(oc, startToken); |
| 5246 | } |
| 5247 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5248 | |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5249 | Triple<Expression, OrderbyClause.OrderModifier, OrderbyClause.NullOrderModifier> OrderByExpression() |
| 5250 | throws ParseException: |
| 5251 | { |
| 5252 | Expression orderbyExpr = null; |
| 5253 | OrderbyClause.OrderModifier modif = OrderbyClause.OrderModifier.ASC; |
| 5254 | OrderbyClause.NullOrderModifier nullModif = null; |
| 5255 | } |
| 5256 | { |
| 5257 | orderbyExpr = Expression() |
| 5258 | ( |
| 5259 | <ASC> { modif = OrderbyClause.OrderModifier.ASC; } |
| 5260 | | |
| 5261 | <DESC> { modif = OrderbyClause.OrderModifier.DESC; } |
| 5262 | )? |
| 5263 | ( |
| 5264 | LOOKAHEAD({ laIdentifier(NULLS) }) <IDENTIFIER> { expectToken(NULLS); } <IDENTIFIER> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5265 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5266 | if (isToken(FIRST)) { |
| 5267 | nullModif = OrderbyClause.NullOrderModifier.FIRST; |
| 5268 | } else if (isToken(LAST)) { |
| 5269 | nullModif = OrderbyClause.NullOrderModifier.LAST; |
| 5270 | } else { |
| 5271 | throw createUnexpectedTokenError(); |
| 5272 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5273 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5274 | )? |
| 5275 | { |
| 5276 | return new Triple<Expression, OrderbyClause.OrderModifier, OrderbyClause.NullOrderModifier>(orderbyExpr, modif, |
| 5277 | nullModif); |
| 5278 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5279 | } |
| 5280 | |
| 5281 | GroupbyClause GroupbyClause()throws ParseException : |
| 5282 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5283 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5284 | GroupbyClause gbc = new GroupbyClause(); |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5285 | List<List<GbyVariableExpressionPair>> gbyList = null; |
| 5286 | List<GroupingElement> groupingElementList = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 5287 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> groupVarWithFieldList = null; |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 5288 | VariableExpr groupVar = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 5289 | List<Pair<Expression, Identifier>> groupFieldList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5290 | } |
| 5291 | { |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5292 | { |
| 5293 | Scope newScope = extendCurrentScopeNoPush(true); |
| 5294 | // extendCurrentScope(true); |
| 5295 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5296 | <GROUP> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5297 | { |
| 5298 | startToken = token; |
| 5299 | Token hintToken = fetchHint(token, SqlppHint.HASH_GROUP_BY_HINT); |
| 5300 | if (hintToken != null) { |
| 5301 | gbc.setHashGroupByHint(true); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5302 | } |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5303 | } |
| 5304 | <BY> groupingElementList = GroupingElementList() |
| 5305 | ( |
| 5306 | <GROUP> <AS> groupVarWithFieldList = VariableWithFieldMap() |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 5307 | { |
| 5308 | groupVar = groupVarWithFieldList.first; |
| 5309 | groupFieldList = groupVarWithFieldList.second; |
| 5310 | } |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 5311 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5312 | { |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5313 | if (groupingSetsParser == null) { |
| 5314 | groupingSetsParser = new SqlppGroupingSetsParser(); |
| 5315 | } |
| 5316 | SourceLocation sourceLoc = getSourceLocation(startToken); |
| 5317 | try { |
| 5318 | gbyList = groupingSetsParser.parse(groupingElementList, sourceLoc); |
| 5319 | } catch (CompilationException e) { |
| 5320 | throw new SqlppParseException(sourceLoc, e.getMessage()); |
| 5321 | } |
| 5322 | gbc.setGbyPairList(gbyList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5323 | gbc.setDecorPairList(new ArrayList<GbyVariableExpressionPair>()); |
Yingyi Bu | 8671ddf | 2016-08-14 23:58:43 -0700 | [diff] [blame] | 5324 | gbc.setWithVarMap(new HashMap<Expression, VariableExpr>()); |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 5325 | gbc.setGroupVar(groupVar); |
| 5326 | gbc.setGroupFieldList(groupFieldList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5327 | replaceCurrentScope(newScope); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5328 | return addSourceLocation(gbc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5329 | } |
| 5330 | } |
| 5331 | |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5332 | List<GroupingElement> GroupingElementList() throws ParseException: |
| 5333 | { |
| 5334 | List<GroupingElement> groupingElementList = new ArrayList<GroupingElement>(); |
| 5335 | GroupingElement groupingElement = null; |
| 5336 | } |
| 5337 | { |
| 5338 | groupingElement = GroupingElement() { groupingElementList.add(groupingElement); } |
| 5339 | ( LOOKAHEAD(1) <COMMA> groupingElement = GroupingElement() { groupingElementList.add(groupingElement); } )* |
| 5340 | { |
| 5341 | return groupingElementList; |
| 5342 | } |
| 5343 | } |
| 5344 | |
| 5345 | GroupingElement GroupingElement() throws ParseException: |
| 5346 | { |
| 5347 | GroupingElement groupingElement = null; |
| 5348 | List<GroupingSet> groupingSets = null; |
| 5349 | List<GroupingElement> groupingElements = null; |
| 5350 | } |
| 5351 | { |
| 5352 | ( |
| 5353 | LOOKAHEAD(2) |
| 5354 | <LEFTPAREN> <RIGHTPAREN> |
| 5355 | { |
| 5356 | groupingElement = GroupingSet.EMPTY; |
| 5357 | } |
| 5358 | | |
| 5359 | LOOKAHEAD({ laIdentifier(ROLLUP) && laToken(2, LEFTPAREN) }) |
| 5360 | <IDENTIFIER> { expectToken(ROLLUP); } |
| 5361 | <LEFTPAREN> groupingSets = OrdinaryGroupingSetList() <RIGHTPAREN> |
| 5362 | { |
| 5363 | groupingElement = new RollupCube(groupingSets, false); |
| 5364 | } |
| 5365 | | |
| 5366 | LOOKAHEAD({ laIdentifier(CUBE) && laToken(2, LEFTPAREN) }) |
| 5367 | <IDENTIFIER> { expectToken(CUBE); } |
| 5368 | <LEFTPAREN> groupingSets = OrdinaryGroupingSetList() <RIGHTPAREN> |
| 5369 | { |
| 5370 | groupingElement = new RollupCube(groupingSets, true); |
| 5371 | } |
| 5372 | | |
| 5373 | LOOKAHEAD({ laIdentifier(GROUPING) && laIdentifier(2, SETS) && laToken(3, LEFTPAREN) }) |
| 5374 | <IDENTIFIER> { expectToken(GROUPING); } <IDENTIFIER> { expectToken(SETS); } |
| 5375 | <LEFTPAREN> groupingElements = GroupingElementList() <RIGHTPAREN> |
| 5376 | { |
| 5377 | groupingElement = new GroupingSets(groupingElements); |
| 5378 | } |
| 5379 | | |
| 5380 | groupingElement = OrdinaryGroupingSet() |
| 5381 | ) |
| 5382 | { |
| 5383 | return groupingElement; |
| 5384 | } |
| 5385 | } |
| 5386 | |
| 5387 | GroupingSet OrdinaryGroupingSet() throws ParseException: |
| 5388 | { |
| 5389 | GbyVariableExpressionPair gbyExprPair = null; |
| 5390 | List<GbyVariableExpressionPair> items = null; |
| 5391 | } |
| 5392 | { |
| 5393 | ( |
| 5394 | LOOKAHEAD(1) <LEFTPAREN> items = GbyVariableExpressionPairList() <RIGHTPAREN> |
| 5395 | | gbyExprPair = GbyVariableExpressionPair() { items = Collections.singletonList(gbyExprPair); } |
| 5396 | ) |
| 5397 | { |
| 5398 | return new GroupingSet(items); |
| 5399 | } |
| 5400 | } |
| 5401 | |
| 5402 | List<GroupingSet> OrdinaryGroupingSetList() throws ParseException: |
| 5403 | { |
| 5404 | GroupingSet groupingSet = null; |
| 5405 | List<GroupingSet> items = new ArrayList<GroupingSet>(); |
| 5406 | } |
| 5407 | { |
| 5408 | groupingSet = OrdinaryGroupingSet() { items.add(groupingSet); } |
| 5409 | ( LOOKAHEAD(1) <COMMA> groupingSet = OrdinaryGroupingSet() { items.add(groupingSet); } )* |
| 5410 | { |
| 5411 | return items; |
| 5412 | } |
| 5413 | } |
| 5414 | |
| 5415 | List<GbyVariableExpressionPair> GbyVariableExpressionPairList() throws ParseException: |
| 5416 | { |
| 5417 | GbyVariableExpressionPair gbyExprPair = null; |
| 5418 | List<GbyVariableExpressionPair> items = new ArrayList<GbyVariableExpressionPair>(); |
| 5419 | } |
| 5420 | { |
| 5421 | gbyExprPair = GbyVariableExpressionPair() { items.add(gbyExprPair); } |
| 5422 | ( LOOKAHEAD(1) <COMMA> gbyExprPair = GbyVariableExpressionPair() { items.add(gbyExprPair); } )* |
| 5423 | { |
| 5424 | return items; |
| 5425 | } |
| 5426 | } |
| 5427 | |
| 5428 | GbyVariableExpressionPair GbyVariableExpressionPair() throws ParseException: |
| 5429 | { |
| 5430 | Expression expr = null; |
| 5431 | VariableExpr var = null; |
| 5432 | } |
| 5433 | { |
| 5434 | expr = Expression() ( (<AS>)? var = Variable() )? |
| 5435 | { |
| 5436 | return new GbyVariableExpressionPair(var, expr); |
| 5437 | } |
| 5438 | } |
| 5439 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5440 | HavingClause HavingClause() throws ParseException: |
| 5441 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5442 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5443 | Expression filterExpr = null; |
| 5444 | } |
| 5445 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5446 | <HAVING> { startToken = token; } filterExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5447 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5448 | HavingClause havingClause = new HavingClause(filterExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5449 | return addSourceLocation(havingClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5450 | } |
| 5451 | } |
| 5452 | |
| 5453 | LimitClause LimitClause() throws ParseException: |
| 5454 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5455 | Token startToken = null; |
Dmitry Lychagin | 761c9a6 | 2020-11-19 10:22:11 -0800 | [diff] [blame] | 5456 | Expression limitExpr = null, offsetExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5457 | } |
| 5458 | { |
Dmitry Lychagin | 761c9a6 | 2020-11-19 10:22:11 -0800 | [diff] [blame] | 5459 | ( |
| 5460 | ( |
| 5461 | <LIMIT> { startToken = token; pushForbiddenScope(getCurrentScope()); } limitExpr = Expression() |
| 5462 | ( <OFFSET> offsetExpr = Expression() )? |
| 5463 | { popForbiddenScope(); } |
| 5464 | ) |
| 5465 | | |
| 5466 | ( |
| 5467 | <OFFSET> { startToken = token; pushForbiddenScope(getCurrentScope()); } offsetExpr = Expression() |
| 5468 | { popForbiddenScope(); } |
| 5469 | ) |
| 5470 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5471 | { |
Dmitry Lychagin | 761c9a6 | 2020-11-19 10:22:11 -0800 | [diff] [blame] | 5472 | LimitClause lc = new LimitClause(limitExpr, offsetExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5473 | return addSourceLocation(lc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5474 | } |
| 5475 | } |
| 5476 | |
| 5477 | QuantifiedExpression QuantifiedExpression()throws ParseException: |
| 5478 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5479 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5480 | QuantifiedExpression qc = new QuantifiedExpression(); |
| 5481 | List<QuantifiedPair> quantifiedList = new ArrayList<QuantifiedPair>(); |
| 5482 | Expression satisfiesExpr; |
| 5483 | VariableExpr var; |
| 5484 | Expression inExpr; |
| 5485 | QuantifiedPair pair; |
| 5486 | } |
| 5487 | { |
| 5488 | { |
| 5489 | createNewScope(); |
| 5490 | } |
| 5491 | |
ggalvizo | 21e5282 | 2021-07-27 10:26:31 -1000 | [diff] [blame] | 5492 | ( LOOKAHEAD(2) |
| 5493 | (<ANY>|<SOME>)<AND><EVERY> { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.SOME_AND_EVERY); } |
| 5494 | | (<ANY>|<SOME>) { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.SOME); } |
| 5495 | | <EVERY> { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.EVERY); } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5496 | var = Variable() <IN> inExpr = Expression() |
| 5497 | { |
| 5498 | pair = new QuantifiedPair(var, inExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5499 | quantifiedList.add(pair); |
| 5500 | } |
| 5501 | ( |
| 5502 | <COMMA> var = Variable() <IN> inExpr = Expression() |
| 5503 | { |
| 5504 | pair = new QuantifiedPair(var, inExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5505 | quantifiedList.add(pair); |
| 5506 | } |
| 5507 | )* |
Yingyi Bu | 858efae | 2016-10-13 17:31:57 -0700 | [diff] [blame] | 5508 | <SATISFIES> satisfiesExpr = Expression() (<END>)? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5509 | { |
| 5510 | qc.setSatisfiesExpr(satisfiesExpr); |
| 5511 | qc.setQuantifiedList(quantifiedList); |
| 5512 | removeCurrentScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5513 | return addSourceLocation(qc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5514 | } |
| 5515 | } |
| 5516 | |
| 5517 | LetClause LetElement() throws ParseException: |
| 5518 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5519 | VariableExpr varExp; |
| 5520 | Expression beExp; |
| 5521 | extendCurrentScope(); |
| 5522 | } |
| 5523 | { |
| 5524 | varExp = Variable() <EQ> beExp = Expression() |
| 5525 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5526 | LetClause lc = new LetClause(varExp, beExp); |
| 5527 | lc.setSourceLocation(varExp.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5528 | return lc; |
| 5529 | } |
| 5530 | } |
| 5531 | |
| 5532 | LetClause WithElement() throws ParseException: |
| 5533 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5534 | VariableExpr varExp; |
| 5535 | Expression beExp; |
| 5536 | extendCurrentScope(); |
| 5537 | } |
| 5538 | { |
| 5539 | varExp = Variable() <AS> beExp = Expression() |
| 5540 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5541 | LetClause lc = new LetClause(varExp, beExp); |
| 5542 | lc.setSourceLocation(varExp.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5543 | return lc; |
| 5544 | } |
| 5545 | } |
| 5546 | |
| 5547 | TOKEN_MGR_DECLS: |
| 5548 | { |
| 5549 | public int commentDepth = 0; |
Till Westmann | e9b2adf | 2016-10-15 12:39:01 -0700 | [diff] [blame] | 5550 | public ArrayDeque<Integer> lexerStateStack = new ArrayDeque<Integer>(); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5551 | public Map<SourceLocation, String> hintCollector; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5552 | |
| 5553 | public void pushState() { |
| 5554 | lexerStateStack.push( curLexState ); |
| 5555 | } |
| 5556 | |
| 5557 | public void popState(String token) { |
| 5558 | if (lexerStateStack.size() > 0) { |
| 5559 | SwitchTo( lexerStateStack.pop() ); |
| 5560 | } else { |
| 5561 | int errorLine = input_stream.getEndLine(); |
| 5562 | int errorColumn = input_stream.getEndColumn(); |
| 5563 | String msg = "Lexical error at line " + errorLine + ", column " + errorColumn + ". Encountered \"" + token |
| 5564 | + "\" but state stack is empty."; |
| 5565 | throw new TokenMgrError(msg, -1); |
| 5566 | } |
| 5567 | } |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5568 | |
| 5569 | void CommonTokenAction(Token token) { |
| 5570 | Token hintToken = token.specialToken; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 5571 | while (hintToken != null) { // make this a while loop |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5572 | hintToken.sourceLocation = new SourceLocation(hintToken.beginLine, hintToken.beginColumn); |
| 5573 | String text = hintToken.image.substring(1).trim(); |
| 5574 | boolean hintFound = hintToken.parseHint(text); |
| 5575 | hintCollector.put(hintToken.sourceLocation, hintFound ? hintToken.hint.getIdentifier() : hintToken.hintParams); |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 5576 | hintToken = hintToken.specialToken; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5577 | } |
| 5578 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5579 | } |
| 5580 | |
| 5581 | <DEFAULT,IN_DBL_BRACE> |
| 5582 | TOKEN [IGNORE_CASE]: |
| 5583 | { |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 5584 | <ADAPTER: "adapter"> |
| 5585 | | <ALL : "all"> |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 5586 | | <ANALYZE: "analyze"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5587 | | <AND : "and"> |
Yingyi Bu | 8aac724 | 2016-09-13 23:14:09 -0700 | [diff] [blame] | 5588 | | <ANY : "any"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5589 | | <APPLY : "apply"> |
| 5590 | | <AS : "as"> |
| 5591 | | <ASC : "asc"> |
| 5592 | | <AT : "at"> |
| 5593 | | <AUTOGENERATED : "autogenerated"> |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 5594 | | <BETWEEN : "between"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5595 | | <BTREE : "btree"> |
| 5596 | | <BY : "by"> |
| 5597 | | <CASE : "case"> |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 5598 | | <CAST : "cast"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5599 | | <CLOSED : "closed"> |
| 5600 | | <CREATE : "create"> |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5601 | | <CROSS : "cross"> |
Dmitry Lychagin | 0ebc420 | 2021-01-25 13:12:41 -0800 | [diff] [blame] | 5602 | | <COMPACTION : "compaction"> // no longer used |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5603 | | <COMPACT : "compact"> |
| 5604 | | <CONNECT : "connect"> |
| 5605 | | <CORRELATE : "correlate"> |
Yingyi Bu | d56ff03 | 2016-08-01 10:26:57 -0700 | [diff] [blame] | 5606 | | <DATASET : "dataset"> |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 5607 | | <COLLECTION : "collection"> |
Yingyi Bu | d56ff03 | 2016-08-01 10:26:57 -0700 | [diff] [blame] | 5608 | | <DATAVERSE : "dataverse"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5609 | | <DECLARE : "declare"> |
| 5610 | | <DEFINITION : "definition"> |
| 5611 | | <DELETE : "delete"> |
| 5612 | | <DESC : "desc"> |
| 5613 | | <DISCONNECT : "disconnect"> |
| 5614 | | <DISTINCT : "distinct"> |
Murtadha Hubail | 29f6391 | 2019-04-21 14:23:57 +0300 | [diff] [blame] | 5615 | | <DIV : "div"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5616 | | <DROP : "drop"> |
| 5617 | | <ELEMENT : "element"> |
Till Westmann | 516d1a8 | 2016-08-02 14:45:53 -0700 | [diff] [blame] | 5618 | | <EXPLAIN : "explain"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5619 | | <ELSE : "else"> |
| 5620 | | <ENFORCED : "enforced"> |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 5621 | | <END : "end"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5622 | | <EVERY : "every"> |
| 5623 | | <EXCEPT : "except"> |
| 5624 | | <EXISTS : "exists"> |
| 5625 | | <EXTERNAL : "external"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5626 | | <FALSE : "false"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5627 | | <FEED : "feed"> |
| 5628 | | <FILTER : "filter"> |
| 5629 | | <FLATTEN : "flatten"> |
| 5630 | | <FOR : "for"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5631 | | <FROM : "from"> |
| 5632 | | <FULL : "full"> |
Taewoo Kim | c49405a | 2017-01-04 00:30:43 -0800 | [diff] [blame] | 5633 | | <FULLTEXT : "fulltext"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5634 | | <FUNCTION : "function"> |
| 5635 | | <GROUP : "group"> |
| 5636 | | <HAVING : "having"> |
| 5637 | | <HINTS : "hints"> |
| 5638 | | <IF : "if"> |
| 5639 | | <INTO : "into"> |
| 5640 | | <IN : "in"> |
| 5641 | | <INDEX : "index"> |
| 5642 | | <INGESTION : "ingestion"> |
| 5643 | | <INNER : "inner"> |
| 5644 | | <INSERT : "insert"> |
| 5645 | | <INTERNAL : "internal"> |
| 5646 | | <INTERSECT : "intersect"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5647 | | <IS : "is"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5648 | | <JOIN : "join"> |
| 5649 | | <KEYWORD : "keyword"> |
| 5650 | | <KEY : "key"> |
Dmitry Lychagin | 1aa0dd4 | 2018-04-17 14:35:24 -0700 | [diff] [blame] | 5651 | | <KNOWN : "known"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5652 | | <LEFT : "left"> |
| 5653 | | <LETTING : "letting"> |
| 5654 | | <LET : "let"> |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 5655 | | <LIKE : "like"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5656 | | <LIMIT : "limit"> |
| 5657 | | <LOAD : "load"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5658 | | <MISSING : "missing"> |
Murtadha Hubail | 29f6391 | 2019-04-21 14:23:57 +0300 | [diff] [blame] | 5659 | | <MOD : "mod"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5660 | | <NODEGROUP : "nodegroup"> |
| 5661 | | <NGRAM : "ngram"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5662 | | <NOT : "not"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5663 | | <NULL : "null"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5664 | | <OFFSET : "offset"> |
| 5665 | | <ON : "on"> |
| 5666 | | <OPEN : "open"> |
| 5667 | | <OR : "or"> |
| 5668 | | <ORDER : "order"> |
| 5669 | | <OUTER : "outer"> |
| 5670 | | <OUTPUT : "output"> |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 5671 | | <OVER: "over"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5672 | | <PATH : "path"> |
| 5673 | | <POLICY : "policy"> |
| 5674 | | <PRESORTED : "pre-sorted"> |
| 5675 | | <PRIMARY : "primary"> |
| 5676 | | <RAW : "raw"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5677 | | <RETURN : "return"> |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 5678 | | <RETURNING : "returning"> |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5679 | | <RIGHT : "right"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5680 | | <RTREE : "rtree"> |
| 5681 | | <RUN : "run"> |
| 5682 | | <SATISFIES : "satisfies"> |
| 5683 | | <SECONDARY : "secondary"> |
| 5684 | | <SELECT : "select"> |
| 5685 | | <SET : "set"> |
| 5686 | | <SOME : "some"> |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 5687 | | <START : "start"> |
| 5688 | | <STOP : "stop"> |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 5689 | | <SYNONYM : "synonym"> |
Murtadha Hubail | 2c04ae0 | 2017-11-21 15:58:01 +0300 | [diff] [blame] | 5690 | | <TEMPORARY : "temporary"> // intentionally not used but reserved for future usage |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5691 | | <THEN : "then"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5692 | | <TO : "to"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5693 | | <TRUE : "true"> |
| 5694 | | <TYPE : "type"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5695 | | <UNION : "union"> |
Dmitry Lychagin | 8b6578a | 2017-11-08 15:04:35 -0800 | [diff] [blame] | 5696 | | <UNKNOWN : "unknown"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5697 | | <UNNEST : "unnest"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5698 | | <UPDATE : "update"> |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 5699 | | <UPSERT : "upsert"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5700 | | <USE : "use"> |
| 5701 | | <USING : "using"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5702 | | <VALUE : "value"> |
Dmitry Lychagin | 7d594a3 | 2018-01-15 14:31:03 -0800 | [diff] [blame] | 5703 | | <VALUED : "valued"> |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 5704 | | <VIEW : "view"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5705 | | <WHEN : "when"> |
| 5706 | | <WHERE : "where"> |
| 5707 | | <WITH : "with"> |
| 5708 | | <WRITE : "write"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5709 | } |
| 5710 | |
| 5711 | <DEFAULT,IN_DBL_BRACE> |
| 5712 | TOKEN : |
| 5713 | { |
| 5714 | <CARET : "^"> |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 5715 | | <CONCAT : "||"> |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 5716 | | <DIVIDE : "/"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5717 | | <MINUS : "-"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5718 | | <MUL : "*"> |
| 5719 | | <PLUS : "+"> |
| 5720 | |
| 5721 | | <LEFTPAREN : "("> |
| 5722 | | <RIGHTPAREN : ")"> |
| 5723 | | <LEFTBRACKET : "["> |
| 5724 | | <RIGHTBRACKET : "]"> |
| 5725 | |
| 5726 | | <ATT : "@"> |
| 5727 | | <COLON : ":"> |
| 5728 | | <COMMA : ","> |
| 5729 | | <DOT : "."> |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 5730 | | <PERCENT: "%"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5731 | | <QUES : "?"> |
| 5732 | | <SEMICOLON : ";"> |
| 5733 | | <SHARP : "#"> |
| 5734 | |
| 5735 | | <LT : "<"> |
| 5736 | | <GT : ">"> |
| 5737 | | <LE : "<="> |
| 5738 | | <GE : ">="> |
| 5739 | | <EQ : "="> |
| 5740 | | <NE : "!="> |
Yingyi Bu | 4a4b896 | 2016-09-16 12:09:11 -0700 | [diff] [blame] | 5741 | | <LG : "<>"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5742 | | <SIMILAR : "~="> |
| 5743 | } |
| 5744 | |
| 5745 | <DEFAULT,IN_DBL_BRACE> |
| 5746 | TOKEN : |
| 5747 | { |
| 5748 | <LEFTBRACE : "{"> { pushState(); } : DEFAULT |
| 5749 | } |
| 5750 | |
| 5751 | <DEFAULT> |
| 5752 | TOKEN : |
| 5753 | { |
| 5754 | <RIGHTBRACE : "}"> { popState("}"); } |
| 5755 | } |
| 5756 | |
| 5757 | <DEFAULT,IN_DBL_BRACE> |
| 5758 | TOKEN : |
| 5759 | { |
| 5760 | <LEFTDBLBRACE : "{{"> { pushState(); } : IN_DBL_BRACE |
| 5761 | } |
| 5762 | |
| 5763 | <IN_DBL_BRACE> |
| 5764 | TOKEN : |
| 5765 | { |
| 5766 | <RIGHTDBLBRACE : "}}"> { popState("}}"); } |
| 5767 | } |
| 5768 | |
| 5769 | <DEFAULT,IN_DBL_BRACE> |
| 5770 | TOKEN : |
| 5771 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5772 | <#DIGIT : ["0" - "9"]> |
| 5773 | } |
| 5774 | |
| 5775 | <DEFAULT,IN_DBL_BRACE> |
| 5776 | TOKEN: |
| 5777 | { |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5778 | <INTEGER_LITERAL : <DIGITS> > |
| 5779 | | <DOUBLE_LITERAL: <DIGITS> ( "." <DIGITS> ) (("e"|"E") ("+"|"-")? <DIGITS>)? |
Dmitry Lychagin | ee8526b | 2018-03-30 14:21:01 -0700 | [diff] [blame] | 5780 | | <DIGITS> (("e"|"E") ("+"|"-")? <DIGITS>) |
| 5781 | | "." <DIGITS> (("e"|"E") ("+"|"-")? <DIGITS>)? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5782 | > |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5783 | | <FLOAT_LITERAL: <DIGITS> ( "f" | "F" ) |
Yingyi Bu | e4d919e | 2016-10-30 10:47:03 -0700 | [diff] [blame] | 5784 | | <DIGITS> ( "." <DIGITS> ( "f" | "F" ) )? |
| 5785 | | "." <DIGITS> ( "f" | "F" ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5786 | > |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5787 | | <#DIGITS : (<DIGIT>)+ > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5788 | } |
| 5789 | |
| 5790 | <DEFAULT,IN_DBL_BRACE> |
| 5791 | TOKEN : |
| 5792 | { |
| 5793 | <#LETTER : ["A" - "Z", "a" - "z"]> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5794 | | <#IDENTIFIER_START_SPECIALCHAR : ["_"]> |
| 5795 | | <#IDENTIFIER_REST_SPECIALCHAR : ["$"]> |
| 5796 | | <#IDENTIFIER_START : <LETTER> | <IDENTIFIER_START_SPECIALCHAR> > |
| 5797 | | <#IDENTIFIER_REST : <LETTER> | <DIGIT> | <IDENTIFIER_START_SPECIALCHAR> | <IDENTIFIER_REST_SPECIALCHAR> > |
| 5798 | | <IDENTIFIER : <IDENTIFIER_START> (<IDENTIFIER_REST>)* > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5799 | } |
| 5800 | |
| 5801 | <DEFAULT,IN_DBL_BRACE> |
| 5802 | TOKEN : |
| 5803 | { |
| 5804 | // backslash u + 4 hex digits escapes are handled in the underlying JavaCharStream |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5805 | <QUOTED_STRING : "`" ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5806 | <EscapeQuot> |
| 5807 | | <EscapeBslash> |
| 5808 | | <EscapeSlash> |
| 5809 | | <EscapeBspace> |
| 5810 | | <EscapeFormf> |
| 5811 | | <EscapeNl> |
| 5812 | | <EscapeCr> |
| 5813 | | <EscapeTab> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5814 | | <EscapeBTickWithBslash> |
| 5815 | | <EscapeBtickWithBtick> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5816 | | ~["`","\\"])* "`"> |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 5817 | | <STRING_LITERAL : ( ("E")? "\"" ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5818 | <EscapeQuot> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5819 | | <EscapeBslash> |
| 5820 | | <EscapeSlash> |
| 5821 | | <EscapeBspace> |
| 5822 | | <EscapeFormf> |
| 5823 | | <EscapeNl> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5824 | | <EscapeBTickWithBslash> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5825 | | <EscapeCr> |
| 5826 | | <EscapeTab> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5827 | | ~["\"","\\"])* "\"") |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 5828 | | ( ("E")? "\'" ( |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5829 | <EscapeApos> |
| 5830 | | <EscapeBslash> |
| 5831 | | <EscapeSlash> |
| 5832 | | <EscapeBspace> |
| 5833 | | <EscapeFormf> |
| 5834 | | <EscapeNl> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5835 | | <EscapeBTickWithBslash> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5836 | | <EscapeCr> |
| 5837 | | <EscapeTab> |
| 5838 | | ~["\'","\\"])* "\'")> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5839 | | < #EscapeBTickWithBslash: "\\`" > |
| 5840 | | < #EscapeBtickWithBtick: "``" > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5841 | | < #EscapeQuot: "\\\"" > |
| 5842 | | < #EscapeApos: "\\\'" > |
| 5843 | | < #EscapeBslash: "\\\\" > |
| 5844 | | < #EscapeSlash: "\\/" > |
| 5845 | | < #EscapeBspace: "\\b" > |
| 5846 | | < #EscapeFormf: "\\f" > |
| 5847 | | < #EscapeNl: "\\n" > |
| 5848 | | < #EscapeCr: "\\r" > |
| 5849 | | < #EscapeTab: "\\t" > |
| 5850 | } |
| 5851 | |
| 5852 | <DEFAULT,IN_DBL_BRACE> |
| 5853 | TOKEN : |
| 5854 | { |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5855 | <DOLLAR_INTEGER_LITERAL : "$" <INTEGER_LITERAL> > |
| 5856 | | <DOLLAR_IDENTIFIER : "$" <IDENTIFIER> > |
| 5857 | | <DOLLAR_QUOTED_STRING: "$" <QUOTED_STRING> > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5858 | } |
| 5859 | |
| 5860 | <DEFAULT,IN_DBL_BRACE> |
| 5861 | SKIP: |
| 5862 | { |
| 5863 | " " |
| 5864 | | "\t" |
| 5865 | | "\r" |
| 5866 | | "\n" |
| 5867 | } |
| 5868 | |
| 5869 | <DEFAULT,IN_DBL_BRACE> |
| 5870 | SKIP: |
| 5871 | { |
| 5872 | <"//" (~["\n"])* "\n"> |
| 5873 | } |
| 5874 | |
| 5875 | <DEFAULT,IN_DBL_BRACE> |
| 5876 | SKIP: |
| 5877 | { |
| 5878 | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")?> |
| 5879 | } |
| 5880 | |
| 5881 | <DEFAULT,IN_DBL_BRACE> |
| 5882 | SKIP: |
| 5883 | { |
Yingyi Bu | 93846a7 | 2016-09-13 16:30:39 -0700 | [diff] [blame] | 5884 | <"--" (~["\n"])* "\n"> |
| 5885 | } |
| 5886 | |
| 5887 | |
| 5888 | <DEFAULT,IN_DBL_BRACE> |
| 5889 | SKIP: |
| 5890 | { |
| 5891 | <"--" (~["\n","\r"])* ("\n"|"\r"|"\r\n")?> |
| 5892 | } |
| 5893 | |
| 5894 | <DEFAULT,IN_DBL_BRACE> |
| 5895 | SKIP: |
| 5896 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5897 | <"/*"> { pushState(); } : INSIDE_COMMENT |
| 5898 | } |
| 5899 | |
| 5900 | <INSIDE_COMMENT> |
| 5901 | SPECIAL_TOKEN: |
| 5902 | { |
| 5903 | <"+"(" ")*(~["*"])*> |
| 5904 | } |
| 5905 | |
| 5906 | <INSIDE_COMMENT> |
| 5907 | SKIP: |
| 5908 | { |
| 5909 | <"/*"> { pushState(); } |
| 5910 | } |
| 5911 | |
| 5912 | <INSIDE_COMMENT> |
| 5913 | SKIP: |
| 5914 | { |
| 5915 | <"*/"> { popState("*/"); } |
| 5916 | | <~[]> |
| 5917 | } |