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; |
Peeyush Gupta | 066fd56 | 2023-04-30 13:03:00 -0700 | [diff] [blame] | 162 | import org.apache.asterix.lang.common.statement.CopyStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 163 | import org.apache.asterix.lang.common.statement.NodeGroupDropStatement; |
| 164 | import org.apache.asterix.lang.common.statement.NodegroupDecl; |
| 165 | import org.apache.asterix.lang.common.statement.Query; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 166 | import org.apache.asterix.lang.common.statement.SetStatement; |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 167 | import org.apache.asterix.lang.common.statement.SynonymDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 168 | import org.apache.asterix.lang.common.statement.TypeDecl; |
| 169 | import org.apache.asterix.lang.common.statement.TypeDropStatement; |
| 170 | import org.apache.asterix.lang.common.statement.UpdateStatement; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 171 | import org.apache.asterix.lang.common.statement.UpsertStatement; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 172 | import org.apache.asterix.lang.common.statement.ViewDecl; |
| 173 | import org.apache.asterix.lang.common.statement.ViewDropStatement; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 174 | import org.apache.asterix.lang.common.struct.Identifier; |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 175 | import org.apache.asterix.lang.common.struct.OperatorType; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 176 | import org.apache.asterix.lang.common.struct.QuantifiedPair; |
| 177 | import org.apache.asterix.lang.common.struct.VarIdentifier; |
Dmitry Lychagin | 4fb583d | 2021-11-10 17:25:28 -0800 | [diff] [blame] | 178 | import org.apache.asterix.lang.common.util.DatasetDeclParametersUtil; |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 179 | import org.apache.asterix.lang.common.util.ExpressionUtils; |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 180 | import org.apache.asterix.lang.common.util.RangeMapBuilder; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 181 | import org.apache.asterix.lang.sqlpp.clause.AbstractBinaryCorrelateClause; |
| 182 | import org.apache.asterix.lang.sqlpp.clause.FromClause; |
| 183 | import org.apache.asterix.lang.sqlpp.clause.FromTerm; |
| 184 | import org.apache.asterix.lang.sqlpp.clause.HavingClause; |
| 185 | import org.apache.asterix.lang.sqlpp.clause.JoinClause; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 186 | import org.apache.asterix.lang.sqlpp.clause.Projection; |
| 187 | import org.apache.asterix.lang.sqlpp.clause.SelectBlock; |
| 188 | import org.apache.asterix.lang.sqlpp.clause.SelectClause; |
| 189 | import org.apache.asterix.lang.sqlpp.clause.SelectElement; |
| 190 | import org.apache.asterix.lang.sqlpp.clause.SelectRegular; |
| 191 | import org.apache.asterix.lang.sqlpp.clause.SelectSetOperation; |
| 192 | import org.apache.asterix.lang.sqlpp.clause.UnnestClause; |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 193 | import org.apache.asterix.lang.common.clause.WhereClause; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 194 | import org.apache.asterix.lang.sqlpp.expression.CaseExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 195 | import org.apache.asterix.lang.sqlpp.expression.SelectExpression; |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 196 | import org.apache.asterix.lang.sqlpp.expression.WindowExpression; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 197 | import org.apache.asterix.lang.sqlpp.optype.JoinType; |
| 198 | import org.apache.asterix.lang.sqlpp.optype.SetOpType; |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 199 | import org.apache.asterix.lang.sqlpp.optype.UnnestType; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 200 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser; |
| 201 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.GroupingElement; |
| 202 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.GroupingSet; |
| 203 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.GroupingSets; |
| 204 | import org.apache.asterix.lang.sqlpp.parser.SqlppGroupingSetsParser.RollupCube; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 205 | import org.apache.asterix.lang.sqlpp.parser.SqlppHint; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 206 | import org.apache.asterix.lang.sqlpp.struct.SetOperationInput; |
| 207 | import org.apache.asterix.lang.sqlpp.struct.SetOperationRight; |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 208 | import org.apache.asterix.lang.sqlpp.util.ExpressionToVariableUtil; |
Xikui Wang | 96fd402 | 2017-04-10 14:23:31 -0700 | [diff] [blame] | 209 | import org.apache.asterix.lang.sqlpp.util.FunctionMapUtil; |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 210 | import org.apache.asterix.lang.sqlpp.util.SqlppVariableUtil; |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 211 | import org.apache.asterix.metadata.bootstrap.MetadataBuiltinEntities; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 212 | import org.apache.asterix.metadata.utils.MetadataConstants; |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 213 | import org.apache.asterix.om.exceptions.TypeMismatchException; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 214 | import org.apache.asterix.om.functions.BuiltinFunctions; |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 215 | import org.apache.asterix.om.types.BuiltinType; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 216 | import org.apache.commons.lang3.ArrayUtils; |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 217 | import org.apache.commons.lang3.StringUtils; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 218 | import org.apache.hyracks.algebricks.common.utils.Pair; |
| 219 | import org.apache.hyracks.algebricks.common.utils.Triple; |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 220 | import org.apache.hyracks.algebricks.common.exceptions.AlgebricksException; |
Shiva | 2ea7323 | 2019-10-09 18:04:05 -0700 | [diff] [blame] | 221 | import org.apache.hyracks.algebricks.core.algebra.expressions.BroadcastExpressionAnnotation; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 222 | import org.apache.hyracks.algebricks.core.algebra.expressions.HashJoinExpressionAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 223 | import org.apache.hyracks.algebricks.core.algebra.expressions.IExpressionAnnotation; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 224 | import org.apache.hyracks.algebricks.core.algebra.expressions.JoinProductivityAnnotation; |
| 225 | import org.apache.hyracks.algebricks.core.algebra.expressions.PredicateCardinalityAnnotation; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 226 | import org.apache.hyracks.algebricks.core.algebra.functions.FunctionIdentifier; |
Dmitry Lychagin | 67714e2 | 2021-01-29 11:18:58 -0800 | [diff] [blame] | 227 | import org.apache.hyracks.api.exceptions.IWarningCollector; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 228 | import org.apache.hyracks.api.exceptions.SourceLocation; |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 229 | import org.apache.hyracks.api.exceptions.Warning; |
Dmitry Lychagin | 70bf47a | 2020-10-22 13:25:57 -0700 | [diff] [blame] | 230 | import org.apache.hyracks.dataflow.common.data.partition.range.RangeMap; |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 231 | import org.apache.hyracks.util.LogRedactionUtil; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 232 | import org.apache.hyracks.util.StringUtil; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 233 | import java.util.regex.Matcher; |
| 234 | import java.util.regex.Pattern; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 235 | |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 236 | class SQLPPParser extends ScopeChecker implements IParser { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 237 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 238 | // tokens parsed as identifiers |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 239 | private static final String CUBE = "CUBE"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 240 | private static final String CURRENT = "CURRENT"; |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 241 | private static final String DEFAULT = "DEFAULT"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 242 | private static final String EXCLUDE = "EXCLUDE"; |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 243 | private static final String INCLUDE = "INCLUDE"; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 244 | private static final String FIRST = "FIRST"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 245 | private static final String FOLLOWING = "FOLLOWING"; |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 246 | private static final String FOREIGN = "FOREIGN"; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 247 | private static final String GROUPING = "GROUPING"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 248 | private static final String GROUPS = "GROUPS"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 249 | private static final String IGNORE = "IGNORE"; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 250 | private static final String LAST = "LAST"; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 251 | private static final String META = "META"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 252 | private static final String NO = "NO"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 253 | private static final String NULLS = "NULLS"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 254 | private static final String OTHERS = "OTHERS"; |
| 255 | private static final String PARTITION = "PARTITION"; |
| 256 | private static final String PRECEDING = "PRECEDING"; |
| 257 | private static final String RANGE = "RANGE"; |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 258 | private static final String REFERENCES = "REFERENCES"; |
Dmitry Lychagin | 3346cea | 2019-05-28 12:11:54 -0700 | [diff] [blame] | 259 | private static final String RESPECT = "RESPECT"; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 260 | private static final String ROLLUP = "ROLLUP"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 261 | private static final String ROW = "ROW"; |
| 262 | private static final String ROWS = "ROWS"; |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 263 | private static final String SETS = "SETS"; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 264 | private static final String TIES = "TIES"; |
| 265 | private static final String UNBOUNDED = "UNBOUNDED"; |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 266 | private static final String REPLACE = "REPLACE"; |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 267 | private static final String RETURNS = "RETURNS"; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 268 | private static final String CONFIG = "CONFIG"; |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 269 | private static final String STATISTICS = "STATISTICS"; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 270 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 271 | |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 272 | private static final String INT_TYPE_NAME = "int"; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 273 | 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] | 274 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 275 | // error configuration |
| 276 | protected static final boolean REPORT_EXPECTED_TOKENS = false; |
| 277 | |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 278 | private int externalVarCounter; |
| 279 | |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 280 | private DataverseName defaultDataverse; |
| 281 | |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 282 | private SqlppGroupingSetsParser groupingSetsParser; |
| 283 | |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 284 | private final WarningCollector warningCollector = new WarningCollector(); |
| 285 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 286 | private final Map<SourceLocation, String> hintCollector = new HashMap<SourceLocation, String>(); |
| 287 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 288 | private static class IndexParams { |
| 289 | public IndexType type; |
| 290 | public int gramLength; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 291 | public String fullTextConfig; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 292 | |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 293 | public IndexParams(IndexType type, int gramLength, String fullTextConfig) { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 294 | this.type = type; |
| 295 | this.gramLength = gramLength; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 296 | this.fullTextConfig = fullTextConfig; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 297 | } |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 298 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 299 | |
| 300 | private static class FunctionName { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 301 | public DataverseName dataverse; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 302 | public String library; |
| 303 | public String function; |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 304 | public Token hintToken; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 305 | public SourceLocation sourceLoc; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 308 | private IRecordFieldDataGen parseFieldDataGen(Token hintToken) throws ParseException { |
| 309 | String[] splits = hintToken.hintParams != null ? hintToken.hintParams.split("\\s+") : null; |
| 310 | switch (hintToken.hint) { |
| 311 | case VAL_FILE_HINT: |
| 312 | File[] valFiles = new File[splits.length]; |
| 313 | for (int k=0; k<splits.length; k++) { |
| 314 | valFiles[k] = new File(splits[k]); |
| 315 | } |
| 316 | return new FieldValFileDataGen(valFiles); |
| 317 | case VAL_FILE_SAME_INDEX_HINT: |
| 318 | return new FieldValFileSameIndexDataGen(new File(splits[0]), splits[1]); |
| 319 | case LIST_VAL_FILE_HINT: |
| 320 | return new ListValFileDataGen(new File(splits[0]), Integer.parseInt(splits[1]), Integer.parseInt(splits[2])); |
| 321 | case LIST_HINT: |
| 322 | return new ListDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1])); |
| 323 | case INTERVAL_HINT: |
| 324 | FieldIntervalDataGen.ValueType vt; |
| 325 | switch (splits[0]) { |
| 326 | case "int": |
| 327 | vt = FieldIntervalDataGen.ValueType.INT; |
| 328 | break; |
| 329 | case "long": |
| 330 | vt = FieldIntervalDataGen.ValueType.LONG; |
| 331 | break; |
| 332 | case "float": |
| 333 | vt = FieldIntervalDataGen.ValueType.FLOAT; |
| 334 | break; |
| 335 | case "double": |
| 336 | vt = FieldIntervalDataGen.ValueType.DOUBLE; |
| 337 | break; |
| 338 | default: |
| 339 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 340 | "Unknown type for interval data gen: " + splits[0]); |
| 341 | } |
| 342 | return new FieldIntervalDataGen(vt, splits[1], splits[2]); |
| 343 | case INSERT_RAND_INT_HINT: |
| 344 | return new InsertRandIntDataGen(splits[0], splits[1]); |
| 345 | case DATE_BETWEEN_YEARS_HINT: |
| 346 | return new DateBetweenYearsDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1])); |
| 347 | case DATETIME_BETWEEN_YEARS_HINT: |
| 348 | return new DatetimeBetweenYearsDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1])); |
| 349 | case DATETIME_ADD_RAND_HOURS_HINT: |
| 350 | return new DatetimeAddRandHoursDataGen(Integer.parseInt(splits[0]), Integer.parseInt(splits[1]), splits[2]); |
| 351 | case AUTO_HINT: |
| 352 | return new AutoDataGen(splits[0]); |
| 353 | default: |
| 354 | return null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 355 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 358 | public SQLPPParser(String s) { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 359 | this(new StringReader(s)); |
| 360 | super.setInput(s); |
| 361 | } |
| 362 | |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 363 | public static void main(String[] args) throws ParseException, TokenMgrError, IOException, FileNotFoundException, CompilationException { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 364 | File file = new File(args[0]); |
| 365 | Reader fis = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8")); |
| 366 | SQLPPParser parser = new SQLPPParser(fis); |
| 367 | List<Statement> st = parser.parse(); |
| 368 | //st.accept(new SQLPPPrintVisitor(), 0); |
| 369 | } |
| 370 | |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 371 | @Override |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 372 | public List<Statement> parse() throws CompilationException { |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 373 | return parseImpl(new ParseFunction<List<Statement>>() { |
| 374 | @Override |
| 375 | public List<Statement> parse() throws ParseException { |
| 376 | return SQLPPParser.this.Statement(); |
| 377 | } |
| 378 | }); |
| 379 | } |
| 380 | |
Dmitry Lychagin | 62f0beb | 2020-09-08 11:44:19 -0700 | [diff] [blame] | 381 | @Override |
| 382 | public Expression parseExpression() throws CompilationException { |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 383 | return parseImpl(new ParseFunction<Expression>() { |
| 384 | @Override |
| 385 | public Expression parse() throws ParseException { |
| 386 | return SQLPPParser.this.Expression(); |
| 387 | } |
| 388 | }); |
| 389 | } |
| 390 | |
| 391 | private static Expression parseExpression(String text) throws CompilationException { |
| 392 | return new SQLPPParser(text).parseExpression(); |
| 393 | } |
| 394 | |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 395 | @Override |
Dmitry Lychagin | ef680d7d | 2020-10-15 13:10:41 -0700 | [diff] [blame] | 396 | public List<String> parseMultipartIdentifier() throws CompilationException { |
| 397 | return parseImpl(new ParseFunction<List<String>>() { |
| 398 | @Override |
| 399 | public List<String> parse() throws ParseException { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 400 | return SQLPPParser.this.MultipartIdentifier().first; |
Dmitry Lychagin | ef680d7d | 2020-10-15 13:10:41 -0700 | [diff] [blame] | 401 | } |
| 402 | }); |
| 403 | } |
| 404 | |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 405 | private List<String> parseParenthesizedIdentifierList() throws CompilationException { |
| 406 | return parseImpl(new ParseFunction<List<String>>() { |
| 407 | @Override |
| 408 | public List<String> parse() throws ParseException { |
| 409 | return SQLPPParser.this.ParenthesizedIdentifierList(); |
| 410 | } |
| 411 | }); |
| 412 | } |
| 413 | |
| 414 | private static List<String> parseParenthesizedIdentifierList(String text) throws CompilationException { |
| 415 | return new SQLPPParser(text).parseParenthesizedIdentifierList(); |
| 416 | } |
| 417 | |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 418 | private Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> parseHashJoinParams() throws CompilationException { |
| 419 | return parseImpl(new ParseFunction<Pair<HashJoinExpressionAnnotation.BuildOrProbe, String>>() { |
| 420 | @Override |
| 421 | public Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> parse() throws ParseException { |
| 422 | return SQLPPParser.this.buildOrProbeParenthesizedIdentifier(); |
| 423 | } |
| 424 | }); |
| 425 | } |
| 426 | |
| 427 | private static Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> parseHashJoinParams(String text) throws CompilationException { |
| 428 | return new SQLPPParser(text).parseHashJoinParams(); |
| 429 | } |
| 430 | |
| 431 | private String parseBroadcastJoinParams() throws CompilationException { |
| 432 | return parseImpl(new ParseFunction<String>() { |
| 433 | @Override |
| 434 | public String parse() throws ParseException { |
| 435 | return SQLPPParser.this.parenthesizedIdentifier(); |
| 436 | } |
| 437 | }); |
| 438 | } |
| 439 | |
| 440 | private static String parseBroadcastJoinParams(String text) throws CompilationException { |
| 441 | return new SQLPPParser(text).parseBroadcastJoinParams(); |
| 442 | } |
| 443 | |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 444 | private List<Literal> parseParenthesizedLiteralList() throws CompilationException { |
| 445 | return parseImpl(new ParseFunction<List<Literal>>() { |
| 446 | @Override |
| 447 | public List<Literal> parse() throws ParseException { |
| 448 | return SQLPPParser.this.ParenthesizedLiteralList(); |
| 449 | } |
| 450 | }); |
| 451 | } |
| 452 | |
| 453 | private static List<Literal> parseParenthesizedLiteralList(String text) throws CompilationException { |
| 454 | return new SQLPPParser(text).parseParenthesizedLiteralList(); |
| 455 | } |
| 456 | |
Dmitry Lychagin | ef680d7d | 2020-10-15 13:10:41 -0700 | [diff] [blame] | 457 | @Override |
Dmitry Lychagin | 9ba7487 | 2021-04-05 14:38:20 -0700 | [diff] [blame] | 458 | public FunctionDecl parseFunctionBody(FunctionSignature signature, List<String> paramNames, boolean isStored) |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 459 | throws CompilationException { |
Dmitry Lychagin | e74454b | 2020-02-06 13:44:21 -0800 | [diff] [blame] | 460 | return parseImpl(new ParseFunction<FunctionDecl>() { |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 461 | @Override |
Dmitry Lychagin | e74454b | 2020-02-06 13:44:21 -0800 | [diff] [blame] | 462 | public FunctionDecl parse() throws ParseException { |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 463 | DataverseName dataverse = defaultDataverse; |
| 464 | defaultDataverse = signature.getDataverseName(); |
| 465 | createNewScope(); |
Dmitry Lychagin | e74454b | 2020-02-06 13:44:21 -0800 | [diff] [blame] | 466 | List<VarIdentifier> paramVars = new ArrayList<VarIdentifier>(paramNames.size()); |
| 467 | for (String paramName : paramNames) { |
| 468 | paramVars.add(SqlppVariableUtil.toInternalVariableIdentifier(paramName)); |
| 469 | } |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 470 | Expression functionBodyExpr = SQLPPParser.this.FunctionBody(); |
| 471 | removeCurrentScope(); |
| 472 | defaultDataverse = dataverse; |
Dmitry Lychagin | 9ba7487 | 2021-04-05 14:38:20 -0700 | [diff] [blame] | 473 | return new FunctionDecl(signature, paramVars, functionBodyExpr, isStored); |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 474 | } |
| 475 | }); |
| 476 | } |
| 477 | |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 478 | @Override |
| 479 | public ViewDecl parseViewBody(DatasetFullyQualifiedName viewName) throws CompilationException { |
| 480 | return parseImpl(new ParseFunction<ViewDecl>() { |
| 481 | @Override |
| 482 | public ViewDecl parse() throws ParseException { |
| 483 | DataverseName dataverse = defaultDataverse; |
| 484 | defaultDataverse = viewName.getDataverseName(); |
| 485 | createNewScope(); |
| 486 | Expression viewBodyExpr = SQLPPParser.this.ViewBody(); |
| 487 | removeCurrentScope(); |
| 488 | defaultDataverse = dataverse; |
| 489 | return new ViewDecl(viewName, viewBodyExpr); |
| 490 | } |
| 491 | }); |
| 492 | } |
| 493 | |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 494 | private <T> T parseImpl(ParseFunction<T> parseFunction) throws CompilationException { |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 495 | warningCollector.clear(); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 496 | hintCollector.clear(); |
Dmitry Lychagin | 67714e2 | 2021-01-29 11:18:58 -0800 | [diff] [blame] | 497 | token_source.hintCollector = hintCollector; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 498 | try { |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 499 | return parseFunction.parse(); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 500 | } catch (SqlppParseException e) { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 501 | if (e.getCause() instanceof AlgebricksException) { |
| 502 | AlgebricksException cause = (AlgebricksException) e.getCause(); |
| 503 | if (cause.getError().isPresent() && cause.getError().get() instanceof ErrorCode) { |
| 504 | throw new CompilationException((ErrorCode) cause.getError().get(), e.getSourceLocation(), |
| 505 | cause.getParams()); |
| 506 | } |
| 507 | } |
| 508 | throw new CompilationException(ErrorCode.PARSE_ERROR, e.getSourceLocation(), |
| 509 | LogRedactionUtil.userData(getMessage(e))); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 510 | } catch (ParseException e) { |
| 511 | throw new CompilationException(ErrorCode.PARSE_ERROR, LogRedactionUtil.userData(getMessage(e))); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 512 | } catch (Error e) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 513 | // 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] | 514 | // 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] | 515 | final String msg = e.getClass().getSimpleName() + (e.getMessage() != null ? ": " + e.getMessage() : ""); |
Ali Alsuliman | fe90189 | 2019-03-19 01:40:35 -0700 | [diff] [blame] | 516 | throw new CompilationException(ErrorCode.PARSE_ERROR, LogRedactionUtil.userData(msg)); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 517 | } finally { |
| 518 | reportUnclaimedHints(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 519 | } |
| 520 | } |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 521 | |
Dmitry Lychagin | 1227f02 | 2019-08-01 13:14:30 -0700 | [diff] [blame] | 522 | @FunctionalInterface |
| 523 | private interface ParseFunction<T> { |
| 524 | T parse() throws ParseException; |
| 525 | } |
| 526 | |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 527 | @Override |
Dmitry Lychagin | 67714e2 | 2021-01-29 11:18:58 -0800 | [diff] [blame] | 528 | public void getWarnings(IWarningCollector outWarningCollector) { |
| 529 | warningCollector.getWarnings(outWarningCollector); |
| 530 | } |
| 531 | |
| 532 | @Override |
Ali Alsuliman | 6a9e2b0 | 2019-09-16 20:50:41 -0700 | [diff] [blame] | 533 | public void getWarnings(Collection<? super Warning> outWarnings, long maxWarnings) { |
| 534 | warningCollector.getWarnings(outWarnings, maxWarnings); |
| 535 | } |
| 536 | |
| 537 | @Override |
| 538 | public long getTotalWarningsCount() { |
| 539 | return warningCollector.getTotalWarningsCount(); |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 542 | protected String getMessage(ParseException pe) { |
| 543 | Token currentToken = pe.currentToken; |
| 544 | if (currentToken == null) { |
| 545 | return pe.getMessage(); |
| 546 | } |
| 547 | int[][] expectedTokenSequences = pe.expectedTokenSequences; |
| 548 | String[] tokenImage = pe.tokenImage; |
| 549 | String sep = REPORT_EXPECTED_TOKENS ? eol : " "; |
| 550 | StringBuilder expected = REPORT_EXPECTED_TOKENS ? new StringBuilder() : null; |
| 551 | int maxSize = appendExpected(expected, expectedTokenSequences, tokenImage); |
| 552 | Token tok = currentToken.next; |
| 553 | int line = tok.beginLine; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 554 | StringBuilder message = new StringBuilder(128); |
| 555 | 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] | 556 | for (int i = 0; i < maxSize; i++) { |
| 557 | if (i != 0) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 558 | message.append(' '); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 559 | } |
| 560 | if (tok.kind == 0) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 561 | message.append(fixQuotes(tokenImage[0])); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 562 | break; |
| 563 | } |
Till Westmann | e3c9f27 | 2016-10-09 11:09:26 -0700 | [diff] [blame] | 564 | final String fixedTokenImage = tokenImage[tok.kind]; |
| 565 | if (! tok.image.equalsIgnoreCase(stripQuotes(fixedTokenImage))) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 566 | message.append(fixQuotes(fixedTokenImage)).append(' '); |
Till Westmann | e3c9f27 | 2016-10-09 11:09:26 -0700 | [diff] [blame] | 567 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 568 | message.append(quot).append(addEscapes(tok.image)).append(quot); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 569 | tok = tok.next; |
| 570 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 571 | message.append(" at column ").append(currentToken.next.beginColumn).append('.').append(sep); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 572 | if (REPORT_EXPECTED_TOKENS) { |
| 573 | if (expectedTokenSequences.length == 1) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 574 | message.append("Was expecting:").append(sep).append(" "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 575 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 576 | message.append("Was expecting one of:").append(sep).append(" "); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 577 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 578 | message.append(expected); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 579 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 580 | return message.toString(); |
Till Westmann | 7199a56 | 2016-09-17 16:07:32 -0700 | [diff] [blame] | 581 | } |
| 582 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 583 | protected static SourceLocation getSourceLocation(Token token) { |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 584 | return |
| 585 | token == null ? null : |
| 586 | token.sourceLocation != null ? token.sourceLocation : |
| 587 | new SourceLocation(token.beginLine, token.beginColumn); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 588 | } |
| 589 | |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 590 | protected static <T extends AbstractLangExpression> T addSourceLocation(T expr, Token token) { |
| 591 | expr.setSourceLocation(getSourceLocation(token)); |
| 592 | return expr; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 593 | } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 594 | |
| 595 | private boolean isToken(String image) { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 596 | return isToken(token, image); |
| 597 | } |
| 598 | |
| 599 | private static boolean isToken(Token token, String image) { |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 600 | return token.image.equalsIgnoreCase(image); |
| 601 | } |
| 602 | |
| 603 | private void expectToken(String image) throws SqlppParseException { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 604 | expectToken(token, image); |
| 605 | } |
| 606 | |
| 607 | private static void expectToken(Token token, String image) throws SqlppParseException { |
| 608 | if (!isToken(token, image)) { |
| 609 | throw createUnexpectedTokenError(token); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 610 | } |
| 611 | } |
| 612 | |
| 613 | private SqlppParseException createUnexpectedTokenError() { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 614 | return createUnexpectedTokenError(token, null); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 615 | } |
| 616 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 617 | private static SqlppParseException createUnexpectedTokenError(Token t) { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 618 | return createUnexpectedTokenError(t, null); |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | private SqlppParseException createUnexpectedTokenError(String expected) { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 622 | return createUnexpectedTokenError(token, expected); |
| 623 | } |
| 624 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 625 | private static SqlppParseException createUnexpectedTokenError(Token t, String expected) { |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 626 | String message = "Unexpected token: " + LogRedactionUtil.userData(t.image) + |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 627 | (expected == null ? "" : ". Expected: " + LogRedactionUtil.userData(expected)); |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 628 | return new SqlppParseException(getSourceLocation(t), message); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 629 | } |
| 630 | |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 631 | private boolean laToken(int idx, int kind) { |
| 632 | Token t = getToken(idx); |
| 633 | return t.kind == kind; |
| 634 | } |
| 635 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 636 | private boolean laToken(int idx, int kind, String image) { |
| 637 | Token t = getToken(idx); |
| 638 | return t.kind == kind && t.image.equalsIgnoreCase(image); |
| 639 | } |
| 640 | |
| 641 | private boolean laIdentifier(int idx, String image) { |
| 642 | return laToken(idx, IDENTIFIER, image); |
| 643 | } |
| 644 | |
| 645 | private boolean laIdentifier(String image) { |
| 646 | return laIdentifier(1, image); |
| 647 | } |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 648 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 649 | private Token fetchHint(Token token, SqlppHint... expectedHints) { |
| 650 | Token hintToken = token.specialToken; |
| 651 | if (hintToken == null) { |
| 652 | return null; |
| 653 | } |
| 654 | SourceLocation sourceLoc = getSourceLocation(hintToken); |
| 655 | hintCollector.remove(sourceLoc); |
| 656 | if (hintToken.hint == null) { |
| 657 | warnUnexpectedHint(hintToken.hintParams, sourceLoc, expectedHints); |
| 658 | return null; |
| 659 | } else if (!ArrayUtils.contains(expectedHints, hintToken.hint)) { |
| 660 | warnUnexpectedHint(hintToken.hint.getIdentifier(), sourceLoc, expectedHints); |
| 661 | return null; |
| 662 | } else { |
| 663 | return hintToken; |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | private void reportUnclaimedHints() { |
| 668 | for (Map.Entry<SourceLocation, String> me : hintCollector.entrySet()) { |
| 669 | warnUnexpectedHint(me.getValue(), me.getKey(), "None"); |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | private void warnUnexpectedHint(String actualHint, SourceLocation sourceLoc, SqlppHint... expectedHints) { |
| 674 | warnUnexpectedHint(actualHint, sourceLoc, StringUtil.join(expectedHints, ", ", "\"")); |
| 675 | } |
| 676 | |
| 677 | private void warnUnexpectedHint(String actualHint, SourceLocation sourceLoc, String expectedHints) { |
Ali Alsuliman | aa11886 | 2019-09-10 20:55:45 -0700 | [diff] [blame] | 678 | if (warningCollector.shouldWarn()) { |
Michael Blow | 7c838de | 2021-02-23 16:12:48 -0500 | [diff] [blame] | 679 | warningCollector.warn(Warning.of(sourceLoc, ErrorCode.UNEXPECTED_HINT, actualHint, expectedHints)); |
Ali Alsuliman | aa11886 | 2019-09-10 20:55:45 -0700 | [diff] [blame] | 680 | } |
Dmitry Lychagin | 1f6a6e3 | 2019-07-02 11:59:53 -0700 | [diff] [blame] | 681 | } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 682 | |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 683 | private IExpressionAnnotation parseExpressionAnnotation(Token hintToken) { |
| 684 | // placeholder for the annotation that should be returned if this hint's parameters cannot be parsed |
| 685 | IExpressionAnnotation onParseErrorReturn = null; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 686 | double selectivity, cardinality, productivity; |
| 687 | Pattern number = Pattern.compile("\\d+\\.\\d+"); |
| 688 | Pattern stringNumber = Pattern.compile("\\w+\\s+\\d+\\.\\d+"); |
| 689 | Pattern lessThanOnePat = Pattern.compile("0\\.\\d+"); |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 690 | try { |
| 691 | switch (hintToken.hint) { |
Vijay Sarathy | 7ba271a | 2023-03-09 08:07:43 -0800 | [diff] [blame] | 692 | case SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT: |
| 693 | if (hintToken.hintParams == null) { |
| 694 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected selectivity value"); |
| 695 | } |
| 696 | else { |
| 697 | selectivity = 1.0; // uninitialized |
| 698 | Matcher mat = lessThanOnePat.matcher(hintToken.hintParams); |
| 699 | if (mat.find()) { |
| 700 | selectivity = Double.parseDouble (mat.group()); |
| 701 | } |
| 702 | else { |
Vijay Sarathy | c70bae0 | 2023-03-13 13:24:05 -0700 | [diff] [blame] | 703 | 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] | 704 | } |
| 705 | return new PredicateCardinalityAnnotation(selectivity); |
| 706 | } |
| 707 | case JOIN_PREDICATE_PRODUCTIVITY_HINT: |
| 708 | if (hintToken.hintParams == null) { |
| 709 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected productivity collection name and value"); |
| 710 | } |
| 711 | else { |
| 712 | productivity = 1.0; // uninitialized |
| 713 | String leftSideDataSet = null; |
| 714 | Matcher StringNum = stringNumber.matcher(hintToken.hintParams); |
| 715 | if (StringNum.find()) { |
| 716 | String matchedGroup = StringNum.group(); |
| 717 | Pattern var = Pattern.compile("[a-zA-Z]\\w*"); // any word character [a-zA-Z_0-9] |
| 718 | Matcher matVar = var.matcher(matchedGroup); |
| 719 | if (matVar.find()) { |
| 720 | leftSideDataSet = matVar.group(); |
| 721 | } |
| 722 | else { |
| 723 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected productivity collection name"); |
| 724 | } |
| 725 | Matcher numMat = number.matcher(matchedGroup); |
| 726 | if (numMat.find()) { |
| 727 | productivity = Double.parseDouble (numMat.group()); |
| 728 | } |
| 729 | else { |
Vijay Sarathy | c70bae0 | 2023-03-13 13:24:05 -0700 | [diff] [blame] | 730 | 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] | 731 | } |
| 732 | } |
| 733 | else { |
| 734 | throw new SqlppParseException(getSourceLocation(hintToken), "Invalid format for productivity values"); |
| 735 | } |
| 736 | // attach hint to global scope |
| 737 | return new JoinProductivityAnnotation (productivity, leftSideDataSet); |
| 738 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 739 | case HASH_BROADCAST_JOIN_HINT: |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 740 | if (hintToken.hintParams == null) { |
| 741 | return new BroadcastExpressionAnnotation(BroadcastExpressionAnnotation.BroadcastSide.RIGHT); |
| 742 | } |
| 743 | else { |
| 744 | // if parameter parsing fails then ignore this hint. |
| 745 | String name = parseBroadcastJoinParams(hintToken.hintParams); |
| 746 | return new BroadcastExpressionAnnotation(name); |
| 747 | } |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 748 | case HASH_JOIN_HINT: |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 749 | if (hintToken.hintParams == null) { |
| 750 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected hash join build/probe collection name"); |
| 751 | } |
| 752 | else { |
| 753 | // if parameter parsing fails then ignore this hint. |
| 754 | Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> pair = parseHashJoinParams(hintToken.hintParams); |
| 755 | return new HashJoinExpressionAnnotation(pair); |
| 756 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 757 | case INDEXED_NESTED_LOOP_JOIN_HINT: |
| 758 | if (hintToken.hintParams == null) { |
| 759 | return IndexedNLJoinExpressionAnnotation.INSTANCE_ANY_INDEX; |
| 760 | } else { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 761 | // if parameter parsing fails then return hint annotation without parameters |
| 762 | onParseErrorReturn = IndexedNLJoinExpressionAnnotation.INSTANCE_ANY_INDEX; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 763 | List<String> indexNames = parseParenthesizedIdentifierList(hintToken.hintParams); |
| 764 | return IndexedNLJoinExpressionAnnotation.newInstance(indexNames); |
| 765 | } |
| 766 | case RANGE_HINT: |
| 767 | Expression rangeExpr = parseExpression(hintToken.hintParams); |
| 768 | RangeMap rangeMap = RangeMapBuilder.parseHint(rangeExpr); |
| 769 | return new RangeAnnotation(rangeMap); |
| 770 | case SKIP_SECONDARY_INDEX_SEARCH_HINT: |
| 771 | if (hintToken.hintParams == null) { |
| 772 | return SkipSecondaryIndexSearchExpressionAnnotation.INSTANCE_ANY_INDEX; |
| 773 | } else { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 774 | // if parameter parsing fails then ignore this hint |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 775 | List<String> indexNames = parseParenthesizedIdentifierList(hintToken.hintParams); |
| 776 | return SkipSecondaryIndexSearchExpressionAnnotation.newInstance(indexNames); |
| 777 | } |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 778 | case SPATIAL_JOIN_HINT: |
| 779 | List<Literal> hintValues = parseParenthesizedLiteralList(hintToken.hintParams); |
| 780 | |
| 781 | // Handle exceptions |
| 782 | if (hintValues.size() != 6) { |
| 783 | throw new SqlppParseException(getSourceLocation(hintToken), String.format("Unexpected hint: %s. 6 arguments are required.", |
| 784 | hintToken.hint.toString())); |
| 785 | } |
| 786 | |
| 787 | for (int i = 0; i < 4; i++) { |
| 788 | Literal lit = hintValues.get(i); |
| 789 | if ((lit.getLiteralType() != Literal.Type.DOUBLE) |
| 790 | && (lit.getLiteralType() != Literal.Type.FLOAT) |
| 791 | && (lit.getLiteralType() != Literal.Type.LONG) |
| 792 | && (lit.getLiteralType() != Literal.Type.INTEGER)){ |
| 793 | throw new SqlppParseException(getSourceLocation(hintToken), String.format("Unexpected hint: %s. Numeric value is required for first 4 arguments.", |
| 794 | hintToken.hint.toString())); |
| 795 | } |
| 796 | } |
| 797 | |
| 798 | for (int i = 4; i < 6; i++) { |
| 799 | Literal lit = hintValues.get(i); |
| 800 | if ((lit.getLiteralType() != Literal.Type.LONG) |
| 801 | && (lit.getLiteralType() != Literal.Type.INTEGER)) { |
| 802 | throw new SqlppParseException(getSourceLocation(hintToken), String.format("Unexpected hint: %s. Long/int is required for last 2 arguments.", |
| 803 | hintToken.hint.toString())); |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | try { |
| 808 | double minX = ExpressionUtils.getDoubleValue(hintValues.get(0)); |
| 809 | double minY = ExpressionUtils.getDoubleValue(hintValues.get(1)); |
| 810 | double maxX = ExpressionUtils.getDoubleValue(hintValues.get(2)); |
| 811 | double maxY = ExpressionUtils.getDoubleValue(hintValues.get(3)); |
| 812 | int numRows = (int) ExpressionUtils.getLongValue(hintValues.get(4)); |
| 813 | int numColumns = (int) ExpressionUtils.getLongValue(hintValues.get(5)); |
| 814 | SpatialJoinAnnotation spatialJoinAnn = new SpatialJoinAnnotation(minX, minY, maxX, maxY, numRows, numColumns); |
| 815 | return spatialJoinAnn; |
| 816 | } catch (TypeMismatchException e) { |
| 817 | throw new SqlppParseException(getSourceLocation(hintToken), e.getMessage()); |
| 818 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 819 | case USE_SECONDARY_INDEX_SEARCH_HINT: |
| 820 | if (hintToken.hintParams == null) { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 821 | throw new SqlppParseException(getSourceLocation(hintToken), "Expected index name(s)"); |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 822 | } else { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 823 | // if parameter parsing fails then ignore this hint |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 824 | List<String> indexNames = parseParenthesizedIdentifierList(hintToken.hintParams); |
| 825 | return SecondaryIndexSearchPreferenceAnnotation.newInstance(indexNames); |
| 826 | } |
| 827 | default: |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 828 | throw new SqlppParseException(getSourceLocation(hintToken), "Unexpected hint"); |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 829 | } |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 830 | } catch (SqlppParseException e) { |
| 831 | if (warningCollector.shouldWarn()) { |
Michael Blow | 7c838de | 2021-02-23 16:12:48 -0500 | [diff] [blame] | 832 | warningCollector.warn(Warning.of(getSourceLocation(hintToken), ErrorCode.INVALID_HINT, |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 833 | hintToken.hint.toString(), e.getMessage())); |
| 834 | } |
| 835 | return onParseErrorReturn; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 836 | } catch (CompilationException e) { |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 837 | if (warningCollector.shouldWarn()) { |
Michael Blow | 7c838de | 2021-02-23 16:12:48 -0500 | [diff] [blame] | 838 | warningCollector.warn(Warning.of(getSourceLocation(hintToken), ErrorCode.INVALID_HINT, |
Dmitry Lychagin | 7c62452 | 2020-12-04 18:01:45 -0800 | [diff] [blame] | 839 | hintToken.hint.toString(), e.getMessage())); |
| 840 | } |
| 841 | return onParseErrorReturn; |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 845 | private void ensureNoTypeDeclsInFunction(String fnName, List<Pair<VarIdentifier, TypeExpression>> paramList, |
| 846 | TypeExpression returnType, Token startToken) throws SqlppParseException { |
| 847 | for (Pair<VarIdentifier, TypeExpression> p : paramList) { |
| 848 | if (p.second != null) { |
| 849 | String paramName = SqlppVariableUtil.toUserDefinedName(p.first.getValue()); |
| 850 | throw new SqlppParseException(getSourceLocation(startToken), |
| 851 | "Unexpected type declaration for parameter " + paramName + " in function " + fnName); |
| 852 | } |
| 853 | } |
| 854 | if (returnType != null) { |
| 855 | throw new SqlppParseException(getSourceLocation(startToken), |
| 856 | "Unexpected return type declaration for function " + fnName); |
| 857 | } |
| 858 | } |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 859 | |
| 860 | private void ensureIntegerLiteral(LiteralExpr expr, String errorPrefix) throws SqlppParseException { |
| 861 | Literal lit = expr.getValue(); |
| 862 | if (lit.getLiteralType() != Literal.Type.INTEGER && lit.getLiteralType() != Literal.Type.LONG) { |
| 863 | throw new SqlppParseException(expr.getSourceLocation(), errorPrefix + " should be an INTEGER"); |
| 864 | } |
| 865 | } |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 866 | |
| 867 | private DataverseName createDataverseName(List<String> parts, int fromIndex, int toIndex, Token startToken) |
| 868 | throws SqlppParseException { |
| 869 | try { |
| 870 | return DataverseName.create(parts, fromIndex, toIndex); |
| 871 | } catch (AsterixException e) { |
| 872 | SqlppParseException pe = new SqlppParseException(getSourceLocation(startToken), e.getMessage()); |
| 873 | pe.initCause(e); |
| 874 | throw pe; |
| 875 | } |
| 876 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 877 | } |
| 878 | |
| 879 | PARSER_END(SQLPPParser) |
| 880 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 881 | List<Statement> Statement() throws ParseException: |
| 882 | { |
| 883 | scopeStack.push(RootScopeFactory.createRootScope(this)); |
| 884 | List<Statement> decls = new ArrayList<Statement>(); |
| 885 | Statement stmt = null; |
| 886 | } |
| 887 | { |
Murtadha Hubail | dc77522 | 2017-08-21 15:22:45 +0300 | [diff] [blame] | 888 | ( |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 889 | (stmt = ExplainStatement() |
Murtadha Hubail | dc77522 | 2017-08-21 15:22:45 +0300 | [diff] [blame] | 890 | { |
| 891 | decls.add(stmt); |
| 892 | } |
| 893 | )? |
| 894 | (<SEMICOLON>)+ |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 895 | )* |
| 896 | <EOF> |
| 897 | { |
| 898 | return decls; |
| 899 | } |
| 900 | } |
| 901 | |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 902 | Statement ExplainStatement() throws ParseException: |
| 903 | { |
| 904 | Statement stmt = null; |
| 905 | Token explainToken = null; |
| 906 | } |
| 907 | { |
| 908 | ( <EXPLAIN> { explainToken = token; } )? |
| 909 | stmt = SingleStatement() |
| 910 | { |
| 911 | if (explainToken != null) { |
| 912 | if (stmt.getKind() == Statement.Kind.QUERY) { |
| 913 | ((Query)stmt).setExplain(true); |
| 914 | } else { |
| 915 | throw new SqlppParseException(getSourceLocation(explainToken), |
| 916 | "EXPLAIN is not supported for this kind of statement"); |
| 917 | } |
| 918 | } |
| 919 | return stmt; |
| 920 | } |
| 921 | } |
| 922 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 923 | Statement SingleStatement() throws ParseException: |
| 924 | { |
| 925 | Statement stmt = null; |
| 926 | } |
| 927 | { |
| 928 | ( |
| 929 | stmt = DataverseDeclaration() |
| 930 | | stmt = FunctionDeclaration() |
| 931 | | stmt = CreateStatement() |
| 932 | | stmt = LoadStatement() |
Peeyush Gupta | 066fd56 | 2023-04-30 13:03:00 -0700 | [diff] [blame] | 933 | | stmt = CopyStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 934 | | stmt = DropStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 935 | | stmt = SetStatement() |
| 936 | | stmt = InsertStatement() |
| 937 | | stmt = DeleteStatement() |
| 938 | | stmt = UpdateStatement() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 939 | | stmt = UpsertStatement() |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 940 | | stmt = ConnectionStatement() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 941 | | stmt = CompactStatement() |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 942 | | stmt = AnalyzeStatement() |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 943 | | stmt = Query() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 944 | ) |
| 945 | { |
| 946 | return stmt; |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | DataverseDecl DataverseDeclaration() throws ParseException: |
| 951 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 952 | Token startToken = null; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 953 | DataverseName dvName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 954 | } |
| 955 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 956 | <USE> { startToken = token; } dvName = DataverseName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 957 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 958 | defaultDataverse = dvName; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 959 | DataverseDecl dvDecl = new DataverseDecl(defaultDataverse); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 960 | return addSourceLocation(dvDecl, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 961 | } |
| 962 | } |
| 963 | |
| 964 | Statement CreateStatement() throws ParseException: |
| 965 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 966 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 967 | Statement stmt = null; |
| 968 | } |
| 969 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 970 | <CREATE> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 971 | ( |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 972 | stmt = CreateOrReplaceStatement(startToken) |
| 973 | | stmt = CreateTypeStatement(startToken) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 974 | | stmt = CreateNodegroupStatement(startToken) |
| 975 | | stmt = CreateDatasetStatement(startToken) |
| 976 | | stmt = CreateIndexStatement(startToken) |
| 977 | | stmt = CreateDataverseStatement(startToken) |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 978 | | stmt = CreateFunctionStatement(startToken, false) |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 979 | | stmt = CreateAdapterStatement(startToken) |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 980 | | stmt = CreateSynonymStatement(startToken) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 981 | | stmt = CreateFeedStatement(startToken) |
| 982 | | stmt = CreateFeedPolicyStatement(startToken) |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 983 | | stmt = CreateFullTextStatement(startToken) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 984 | | stmt = CreateViewStatement(startToken, false) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 985 | ) |
| 986 | { |
| 987 | return stmt; |
| 988 | } |
| 989 | } |
| 990 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 991 | Statement CreateOrReplaceStatement(Token startStmtToken) throws ParseException: |
| 992 | { |
| 993 | Statement stmt = null; |
| 994 | Token replaceToken = null; |
| 995 | } |
| 996 | { |
| 997 | <OR> <IDENTIFIER> { replaceToken = token; } |
| 998 | ( |
| 999 | stmt = CreateFunctionStatement(startStmtToken, true) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1000 | | stmt = CreateViewStatement(startStmtToken, true) |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1001 | ) |
| 1002 | { |
| 1003 | // check expected token here to make the grammar extension plugin happy |
| 1004 | expectToken(replaceToken, REPLACE); |
| 1005 | return stmt; |
| 1006 | } |
| 1007 | } |
| 1008 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1009 | TypeDecl CreateTypeStatement(Token startStmtToken) throws ParseException: |
| 1010 | { |
| 1011 | TypeDecl stmt = null; |
| 1012 | } |
| 1013 | { |
| 1014 | <TYPE> stmt = TypeSpecification(startStmtToken) |
| 1015 | { |
| 1016 | return stmt; |
| 1017 | } |
| 1018 | } |
| 1019 | |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 1020 | TypeDecl TypeSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1021 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1022 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1023 | boolean ifNotExists = false; |
| 1024 | TypeExpression typeExpr = null; |
| 1025 | } |
| 1026 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1027 | nameComponents = TypeName() ifNotExists = IfNotExists() |
Till Westmann | f602827 | 2016-09-30 14:34:42 -0700 | [diff] [blame] | 1028 | <AS> typeExpr = RecordTypeDef() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1029 | { |
| 1030 | boolean dgen = false; |
| 1031 | long numValues = -1; |
| 1032 | String filename = null; |
| 1033 | Token hintToken = fetchHint(startStmtToken, SqlppHint.DGEN_HINT); |
| 1034 | if (hintToken != null) { |
| 1035 | String hintParams = hintToken.hintParams; |
| 1036 | String[] splits = hintParams != null ? hintParams.split("\\s+") : null; |
| 1037 | if (splits == null || splits.length != 2) { |
| 1038 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 1039 | "Expecting /*+ dgen <filename> <numberOfItems> */"); |
| 1040 | } |
| 1041 | dgen = true; |
| 1042 | filename = splits[0]; |
| 1043 | numValues = Long.parseLong(splits[1]); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1044 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1045 | TypeDataGen tddg = new TypeDataGen(dgen, filename, numValues); |
| 1046 | TypeDecl stmt = new TypeDecl(nameComponents.first, nameComponents.second, typeExpr, tddg, ifNotExists); |
| 1047 | return addSourceLocation(stmt, startStmtToken); |
| 1048 | } |
| 1049 | } |
| 1050 | |
| 1051 | NodegroupDecl CreateNodegroupStatement(Token startStmtToken) throws ParseException: |
| 1052 | { |
| 1053 | NodegroupDecl stmt = null; |
| 1054 | } |
| 1055 | { |
| 1056 | <NODEGROUP> stmt = NodegroupSpecification(startStmtToken) |
| 1057 | { |
| 1058 | return stmt; |
| 1059 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1060 | } |
| 1061 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1062 | NodegroupDecl NodegroupSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1063 | { |
| 1064 | String name = null; |
| 1065 | String tmp = null; |
| 1066 | boolean ifNotExists = false; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1067 | List<Identifier> ncNames = new ArrayList<Identifier>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1068 | } |
| 1069 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1070 | name = Identifier() ifNotExists = IfNotExists() |
| 1071 | <ON> tmp = Identifier() |
| 1072 | { |
| 1073 | ncNames.add(new Identifier(tmp)); |
| 1074 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1075 | ( <COMMA> tmp = Identifier() |
| 1076 | { |
| 1077 | ncNames.add(new Identifier(tmp)); |
| 1078 | } |
| 1079 | )* |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1080 | { |
| 1081 | NodegroupDecl stmt = new NodegroupDecl(new Identifier(name), ncNames, ifNotExists); |
| 1082 | return addSourceLocation(stmt, startStmtToken); |
| 1083 | } |
| 1084 | } |
| 1085 | |
| 1086 | void Dataset() throws ParseException: |
| 1087 | { |
| 1088 | } |
| 1089 | { |
| 1090 | (<DATASET>|<COLLECTION>) |
| 1091 | } |
| 1092 | |
Ali Alsuliman | 7e5c574 | 2022-11-18 12:21:13 -0800 | [diff] [blame] | 1093 | void DatasetToken() throws ParseException: |
| 1094 | { |
| 1095 | } |
| 1096 | { |
| 1097 | Dataset() |
| 1098 | } |
| 1099 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1100 | DatasetDecl CreateDatasetStatement(Token startStmtToken) throws ParseException: |
| 1101 | { |
| 1102 | DatasetDecl stmt = null; |
| 1103 | } |
| 1104 | { |
| 1105 | ( |
| 1106 | (<INTERNAL>)? Dataset() stmt = DatasetSpecification(startStmtToken) |
| 1107 | | <EXTERNAL> Dataset() stmt = ExternalDatasetSpecification(startStmtToken) |
| 1108 | ) |
| 1109 | { |
| 1110 | return stmt; |
| 1111 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1114 | DatasetDecl DatasetSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1115 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1116 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1117 | boolean ifNotExists = false; |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1118 | TypeExpression typeExpr = null; |
| 1119 | TypeExpression metaTypeExpr = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1120 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 1121 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> primaryKeyFieldsWithTypes = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1122 | Map<String,String> hints = new HashMap<String,String>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1123 | DatasetDecl stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1124 | boolean autogenerated = false; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 1125 | Pair<Integer, List<String>> filterField = null; |
Till Westmann | f3aa19f | 2017-12-01 17:42:35 -0800 | [diff] [blame] | 1126 | RecordConstructor withRecord = null; |
Peeyush Gupta | 0814b0e | 2023-05-03 11:08:12 -0700 | [diff] [blame] | 1127 | SelectExpression selectExpr = null; |
| 1128 | Query query = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1129 | } |
| 1130 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1131 | nameComponents = QualifiedName() |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 1132 | (typeExpr = DatasetTypeSpecification())? |
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 | { String name; } |
| 1135 | <WITH> |
| 1136 | name = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1137 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1138 | if (!name.equalsIgnoreCase("meta")){ |
| 1139 | throw new SqlppParseException(getSourceLocation(startStmtToken), |
| 1140 | "We can only support one additional associated field called \"meta\"."); |
| 1141 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1142 | } |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 1143 | metaTypeExpr = DatasetTypeSpecification() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1144 | )? |
| 1145 | ifNotExists = IfNotExists() |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 1146 | (LOOKAHEAD(3) primaryKeyFieldsWithTypes = PrimaryKeyWithType() |
| 1147 | | primaryKeyFields = PrimaryKey()) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1148 | (<AUTOGENERATED> { autogenerated = true; } )? |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1149 | ( <HINTS> hints = Properties() )? |
| 1150 | ( LOOKAHEAD(2) <WITH> <FILTER> <ON> filterField = NestedField() )? |
| 1151 | ( <WITH> withRecord = RecordConstructor() )? |
Peeyush Gupta | 0814b0e | 2023-05-03 11:08:12 -0700 | [diff] [blame] | 1152 | ( <AS> selectExpr = SelectExpression(false) )? |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1153 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1154 | try { |
Peeyush Gupta | 0814b0e | 2023-05-03 11:08:12 -0700 | [diff] [blame] | 1155 | if (selectExpr != null) { |
| 1156 | query = new Query(); |
| 1157 | query.setBody(selectExpr); |
| 1158 | query.setSourceLocation(selectExpr.getSourceLocation()); |
| 1159 | } |
| 1160 | |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 1161 | if (typeExpr == null) { |
| 1162 | InternalDetailsDecl idd = new InternalDetailsDecl(primaryKeyFieldsWithTypes.second, |
| 1163 | primaryKeyFieldsWithTypes.first, autogenerated, filterField == null? null : filterField.first, |
| 1164 | filterField == null? null : filterField.second, primaryKeyFieldsWithTypes.third); |
| 1165 | final TypeReferenceExpression anyObjectReference = new TypeReferenceExpression( |
| 1166 | new Pair(MetadataBuiltinEntities.ANY_OBJECT_DATATYPE.getDataverseName(), |
| 1167 | new Identifier(MetadataBuiltinEntities.ANY_OBJECT_DATATYPE.getDatatypeName()))); |
| 1168 | stmt = new DatasetDecl(nameComponents.first, nameComponents.second, anyObjectReference, null, hints, |
Peeyush Gupta | 0814b0e | 2023-05-03 11:08:12 -0700 | [diff] [blame] | 1169 | DatasetType.INTERNAL, idd, withRecord, ifNotExists, query); |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 1170 | return addSourceLocation(stmt, startStmtToken); |
| 1171 | } else { |
| 1172 | InternalDetailsDecl idd = new InternalDetailsDecl(primaryKeyFields.second, primaryKeyFields.first, autogenerated, |
| 1173 | filterField == null? null : filterField.first, filterField == null? null : filterField.second); |
| 1174 | DatasetDeclParametersUtil.adjustInlineTypeDecl(typeExpr, primaryKeyFields.second, primaryKeyFields.first, false); |
| 1175 | if (metaTypeExpr != null) { |
| 1176 | DatasetDeclParametersUtil.adjustInlineTypeDecl(metaTypeExpr, primaryKeyFields.second, primaryKeyFields.first, |
| 1177 | true); |
| 1178 | } |
| 1179 | stmt = new DatasetDecl(nameComponents.first, nameComponents.second, typeExpr, metaTypeExpr, hints, |
Peeyush Gupta | 0814b0e | 2023-05-03 11:08:12 -0700 | [diff] [blame] | 1180 | DatasetType.INTERNAL, idd, withRecord, ifNotExists, query); |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 1181 | return addSourceLocation(stmt, startStmtToken); |
Dmitry Lychagin | 4fb583d | 2021-11-10 17:25:28 -0800 | [diff] [blame] | 1182 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1183 | } catch (CompilationException e) { |
| 1184 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 1185 | } |
| 1186 | } |
| 1187 | } |
| 1188 | |
| 1189 | DatasetDecl ExternalDatasetSpecification(Token startStmtToken) throws ParseException: |
| 1190 | { |
| 1191 | Pair<DataverseName,Identifier> nameComponents = null; |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 1192 | TypeExpression typeExpr = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1193 | boolean ifNotExists = false; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1194 | String adapterName = null; |
| 1195 | Map<String,String> properties = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1196 | Map<String,String> hints = new HashMap<String,String>(); |
| 1197 | DatasetDecl stmt = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1198 | RecordConstructor withRecord = null; |
| 1199 | } |
| 1200 | { |
| 1201 | nameComponents = QualifiedName() |
Dmitry Lychagin | 5cc254a | 2020-05-08 17:12:47 -0700 | [diff] [blame] | 1202 | typeExpr = DatasetTypeSpecification() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1203 | ifNotExists = IfNotExists() |
| 1204 | <USING> adapterName = AdapterName() properties = Configuration() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1205 | ( <HINTS> hints = Properties() )? |
| 1206 | ( <WITH> withRecord = RecordConstructor() )? |
| 1207 | { |
| 1208 | ExternalDetailsDecl edd = new ExternalDetailsDecl(); |
| 1209 | edd.setAdapter(adapterName); |
| 1210 | edd.setProperties(properties); |
| 1211 | try { |
Murtadha Hubail | 353e95f | 2020-08-24 22:18:04 +0300 | [diff] [blame] | 1212 | stmt = new DatasetDecl(nameComponents.first, nameComponents.second, typeExpr, null, hints, DatasetType.EXTERNAL, |
| 1213 | edd, withRecord, ifNotExists); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1214 | return addSourceLocation(stmt, startStmtToken); |
| 1215 | } catch (CompilationException e) { |
| 1216 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 1217 | } |
| 1218 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1221 | TypeExpression DatasetTypeSpecification() throws ParseException: |
| 1222 | { |
| 1223 | TypeExpression typeExpr = null; |
| 1224 | } |
| 1225 | { |
| 1226 | ( |
| 1227 | LOOKAHEAD(3) typeExpr = DatasetRecordTypeSpecification(true) |
| 1228 | | typeExpr = DatasetReferenceTypeSpecification() |
| 1229 | ) |
| 1230 | { |
| 1231 | return typeExpr; |
| 1232 | } |
| 1233 | } |
| 1234 | |
| 1235 | TypeExpression DatasetReferenceTypeSpecification() throws ParseException: |
| 1236 | { |
| 1237 | TypeExpression typeExpr = null; |
| 1238 | } |
| 1239 | { |
| 1240 | <LEFTPAREN> typeExpr = TypeReference() <RIGHTPAREN> |
| 1241 | { |
| 1242 | return typeExpr; |
| 1243 | } |
| 1244 | } |
| 1245 | |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1246 | RecordTypeDefinition DatasetRecordTypeSpecification(boolean allowRecordKindModifier) throws ParseException: |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1247 | { |
| 1248 | RecordTypeDefinition recordTypeDef = null; |
| 1249 | RecordTypeDefinition.RecordKind recordKind = null; |
Dmitry Lychagin | 6c239e7 | 2020-06-19 19:46:27 -0700 | [diff] [blame] | 1250 | Token startToken = null, recordKindToken = null; |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1251 | } |
| 1252 | { |
Dmitry Lychagin | 6c239e7 | 2020-06-19 19:46:27 -0700 | [diff] [blame] | 1253 | <LEFTPAREN> { startToken = token; } recordTypeDef = DatasetRecordTypeDef() <RIGHTPAREN> |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1254 | ( recordKind = RecordTypeKind() { recordKindToken = token; } <TYPE> )? |
| 1255 | { |
| 1256 | if (recordKind == null) { |
| 1257 | recordKind = RecordTypeDefinition.RecordKind.CLOSED; |
| 1258 | } else if (!allowRecordKindModifier) { |
| 1259 | throw createUnexpectedTokenError(recordKindToken); |
| 1260 | } |
| 1261 | recordTypeDef.setRecordKind(recordKind); |
Dmitry Lychagin | 6c239e7 | 2020-06-19 19:46:27 -0700 | [diff] [blame] | 1262 | return addSourceLocation(recordTypeDef, startToken); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1263 | } |
| 1264 | } |
| 1265 | |
| 1266 | RecordTypeDefinition DatasetRecordTypeDef() throws ParseException: |
| 1267 | { |
| 1268 | RecordTypeDefinition recType = new RecordTypeDefinition(); |
| 1269 | } |
| 1270 | { |
| 1271 | DatasetRecordField(recType) ( <COMMA> DatasetRecordField(recType) )* |
| 1272 | { |
| 1273 | return recType; |
| 1274 | } |
| 1275 | } |
| 1276 | |
| 1277 | void DatasetRecordField(RecordTypeDefinition recType) throws ParseException: |
| 1278 | { |
| 1279 | String fieldName; |
| 1280 | TypeExpression type = null; |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 1281 | boolean nullable = true, missable = true; |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1282 | } |
| 1283 | { |
| 1284 | fieldName = Identifier() |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 1285 | type = TypeReference() ( <NOT> <UNKNOWN> { nullable = false; missable = false; } )? |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1286 | { |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 1287 | recType.addField(fieldName, type, nullable, missable); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 1288 | } |
| 1289 | } |
| 1290 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1291 | CreateIndexStatement CreateIndexStatement(Token startStmtToken) throws ParseException: |
| 1292 | { |
| 1293 | CreateIndexStatement stmt = null; |
| 1294 | } |
| 1295 | { |
| 1296 | ( |
| 1297 | <INDEX> stmt = IndexSpecification(startStmtToken) |
| 1298 | | <PRIMARY> <INDEX> stmt = PrimaryIndexSpecification(startStmtToken) |
| 1299 | ) |
| 1300 | { |
| 1301 | return stmt; |
| 1302 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1303 | } |
| 1304 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1305 | CreateIndexStatement IndexSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1306 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1307 | Pair<DataverseName,Identifier> nameComponents = null; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1308 | String indexName = null; |
| 1309 | IndexParams indexParams = null; |
| 1310 | CreateIndexStatement.IndexedElement indexedElement = null; |
| 1311 | List<CreateIndexStatement.IndexedElement> indexedElementList = new ArrayList<CreateIndexStatement.IndexedElement>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1312 | boolean enforced = false; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1313 | boolean ifNotExists = false; |
| 1314 | boolean hasUnnest = false; |
| 1315 | String fullTextConfigName = null; |
| 1316 | Token startElementToken = null; |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 1317 | Boolean excludeUnknown = null; |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1318 | Pair<Map<String, String>, Boolean> castConfigDefaultNull; |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 1319 | Boolean castDefaultNull = null; |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1320 | Map<String, String> castConfig = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1321 | } |
| 1322 | { |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1323 | ( |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1324 | indexName = Identifier() ifNotExists = IfNotExists() |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1325 | <ON> nameComponents = QualifiedName() |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1326 | <LEFTPAREN> { startElementToken = token; } |
| 1327 | indexedElement = IndexedElement(startElementToken) { |
| 1328 | indexedElementList.add(indexedElement); |
| 1329 | hasUnnest |= indexedElement.hasUnnest(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1330 | } |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1331 | (<COMMA> { startElementToken = token; } |
| 1332 | indexedElement = IndexedElement(startElementToken) { |
| 1333 | indexedElementList.add(indexedElement); |
| 1334 | hasUnnest |= indexedElement.hasUnnest(); |
| 1335 | } |
| 1336 | )* |
| 1337 | <RIGHTPAREN> |
| 1338 | ( <TYPE> indexParams = IndexType() )? ( <ENFORCED> { enforced = true; } )? |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 1339 | ( LOOKAHEAD({laIdentifier(EXCLUDE) || laIdentifier(INCLUDE)}) <IDENTIFIER> |
| 1340 | { |
| 1341 | if (isToken(EXCLUDE)) { |
| 1342 | excludeUnknown = true; |
| 1343 | } else if (isToken(INCLUDE)) { |
| 1344 | excludeUnknown = false; |
| 1345 | } else { |
| 1346 | throw createUnexpectedTokenError(); |
| 1347 | } |
| 1348 | } <UNKNOWN> <KEY> |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 1349 | )? |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 1350 | |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1351 | ( <CAST><LEFTPAREN> castConfigDefaultNull = CastDefaultNull() <RIGHTPAREN> |
| 1352 | { |
| 1353 | castConfig = castConfigDefaultNull.first; |
| 1354 | castDefaultNull = castConfigDefaultNull.second; |
| 1355 | } |
| 1356 | )? |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1357 | ) |
| 1358 | { |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1359 | IndexType indexType; |
| 1360 | int gramLength; |
| 1361 | if (indexParams != null) { |
| 1362 | indexType = indexParams.type; |
| 1363 | gramLength = indexParams.gramLength; |
| 1364 | fullTextConfigName = indexParams.fullTextConfig; |
| 1365 | } else { |
| 1366 | indexType = hasUnnest ? IndexType.ARRAY : IndexType.BTREE; |
| 1367 | gramLength = -1; |
| 1368 | fullTextConfigName = null; |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1369 | } |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1370 | CreateIndexStatement stmt = new CreateIndexStatement(nameComponents.first, nameComponents.second, |
Ali Alsuliman | 931e738 | 2021-08-08 21:55:59 +0300 | [diff] [blame] | 1371 | new Identifier(indexName), indexType, indexedElementList, enforced, gramLength, fullTextConfigName, ifNotExists, |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1372 | excludeUnknown, castDefaultNull, castConfig); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1373 | return addSourceLocation(stmt, startStmtToken); |
Ali Alsuliman | 8351d25 | 2017-09-24 00:43:15 -0700 | [diff] [blame] | 1374 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1375 | } |
| 1376 | |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1377 | CreateIndexStatement.IndexedElement IndexedElement(Token startElementToken) throws ParseException: |
| 1378 | { |
| 1379 | Triple<Integer, List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> element = null; |
| 1380 | Pair<List<String>, IndexedTypeExpression> elementSimple = null; |
| 1381 | int elementSimpleSource = 0; |
| 1382 | } |
| 1383 | { |
| 1384 | ( |
| 1385 | element = IndexedElementUnnestSelect() |
| 1386 | | ( |
| 1387 | LOOKAHEAD({ laIdentifier(META) && laToken(2, LEFTPAREN) && laToken(3, RIGHTPAREN) }) |
| 1388 | <IDENTIFIER> { expectToken(META); } <LEFTPAREN> <RIGHTPAREN> |
| 1389 | <DOT> elementSimple = IndexedField() |
| 1390 | { elementSimpleSource = 1; } |
| 1391 | ) |
| 1392 | | elementSimple = IndexedField() |
| 1393 | | <LEFTPAREN> ( element = IndexedElementUnnestSelect() | elementSimple = IndexedField() ) <RIGHTPAREN> |
| 1394 | ) |
| 1395 | { |
| 1396 | int source; |
| 1397 | List<List<String>> unnestList; |
| 1398 | List<Pair<List<String>, IndexedTypeExpression>> projectList; |
| 1399 | if (elementSimple != null) { |
| 1400 | source = elementSimpleSource; |
| 1401 | unnestList = null; |
| 1402 | projectList = Collections.singletonList(elementSimple); |
| 1403 | } else { |
| 1404 | source = element.first; |
| 1405 | unnestList = element.second; |
| 1406 | projectList = element.third; |
| 1407 | } |
| 1408 | CreateIndexStatement.IndexedElement ie = new CreateIndexStatement.IndexedElement(source, unnestList, projectList); |
| 1409 | ie.setSourceLocation(getSourceLocation(startElementToken)); |
| 1410 | return ie; |
| 1411 | } |
| 1412 | } |
| 1413 | |
| 1414 | Triple<Integer, List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> IndexedElementUnnestSelect() |
| 1415 | throws ParseException: |
| 1416 | { |
| 1417 | int source = 0; |
| 1418 | Pair<List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> element = null; |
| 1419 | } |
| 1420 | { |
| 1421 | <UNNEST> |
| 1422 | ( |
| 1423 | ( |
| 1424 | LOOKAHEAD({ laIdentifier(META) && laToken(2, LEFTPAREN) && laToken(3, RIGHTPAREN) }) |
| 1425 | <IDENTIFIER> { expectToken(META); } <LEFTPAREN> <RIGHTPAREN> |
| 1426 | <DOT> element = IndexedElementUnnestSelectBody() { source = 1; } |
| 1427 | ) | element = IndexedElementUnnestSelectBody() |
| 1428 | ) |
| 1429 | { |
| 1430 | return new Triple<Integer, List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>>( |
| 1431 | source, element.first, element.second |
| 1432 | ); |
| 1433 | } |
| 1434 | } |
| 1435 | |
| 1436 | Pair<List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>> IndexedElementUnnestSelectBody() |
| 1437 | throws ParseException: |
| 1438 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1439 | Triple<List<String>, Token, Token> path = null; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1440 | IndexedTypeExpression type = null; |
| 1441 | List<List<String>> unnestList = new ArrayList(); |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1442 | List<Pair<List<String>, IndexedTypeExpression>> projectList = new ArrayList(); |
| 1443 | } |
| 1444 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1445 | path = MultipartIdentifier() { unnestList.add(path.first); } |
| 1446 | ( <UNNEST> path = MultipartIdentifier() { unnestList.add(path.first); })* |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1447 | ( |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1448 | ( <COLON> type = IndexedTypeExpr(false) |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1449 | { |
| 1450 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(null, type)); |
| 1451 | } |
| 1452 | ) | |
| 1453 | ( |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1454 | <SELECT> path = MultipartIdentifier() ( <COLON> type = IndexedTypeExpr(false) )? |
| 1455 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1456 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(path.first, type)); |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1457 | } |
| 1458 | ( <COMMA> path = MultipartIdentifier() ( <COLON> type = IndexedTypeExpr(false) )? |
| 1459 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1460 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(path.first, type)); |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1461 | } |
| 1462 | )* |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1463 | ) |
| 1464 | )? |
| 1465 | { |
| 1466 | if (projectList.isEmpty()) { |
| 1467 | // To support the case (<UNNEST> IDENTIFIER)* IDENTIFIER w/o any type specification. |
| 1468 | projectList.add(new Pair<List<String>, IndexedTypeExpression>(null, null)); |
| 1469 | } |
| 1470 | |
| 1471 | return new Pair<List<List<String>>, List<Pair<List<String>, IndexedTypeExpression>>>(unnestList, projectList); |
| 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | Pair<List<String>, IndexedTypeExpression> IndexedField() throws ParseException: |
| 1476 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1477 | Triple<List<String>, Token, Token> path = null; |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1478 | IndexedTypeExpression type = null; |
| 1479 | } |
| 1480 | { |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 1481 | path = MultipartIdentifier() ( <COLON> type = IndexedTypeExpr(true) )? |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1482 | { |
Dmitry Lychagin | b939313 | 2021-04-12 17:21:22 -0700 | [diff] [blame] | 1483 | return new Pair<List<String>, IndexedTypeExpression>(path.first, type); |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1484 | } |
| 1485 | } |
| 1486 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1487 | CreateIndexStatement PrimaryIndexSpecification(Token startStmtToken) throws ParseException: |
| 1488 | { |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1489 | Pair<DataverseName,Identifier> nameComponents = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1490 | String indexName = null; |
| 1491 | boolean ifNotExists = false; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1492 | } |
| 1493 | { |
| 1494 | (indexName = Identifier())? ifNotExists = IfNotExists() |
| 1495 | <ON> nameComponents = QualifiedName() (<TYPE> <BTREE>)? |
| 1496 | { |
| 1497 | if (indexName == null) { |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 1498 | indexName = MetadataConstants.PRIMARY_INDEX_PREFIX + nameComponents.second; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1499 | } |
Glenn | 67fd1f3 | 2021-02-25 16:04:49 -0800 | [diff] [blame] | 1500 | CreateIndexStatement stmt = new CreateIndexStatement(nameComponents.first, nameComponents.second, |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1501 | new Identifier(indexName), IndexType.BTREE, Collections.emptyList(), false, -1, null, ifNotExists, null, null, |
| 1502 | Collections.emptyMap()); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1503 | return addSourceLocation(stmt, startStmtToken); |
| 1504 | } |
| 1505 | } |
| 1506 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1507 | String FilterField() throws ParseException : |
| 1508 | { |
| 1509 | String filterField = null; |
| 1510 | } |
| 1511 | { |
| 1512 | filterField = Identifier() |
| 1513 | { |
| 1514 | return filterField; |
| 1515 | } |
| 1516 | } |
| 1517 | |
| 1518 | IndexParams IndexType() throws ParseException: |
| 1519 | { |
| 1520 | IndexType type = null; |
| 1521 | int gramLength = 0; |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1522 | String fullTextConfig = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1523 | } |
| 1524 | { |
| 1525 | (<BTREE> |
| 1526 | { |
| 1527 | type = IndexType.BTREE; |
| 1528 | } |
| 1529 | | <RTREE> |
| 1530 | { |
| 1531 | type = IndexType.RTREE; |
| 1532 | } |
| 1533 | | <KEYWORD> |
| 1534 | { |
| 1535 | type = IndexType.LENGTH_PARTITIONED_WORD_INVIX; |
| 1536 | } |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1537 | | <FULLTEXT> |
Taewoo Kim | c49405a | 2017-01-04 00:30:43 -0800 | [diff] [blame] | 1538 | { |
| 1539 | type = IndexType.SINGLE_PARTITION_WORD_INVIX; |
| 1540 | } |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1541 | // For now we don't allow inverted index creation using a full-text config in another data verse. |
| 1542 | // We may want to support corss-dataverse full-text config access later |
| 1543 | // If so, replace the Identifier() with QualifiedName() to get the dataverse name |
| 1544 | ( <USING> Identifier() |
| 1545 | { |
| 1546 | fullTextConfig = token.image; |
| 1547 | } |
| 1548 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1549 | | <NGRAM> <LEFTPAREN> <INTEGER_LITERAL> |
| 1550 | { |
| 1551 | type = IndexType.LENGTH_PARTITIONED_NGRAM_INVIX; |
| 1552 | gramLength = Integer.valueOf(token.image); |
| 1553 | } |
| 1554 | <RIGHTPAREN>) |
| 1555 | { |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1556 | return new IndexParams(type, gramLength, fullTextConfig); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1557 | } |
| 1558 | } |
| 1559 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1560 | CreateDataverseStatement CreateDataverseStatement(Token startStmtToken) throws ParseException : |
| 1561 | { |
| 1562 | CreateDataverseStatement stmt = null; |
| 1563 | } |
| 1564 | { |
| 1565 | <DATAVERSE> stmt = DataverseSpecification(startStmtToken) |
| 1566 | { |
| 1567 | return stmt; |
| 1568 | } |
| 1569 | } |
| 1570 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1571 | CreateDataverseStatement DataverseSpecification(Token startStmtToken) throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1572 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 1573 | DataverseName dvName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1574 | boolean ifNotExists = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1575 | } |
| 1576 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 1577 | dvName = DataverseName() ifNotExists = IfNotExists() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1578 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 1579 | CreateDataverseStatement stmt = new CreateDataverseStatement(dvName, null, ifNotExists); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1580 | return addSourceLocation(stmt, startStmtToken); |
| 1581 | } |
| 1582 | } |
| 1583 | |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1584 | CreateAdapterStatement CreateAdapterStatement(Token startStmtToken) throws ParseException: |
| 1585 | { |
| 1586 | CreateAdapterStatement stmt = null; |
| 1587 | } |
| 1588 | { |
| 1589 | <ADAPTER> stmt = AdapterSpecification(startStmtToken) |
| 1590 | { |
| 1591 | return stmt; |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | CreateAdapterStatement AdapterSpecification(Token startStmtToken) throws ParseException: |
| 1596 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1597 | Pair<DataverseName,Identifier> adapterName = null; |
| 1598 | Pair<DataverseName,Identifier> libraryName = null; |
| 1599 | List<String> externalIdentifier = null; |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1600 | boolean ifNotExists = false; |
| 1601 | } |
| 1602 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1603 | adapterName = QualifiedName() |
| 1604 | ifNotExists = IfNotExists() |
| 1605 | <AS> externalIdentifier = FunctionExternalIdentifier() |
| 1606 | <AT> libraryName = QualifiedName() |
| 1607 | { |
| 1608 | CreateAdapterStatement stmt = new CreateAdapterStatement(adapterName.first, adapterName.second.getValue(), |
| 1609 | libraryName.first, libraryName.second.getValue(), externalIdentifier, ifNotExists); |
| 1610 | return addSourceLocation(stmt, startStmtToken); |
| 1611 | } |
| 1612 | } |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1613 | |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1614 | CreateViewStatement CreateViewStatement(Token startStmtToken, boolean orReplace) throws ParseException: |
| 1615 | { |
| 1616 | CreateViewStatement stmt = null; |
| 1617 | } |
| 1618 | { |
| 1619 | <VIEW> stmt = ViewSpecification(startStmtToken, orReplace) |
| 1620 | { |
| 1621 | return stmt; |
| 1622 | } |
| 1623 | } |
| 1624 | |
| 1625 | CreateViewStatement ViewSpecification(Token startStmtToken, boolean orReplace) throws ParseException: |
| 1626 | { |
| 1627 | Pair<DataverseName, Identifier> nameComponents = null; |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1628 | TypeExpression typeExpr = null; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1629 | boolean ifNotExists = false; |
| 1630 | Token beginPos = null, endPos = null; |
| 1631 | Expression viewBodyExpr = null; |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1632 | Pair<Map<String, String>, Boolean> viewConfigDefaultNull; |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1633 | Boolean defaultNull = null; |
Dmitry Lychagin | 1f6f24e | 2021-08-19 21:41:57 -0700 | [diff] [blame] | 1634 | Map<String, String> viewConfig = null; |
Dmitry Lychagin | 81578f9 | 2021-08-24 11:57:07 -0700 | [diff] [blame] | 1635 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 1636 | Pair<List<Integer>, List<List<String>>> foreignKeyFields = null; |
| 1637 | Pair<DataverseName, Identifier> refNameComponents = null; |
| 1638 | List<CreateViewStatement.ForeignKeyDecl> foreignKeyDecls = null; |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1639 | DataverseName currentDataverse = defaultDataverse; |
| 1640 | } |
| 1641 | { |
| 1642 | nameComponents = QualifiedName() |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1643 | ( |
Dmitry Lychagin | 1f6f24e | 2021-08-19 21:41:57 -0700 | [diff] [blame] | 1644 | ( |
| 1645 | typeExpr = DatasetTypeSpecification() |
| 1646 | ifNotExists = IfNotExists() |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1647 | viewConfigDefaultNull = CastDefaultNull() |
| 1648 | { |
| 1649 | viewConfig = viewConfigDefaultNull.first; |
| 1650 | defaultNull = viewConfigDefaultNull.second; |
| 1651 | } |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 1652 | ( |
| 1653 | <PRIMARY> <KEY> <LEFTPAREN> primaryKeyFields = PrimaryKeyFields() <RIGHTPAREN> |
| 1654 | <NOT> <ENFORCED> |
| 1655 | )? |
| 1656 | ( |
| 1657 | <IDENTIFIER> { expectToken(FOREIGN); } <KEY> <LEFTPAREN> foreignKeyFields = PrimaryKeyFields() <RIGHTPAREN> |
| 1658 | <IDENTIFIER> { expectToken(REFERENCES); } refNameComponents = QualifiedName() |
| 1659 | <NOT> <ENFORCED> |
| 1660 | { |
| 1661 | if (foreignKeyDecls == null) { |
| 1662 | foreignKeyDecls = new ArrayList<CreateViewStatement.ForeignKeyDecl>(); |
| 1663 | } |
| 1664 | foreignKeyDecls.add(new CreateViewStatement.ForeignKeyDecl(foreignKeyFields.second, |
| 1665 | foreignKeyFields.first, refNameComponents.first, refNameComponents.second)); |
| 1666 | } |
| 1667 | )* |
Dmitry Lychagin | 1f6f24e | 2021-08-19 21:41:57 -0700 | [diff] [blame] | 1668 | ) |
| 1669 | | |
| 1670 | ( ifNotExists = IfNotExists() ) |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1671 | ) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1672 | { |
| 1673 | if (orReplace && ifNotExists) { |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1674 | throw new SqlppParseException(getSourceLocation(startStmtToken), "Unexpected IF NOT EXISTS"); |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1675 | } |
| 1676 | } |
| 1677 | <AS> |
| 1678 | { |
| 1679 | beginPos = token; |
| 1680 | createNewScope(); |
| 1681 | if (nameComponents.first != null) { |
| 1682 | defaultDataverse = nameComponents.first; |
| 1683 | } |
| 1684 | } |
| 1685 | viewBodyExpr = ViewBody() |
| 1686 | { |
| 1687 | endPos = token; |
| 1688 | String viewBody = extractFragment(beginPos.beginLine, beginPos.beginColumn + 1, endPos.endLine, |
| 1689 | endPos.endColumn + 1); |
| 1690 | removeCurrentScope(); |
| 1691 | defaultDataverse = currentDataverse; |
Dmitry Lychagin | 4fb583d | 2021-11-10 17:25:28 -0800 | [diff] [blame] | 1692 | if (typeExpr != null && primaryKeyFields != null) { |
| 1693 | DatasetDeclParametersUtil.adjustInlineTypeDecl(typeExpr, primaryKeyFields.second, primaryKeyFields.first, false); |
| 1694 | } |
Dmitry Lychagin | 914983f | 2021-09-30 15:11:11 -0700 | [diff] [blame] | 1695 | CreateViewStatement.KeyDecl primaryKeyDecl = primaryKeyFields != null ? |
| 1696 | new CreateViewStatement.KeyDecl(primaryKeyFields.second, primaryKeyFields.first) : null; |
| 1697 | CreateViewStatement stmt = new CreateViewStatement(nameComponents.first, nameComponents.second.getValue(), |
| 1698 | typeExpr, viewBody, viewBodyExpr, defaultNull, viewConfig, primaryKeyDecl, foreignKeyDecls, orReplace, |
| 1699 | ifNotExists); |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1700 | return addSourceLocation(stmt, startStmtToken); |
| 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | Expression ViewBody() throws ParseException: |
| 1705 | { |
| 1706 | Expression viewBodyExpr = null; |
| 1707 | } |
| 1708 | { |
Dmitry Lychagin | 33c77f9 | 2021-07-21 15:59:04 -0700 | [diff] [blame] | 1709 | ( |
| 1710 | ( viewBodyExpr = VariableRef() ( viewBodyExpr = FieldAccessor(viewBodyExpr) )* ) |
| 1711 | | viewBodyExpr = SelectExpression(true) |
| 1712 | ) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1713 | { |
| 1714 | return viewBodyExpr; |
| 1715 | } |
| 1716 | } |
| 1717 | |
Ali Alsuliman | 465a728 | 2021-11-24 12:51:32 -0800 | [diff] [blame] | 1718 | Pair<Map<String, String>, Boolean> CastDefaultNull() throws ParseException: |
| 1719 | { |
| 1720 | Map<String, String> castConfig = null; |
| 1721 | Boolean defaultNull = null; |
| 1722 | String propertyName = null, propertyValue = null; |
| 1723 | } |
| 1724 | { |
| 1725 | <IDENTIFIER> { expectToken(DEFAULT); } <NULL> { defaultNull = true; } |
| 1726 | ( |
| 1727 | LOOKAHEAD(2) <IDENTIFIER> { propertyName = token.image.toLowerCase(); } propertyValue = StringLiteral() |
| 1728 | { |
| 1729 | if (castConfig == null) { |
| 1730 | castConfig = new HashMap<String, String>(); |
| 1731 | } |
| 1732 | castConfig.put(propertyName, propertyValue); |
| 1733 | } |
| 1734 | )* |
| 1735 | { |
| 1736 | return new Pair<Map<String, String>, Boolean>(castConfig, defaultNull); |
| 1737 | } |
| 1738 | } |
| 1739 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1740 | CreateFunctionStatement CreateFunctionStatement(Token startStmtToken, boolean orReplace) throws ParseException: |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1741 | { |
| 1742 | CreateFunctionStatement stmt = null; |
| 1743 | } |
| 1744 | { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1745 | <FUNCTION> stmt = FunctionSpecification(startStmtToken, orReplace) |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1746 | { |
| 1747 | return stmt; |
| 1748 | } |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1749 | } |
| 1750 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1751 | CreateFunctionStatement FunctionSpecification(Token startStmtToken, boolean orReplace) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1752 | { |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1753 | FunctionSignature signature = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1754 | FunctionName fctName = null; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1755 | Pair<Integer, List<Pair<VarIdentifier,TypeExpression>>> paramsWithArity = null; |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1756 | List<Pair<VarIdentifier,TypeExpression>> params = null; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1757 | int arity = 0; |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1758 | TypeExpression returnType = null; |
| 1759 | Token beginPos = null, endPos = null; |
| 1760 | Expression functionBodyExpr = null; |
| 1761 | Pair<DataverseName,Identifier> libraryName = null; |
| 1762 | List<String> externalIdentifier = null; |
| 1763 | RecordConstructor withOptions = null; |
| 1764 | boolean ifNotExists = false; |
| 1765 | CreateFunctionStatement stmt = null; |
| 1766 | DataverseName currentDataverse = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1767 | } |
| 1768 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1769 | fctName = FunctionName() |
Steven Glenn Jacobs | 665e9fe | 2017-12-27 10:30:39 -0800 | [diff] [blame] | 1770 | { |
| 1771 | defaultDataverse = fctName.dataverse; |
| 1772 | } |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1773 | paramsWithArity = FunctionParameters() |
| 1774 | { |
| 1775 | arity = paramsWithArity.first; |
| 1776 | params = paramsWithArity.second; |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1777 | signature = new FunctionSignature(fctName.dataverse, fctName.function, arity); |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1778 | } |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1779 | ifNotExists = IfNotExists() |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 1780 | { |
| 1781 | if (orReplace && ifNotExists) { |
| 1782 | throw new SqlppParseException(getSourceLocation(token), "Unexpected IF NOT EXISTS"); |
| 1783 | } |
| 1784 | } |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1785 | returnType = FunctionReturnType() |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1786 | ( |
| 1787 | ( |
| 1788 | <LEFTBRACE> |
| 1789 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1790 | beginPos = token; |
| 1791 | createNewScope(); |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1792 | } |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 1793 | functionBodyExpr = FunctionBody() |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1794 | <RIGHTBRACE> |
| 1795 | { |
| 1796 | endPos = token; |
| 1797 | String functionBody = extractFragment(beginPos.beginLine, beginPos.beginColumn, endPos.beginLine, |
| 1798 | endPos.beginColumn); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1799 | getCurrentScope().addFunctionDescriptor(signature, false); |
| 1800 | removeCurrentScope(); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1801 | ensureNoTypeDeclsInFunction(fctName.function, params, returnType, startStmtToken); |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1802 | stmt = new CreateFunctionStatement(signature, params, functionBody, functionBodyExpr, orReplace, ifNotExists); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1803 | } |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1804 | ) |
| 1805 | | |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1806 | ( |
| 1807 | <AS> externalIdentifier = FunctionExternalIdentifier() |
| 1808 | <AT> libraryName = QualifiedName() |
| 1809 | (<WITH> withOptions = RecordConstructor())? |
| 1810 | { |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1811 | try { |
| 1812 | stmt = new CreateFunctionStatement(signature, params, returnType, libraryName.first, |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 1813 | libraryName.second.getValue(), externalIdentifier, withOptions, orReplace, ifNotExists); |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1814 | } catch (AlgebricksException e) { |
| 1815 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 1816 | } |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1817 | } |
| 1818 | ) |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 1819 | ) |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1820 | { |
Dmitry Lychagin | 265e3ce | 2021-03-02 12:22:38 -0800 | [diff] [blame] | 1821 | defaultDataverse = currentDataverse; |
| 1822 | return addSourceLocation(stmt, startStmtToken); |
| 1823 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1824 | } |
| 1825 | |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1826 | Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>> FunctionParameters() : |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1827 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1828 | Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>> params = null; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1829 | } |
| 1830 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1831 | <LEFTPAREN> (params = FunctionParameterList())? <RIGHTPAREN> |
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 | if (params == null) { |
| 1834 | params = new Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>>( |
| 1835 | 0, Collections.<Pair<VarIdentifier, TypeExpression>>emptyList() |
| 1836 | ); |
| 1837 | } |
| 1838 | return params; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1839 | } |
| 1840 | } |
| 1841 | |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1842 | Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>> FunctionParameterList() : |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1843 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1844 | List<Pair<VarIdentifier, TypeExpression>> paramList = null; |
| 1845 | Pair<VarIdentifier, TypeExpression> param = null; |
| 1846 | int arity = 0; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1847 | } |
| 1848 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1849 | ( |
| 1850 | ( |
| 1851 | <DOT> <DOT> <DOT> |
| 1852 | { |
| 1853 | param = new Pair<VarIdentifier, TypeExpression>( |
| 1854 | SqlppVariableUtil.toInternalVariableIdentifier(UDF_VARARGS_PARAM_NAME), null |
| 1855 | ); |
| 1856 | paramList = Collections.<Pair<VarIdentifier, TypeExpression>>singletonList(param); |
| 1857 | arity = FunctionIdentifier.VARARGS; |
| 1858 | } |
| 1859 | ) |
| 1860 | | |
| 1861 | ( |
| 1862 | param = FunctionParameter() |
| 1863 | { |
| 1864 | paramList = new ArrayList<Pair<VarIdentifier, TypeExpression>>(); |
| 1865 | paramList.add(param); |
| 1866 | } |
| 1867 | ( <COMMA> param = FunctionParameter() { paramList.add(param); } )* |
| 1868 | { |
| 1869 | arity = paramList.size(); |
| 1870 | } |
| 1871 | ) |
| 1872 | ) |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1873 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 1874 | return new Pair<Integer, List<Pair<VarIdentifier, TypeExpression>>>(arity, paramList); |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1875 | } |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1876 | } |
| 1877 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1878 | Pair<VarIdentifier,TypeExpression> FunctionParameter() throws ParseException: |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1879 | { |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1880 | String name = null; |
| 1881 | TypeExpression type = null; |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1882 | } |
| 1883 | { |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 1884 | name = VariableIdentifier() |
| 1885 | ( LOOKAHEAD(3) (<COLON>)? type = TypeExpr(false) )? |
| 1886 | { |
| 1887 | return new Pair<VarIdentifier,TypeExpression>(new VarIdentifier(name), type); |
| 1888 | } |
| 1889 | } |
| 1890 | |
| 1891 | TypeExpression FunctionReturnType() throws ParseException: |
| 1892 | { |
| 1893 | TypeExpression returnType = null; |
| 1894 | } |
| 1895 | { |
| 1896 | ( LOOKAHEAD({laIdentifier(RETURNS)}) <IDENTIFIER> returnType = TypeExpr(false) )? |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 1897 | { |
| 1898 | return returnType; |
| 1899 | } |
| 1900 | } |
| 1901 | |
Dmitry Lychagin | 45de234 | 2020-02-03 12:01:28 -0800 | [diff] [blame] | 1902 | Expression FunctionBody() throws ParseException: |
| 1903 | { |
| 1904 | Expression functionBodyExpr = null; |
| 1905 | } |
| 1906 | { |
| 1907 | ( functionBodyExpr = SelectExpression(true) | functionBodyExpr = Expression() ) |
| 1908 | { |
| 1909 | return functionBodyExpr; |
| 1910 | } |
| 1911 | } |
| 1912 | |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 1913 | List<String> FunctionExternalIdentifier() throws ParseException: |
| 1914 | { |
| 1915 | String ident = null; |
| 1916 | List<String> identList = new ArrayList(2); |
| 1917 | } |
| 1918 | { |
| 1919 | ident = StringLiteral() { identList.add(ident.trim()); } |
| 1920 | ( <COMMA> ident = StringLiteral() { identList.add(ident.trim()); } )* |
| 1921 | { |
| 1922 | return identList; |
| 1923 | } |
| 1924 | } |
| 1925 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1926 | CreateFeedStatement CreateFeedStatement(Token startStmtToken) throws ParseException: |
| 1927 | { |
| 1928 | CreateFeedStatement stmt = null; |
| 1929 | } |
| 1930 | { |
| 1931 | <FEED> stmt = FeedSpecification(startStmtToken) |
| 1932 | { |
| 1933 | return stmt; |
| 1934 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1935 | } |
| 1936 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1937 | CreateFeedStatement FeedSpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1938 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 1939 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1940 | boolean ifNotExists = false; |
| 1941 | String adapterName = null; |
| 1942 | Map<String,String> properties = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1943 | CreateFeedStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1944 | Pair<Identifier,Identifier> sourceNameComponents = null; |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1945 | RecordConstructor withRecord = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1946 | } |
| 1947 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1948 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1949 | <WITH> withRecord = RecordConstructor() |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1950 | { |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1951 | try { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1952 | stmt = new CreateFeedStatement(nameComponents, withRecord, ifNotExists); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 1953 | return addSourceLocation(stmt, startStmtToken); |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1954 | } catch (AlgebricksException e) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1955 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
Xikui Wang | 5a61b2a | 2018-01-02 14:14:03 -0800 | [diff] [blame] | 1956 | } |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 1957 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1958 | } |
| 1959 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1960 | CreateFeedPolicyStatement CreateFeedPolicyStatement(Token startStmtToken) throws ParseException: |
| 1961 | { |
| 1962 | CreateFeedPolicyStatement stmt = null; |
| 1963 | } |
| 1964 | { |
| 1965 | <INGESTION> <POLICY> stmt = FeedPolicySpecification(startStmtToken) |
| 1966 | { |
| 1967 | return stmt; |
| 1968 | } |
| 1969 | } |
| 1970 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1971 | CreateFeedPolicyStatement FeedPolicySpecification(Token startStmtToken) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1972 | { |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 1973 | String policyName = null; |
| 1974 | String basePolicyName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1975 | String sourcePolicyFile = null; |
| 1976 | String definition = null; |
| 1977 | boolean ifNotExists = false; |
| 1978 | Map<String,String> properties = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 1979 | CreateFeedPolicyStatement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1980 | } |
| 1981 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1982 | policyName = Identifier() ifNotExists = IfNotExists() |
| 1983 | <FROM> |
| 1984 | (<POLICY> basePolicyName = Identifier() properties = Configuration() (<DEFINITION> definition = ConstantString())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1985 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1986 | stmt = new CreateFeedPolicyStatement(policyName, basePolicyName, properties, definition, ifNotExists); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1987 | } |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 1988 | | <PATH> sourcePolicyFile = ConstantString() (<DEFINITION> definition = ConstantString())? |
| 1989 | { |
| 1990 | stmt = new CreateFeedPolicyStatement(policyName, sourcePolicyFile, definition, ifNotExists); |
| 1991 | } |
| 1992 | ) |
| 1993 | { |
| 1994 | return addSourceLocation(stmt, startStmtToken); |
| 1995 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 1996 | } |
| 1997 | |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 1998 | Statement CreateFullTextStatement(Token startStmtToken) throws ParseException: |
| 1999 | { |
| 2000 | Statement stmt = null; |
| 2001 | } |
| 2002 | { |
| 2003 | ( |
| 2004 | <FULLTEXT> |
| 2005 | ( |
| 2006 | <FILTER> stmt = CreateFullTextFilterSpec(startStmtToken) |
| 2007 | | (<IDENTIFIER> { expectToken(CONFIG); } stmt = CreateFullTextConfigSpec(startStmtToken)) |
| 2008 | ) |
| 2009 | ) |
| 2010 | { |
| 2011 | return stmt; |
| 2012 | } |
| 2013 | } |
| 2014 | |
| 2015 | CreateFullTextFilterStatement CreateFullTextFilterSpec(Token startStmtToken) throws ParseException: |
| 2016 | { |
| 2017 | CreateFullTextFilterStatement stmt = null; |
| 2018 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2019 | boolean ifNotExists = false; |
| 2020 | RecordConstructor expr = null; |
| 2021 | } |
| 2022 | { |
| 2023 | ( |
| 2024 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
| 2025 | <AS> |
| 2026 | expr = RecordConstructor() |
| 2027 | ) |
| 2028 | { |
| 2029 | try { |
| 2030 | stmt = new CreateFullTextFilterStatement(nameComponents.first, nameComponents.second.getValue(), ifNotExists, expr); |
| 2031 | return addSourceLocation(stmt, startStmtToken); |
| 2032 | } catch (CompilationException e) { |
| 2033 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 2034 | } |
| 2035 | } |
| 2036 | } |
| 2037 | |
| 2038 | CreateFullTextConfigStatement CreateFullTextConfigSpec(Token startStmtToken) throws ParseException: |
| 2039 | { |
| 2040 | CreateFullTextConfigStatement stmt = null; |
| 2041 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2042 | boolean ifNotExists = false; |
| 2043 | RecordConstructor expr = null; |
| 2044 | } |
| 2045 | { |
| 2046 | ( |
| 2047 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
| 2048 | <AS> |
| 2049 | expr = RecordConstructor() |
| 2050 | ) |
| 2051 | { |
| 2052 | try { |
| 2053 | stmt = new CreateFullTextConfigStatement(nameComponents.first, nameComponents.second.getValue(), ifNotExists, expr); |
| 2054 | return addSourceLocation(stmt, startStmtToken); |
| 2055 | } catch (CompilationException e) { |
| 2056 | throw new SqlppParseException(getSourceLocation(startStmtToken), e.getMessage()); |
| 2057 | } |
| 2058 | } |
| 2059 | } |
| 2060 | |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2061 | CreateSynonymStatement CreateSynonymStatement(Token startStmtToken) throws ParseException: |
| 2062 | { |
| 2063 | CreateSynonymStatement stmt = null; |
| 2064 | } |
| 2065 | { |
| 2066 | <SYNONYM> stmt = SynonymSpecification(startStmtToken) |
| 2067 | { |
| 2068 | return stmt; |
| 2069 | } |
| 2070 | } |
| 2071 | |
| 2072 | CreateSynonymStatement SynonymSpecification(Token startStmtToken) throws ParseException: |
| 2073 | { |
| 2074 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2075 | Pair<DataverseName,Identifier> objectNameComponents = null; |
| 2076 | boolean ifNotExists = false; |
| 2077 | } |
| 2078 | { |
| 2079 | nameComponents = QualifiedName() ifNotExists = IfNotExists() |
| 2080 | <FOR> objectNameComponents = QualifiedName() |
| 2081 | { |
| 2082 | CreateSynonymStatement stmt = new CreateSynonymStatement(nameComponents.first, nameComponents.second.getValue(), |
| 2083 | objectNameComponents.first, objectNameComponents.second.getValue(), ifNotExists); |
| 2084 | return addSourceLocation(stmt, startStmtToken); |
| 2085 | } |
| 2086 | } |
| 2087 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2088 | boolean IfNotExists() throws ParseException: |
| 2089 | { |
| 2090 | } |
| 2091 | { |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 2092 | ( LOOKAHEAD(1) <IF> <NOT> <EXISTS> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2093 | { |
| 2094 | return true; |
| 2095 | } |
| 2096 | )? |
| 2097 | { |
| 2098 | return false; |
| 2099 | } |
| 2100 | } |
| 2101 | |
Xikui Wang | 9d63f62 | 2017-05-18 17:50:44 -0700 | [diff] [blame] | 2102 | void ApplyFunction(List<FunctionSignature> funcSigs) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2103 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2104 | FunctionName functionName = null; |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2105 | String fqFunctionName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2106 | } |
| 2107 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2108 | <APPLY> <FUNCTION> functionName = FunctionName() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2109 | { |
| 2110 | fqFunctionName = functionName.library == null ? functionName.function : functionName.library + "#" + functionName.function; |
| 2111 | funcSigs.add(new FunctionSignature(functionName.dataverse, fqFunctionName, 1)); |
| 2112 | } |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2113 | ( |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2114 | <COMMA> functionName = FunctionName() |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2115 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2116 | fqFunctionName = functionName.library == null ? functionName.function : functionName.library + "#" + functionName.function; |
| 2117 | funcSigs.add(new FunctionSignature(functionName.dataverse, fqFunctionName, 1)); |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2118 | } |
| 2119 | )* |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2120 | } |
| 2121 | |
| 2122 | String GetPolicy() throws ParseException: |
| 2123 | { |
| 2124 | String policy = null; |
| 2125 | } |
| 2126 | { |
| 2127 | <USING> <POLICY> policy = Identifier() |
| 2128 | { |
| 2129 | return policy; |
| 2130 | } |
| 2131 | |
| 2132 | } |
| 2133 | |
| 2134 | FunctionSignature FunctionSignature() throws ParseException: |
| 2135 | { |
| 2136 | FunctionName fctName = null; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 2137 | Pair<Integer, List<Pair<VarIdentifier,TypeExpression>>> params = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2138 | int arity = 0; |
| 2139 | } |
| 2140 | { |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2141 | fctName = FunctionName() |
| 2142 | ( |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 2143 | LOOKAHEAD(2) params = FunctionParameters() { arity = params.first; } |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2144 | | ( <LEFTPAREN> arity = FunctionArity() <RIGHTPAREN> ) |
| 2145 | | ( <ATT> arity = FunctionArity() ) // back-compat |
| 2146 | ) |
| 2147 | { |
| 2148 | return new FunctionSignature(fctName.dataverse, fctName.function, arity); |
| 2149 | } |
| 2150 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2151 | |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2152 | int FunctionArity() throws ParseException: |
| 2153 | { |
| 2154 | int arity; |
| 2155 | } |
| 2156 | { |
| 2157 | <INTEGER_LITERAL> |
| 2158 | { |
| 2159 | try { |
| 2160 | arity = Integer.parseInt(token.image); |
| 2161 | } catch (NumberFormatException e) { |
| 2162 | throw new SqlppParseException(getSourceLocation(token), "Invalid arity: " + token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2163 | } |
Dmitry Lychagin | dcb4ad2 | 2020-08-26 15:49:09 -0700 | [diff] [blame] | 2164 | if (arity < 0 && arity != FunctionIdentifier.VARARGS) { |
| 2165 | throw new SqlppParseException(getSourceLocation(token), "Invalid arity: " + arity); |
| 2166 | } |
| 2167 | return arity; |
| 2168 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2169 | } |
| 2170 | |
Peeyush Gupta | 6ba5a26 | 2023-04-13 11:08:53 -0700 | [diff] [blame] | 2171 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> PrimaryKeyWithType() throws ParseException: |
| 2172 | { |
| 2173 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> primaryKeyFieldsWithTypes = null; |
| 2174 | } |
| 2175 | { |
| 2176 | <PRIMARY> <KEY> <LEFTPAREN> primaryKeyFieldsWithTypes = PrimaryKeyFieldsWithType() <RIGHTPAREN> |
| 2177 | { |
| 2178 | return primaryKeyFieldsWithTypes; |
| 2179 | } |
| 2180 | } |
| 2181 | |
| 2182 | Triple<List<Integer>, List<List<String>>, List<TypeExpression>> PrimaryKeyFieldsWithType() throws ParseException: |
| 2183 | { |
| 2184 | Pair<Integer, List<String>> tmp = null; |
| 2185 | List<Integer> keyFieldSourceIndicators = new ArrayList<Integer>(); |
| 2186 | List<List<String>> primaryKeyFields = new ArrayList<List<String>>(); |
| 2187 | List<TypeExpression> primaryKeyFieldTypes = new ArrayList<TypeExpression>(); |
| 2188 | TypeExpression type = null; |
| 2189 | } |
| 2190 | { |
| 2191 | tmp = NestedField() <COLON> type = TypeReference() |
| 2192 | { |
| 2193 | keyFieldSourceIndicators.add(tmp.first); |
| 2194 | primaryKeyFields.add(tmp.second); |
| 2195 | primaryKeyFieldTypes.add(type); |
| 2196 | } |
| 2197 | ( <COMMA> tmp = NestedField() <COLON> type = TypeReference() |
| 2198 | { |
| 2199 | keyFieldSourceIndicators.add(tmp.first); |
| 2200 | primaryKeyFields.add(tmp.second); |
| 2201 | primaryKeyFieldTypes.add(type); |
| 2202 | } |
| 2203 | )* |
| 2204 | { |
| 2205 | return new Triple<List<Integer>, List<List<String>>, List<TypeExpression>> (keyFieldSourceIndicators, |
| 2206 | primaryKeyFields, primaryKeyFieldTypes); |
| 2207 | } |
| 2208 | } |
| 2209 | |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2210 | Pair<List<Integer>, List<List<String>>> PrimaryKey() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2211 | { |
Dmitry Lychagin | 81578f9 | 2021-08-24 11:57:07 -0700 | [diff] [blame] | 2212 | Pair<List<Integer>, List<List<String>>> primaryKeyFields = null; |
| 2213 | } |
| 2214 | { |
| 2215 | <PRIMARY> <KEY> primaryKeyFields = PrimaryKeyFields() |
| 2216 | { |
| 2217 | return primaryKeyFields; |
| 2218 | } |
| 2219 | } |
| 2220 | |
| 2221 | Pair<List<Integer>, List<List<String>>> PrimaryKeyFields() throws ParseException: |
| 2222 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2223 | Pair<Integer, List<String>> tmp = null; |
| 2224 | List<Integer> keyFieldSourceIndicators = new ArrayList<Integer>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2225 | List<List<String>> primaryKeyFields = new ArrayList<List<String>>(); |
| 2226 | } |
| 2227 | { |
Dmitry Lychagin | 81578f9 | 2021-08-24 11:57:07 -0700 | [diff] [blame] | 2228 | tmp = NestedField() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2229 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2230 | keyFieldSourceIndicators.add(tmp.first); |
| 2231 | primaryKeyFields.add(tmp.second); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2232 | } |
| 2233 | ( <COMMA> tmp = NestedField() |
| 2234 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2235 | keyFieldSourceIndicators.add(tmp.first); |
| 2236 | primaryKeyFields.add(tmp.second); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2237 | } |
| 2238 | )* |
| 2239 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 2240 | return new Pair<List<Integer>, List<List<String>>> (keyFieldSourceIndicators, primaryKeyFields); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2241 | } |
| 2242 | } |
| 2243 | |
| 2244 | Statement DropStatement() throws ParseException: |
| 2245 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2246 | Token startToken = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2247 | Statement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2248 | } |
| 2249 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2250 | <DROP> { startToken = token; } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2251 | ( |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2252 | stmt = DropDatasetStatement(startToken) |
| 2253 | | stmt = DropIndexStatement(startToken) |
| 2254 | | stmt = DropNodeGroupStatement(startToken) |
| 2255 | | stmt = DropTypeStatement(startToken) |
| 2256 | | stmt = DropDataverseStatement(startToken) |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 2257 | | stmt = DropAdapterStatement(startToken) |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2258 | | stmt = DropFunctionStatement(startToken) |
| 2259 | | stmt = DropFeedStatement(startToken) |
| 2260 | | stmt = DropFeedPolicyStatement(startToken) |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2261 | | stmt = DropSynonymStatement(startToken) |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 2262 | | stmt = DropFullTextStatement(startToken) |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 2263 | | stmt = DropViewStatement(startToken) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2264 | ) |
| 2265 | { |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2266 | return stmt; |
| 2267 | } |
| 2268 | } |
| 2269 | |
| 2270 | DropDatasetStatement DropDatasetStatement(Token startStmtToken) throws ParseException: |
| 2271 | { |
| 2272 | DropDatasetStatement stmt = null; |
| 2273 | } |
| 2274 | { |
| 2275 | Dataset() stmt = DropDatasetSpecification(startStmtToken) |
| 2276 | { |
| 2277 | return stmt; |
| 2278 | } |
| 2279 | } |
| 2280 | |
| 2281 | DropDatasetStatement DropDatasetSpecification(Token startStmtToken) throws ParseException: |
| 2282 | { |
| 2283 | Pair<DataverseName,Identifier> pairId = null; |
| 2284 | boolean ifExists = false; |
| 2285 | } |
| 2286 | { |
| 2287 | pairId = QualifiedName() ifExists = IfExists() |
| 2288 | { |
| 2289 | DropDatasetStatement stmt = new DropDatasetStatement(pairId.first, pairId.second, ifExists); |
| 2290 | return addSourceLocation(stmt, startStmtToken); |
| 2291 | } |
| 2292 | } |
| 2293 | |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 2294 | ViewDropStatement DropViewStatement(Token startStmtToken) throws ParseException: |
| 2295 | { |
| 2296 | ViewDropStatement stmt = null; |
| 2297 | } |
| 2298 | { |
| 2299 | <VIEW> stmt = DropViewSpecification(startStmtToken) |
| 2300 | { |
| 2301 | return stmt; |
| 2302 | } |
| 2303 | } |
| 2304 | |
| 2305 | ViewDropStatement DropViewSpecification(Token startStmtToken) throws ParseException: |
| 2306 | { |
| 2307 | Pair<DataverseName,Identifier> pairId = null; |
| 2308 | boolean ifExists = false; |
| 2309 | } |
| 2310 | { |
| 2311 | pairId = QualifiedName() ifExists = IfExists() |
| 2312 | { |
| 2313 | ViewDropStatement stmt = new ViewDropStatement(pairId.first, pairId.second, ifExists); |
| 2314 | return addSourceLocation(stmt, startStmtToken); |
| 2315 | } |
| 2316 | } |
| 2317 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2318 | IndexDropStatement DropIndexStatement(Token startStmtToken) throws ParseException: |
| 2319 | { |
| 2320 | IndexDropStatement stmt = null; |
| 2321 | } |
| 2322 | { |
| 2323 | <INDEX> stmt = DropIndexSpecification(startStmtToken) |
| 2324 | { |
| 2325 | return stmt; |
| 2326 | } |
| 2327 | } |
| 2328 | |
| 2329 | IndexDropStatement DropIndexSpecification(Token startStmtToken) throws ParseException: |
| 2330 | { |
| 2331 | Triple<DataverseName,Identifier,Identifier> tripleId = null; |
| 2332 | boolean ifExists = false; |
| 2333 | } |
| 2334 | { |
| 2335 | tripleId = DoubleQualifiedName() ifExists = IfExists() |
| 2336 | { |
| 2337 | IndexDropStatement stmt = new IndexDropStatement(tripleId.first, tripleId.second, tripleId.third, ifExists); |
| 2338 | return addSourceLocation(stmt, startStmtToken); |
| 2339 | } |
| 2340 | } |
| 2341 | |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 2342 | Statement DropFullTextStatement(Token startStmtToken) throws ParseException: |
| 2343 | { |
| 2344 | Statement stmt = null; |
| 2345 | } |
| 2346 | { |
| 2347 | <FULLTEXT> |
| 2348 | ( |
| 2349 | <FILTER> stmt = DropFullTextFilterSpec(startStmtToken) |
| 2350 | | (<IDENTIFIER> { expectToken(CONFIG); } stmt = DropFullTextConfigSpec(startStmtToken)) |
| 2351 | ) |
| 2352 | { |
| 2353 | return stmt; |
| 2354 | } |
| 2355 | } |
| 2356 | |
| 2357 | FullTextFilterDropStatement DropFullTextFilterSpec(Token startStmtToken) throws ParseException: |
| 2358 | { |
| 2359 | FullTextFilterDropStatement stmt = null; |
| 2360 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2361 | boolean ifExists = false; |
| 2362 | } |
| 2363 | { |
| 2364 | nameComponents = QualifiedName() ifExists = IfExists() |
| 2365 | { |
| 2366 | stmt = new FullTextFilterDropStatement(nameComponents.first, nameComponents.second.getValue(), ifExists); |
| 2367 | return addSourceLocation(stmt, startStmtToken); |
| 2368 | } |
| 2369 | } |
| 2370 | |
| 2371 | FullTextConfigDropStatement DropFullTextConfigSpec(Token startStmtToken) throws ParseException: |
| 2372 | { |
| 2373 | FullTextConfigDropStatement stmt = null; |
| 2374 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2375 | boolean ifExists = false; |
| 2376 | } |
| 2377 | { |
| 2378 | nameComponents = QualifiedName() ifExists = IfExists() |
| 2379 | { |
| 2380 | stmt = new FullTextConfigDropStatement(nameComponents.first, nameComponents.second.getValue(), ifExists); |
| 2381 | return addSourceLocation(stmt, startStmtToken); |
| 2382 | } |
| 2383 | } |
| 2384 | |
| 2385 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2386 | NodeGroupDropStatement DropNodeGroupStatement(Token startStmtToken) throws ParseException: |
| 2387 | { |
| 2388 | NodeGroupDropStatement stmt = null; |
| 2389 | } |
| 2390 | { |
| 2391 | <NODEGROUP> stmt = DropNodeGroupSpecification(startStmtToken) |
| 2392 | { |
| 2393 | return stmt; |
| 2394 | } |
| 2395 | } |
| 2396 | |
| 2397 | NodeGroupDropStatement DropNodeGroupSpecification(Token startStmtToken) throws ParseException: |
| 2398 | { |
| 2399 | String id = null; |
| 2400 | boolean ifExists = false; |
| 2401 | } |
| 2402 | { |
| 2403 | id = Identifier() ifExists = IfExists() |
| 2404 | { |
| 2405 | NodeGroupDropStatement stmt = new NodeGroupDropStatement(new Identifier(id), ifExists); |
| 2406 | return addSourceLocation(stmt, startStmtToken); |
| 2407 | } |
| 2408 | } |
| 2409 | |
| 2410 | TypeDropStatement DropTypeStatement(Token startStmtToken) throws ParseException: |
| 2411 | { |
| 2412 | TypeDropStatement stmt = null; |
| 2413 | } |
| 2414 | { |
| 2415 | <TYPE> stmt = DropTypeSpecification(startStmtToken) |
| 2416 | { |
| 2417 | return stmt; |
| 2418 | } |
| 2419 | } |
| 2420 | |
| 2421 | TypeDropStatement DropTypeSpecification(Token startStmtToken) throws ParseException: |
| 2422 | { |
| 2423 | Pair<DataverseName,Identifier> pairId = null; |
| 2424 | boolean ifExists = false; |
| 2425 | } |
| 2426 | { |
| 2427 | pairId = TypeName() ifExists = IfExists() |
| 2428 | { |
| 2429 | TypeDropStatement stmt = new TypeDropStatement(pairId.first, pairId.second, ifExists); |
| 2430 | return addSourceLocation(stmt, startStmtToken); |
| 2431 | } |
| 2432 | } |
| 2433 | |
| 2434 | DataverseDropStatement DropDataverseStatement(Token startStmtToken) throws ParseException: |
| 2435 | { |
| 2436 | DataverseDropStatement stmt = null; |
| 2437 | } |
| 2438 | { |
| 2439 | <DATAVERSE> stmt = DropDataverseSpecification(startStmtToken) |
| 2440 | { |
| 2441 | return stmt; |
| 2442 | } |
| 2443 | } |
| 2444 | |
| 2445 | DataverseDropStatement DropDataverseSpecification(Token startStmtToken) throws ParseException: |
| 2446 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 2447 | DataverseName dvName = null; |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2448 | boolean ifExists = false; |
| 2449 | } |
| 2450 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 2451 | dvName = DataverseName() ifExists = IfExists() |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2452 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 2453 | DataverseDropStatement stmt = new DataverseDropStatement(dvName, ifExists); |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2454 | return addSourceLocation(stmt, startStmtToken); |
| 2455 | } |
| 2456 | } |
| 2457 | |
Dmitry Lychagin | 20905cd | 2020-08-06 20:34:55 -0700 | [diff] [blame] | 2458 | AdapterDropStatement DropAdapterStatement(Token startStmtToken) throws ParseException: |
| 2459 | { |
| 2460 | AdapterDropStatement stmt = null; |
| 2461 | } |
| 2462 | { |
| 2463 | <ADAPTER> stmt = DropAdapterSpecification(startStmtToken) |
| 2464 | { |
| 2465 | return stmt; |
| 2466 | } |
| 2467 | } |
| 2468 | |
| 2469 | AdapterDropStatement DropAdapterSpecification(Token startStmtToken) throws ParseException: |
| 2470 | { |
| 2471 | Pair<DataverseName,Identifier> adapterName = null; |
| 2472 | boolean ifExists = false; |
| 2473 | } |
| 2474 | { |
| 2475 | adapterName = QualifiedName() ifExists = IfExists() |
| 2476 | { |
| 2477 | AdapterDropStatement stmt = new AdapterDropStatement(adapterName.first, adapterName.second.getValue(), ifExists); |
| 2478 | return addSourceLocation(stmt, startStmtToken); |
| 2479 | } |
| 2480 | } |
| 2481 | |
Dmitry Lychagin | 314e279 | 2019-11-26 14:35:42 -0800 | [diff] [blame] | 2482 | FunctionDropStatement DropFunctionStatement(Token startStmtToken) throws ParseException: |
| 2483 | { |
| 2484 | FunctionDropStatement stmt = null; |
| 2485 | } |
| 2486 | { |
| 2487 | <FUNCTION> stmt = DropFunctionSpecification(startStmtToken) |
| 2488 | { |
| 2489 | return stmt; |
| 2490 | } |
| 2491 | } |
| 2492 | |
| 2493 | FunctionDropStatement DropFunctionSpecification(Token startStmtToken) throws ParseException: |
| 2494 | { |
| 2495 | FunctionSignature funcSig = null; |
| 2496 | boolean ifExists = false; |
| 2497 | } |
| 2498 | { |
| 2499 | funcSig = FunctionSignature() ifExists = IfExists() |
| 2500 | { |
| 2501 | FunctionDropStatement stmt = new FunctionDropStatement(funcSig, ifExists); |
| 2502 | return addSourceLocation(stmt, startStmtToken); |
| 2503 | } |
| 2504 | } |
| 2505 | |
| 2506 | FeedDropStatement DropFeedStatement(Token startStmtToken) throws ParseException: |
| 2507 | { |
| 2508 | FeedDropStatement stmt = null; |
| 2509 | } |
| 2510 | { |
| 2511 | <FEED> stmt = DropFeedSpecification(startStmtToken) |
| 2512 | { |
| 2513 | return stmt; |
| 2514 | } |
| 2515 | } |
| 2516 | |
| 2517 | FeedDropStatement DropFeedSpecification(Token startStmtToken) throws ParseException: |
| 2518 | { |
| 2519 | Pair<DataverseName,Identifier> pairId = null; |
| 2520 | boolean ifExists = false; |
| 2521 | } |
| 2522 | { |
| 2523 | pairId = QualifiedName() ifExists = IfExists() |
| 2524 | { |
| 2525 | FeedDropStatement stmt = new FeedDropStatement(pairId.first, pairId.second, ifExists); |
| 2526 | return addSourceLocation(stmt, startStmtToken); |
| 2527 | } |
| 2528 | } |
| 2529 | |
| 2530 | FeedPolicyDropStatement DropFeedPolicyStatement(Token startStmtToken) throws ParseException: |
| 2531 | { |
| 2532 | FeedPolicyDropStatement stmt = null; |
| 2533 | } |
| 2534 | { |
| 2535 | <INGESTION> <POLICY> stmt = DropFeedPolicySpecification(startStmtToken) |
| 2536 | { |
| 2537 | return stmt; |
| 2538 | } |
| 2539 | } |
| 2540 | |
| 2541 | FeedPolicyDropStatement DropFeedPolicySpecification(Token startStmtToken) throws ParseException: |
| 2542 | { |
| 2543 | Pair<DataverseName,Identifier> pairId = null; |
| 2544 | boolean ifExists = false; |
| 2545 | } |
| 2546 | { |
| 2547 | pairId = QualifiedName() ifExists = IfExists() |
| 2548 | { |
| 2549 | FeedPolicyDropStatement stmt = new FeedPolicyDropStatement(pairId.first, pairId.second, ifExists); |
| 2550 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2551 | } |
| 2552 | } |
| 2553 | |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2554 | SynonymDropStatement DropSynonymStatement(Token startStmtToken) throws ParseException: |
| 2555 | { |
| 2556 | SynonymDropStatement stmt = null; |
| 2557 | } |
| 2558 | { |
| 2559 | <SYNONYM> stmt = DropSynonymSpecification(startStmtToken) |
| 2560 | { |
| 2561 | return stmt; |
| 2562 | } |
| 2563 | } |
| 2564 | |
| 2565 | SynonymDropStatement DropSynonymSpecification(Token startStmtToken) throws ParseException: |
| 2566 | { |
| 2567 | Pair<DataverseName,Identifier> pairId = null; |
| 2568 | boolean ifExists = false; |
| 2569 | } |
| 2570 | { |
| 2571 | pairId = QualifiedName() ifExists = IfExists() |
| 2572 | { |
| 2573 | SynonymDropStatement stmt = new SynonymDropStatement(pairId.first, pairId.second.getValue(), ifExists); |
| 2574 | return addSourceLocation(stmt, startStmtToken); |
| 2575 | } |
| 2576 | } |
| 2577 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2578 | boolean IfExists() throws ParseException : |
| 2579 | { |
| 2580 | } |
| 2581 | { |
| 2582 | ( LOOKAHEAD(1) <IF> <EXISTS> |
| 2583 | { |
| 2584 | return true; |
| 2585 | } |
| 2586 | )? |
| 2587 | { |
| 2588 | return false; |
| 2589 | } |
| 2590 | } |
| 2591 | |
| 2592 | InsertStatement InsertStatement() throws ParseException: |
| 2593 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2594 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2595 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2596 | VariableExpr var = null; |
| 2597 | Query query = null; |
| 2598 | Expression returnExpression = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2599 | } |
| 2600 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2601 | <INSERT> { startToken = token; } <INTO> nameComponents = QualifiedName() (<AS> var = Variable())? |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 2602 | query = Query() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2603 | ( <RETURNING> returnExpression = Expression())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2604 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2605 | if (var == null && returnExpression != null) { |
| 2606 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 2607 | addSourceLocation(var, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2608 | } |
Yingyi Bu | caea8f0 | 2015-11-16 15:12:15 -0800 | [diff] [blame] | 2609 | query.setTopLevel(true); |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2610 | InsertStatement stmt = new InsertStatement(nameComponents.first, nameComponents.second.getValue(), query, |
| 2611 | getVarCounter(), var, returnExpression); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2612 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2613 | } |
| 2614 | } |
| 2615 | |
| 2616 | UpsertStatement UpsertStatement() throws ParseException: |
| 2617 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2618 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2619 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2620 | VariableExpr var = null; |
| 2621 | Query query = null; |
| 2622 | Expression returnExpression = null; |
| 2623 | } |
| 2624 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2625 | <UPSERT> { startToken = token; } <INTO> nameComponents = QualifiedName() (<AS> var = Variable())? |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 2626 | query = Query() |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2627 | ( <RETURNING> returnExpression = Expression())? |
| 2628 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2629 | if (var == null && returnExpression != null) { |
| 2630 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 2631 | addSourceLocation(var, startToken); |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 2632 | } |
| 2633 | query.setTopLevel(true); |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2634 | UpsertStatement stmt = new UpsertStatement(nameComponents.first, nameComponents.second.getValue(), query, |
| 2635 | getVarCounter(), var, returnExpression); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2636 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2637 | } |
| 2638 | } |
| 2639 | |
| 2640 | DeleteStatement DeleteStatement() throws ParseException: |
| 2641 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2642 | Token startToken = null; |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2643 | VariableExpr var = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2644 | Expression condition = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2645 | Pair<DataverseName, Identifier> nameComponents; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2646 | } |
| 2647 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2648 | <DELETE> { startToken = token; } |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2649 | <FROM> nameComponents = QualifiedName() ((<AS>)? var = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2650 | (<WHERE> condition = Expression())? |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 2651 | { |
Dmitry Lychagin | 393215e | 2019-04-11 10:26:56 -0700 | [diff] [blame] | 2652 | if (var == null) { |
| 2653 | var = new VariableExpr(SqlppVariableUtil.toInternalVariableIdentifier(nameComponents.second.getValue())); |
| 2654 | addSourceLocation(var, startToken); |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 2655 | } |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2656 | DeleteStatement stmt = new DeleteStatement(var, nameComponents.first, nameComponents.second.getValue(), |
Abdullah Alamoudi | 6eb0175 | 2017-04-01 21:51:19 -0700 | [diff] [blame] | 2657 | condition, getVarCounter()); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2658 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 20e085b | 2016-07-06 12:57:27 -0700 | [diff] [blame] | 2659 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2660 | } |
| 2661 | |
| 2662 | UpdateStatement UpdateStatement() throws ParseException: |
| 2663 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2664 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2665 | VariableExpr vars; |
| 2666 | Expression target; |
| 2667 | Expression condition; |
| 2668 | UpdateClause uc; |
| 2669 | List<UpdateClause> ucs = new ArrayList<UpdateClause>(); |
| 2670 | } |
| 2671 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2672 | <UPDATE> { startToken = token; } vars = Variable() <IN> target = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2673 | <WHERE> condition = Expression() |
| 2674 | <LEFTPAREN> (uc = UpdateClause() |
| 2675 | { |
| 2676 | ucs.add(uc); |
| 2677 | } |
| 2678 | (<COMMA> uc = UpdateClause() |
| 2679 | { |
| 2680 | ucs.add(uc); |
| 2681 | } |
| 2682 | )*) <RIGHTPAREN> |
| 2683 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2684 | UpdateStatement stmt = new UpdateStatement(vars, target, condition, ucs); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2685 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2686 | } |
| 2687 | } |
| 2688 | |
| 2689 | UpdateClause UpdateClause() throws ParseException: |
| 2690 | { |
| 2691 | Expression target = null; |
| 2692 | Expression value = null ; |
| 2693 | InsertStatement is = null; |
| 2694 | DeleteStatement ds = null; |
| 2695 | UpdateStatement us = null; |
| 2696 | Expression condition = null; |
| 2697 | UpdateClause ifbranch = null; |
| 2698 | UpdateClause elsebranch = null; |
| 2699 | } |
| 2700 | { |
| 2701 | (<SET> target = Expression() <EQ> value = Expression() |
| 2702 | | is = InsertStatement() |
| 2703 | | ds = DeleteStatement() |
| 2704 | | us = UpdateStatement() |
| 2705 | | <IF> <LEFTPAREN> condition = Expression() <RIGHTPAREN> |
| 2706 | <THEN> ifbranch = UpdateClause() |
| 2707 | [LOOKAHEAD(1) <ELSE> elsebranch = UpdateClause()] |
| 2708 | { |
| 2709 | return new UpdateClause(target, value, is, ds, us, condition, ifbranch, elsebranch); |
| 2710 | } |
| 2711 | ) |
| 2712 | } |
| 2713 | |
| 2714 | Statement SetStatement() throws ParseException: |
| 2715 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2716 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2717 | String pn = null; |
| 2718 | String pv = null; |
| 2719 | } |
| 2720 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2721 | <SET> { startToken = token; } pn = Identifier() pv = ConstantString() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2722 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2723 | SetStatement stmt = new SetStatement(pn, pv); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2724 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2725 | } |
| 2726 | } |
| 2727 | |
Peeyush Gupta | 066fd56 | 2023-04-30 13:03:00 -0700 | [diff] [blame] | 2728 | CopyStatement CopyStatement() throws ParseException: |
| 2729 | { |
| 2730 | Token startToken = null; |
| 2731 | DataverseName dataverseName = null; |
| 2732 | Identifier datasetName = null; |
| 2733 | boolean alreadySorted = false; |
| 2734 | String adapterName; |
| 2735 | Map<String,String> properties; |
| 2736 | Pair<DataverseName,Identifier> nameComponents = null; |
| 2737 | } |
| 2738 | { |
| 2739 | <COPY> (<INTO>)? { startToken = token; } nameComponents = QualifiedName() |
| 2740 | { |
| 2741 | dataverseName = nameComponents.first; |
| 2742 | datasetName = nameComponents.second; |
| 2743 | } |
| 2744 | <USING> adapterName = AdapterName() properties = Configuration() |
| 2745 | { |
| 2746 | ExternalDetailsDecl edd = new ExternalDetailsDecl(); |
| 2747 | edd.setAdapter(adapterName); |
| 2748 | edd.setProperties(properties); |
| 2749 | try { |
| 2750 | CopyStatement stmt = new CopyStatement(dataverseName, datasetName.getValue(), edd, null); |
| 2751 | return addSourceLocation(stmt, startToken); |
| 2752 | } catch (CompilationException e){ |
| 2753 | throw new SqlppParseException(getSourceLocation(startToken), e.getMessage()); |
| 2754 | } |
| 2755 | } |
| 2756 | } |
| 2757 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2758 | LoadStatement LoadStatement() throws ParseException: |
| 2759 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2760 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2761 | DataverseName dataverseName = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2762 | Identifier datasetName = null; |
| 2763 | boolean alreadySorted = false; |
| 2764 | String adapterName; |
| 2765 | Map<String,String> properties; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2766 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2767 | } |
| 2768 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2769 | <LOAD> { startToken = token; } Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2770 | { |
| 2771 | dataverseName = nameComponents.first; |
| 2772 | datasetName = nameComponents.second; |
| 2773 | } |
| 2774 | <USING> adapterName = AdapterName() properties = Configuration() |
| 2775 | (<PRESORTED> |
| 2776 | { |
| 2777 | alreadySorted = true; |
| 2778 | } |
| 2779 | )? |
| 2780 | { |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 2781 | LoadStatement stmt = new LoadStatement(dataverseName, datasetName.getValue(), adapterName, properties, |
| 2782 | alreadySorted); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2783 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2784 | } |
| 2785 | } |
| 2786 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2787 | String AdapterName() throws ParseException : |
| 2788 | { |
| 2789 | String adapterName = null; |
| 2790 | } |
| 2791 | { |
| 2792 | adapterName = Identifier() |
| 2793 | { |
| 2794 | return adapterName; |
| 2795 | } |
| 2796 | } |
| 2797 | |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2798 | Statement AnalyzeStatement() throws ParseException: |
| 2799 | { |
| 2800 | Token startToken = null; |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2801 | Statement stmt = null; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2802 | Pair<DataverseName,Identifier> nameComponents = null; |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2803 | } |
| 2804 | { |
Ali Alsuliman | 7e5c574 | 2022-11-18 12:21:13 -0800 | [diff] [blame] | 2805 | <ANALYZE> { startToken = token; } DatasetToken() nameComponents = QualifiedName() |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2806 | ( |
| 2807 | stmt = AnalyzeDatasetDropStatement(startToken, nameComponents.first, nameComponents.second) |
| 2808 | | stmt = AnalyzeDatasetStatement(startToken, nameComponents.first, nameComponents.second) |
| 2809 | ) |
| 2810 | { |
| 2811 | return stmt; |
| 2812 | } |
| 2813 | } |
| 2814 | |
| 2815 | Statement AnalyzeDatasetStatement(Token startToken, DataverseName dvName, Identifier identifier) throws ParseException: |
| 2816 | { |
| 2817 | RecordConstructor withRecord = null; |
| 2818 | } |
| 2819 | { |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2820 | ( <WITH> withRecord = RecordConstructor() )? |
| 2821 | { |
| 2822 | try { |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2823 | AnalyzeStatement stmt = new AnalyzeStatement(dvName, identifier.getValue(), withRecord); |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 2824 | return addSourceLocation(stmt, startToken); |
| 2825 | } catch (CompilationException e) { |
| 2826 | throw new SqlppParseException(getSourceLocation(startToken), e.getMessage()); |
| 2827 | } |
| 2828 | } |
| 2829 | } |
| 2830 | |
Ali Alsuliman | 6d72d5e | 2022-08-08 13:41:08 -0700 | [diff] [blame] | 2831 | Statement AnalyzeDatasetDropStatement(Token startToken, DataverseName dvName, Identifier identifier) throws ParseException: |
| 2832 | { |
| 2833 | } |
| 2834 | { |
| 2835 | <DROP> <IDENTIFIER> { expectToken(STATISTICS); } |
| 2836 | { |
| 2837 | AnalyzeDropStatement stmt = new AnalyzeDropStatement(dvName, identifier.getValue()); |
| 2838 | return addSourceLocation(stmt, startToken); |
| 2839 | } |
| 2840 | } |
| 2841 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2842 | Statement CompactStatement() throws ParseException: |
| 2843 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2844 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2845 | Pair<DataverseName,Identifier> nameComponents = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2846 | } |
| 2847 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2848 | <COMPACT> { startToken = token; } Dataset() nameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2849 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2850 | CompactStatement stmt = new CompactStatement(nameComponents.first, nameComponents.second); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2851 | return addSourceLocation(stmt, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2852 | } |
| 2853 | } |
| 2854 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2855 | Statement ConnectionStatement() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2856 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2857 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2858 | Statement stmt = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2859 | } |
| 2860 | { |
| 2861 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2862 | <CONNECT> { startToken = token; } stmt = ConnectStatement(startToken) |
| 2863 | | <DISCONNECT> { startToken = token; } stmt = DisconnectStatement(startToken) |
| 2864 | | <START> { startToken = token; } stmt = StartStatement(startToken) |
| 2865 | | <STOP> { startToken = token; } stmt = StopStatement(startToken) |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2866 | ) |
| 2867 | { |
| 2868 | return stmt; |
| 2869 | } |
| 2870 | } |
| 2871 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2872 | Statement StartStatement(Token startStmtToken) throws ParseException: |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2873 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2874 | Pair<DataverseName,Identifier> feedNameComponents = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2875 | AbstractStatement stmt = null; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2876 | } |
| 2877 | { |
| 2878 | <FEED> feedNameComponents = QualifiedName() |
| 2879 | { |
| 2880 | stmt = new StartFeedStatement (feedNameComponents); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2881 | return addSourceLocation(stmt, startStmtToken); |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2882 | } |
| 2883 | } |
| 2884 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2885 | AbstractStatement StopStatement(Token startStmtToken) throws ParseException: |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2886 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2887 | Pair<DataverseName,Identifier> feedNameComponents = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2888 | AbstractStatement stmt = null; |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2889 | } |
| 2890 | { |
| 2891 | <FEED> feedNameComponents = QualifiedName() |
| 2892 | { |
| 2893 | stmt = new StopFeedStatement (feedNameComponents); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2894 | return addSourceLocation(stmt, startStmtToken); |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2895 | } |
| 2896 | } |
| 2897 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2898 | AbstractStatement DisconnectStatement(Token startStmtToken) throws ParseException: |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2899 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2900 | Pair<DataverseName,Identifier> feedNameComponents = null; |
| 2901 | Pair<DataverseName,Identifier> datasetNameComponents = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2902 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2903 | AbstractStatement stmt = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2904 | } |
| 2905 | { |
| 2906 | ( |
| 2907 | <FEED> feedNameComponents = QualifiedName() <FROM> Dataset() datasetNameComponents = QualifiedName() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2908 | { |
| 2909 | stmt = new DisconnectFeedStatement(feedNameComponents, datasetNameComponents); |
| 2910 | } |
| 2911 | ) |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2912 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2913 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2914 | } |
| 2915 | } |
| 2916 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2917 | AbstractStatement ConnectStatement(Token startStmtToken) throws ParseException: |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2918 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 2919 | Pair<DataverseName,Identifier> feedNameComponents = null; |
| 2920 | Pair<DataverseName,Identifier> datasetNameComponents = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2921 | |
| 2922 | Map<String,String> configuration = null; |
Xikui Wang | 9d63f62 | 2017-05-18 17:50:44 -0700 | [diff] [blame] | 2923 | List<FunctionSignature> appliedFunctions = new ArrayList<FunctionSignature>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 2924 | AbstractStatement stmt = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2925 | String policy = null; |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 2926 | String whereClauseBody = null; |
| 2927 | WhereClause whereClause = null; |
| 2928 | Token beginPos = null; |
| 2929 | Token endPos = null; |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2930 | } |
| 2931 | { |
| 2932 | ( |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 2933 | <FEED> feedNameComponents = QualifiedName() <TO> Dataset() datasetNameComponents = QualifiedName() |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 2934 | (ApplyFunction(appliedFunctions))? |
| 2935 | (policy = GetPolicy())? |
| 2936 | ( |
| 2937 | <WHERE> |
| 2938 | { |
| 2939 | beginPos = token; |
| 2940 | whereClause = new WhereClause(); |
| 2941 | Expression whereExpr; |
| 2942 | } |
| 2943 | whereExpr = Expression() |
| 2944 | { |
| 2945 | whereClause.setWhereExpr(whereExpr); |
| 2946 | } |
| 2947 | )? |
| 2948 | { |
| 2949 | if (whereClause != null) { |
| 2950 | endPos = token; |
| 2951 | whereClauseBody = extractFragment(beginPos.endLine, beginPos.endColumn, endPos.endLine, endPos.endColumn + 1); |
| 2952 | } |
| 2953 | } |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2954 | { |
Xikui Wang | 261dc6d | 2017-03-29 21:23:15 -0700 | [diff] [blame] | 2955 | stmt = new ConnectFeedStatement(feedNameComponents, datasetNameComponents, appliedFunctions, |
Xikui Wang | f674168 | 2018-02-22 19:17:17 -0800 | [diff] [blame] | 2956 | policy, whereClauseBody, getVarCounter()); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2957 | } |
| 2958 | ) |
| 2959 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 2960 | return addSourceLocation(stmt, startStmtToken); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 2961 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2962 | } |
| 2963 | |
| 2964 | Map<String,String> Configuration() throws ParseException : |
| 2965 | { |
| 2966 | Map<String,String> configuration = new LinkedHashMap<String,String>(); |
| 2967 | Pair<String, String> keyValuePair = null; |
| 2968 | } |
| 2969 | { |
| 2970 | <LEFTPAREN> ( keyValuePair = KeyValuePair() |
| 2971 | { |
| 2972 | configuration.put(keyValuePair.first, keyValuePair.second); |
| 2973 | } |
| 2974 | ( <COMMA> keyValuePair = KeyValuePair() |
| 2975 | { |
| 2976 | configuration.put(keyValuePair.first, keyValuePair.second); |
| 2977 | } |
| 2978 | )* )? <RIGHTPAREN> |
| 2979 | { |
| 2980 | return configuration; |
| 2981 | } |
| 2982 | } |
| 2983 | |
| 2984 | Pair<String, String> KeyValuePair() throws ParseException: |
| 2985 | { |
| 2986 | String key; |
| 2987 | String value; |
| 2988 | } |
| 2989 | { |
Ali Alsuliman | e298601 | 2020-05-14 18:14:22 -0700 | [diff] [blame] | 2990 | <LEFTPAREN> key = ConstantString() |
| 2991 | <EQ> ( value = ConstantString() | (<TRUE> | <FALSE>) {value = token.image.toLowerCase();} ) |
| 2992 | <RIGHTPAREN> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 2993 | { |
| 2994 | return new Pair<String, String>(key, value); |
| 2995 | } |
| 2996 | } |
| 2997 | |
| 2998 | Map<String,String> Properties() throws ParseException: |
| 2999 | { |
| 3000 | Map<String,String> properties = new HashMap<String,String>(); |
| 3001 | Pair<String, String> property; |
| 3002 | } |
| 3003 | { |
| 3004 | (LOOKAHEAD(1) <LEFTPAREN> property = Property() |
| 3005 | { |
| 3006 | properties.put(property.first, property.second); |
| 3007 | } |
| 3008 | ( <COMMA> property = Property() |
| 3009 | { |
| 3010 | properties.put(property.first, property.second); |
| 3011 | } |
| 3012 | )* <RIGHTPAREN> )? |
| 3013 | { |
| 3014 | return properties; |
| 3015 | } |
| 3016 | } |
| 3017 | |
| 3018 | Pair<String, String> Property() throws ParseException: |
| 3019 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3020 | String key = null; |
| 3021 | String value = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3022 | } |
| 3023 | { |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3024 | (key = Identifier() | key = StringLiteral()) |
| 3025 | <EQ> |
| 3026 | ( value = ConstantString() | <INTEGER_LITERAL> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3027 | { |
| 3028 | try { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3029 | value = String.valueOf(Long.parseLong(token.image)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3030 | } catch (NumberFormatException nfe) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3031 | throw new SqlppParseException(getSourceLocation(token), "inapproriate value: " + token.image); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3032 | } |
| 3033 | } |
| 3034 | ) |
| 3035 | { |
| 3036 | return new Pair<String, String>(key.toUpperCase(), value); |
| 3037 | } |
| 3038 | } |
| 3039 | |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3040 | IndexedTypeExpression IndexedTypeExpr(boolean allowQues) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3041 | { |
| 3042 | TypeExpression typeExpr = null; |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3043 | boolean isUnknownable = !allowQues; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3044 | } |
| 3045 | { |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3046 | typeExpr = TypeExpr(false) |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3047 | ( <QUES> |
| 3048 | { |
| 3049 | if (!allowQues) { |
| 3050 | throw new SqlppParseException(getSourceLocation(token), "'?' quantifier is illegal for the type expression."); |
| 3051 | } |
| 3052 | isUnknownable = true; |
| 3053 | } |
| 3054 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3055 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3056 | return new IndexedTypeExpression(typeExpr, isUnknownable); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3057 | } |
| 3058 | } |
| 3059 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3060 | TypeExpression TypeExpr(boolean allowRecordTypeDef) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3061 | { |
| 3062 | TypeExpression typeExpr = null; |
| 3063 | } |
| 3064 | { |
| 3065 | ( |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3066 | typeExpr = TypeReference() |
| 3067 | | typeExpr = OrderedListTypeDef(allowRecordTypeDef) |
| 3068 | | typeExpr = UnorderedListTypeDef(allowRecordTypeDef) |
| 3069 | | typeExpr = RecordTypeDef() { |
| 3070 | if (!allowRecordTypeDef) { |
| 3071 | throw new SqlppParseException(typeExpr.getSourceLocation(), "Unexpected record type declaration"); |
| 3072 | } |
| 3073 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3074 | ) |
| 3075 | { |
| 3076 | return typeExpr; |
| 3077 | } |
| 3078 | } |
| 3079 | |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 3080 | RecordTypeDefinition.RecordKind RecordTypeKind() throws ParseException: |
| 3081 | { |
| 3082 | RecordTypeDefinition.RecordKind recordKind = null; |
| 3083 | } |
| 3084 | { |
| 3085 | ( |
| 3086 | <CLOSED> { recordKind = RecordTypeDefinition.RecordKind.CLOSED; } |
| 3087 | | <OPEN> { recordKind = RecordTypeDefinition.RecordKind.OPEN; } |
| 3088 | ) |
| 3089 | { |
| 3090 | return recordKind; |
| 3091 | } |
| 3092 | } |
| 3093 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3094 | RecordTypeDefinition RecordTypeDef() throws ParseException: |
| 3095 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3096 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3097 | RecordTypeDefinition recType = new RecordTypeDefinition(); |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 3098 | RecordTypeDefinition.RecordKind recordKind = RecordTypeDefinition.RecordKind.OPEN; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3099 | } |
| 3100 | { |
Dmitry Lychagin | 3e2623c | 2020-04-01 11:20:04 -0700 | [diff] [blame] | 3101 | ( recordKind = RecordTypeKind() )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3102 | <LEFTBRACE> |
| 3103 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3104 | startToken = token; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3105 | Token hintToken = fetchHint(token, SqlppHint.GEN_FIELDS_HINT); |
| 3106 | if (hintToken != null) { |
| 3107 | String hintParams = hintToken.hintParams; |
| 3108 | String[] splits = hintParams != null ? hintParams.split("\\s+") : null; |
| 3109 | if (splits == null || splits.length != 4) { |
| 3110 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 3111 | "Expecting: /*+ gen-fields <type> <min> <max> <prefix>*/"); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3112 | } |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3113 | if (!splits[0].equals("int")) { |
| 3114 | throw new SqlppParseException(getSourceLocation(hintToken), |
| 3115 | "The only supported type for gen-fields is int."); |
| 3116 | } |
| 3117 | UndeclaredFieldsDataGen ufdg = new UndeclaredFieldsDataGen(UndeclaredFieldsDataGen.Type.INT, |
| 3118 | Integer.parseInt(splits[1]), Integer.parseInt(splits[2]), splits[3]); |
| 3119 | recType.setUndeclaredFieldsDataGen(ufdg); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3120 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3121 | } |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3122 | ( |
| 3123 | RecordField(recType) |
| 3124 | ( <COMMA> RecordField(recType) )* |
| 3125 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3126 | <RIGHTBRACE> |
| 3127 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3128 | recType.setRecordKind(recordKind); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3129 | return addSourceLocation(recType, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3130 | } |
| 3131 | } |
| 3132 | |
| 3133 | void RecordField(RecordTypeDefinition recType) throws ParseException: |
| 3134 | { |
| 3135 | String fieldName; |
| 3136 | TypeExpression type = null; |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 3137 | boolean nullable = false, missable = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3138 | } |
| 3139 | { |
| 3140 | fieldName = Identifier() |
| 3141 | { |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3142 | Token hintToken = fetchHint(token, SqlppHint.VAL_FILE_HINT, SqlppHint.VAL_FILE_SAME_INDEX_HINT, |
| 3143 | SqlppHint.LIST_VAL_FILE_HINT, SqlppHint.LIST_HINT, SqlppHint.INTERVAL_HINT, SqlppHint.INSERT_RAND_INT_HINT, |
| 3144 | SqlppHint.DATE_BETWEEN_YEARS_HINT, SqlppHint.DATETIME_ADD_RAND_HOURS_HINT, SqlppHint.AUTO_HINT); |
| 3145 | IRecordFieldDataGen rfdg = hintToken != null ? parseFieldDataGen(hintToken) : null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3146 | } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3147 | <COLON> type = TypeExpr(true) ( <QUES> { nullable = true; missable = true; } )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3148 | { |
Dmitry Lychagin | 3a62802 | 2020-05-12 18:09:02 -0700 | [diff] [blame] | 3149 | recType.addField(fieldName, type, nullable, missable, rfdg); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3150 | } |
| 3151 | } |
| 3152 | |
| 3153 | TypeReferenceExpression TypeReference() throws ParseException: |
| 3154 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3155 | Pair<DataverseName,Identifier> id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3156 | } |
| 3157 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3158 | id = QualifiedName() |
| 3159 | { |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 3160 | if (id.first == null && id.second.getValue().equalsIgnoreCase(INT_TYPE_NAME)) { |
| 3161 | id.second = new Identifier(BuiltinType.AINT64.getTypeName()); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3162 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3163 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3164 | TypeReferenceExpression typeRef = new TypeReferenceExpression(id); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3165 | return addSourceLocation(typeRef, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3166 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3167 | } |
| 3168 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3169 | OrderedListTypeDefinition OrderedListTypeDef(boolean allowRecordTypeDef) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3170 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3171 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3172 | TypeExpression type = null; |
| 3173 | } |
| 3174 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3175 | <LEFTBRACKET> { startToken = token; } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3176 | ( type = TypeExpr(allowRecordTypeDef) ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3177 | <RIGHTBRACKET> |
| 3178 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3179 | OrderedListTypeDefinition typeDef = new OrderedListTypeDefinition(type); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3180 | return addSourceLocation(typeDef, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3181 | } |
| 3182 | } |
| 3183 | |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3184 | UnorderedListTypeDefinition UnorderedListTypeDef(boolean allowRecordTypeDef) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3185 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3186 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3187 | TypeExpression type = null; |
| 3188 | } |
| 3189 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3190 | <LEFTDBLBRACE> { startToken = token; } |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3191 | ( type = TypeExpr(allowRecordTypeDef) ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3192 | <RIGHTDBLBRACE> |
| 3193 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3194 | UnorderedListTypeDefinition typeDef = new UnorderedListTypeDefinition(type); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3195 | return addSourceLocation(typeDef, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3196 | } |
| 3197 | } |
| 3198 | |
| 3199 | FunctionName FunctionName() throws ParseException: |
| 3200 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3201 | Triple<List<String>, Token, Token> prefix = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3202 | String suffix = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3203 | } |
| 3204 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3205 | // Note: there's a copy of this production in PrimaryExpr() (LOOKAHEAD for FunctionCallExpr()) |
| 3206 | // that copy must be kept in sync with this code |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3207 | prefix = MultipartIdentifierWithHints( |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3208 | 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] | 3209 | SqlppHint.SPATIAL_JOIN_HINT, SqlppHint.USE_SECONDARY_INDEX_SEARCH_HINT |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3210 | ) |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3211 | (<SHARP> suffix = Identifier())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3212 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3213 | Token startToken = prefix.second; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3214 | FunctionName result = new FunctionName(); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3215 | result.sourceLoc = getSourceLocation(startToken); |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 3216 | result.hintToken = prefix.third; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3217 | List<String> list = prefix.first; |
| 3218 | int ln = list.size(); |
| 3219 | String last = list.get(ln - 1); |
| 3220 | if (suffix == null) { |
| 3221 | // prefix = (dv_part1.dv_part2...dv_partN.)?func_name |
| 3222 | // no library name |
| 3223 | result.function = last; |
| 3224 | } else { |
| 3225 | // prefix = (dv_part1.dv_part2...dv_partN.)?lib_name |
| 3226 | // suffix = func_name |
| 3227 | result.library = last; |
| 3228 | result.function = suffix; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3229 | } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3230 | if (ln > 1) { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3231 | result.dataverse = createDataverseName(list, 0, ln - 1, startToken); |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3232 | } else { |
| 3233 | result.dataverse = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3234 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3235 | |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3236 | if (result.function.equalsIgnoreCase(INT_TYPE_NAME)) { |
| 3237 | result.function = BuiltinType.AINT64.getTypeName(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3238 | } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3239 | return result; |
| 3240 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3241 | } |
| 3242 | |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3243 | Pair<DataverseName,Identifier> TypeName() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3244 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3245 | Pair<DataverseName,Identifier> name = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3246 | } |
| 3247 | { |
| 3248 | name = QualifiedName() |
| 3249 | { |
| 3250 | if (name.first == null) { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3251 | name.first = defaultDataverse; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3252 | } |
| 3253 | return name; |
| 3254 | } |
| 3255 | } |
| 3256 | |
| 3257 | String Identifier() throws ParseException: |
| 3258 | { |
| 3259 | String lit = null; |
| 3260 | } |
| 3261 | { |
| 3262 | (<IDENTIFIER> |
| 3263 | { |
| 3264 | return token.image; |
| 3265 | } |
| 3266 | | lit = QuotedString() |
| 3267 | { |
| 3268 | return lit; |
| 3269 | } |
| 3270 | ) |
| 3271 | } |
| 3272 | |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3273 | List<String> ParenthesizedIdentifierList() throws ParseException: |
| 3274 | { |
| 3275 | List<String> list = new ArrayList<String>(); |
| 3276 | String ident = null; |
| 3277 | } |
| 3278 | { |
| 3279 | <LEFTPAREN> |
| 3280 | ident = Identifier() { list.add(ident); } |
| 3281 | ( <COMMA> ident = Identifier() { list.add(ident); } )* |
| 3282 | <RIGHTPAREN> |
| 3283 | { |
| 3284 | return list; |
| 3285 | } |
| 3286 | } |
| 3287 | |
Vijay Sarathy | 691e93b | 2022-11-20 14:31:47 -0800 | [diff] [blame] | 3288 | Pair<HashJoinExpressionAnnotation.BuildOrProbe, String> buildOrProbeParenthesizedIdentifier() throws ParseException: |
| 3289 | { |
| 3290 | String ident1 = null; |
| 3291 | String ident2 = null; |
| 3292 | } |
| 3293 | { |
| 3294 | ident1 = Identifier() <LEFTPAREN> ident2 = Identifier() <RIGHTPAREN> |
| 3295 | { |
| 3296 | // check |
| 3297 | if (ident1.equals("build")) { |
| 3298 | return new Pair<HashJoinExpressionAnnotation.BuildOrProbe, String>(HashJoinExpressionAnnotation.BuildOrProbe.BUILD, ident2); |
| 3299 | } |
| 3300 | else if (ident1.equals("probe")) { |
| 3301 | return new Pair<HashJoinExpressionAnnotation.BuildOrProbe, String>(HashJoinExpressionAnnotation.BuildOrProbe.PROBE, ident2); |
| 3302 | } |
| 3303 | else { |
| 3304 | throw new SqlppParseException(getSourceLocation(token), "The string after hashjoin has to be \"build\" or \"probe\"."); |
| 3305 | } |
| 3306 | return null; |
| 3307 | } |
| 3308 | } |
| 3309 | |
| 3310 | String parenthesizedIdentifier() throws ParseException: |
| 3311 | { |
| 3312 | String ident = null; |
| 3313 | } |
| 3314 | { |
| 3315 | <LEFTPAREN> ident = Identifier() <RIGHTPAREN> |
| 3316 | { |
| 3317 | return ident; |
| 3318 | } |
| 3319 | } |
| 3320 | |
Tin Vu | 4f1090d | 2021-09-21 02:06:32 -0700 | [diff] [blame] | 3321 | List<Literal> ParenthesizedLiteralList() throws ParseException: |
| 3322 | { |
| 3323 | List<Literal> list = new ArrayList<Literal>(); |
| 3324 | boolean minus = false; |
| 3325 | Expression litExpr = null; |
| 3326 | Literal lit = null; |
| 3327 | } |
| 3328 | { |
| 3329 | <LEFTPAREN> |
| 3330 | (<MINUS> { minus = true; })? litExpr = Literal() |
| 3331 | { |
| 3332 | lit = ((LiteralExpr) litExpr).getValue(); |
| 3333 | if (minus) |
| 3334 | { |
| 3335 | try { |
| 3336 | lit = ExpressionUtils.reverseSign(lit); |
| 3337 | } catch (TypeMismatchException e) { |
| 3338 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
| 3339 | } |
| 3340 | minus = false; |
| 3341 | } |
| 3342 | list.add(lit); |
| 3343 | } |
| 3344 | ( <COMMA> (<MINUS> { minus = true; })? litExpr = Literal() |
| 3345 | { |
| 3346 | lit = ((LiteralExpr) litExpr).getValue(); |
| 3347 | if (minus) |
| 3348 | { |
| 3349 | try { |
| 3350 | lit = ExpressionUtils.reverseSign(lit); |
| 3351 | } catch (TypeMismatchException e) { |
| 3352 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
| 3353 | } |
| 3354 | minus = false; |
| 3355 | } |
| 3356 | list.add(lit); |
| 3357 | } )* |
| 3358 | <RIGHTPAREN> |
| 3359 | { |
| 3360 | return list; |
| 3361 | } |
| 3362 | } |
| 3363 | |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3364 | Pair<Integer, Pair<List<String>, IndexedTypeExpression>> OpenField() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3365 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3366 | IndexedTypeExpression fieldType = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3367 | Pair<Integer, List<String>> fieldList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3368 | } |
| 3369 | { |
| 3370 | fieldList = NestedField() |
Glenn | 5832920 | 2021-04-09 12:03:46 -0700 | [diff] [blame] | 3371 | ( <COLON> fieldType = IndexedTypeExpr(true) )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3372 | { |
Dmitry Lychagin | 8ba5944 | 2017-06-16 14:19:45 -0700 | [diff] [blame] | 3373 | return new Pair<Integer, Pair<List<String>, IndexedTypeExpression>> |
| 3374 | (fieldList.first, new Pair<List<String>, IndexedTypeExpression>(fieldList.second, fieldType)); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3375 | } |
| 3376 | } |
| 3377 | |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3378 | Pair<Integer, List<String>> NestedField() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3379 | { |
| 3380 | List<String> exprList = new ArrayList<String>(); |
| 3381 | String lit = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3382 | Token litToken = null; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3383 | int source = 0; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3384 | } |
| 3385 | { |
| 3386 | lit = Identifier() |
| 3387 | { |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3388 | boolean meetParens = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3389 | litToken = token; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3390 | } |
| 3391 | ( |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3392 | LOOKAHEAD(1) |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3393 | <LEFTPAREN><RIGHTPAREN> |
| 3394 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3395 | if(!lit.equalsIgnoreCase("meta")){ |
| 3396 | throw new SqlppParseException(getSourceLocation(litToken), "The string before () has to be \"meta\"."); |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3397 | } |
| 3398 | meetParens = true; |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3399 | source = 1; |
Yingyi Bu | b9169b6 | 2016-02-26 21:21:49 -0800 | [diff] [blame] | 3400 | } |
| 3401 | )? |
| 3402 | { |
| 3403 | if(!meetParens){ |
| 3404 | exprList.add(lit); |
| 3405 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3406 | } |
| 3407 | (<DOT> |
| 3408 | lit = Identifier() |
| 3409 | { |
| 3410 | exprList.add(lit); |
| 3411 | } |
| 3412 | )* |
| 3413 | { |
Yingyi Bu | c9bfe25 | 2016-03-01 00:02:40 -0800 | [diff] [blame] | 3414 | return new Pair<Integer, List<String>>(source, exprList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3415 | } |
| 3416 | } |
| 3417 | |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 3418 | String ConstantString() throws ParseException: |
| 3419 | { |
| 3420 | String value = null; |
| 3421 | } |
| 3422 | { |
| 3423 | (value = QuotedString() | value = StringLiteral()) |
| 3424 | { |
| 3425 | return value; |
| 3426 | } |
| 3427 | } |
| 3428 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3429 | String QuotedString() throws ParseException: |
| 3430 | { |
| 3431 | } |
| 3432 | { |
| 3433 | <QUOTED_STRING> |
| 3434 | { |
| 3435 | return removeQuotesAndEscapes(token.image); |
| 3436 | } |
| 3437 | } |
| 3438 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3439 | String StringLiteral() throws ParseException: |
| 3440 | { |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3441 | StringBuilder str = null; |
| 3442 | char quote = 0; |
| 3443 | boolean ext = false; |
| 3444 | Token litToken = null; |
| 3445 | String lit = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3446 | } |
| 3447 | { |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3448 | ( <STRING_LITERAL> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3449 | { |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3450 | String quoted = token.image; |
| 3451 | char q = quoted.charAt(0); |
| 3452 | boolean e = q == 'E'; |
| 3453 | if (e) { |
| 3454 | q = quoted.charAt(1); |
| 3455 | quoted = quoted.substring(1); |
| 3456 | } |
| 3457 | if (lit == null) { |
| 3458 | quote = q; |
| 3459 | ext = e; |
| 3460 | } else { |
| 3461 | boolean isAdjacent = litToken.endLine == token.beginLine && litToken.endColumn + 1 == token.beginColumn; |
| 3462 | if (!isAdjacent || ext || e || (q != quote)) { |
| 3463 | throw new SqlppParseException(getSourceLocation(token), "Invalid string literal"); |
| 3464 | } |
| 3465 | if (str == null) { |
| 3466 | str = new StringBuilder(); |
| 3467 | } |
| 3468 | str.append(lit); |
| 3469 | str.append(quote); |
| 3470 | } |
| 3471 | lit = removeQuotesAndEscapes(quoted); |
| 3472 | litToken = token; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3473 | } |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 3474 | )+ |
| 3475 | { |
| 3476 | if (str == null) { |
| 3477 | return lit; |
| 3478 | } else { |
| 3479 | str.append(lit); |
| 3480 | return str.toString(); |
| 3481 | } |
| 3482 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3483 | } |
| 3484 | |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3485 | Triple<List<String>, Token, Token> MultipartIdentifier() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3486 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3487 | Triple<List<String>, Token, Token> result = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3488 | } |
| 3489 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3490 | result = MultipartIdentifierWithHints(null) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3491 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3492 | return result; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3493 | } |
| 3494 | } |
| 3495 | |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3496 | Triple<List<String>, Token, Token> MultipartIdentifierWithHints(SqlppHint... expectedHints) |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3497 | throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3498 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3499 | List<String> list = new ArrayList<String>(); |
| 3500 | SourceLocation sourceLoc = null; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3501 | Token startToken, hintToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3502 | String item = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3503 | } |
| 3504 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3505 | item = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3506 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3507 | list.add(item); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3508 | startToken = token; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3509 | if (expectedHints != null && expectedHints.length > 0) { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3510 | hintToken = fetchHint(token, expectedHints); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3511 | } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3512 | } |
| 3513 | (<DOT> item = Identifier() { list.add(item); } )* |
| 3514 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3515 | return new Triple<List<String>, Token, Token>(list, startToken, hintToken); |
| 3516 | } |
| 3517 | } |
| 3518 | |
| 3519 | DataverseName DataverseName() throws ParseException: |
| 3520 | { |
| 3521 | Triple<List<String>, Token, Token> ident = null; |
| 3522 | } |
| 3523 | { |
| 3524 | ident = MultipartIdentifier() |
| 3525 | { |
| 3526 | List<String> list = ident.first; |
| 3527 | Token startToken = ident.second; |
| 3528 | return createDataverseName(list, 0, list.size(), startToken); |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3529 | } |
| 3530 | } |
| 3531 | |
| 3532 | Pair<DataverseName,Identifier> QualifiedName() throws ParseException: |
| 3533 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3534 | Triple<List<String>, Token, Token> ident = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3535 | } |
| 3536 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3537 | ident = MultipartIdentifier() |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3538 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3539 | List<String> list = ident.first; |
| 3540 | Token startToken = ident.second; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3541 | int len = list.size(); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3542 | DataverseName id1 = len > 1 ? createDataverseName(list, 0, len - 1, startToken) : null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3543 | Identifier id2 = new Identifier(list.get(len - 1)); |
| 3544 | return new Pair<DataverseName,Identifier>(id1, id2); |
| 3545 | } |
| 3546 | } |
| 3547 | |
| 3548 | Triple<DataverseName, Identifier, Identifier> DoubleQualifiedName() throws ParseException: |
| 3549 | { |
| 3550 | List<String> list = new ArrayList<String>(); |
| 3551 | String item = null; |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3552 | Token startToken = null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3553 | } |
| 3554 | { |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3555 | item = Identifier() { list.add(item); startToken = token; } |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3556 | (<DOT> item = Identifier() { list.add(item); } )+ |
| 3557 | { |
| 3558 | int len = list.size(); |
Dmitry Lychagin | 13a40e1 | 2021-04-08 18:22:57 -0700 | [diff] [blame] | 3559 | DataverseName id1 = len > 2 ? createDataverseName(list, 0, len - 2, startToken) : null; |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 3560 | Identifier id2 = new Identifier(list.get(len - 2)); |
| 3561 | Identifier id3 = new Identifier(list.get(len - 1)); |
| 3562 | return new Triple<DataverseName,Identifier,Identifier>(id1, id2, id3); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3563 | } |
| 3564 | } |
| 3565 | |
| 3566 | FunctionDecl FunctionDeclaration() throws ParseException: |
| 3567 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3568 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3569 | String functionName; |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 3570 | Pair<Integer, List<Pair<VarIdentifier,TypeExpression>>> paramsWithArity = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3571 | Expression funcBody; |
| 3572 | createNewScope(); |
| 3573 | } |
| 3574 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3575 | <DECLARE> { startToken = token; } <FUNCTION> |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3576 | functionName = Identifier() |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 3577 | paramsWithArity = FunctionParameters() |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3578 | <LEFTBRACE> |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 3579 | funcBody = FunctionBody() |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3580 | <RIGHTBRACE> |
| 3581 | { |
Dmitry Lychagin | 54165208 | 2020-11-09 14:04:53 -0800 | [diff] [blame] | 3582 | int arity = paramsWithArity.first; |
| 3583 | List<Pair<VarIdentifier,TypeExpression>> paramList = paramsWithArity.second; |
| 3584 | FunctionSignature signature = new FunctionSignature(defaultDataverse, functionName, arity); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3585 | getCurrentScope().addFunctionDescriptor(signature, false); |
Dmitry Lychagin | f7bc6c1 | 2020-06-01 18:19:44 -0700 | [diff] [blame] | 3586 | ensureNoTypeDeclsInFunction(functionName, paramList, null, startToken); |
| 3587 | List<VarIdentifier> params = new ArrayList<VarIdentifier>(paramList.size()); |
| 3588 | for (Pair<VarIdentifier,TypeExpression> p: paramList) { |
| 3589 | params.add(p.getFirst()); |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 3590 | } |
Dmitry Lychagin | 9ba7487 | 2021-04-05 14:38:20 -0700 | [diff] [blame] | 3591 | FunctionDecl stmt = new FunctionDecl(signature, params, funcBody, false); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3592 | removeCurrentScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3593 | return addSourceLocation(stmt, startToken); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3594 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3595 | } |
| 3596 | |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 3597 | Query Query() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3598 | { |
Dmitry Lychagin | aebd031 | 2019-06-04 08:55:39 -0700 | [diff] [blame] | 3599 | Query query = new Query(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3600 | Expression expr; |
| 3601 | } |
| 3602 | { |
| 3603 | ( |
| 3604 | expr = Expression() |
| 3605 | | |
| 3606 | expr = SelectExpression(false) |
| 3607 | ) |
| 3608 | { |
| 3609 | query.setBody(expr); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3610 | query.setSourceLocation(expr.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3611 | return query; |
| 3612 | } |
| 3613 | } |
| 3614 | |
| 3615 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3616 | Expression Expression(): |
| 3617 | { |
| 3618 | Expression expr = null; |
| 3619 | Expression exprP = null; |
| 3620 | } |
| 3621 | { |
| 3622 | ( |
| 3623 | LOOKAHEAD(2) |
| 3624 | expr = OperatorExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3625 | | expr = QuantifiedExpression() |
| 3626 | ) |
| 3627 | { |
| 3628 | return (exprP==null) ? expr : exprP; |
| 3629 | } |
| 3630 | } |
| 3631 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3632 | Expression OperatorExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3633 | { |
| 3634 | OperatorExpr op = null; |
| 3635 | Expression operand = null; |
| 3636 | } |
| 3637 | { |
| 3638 | operand = AndExpr() |
| 3639 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3640 | <OR> |
| 3641 | { |
| 3642 | if (op == null) { |
| 3643 | op = new OperatorExpr(); |
| 3644 | op.addOperand(operand); |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3645 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3646 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3647 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3648 | try{ |
| 3649 | op.addOperator(token.image.toLowerCase()); |
| 3650 | } catch (Exception e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3651 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3652 | } |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3653 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3654 | |
Xikui Wang | 3de700a | 2018-03-15 16:32:55 -0700 | [diff] [blame] | 3655 | operand = AndExpr() |
| 3656 | { |
| 3657 | op.addOperand(operand); |
| 3658 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3659 | |
| 3660 | )* |
| 3661 | |
| 3662 | { |
| 3663 | return op==null? operand: op; |
| 3664 | } |
| 3665 | } |
| 3666 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3667 | Expression AndExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3668 | { |
| 3669 | OperatorExpr op = null; |
| 3670 | Expression operand = null; |
| 3671 | } |
| 3672 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3673 | operand = NotExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3674 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3675 | <AND> |
| 3676 | { |
| 3677 | if (op == null) { |
| 3678 | op = new OperatorExpr(); |
| 3679 | op.addOperand(operand); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3680 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3681 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3682 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3683 | try{ |
| 3684 | op.addOperator(token.image.toLowerCase()); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 3685 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3686 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3687 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3688 | } |
| 3689 | |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3690 | operand = NotExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3691 | { |
| 3692 | op.addOperand(operand); |
| 3693 | } |
| 3694 | |
| 3695 | )* |
| 3696 | |
| 3697 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3698 | return op==null ? operand: op; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3699 | } |
| 3700 | } |
| 3701 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3702 | Expression NotExpr() throws ParseException: |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3703 | { |
| 3704 | Expression inputExpr; |
| 3705 | boolean not = false; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3706 | Token startToken = null; |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3707 | } |
| 3708 | { |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 3709 | (LOOKAHEAD(2) <NOT> { not = true; startToken = token; } )? inputExpr = RelExpr() |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3710 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3711 | if(not) { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3712 | FunctionSignature signature = new FunctionSignature(BuiltinFunctions.NOT); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3713 | CallExpr callExpr = new CallExpr(signature, new ArrayList<Expression>(Collections.singletonList(inputExpr))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3714 | return addSourceLocation(callExpr, startToken); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3715 | } else { |
| 3716 | return inputExpr; |
| 3717 | } |
| 3718 | } |
| 3719 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3720 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3721 | Expression RelExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3722 | { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3723 | boolean not = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3724 | OperatorExpr op = null; |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3725 | Token opToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3726 | Expression operand = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3727 | IExpressionAnnotation annotation = null; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3728 | List<IExpressionAnnotation> annotationList = new ArrayList<IExpressionAnnotation>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3729 | } |
| 3730 | { |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3731 | operand = BetweenExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3732 | |
| 3733 | ( |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3734 | LOOKAHEAD(3)( <LT> | <GT> | <LE> | <GE> | <EQ> | <NE> | <LG> |<SIMILAR> | (<NOT> { not = true; })? <IN> | |
| 3735 | <IS> (<NOT> { not = true; })? <DISTINCT> { opToken = token; } <FROM> ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3736 | { |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3737 | if (opToken == null) { |
| 3738 | opToken = token; |
| 3739 | } |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3740 | Token hintToken = fetchHint(token, |
| 3741 | SqlppHint.HASH_BROADCAST_JOIN_HINT, SqlppHint.INDEXED_NESTED_LOOP_JOIN_HINT, |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3742 | SqlppHint.HASH_JOIN_HINT, SqlppHint.SKIP_SECONDARY_INDEX_SEARCH_HINT, SqlppHint.USE_SECONDARY_INDEX_SEARCH_HINT, |
| 3743 | SqlppHint.SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT, SqlppHint.JOIN_PREDICATE_PRODUCTIVITY_HINT |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3744 | ); |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3745 | while (hintToken != null) { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3746 | annotation = parseExpressionAnnotation(hintToken); |
Vijay Sarathy | ebf08b8 | 2023-03-20 18:31:35 -0700 | [diff] [blame] | 3747 | if (annotation != null) { |
| 3748 | // annotation may be null if hints are malformed |
| 3749 | annotationList.add(annotation); |
| 3750 | } |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3751 | hintToken = hintToken.specialToken; |
Vijay Sarathy | 8f4fccd | 2022-12-05 14:29:02 -0800 | [diff] [blame] | 3752 | if (hintToken != null) { |
| 3753 | SourceLocation sourceLoc = getSourceLocation(hintToken); |
| 3754 | hintCollector.remove(sourceLoc); |
| 3755 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3756 | } |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3757 | String operator = opToken.image.toLowerCase(); |
Yingyi Bu | 4a4b896 | 2016-09-16 12:09:11 -0700 | [diff] [blame] | 3758 | if (operator.equals("<>")){ |
| 3759 | operator = "!="; |
| 3760 | } |
| 3761 | if (not) { |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3762 | operator = "not_" + operator; |
| 3763 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3764 | if (op == null) { |
| 3765 | op = new OperatorExpr(); |
Shiva | 2ea7323 | 2019-10-09 18:04:05 -0700 | [diff] [blame] | 3766 | op.addOperand(operand); |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3767 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3768 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3769 | } |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3770 | try{ |
| 3771 | op.addOperator(operator); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 3772 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3773 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 3774 | } |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 3775 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3776 | |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3777 | operand = BetweenExpr() |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 3778 | { |
Shiva | 2ea7323 | 2019-10-09 18:04:05 -0700 | [diff] [blame] | 3779 | op.addOperand(operand); |
Yingyi Bu | ea4ec72 | 2016-11-04 01:26:16 -0700 | [diff] [blame] | 3780 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3781 | )? |
| 3782 | |
| 3783 | { |
| 3784 | if (annotation != null) { |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3785 | op.addHints(annotationList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3786 | } |
| 3787 | return op==null? operand: op; |
| 3788 | } |
| 3789 | } |
| 3790 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3791 | Expression BetweenExpr() throws ParseException: |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3792 | { |
| 3793 | boolean not = false; |
| 3794 | OperatorExpr op = null; |
| 3795 | Expression operand = null; |
| 3796 | IExpressionAnnotation annotation = null; |
| 3797 | } |
| 3798 | { |
| 3799 | operand = IsExpr() |
| 3800 | ( |
| 3801 | LOOKAHEAD(2) |
| 3802 | (<NOT> { not = true; })? <BETWEEN> |
| 3803 | { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3804 | Token hintToken = fetchHint(token, |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3805 | SqlppHint.INDEXED_NESTED_LOOP_JOIN_HINT, SqlppHint.SKIP_SECONDARY_INDEX_SEARCH_HINT, SqlppHint.HASH_JOIN_HINT, |
| 3806 | SqlppHint.USE_SECONDARY_INDEX_SEARCH_HINT, SqlppHint.SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3807 | ); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 3808 | if (hintToken != null) { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 3809 | annotation = parseExpressionAnnotation(hintToken); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3810 | } |
| 3811 | String operator = token.image.toLowerCase(); |
| 3812 | if(not){ |
| 3813 | operator = "not_" + operator; |
| 3814 | } |
| 3815 | if (op == null) { |
| 3816 | op = new OperatorExpr(); |
| 3817 | op.addOperand(operand); |
| 3818 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3819 | addSourceLocation(op, token); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3820 | } |
| 3821 | try{ |
| 3822 | op.addOperator(operator); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 3823 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3824 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3825 | } |
| 3826 | } |
| 3827 | |
| 3828 | operand = IsExpr() |
| 3829 | { |
| 3830 | op.addOperand(operand); |
| 3831 | } |
| 3832 | |
| 3833 | <AND> |
| 3834 | operand = IsExpr() |
| 3835 | { |
Dmitry Lychagin | ef1719e | 2017-12-15 08:33:07 -0800 | [diff] [blame] | 3836 | op.addOperator(OperatorType.AND); |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3837 | op.addOperand(operand); |
| 3838 | } |
| 3839 | )? |
| 3840 | |
| 3841 | { |
| 3842 | if (annotation != null) { |
| 3843 | op.addHint(annotation); |
| 3844 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3845 | return op==null ? operand: op; |
Yingyi Bu | 6c63834 | 2016-09-02 17:54:34 -0700 | [diff] [blame] | 3846 | } |
| 3847 | } |
| 3848 | |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3849 | Expression IsExpr() throws ParseException: |
| 3850 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3851 | Token notToken = null; |
| 3852 | CallExpr expr = null; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3853 | Expression operand = null; |
| 3854 | boolean not = false; |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3855 | FunctionIdentifier fn = null; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3856 | } |
| 3857 | { |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3858 | operand = LikeExpr() |
Dmitry Lychagin | 4d5476e | 2021-08-18 19:43:22 -0700 | [diff] [blame] | 3859 | ( |
| 3860 | LOOKAHEAD(3) |
| 3861 | <IS> |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3862 | (<NOT> { not = true; notToken = token; })? |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3863 | ( |
| 3864 | <NULL> { fn = BuiltinFunctions.IS_NULL; } | |
| 3865 | <MISSING> { fn = BuiltinFunctions.IS_MISSING; } | |
Dmitry Lychagin | 7d594a3 | 2018-01-15 14:31:03 -0800 | [diff] [blame] | 3866 | <UNKNOWN> { fn = BuiltinFunctions.IS_UNKNOWN; } | |
Dmitry Lychagin | 1aa0dd4 | 2018-04-17 14:35:24 -0700 | [diff] [blame] | 3867 | (<KNOWN> | <VALUED>) { not = !not; fn = BuiltinFunctions.IS_UNKNOWN; } |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3868 | ) |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3869 | { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3870 | FunctionSignature signature = new FunctionSignature(fn); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3871 | expr = new CallExpr(signature, new ArrayList<Expression>(Collections.singletonList(operand))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3872 | addSourceLocation(expr, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3873 | if (not) { |
Dmitry Lychagin | 7c53fcf | 2017-11-07 12:07:41 -0800 | [diff] [blame] | 3874 | FunctionSignature notSignature = new FunctionSignature(BuiltinFunctions.NOT); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3875 | expr = new CallExpr(notSignature, new ArrayList<Expression>(Collections.singletonList(expr))); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3876 | addSourceLocation(expr, notToken); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3877 | } |
| 3878 | } |
| 3879 | )? |
| 3880 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3881 | return expr == null ? operand : expr; |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3882 | } |
| 3883 | } |
| 3884 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3885 | Expression LikeExpr() throws ParseException: |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3886 | { |
| 3887 | boolean not = false; |
| 3888 | OperatorExpr op = null; |
| 3889 | Expression operand = null; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3890 | IExpressionAnnotation annotation = null; |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3891 | } |
| 3892 | { |
| 3893 | operand = ConcatExpr() |
| 3894 | ( |
| 3895 | LOOKAHEAD(2) |
| 3896 | (<NOT> { not = true; })? <LIKE> |
| 3897 | { |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3898 | Token hintToken = fetchHint(token, SqlppHint.SINGLE_DATASET_PREDICATE_SELECTIVITY_HINT); |
| 3899 | if (hintToken != null) { |
| 3900 | annotation = parseExpressionAnnotation(hintToken); |
| 3901 | } |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3902 | op = new OperatorExpr(); |
| 3903 | op.addOperand(operand); |
| 3904 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3905 | addSourceLocation(op, token); |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3906 | |
| 3907 | String operator = token.image.toLowerCase(); |
| 3908 | if (not) { |
| 3909 | operator = "not_" + operator; |
| 3910 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3911 | try { |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3912 | op.addOperator(operator); |
| 3913 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3914 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3915 | } |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 3916 | if (annotation != null) { |
| 3917 | op.addHint(annotation); |
| 3918 | } |
Yingyi Bu | 6e6a80c | 2017-01-21 20:18:49 -0800 | [diff] [blame] | 3919 | } |
| 3920 | |
| 3921 | operand = ConcatExpr() |
| 3922 | { |
| 3923 | op.addOperand(operand); |
| 3924 | } |
| 3925 | )? |
| 3926 | |
| 3927 | { |
| 3928 | return op == null ? operand : op; |
| 3929 | } |
| 3930 | } |
| 3931 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3932 | Expression ConcatExpr() throws ParseException: |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3933 | { |
| 3934 | OperatorExpr op = null; |
| 3935 | Expression operand = null; |
| 3936 | } |
| 3937 | { |
| 3938 | operand = AddExpr() |
| 3939 | ( |
| 3940 | LOOKAHEAD(1) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3941 | <CONCAT> |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3942 | { |
| 3943 | if (op == null) { |
| 3944 | op = new OperatorExpr(); |
| 3945 | op.addOperand(operand); |
| 3946 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3947 | addSourceLocation(op, token); |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3948 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3949 | op.addOperator(OperatorType.CONCAT); |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3950 | } |
| 3951 | operand = AddExpr() |
| 3952 | { |
| 3953 | op.addOperand(operand); |
| 3954 | } |
| 3955 | )* |
| 3956 | |
| 3957 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3958 | return op == null ? operand : op; |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3959 | } |
| 3960 | } |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3961 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3962 | Expression AddExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3963 | { |
| 3964 | OperatorExpr op = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3965 | OperatorType opType = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3966 | Expression operand = null; |
| 3967 | } |
| 3968 | { |
| 3969 | operand = MultExpr() |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 3970 | ( |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 3971 | LOOKAHEAD(1) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3972 | (<PLUS> { opType = OperatorType.PLUS; } | <MINUS> { opType = OperatorType.MINUS; } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3973 | { |
| 3974 | if (op == null) { |
| 3975 | op = new OperatorExpr(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3976 | op.addOperand(operand); |
| 3977 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 3978 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3979 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3980 | op.addOperator(opType); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3981 | } |
| 3982 | |
| 3983 | operand = MultExpr() |
| 3984 | { |
| 3985 | op.addOperand(operand); |
| 3986 | } |
| 3987 | )* |
| 3988 | |
| 3989 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3990 | return op == null ? operand : op; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3991 | } |
| 3992 | } |
| 3993 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 3994 | Expression MultExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3995 | { |
| 3996 | OperatorExpr op = null; |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 3997 | OperatorType opType = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 3998 | Expression operand = null; |
| 3999 | } |
| 4000 | { |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4001 | operand = ExponentExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4002 | |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 4003 | ( ( |
| 4004 | <MUL> { opType = OperatorType.MUL; } | |
| 4005 | <DIVIDE> { opType = OperatorType.DIVIDE; } | |
| 4006 | <DIV> { opType = OperatorType.DIV; } | |
| 4007 | ( <MOD> | <PERCENT> ) { opType = OperatorType.MOD; } |
| 4008 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4009 | { |
| 4010 | if (op == null) { |
| 4011 | op = new OperatorExpr(); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4012 | op.addOperand(operand); |
| 4013 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4014 | addSourceLocation(op, token); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4015 | } |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 4016 | op.addOperator(opType); |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4017 | } |
| 4018 | operand = ExponentExpr() |
| 4019 | { |
| 4020 | op.addOperand(operand); |
| 4021 | } |
| 4022 | )* |
| 4023 | |
| 4024 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4025 | return op == null ? operand : op; |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4026 | } |
| 4027 | } |
| 4028 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4029 | Expression ExponentExpr() throws ParseException: |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4030 | { |
| 4031 | OperatorExpr op = null; |
| 4032 | Expression operand = null; |
| 4033 | } |
| 4034 | { |
| 4035 | operand = UnaryExpr() |
| 4036 | (<CARET> |
| 4037 | { |
| 4038 | if (op == null) { |
| 4039 | op = new OperatorExpr(); |
| 4040 | op.addOperand(operand); |
| 4041 | op.setCurrentop(true); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4042 | addSourceLocation(op, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4043 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4044 | op.addOperator(OperatorType.CARET); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4045 | } |
| 4046 | operand = UnaryExpr() |
| 4047 | { |
| 4048 | op.addOperand(operand); |
| 4049 | } |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4050 | )? |
| 4051 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4052 | return op == null ? operand : op; |
Yingyi Bu | 79ccdac | 2016-07-26 23:49:24 -0700 | [diff] [blame] | 4053 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4054 | } |
| 4055 | |
| 4056 | Expression UnaryExpr() throws ParseException: |
| 4057 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4058 | boolean not = false; |
| 4059 | UnaryExpr uexpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4060 | Expression expr = null; |
| 4061 | } |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 4062 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4063 | ( (<PLUS> | <MINUS> | (<NOT> { not = true; } )? <EXISTS> ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4064 | { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4065 | String exprType = token.image.toLowerCase(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4066 | if (not) { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4067 | exprType = "not_" + exprType; |
| 4068 | } |
| 4069 | uexpr = new UnaryExpr(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4070 | addSourceLocation(uexpr, token); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4071 | try { |
Yingyi Bu | 196db5d | 2016-07-15 19:07:20 -0700 | [diff] [blame] | 4072 | uexpr.setExprType(exprType); |
Taewoo Kim | e65e6ca | 2017-01-14 17:53:28 -0800 | [diff] [blame] | 4073 | } catch (CompilationException e){ |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4074 | throw new SqlppParseException(getSourceLocation(token), e.getMessage()); |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 4075 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4076 | } |
| 4077 | )? |
| 4078 | |
| 4079 | expr = ValueExpr() |
| 4080 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4081 | if (uexpr == null) { |
| 4082 | return expr; |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4083 | } else { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4084 | uexpr.setExpr(expr); |
| 4085 | return uexpr; |
| 4086 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4087 | } |
| 4088 | } |
| 4089 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4090 | Expression ValueExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4091 | { |
| 4092 | Expression expr = null; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4093 | AbstractAccessor accessor = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4094 | } |
| 4095 | { |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 4096 | expr = PrimaryExpr() |
| 4097 | ( |
| 4098 | accessor = FieldAccessor(accessor != null ? accessor : expr) |
| 4099 | | |
| 4100 | accessor = IndexAccessor(accessor != null ? accessor : expr) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4101 | )* |
| 4102 | { |
| 4103 | return accessor == null ? expr : accessor; |
| 4104 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4105 | } |
| 4106 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4107 | FieldAccessor FieldAccessor(Expression inputExpr) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4108 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4109 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4110 | String ident = null; |
| 4111 | } |
| 4112 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4113 | <DOT> { startToken = token; } ident = Identifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4114 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4115 | FieldAccessor fa = new FieldAccessor(inputExpr, new Identifier(ident)); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4116 | return addSourceLocation(fa, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4117 | } |
| 4118 | } |
| 4119 | |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 4120 | AbstractAccessor IndexAccessor(Expression inputExpr) throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4121 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4122 | Token startToken = null; |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4123 | boolean star = false, slice = false; |
| 4124 | Expression expr1 = null, expr2 = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4125 | } |
| 4126 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4127 | <LEFTBRACKET> { startToken = token; } |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4128 | ( |
| 4129 | <MUL> { star = true; } |
| 4130 | | |
| 4131 | ( expr1 = Expression() ( <COLON> { slice = true; } ( expr2 = Expression() )? )? ) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4132 | ) |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4133 | <RIGHTBRACKET> |
| 4134 | { |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4135 | if (expr1 != null && expr1.getKind() == Expression.Kind.LITERAL_EXPRESSION) { |
| 4136 | ensureIntegerLiteral( (LiteralExpr) expr1, "Index"); |
Hussain Towaileb | c5b5deb | 2018-12-15 18:48:48 +0300 | [diff] [blame] | 4137 | } |
Dmitry Lychagin | 0a72253 | 2020-08-27 18:39:25 -0700 | [diff] [blame] | 4138 | if (expr2 != null && expr2.getKind() == Expression.Kind.LITERAL_EXPRESSION) { |
| 4139 | ensureIntegerLiteral( (LiteralExpr) expr2, "Index"); |
| 4140 | } |
| 4141 | AbstractAccessor resultAccessor; |
| 4142 | if (slice) { |
| 4143 | resultAccessor = new ListSliceExpression(inputExpr, expr1, expr2); |
| 4144 | } else if (star) { |
| 4145 | resultAccessor = new IndexAccessor(inputExpr, IndexAccessor.IndexKind.STAR, null); |
| 4146 | } else { |
| 4147 | resultAccessor = new IndexAccessor(inputExpr, IndexAccessor.IndexKind.ELEMENT, expr1); |
| 4148 | } |
| 4149 | return addSourceLocation(resultAccessor, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4150 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4151 | } |
| 4152 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4153 | Expression PrimaryExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4154 | { |
| 4155 | Expression expr = null; |
| 4156 | } |
| 4157 | { |
Dmitry Lychagin | 54c0601 | 2019-11-13 15:54:20 -0800 | [diff] [blame] | 4158 | ( |
| 4159 | LOOKAHEAD(Identifier() (<DOT> Identifier())* (<SHARP> Identifier())? <LEFTPAREN>) expr = FunctionCallExpr() |
Dmitry Lychagin | 5fbd04b | 2018-04-19 16:54:28 -0700 | [diff] [blame] | 4160 | | expr = CaseExpr() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4161 | | expr = Literal() |
| 4162 | | expr = VariableRef() |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 4163 | | expr = ExternalVariableRef() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4164 | | expr = ListConstructor() |
| 4165 | | expr = RecordConstructor() |
| 4166 | | expr = ParenthesizedExpression() |
| 4167 | ) |
| 4168 | { |
| 4169 | return expr; |
| 4170 | } |
| 4171 | } |
| 4172 | |
| 4173 | Expression Literal() throws ParseException: |
| 4174 | { |
| 4175 | LiteralExpr lit = new LiteralExpr(); |
| 4176 | String str = null; |
| 4177 | } |
| 4178 | { |
| 4179 | ( str = StringLiteral() |
| 4180 | { |
| 4181 | lit.setValue(new StringLiteral(str)); |
| 4182 | } |
| 4183 | | <INTEGER_LITERAL> |
| 4184 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 4185 | try { |
| 4186 | lit.setValue(new LongIntegerLiteral(Long.valueOf(token.image))); |
| 4187 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 4188 | 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] | 4189 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4190 | } |
| 4191 | | <FLOAT_LITERAL> |
| 4192 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 4193 | try { |
| 4194 | lit.setValue(new FloatLiteral(Float.valueOf(token.image))); |
| 4195 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 4196 | 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] | 4197 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4198 | } |
| 4199 | | <DOUBLE_LITERAL> |
| 4200 | { |
Till Westmann | 68c6a99 | 2016-09-30 00:19:12 -0700 | [diff] [blame] | 4201 | try { |
| 4202 | lit.setValue(new DoubleLiteral(Double.valueOf(token.image))); |
| 4203 | } catch (NumberFormatException e) { |
Ali Alsuliman | 587b790 | 2019-01-21 14:33:50 -0800 | [diff] [blame] | 4204 | 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] | 4205 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4206 | } |
Yingyi Bu | 535d86b | 2016-05-23 16:44:25 -0700 | [diff] [blame] | 4207 | | <MISSING> |
| 4208 | { |
| 4209 | lit.setValue(MissingLiteral.INSTANCE); |
| 4210 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4211 | | <NULL> |
| 4212 | { |
| 4213 | lit.setValue(NullLiteral.INSTANCE); |
| 4214 | } |
| 4215 | | <TRUE> |
| 4216 | { |
| 4217 | lit.setValue(TrueLiteral.INSTANCE); |
| 4218 | } |
| 4219 | | <FALSE> |
| 4220 | { |
| 4221 | lit.setValue(FalseLiteral.INSTANCE); |
| 4222 | } |
| 4223 | ) |
| 4224 | { |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4225 | return addSourceLocation(lit, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4226 | } |
| 4227 | } |
| 4228 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4229 | VariableExpr VariableRef() throws ParseException: |
| 4230 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4231 | String id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4232 | } |
| 4233 | { |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 4234 | id = VariableIdentifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4235 | { |
| 4236 | Identifier ident = lookupSymbol(id); |
| 4237 | if (isInForbiddenScopes(id)) { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4238 | throw new SqlppParseException(getSourceLocation(token), |
| 4239 | "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] | 4240 | } |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4241 | VariableExpr varExp; |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4242 | if (ident != null) { // exist such ident |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4243 | varExp = new VariableExpr((VarIdentifier)ident); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4244 | } else { |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4245 | varExp = new VariableExpr(new VarIdentifier(id)); |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 4246 | varExp.setIsNewVar(false); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4247 | } |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4248 | return addSourceLocation(varExp, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4249 | } |
| 4250 | } |
| 4251 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4252 | VariableExpr Variable() throws ParseException: |
| 4253 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4254 | String id = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4255 | } |
| 4256 | { |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 4257 | id = VariableIdentifier() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4258 | { |
| 4259 | Identifier ident = lookupSymbol(id); |
Dmitry Lychagin | 75f1987 | 2019-10-03 17:56:35 -0700 | [diff] [blame] | 4260 | VariableExpr varExp = new VariableExpr(new VarIdentifier(id)); |
| 4261 | if (ident != null) { // exist such ident |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4262 | varExp.setIsNewVar(false); |
| 4263 | } |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4264 | return addSourceLocation(varExp, token); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4265 | } |
| 4266 | } |
| 4267 | |
Dmitry Lychagin | 0d4c1b6 | 2020-02-07 17:10:16 -0800 | [diff] [blame] | 4268 | String VariableIdentifier() throws ParseException: |
| 4269 | { |
| 4270 | String id = null; |
| 4271 | } |
| 4272 | { |
| 4273 | (<IDENTIFIER> { id = token.image; } | id = QuotedString()) |
| 4274 | { |
| 4275 | return SqlppVariableUtil.toInternalVariableName(id); // prefix user-defined variables with "$". |
| 4276 | } |
| 4277 | } |
| 4278 | |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4279 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> VariableWithFieldMap() throws ParseException: |
| 4280 | { |
| 4281 | VariableExpr var = null; |
| 4282 | List<Pair<Expression, Identifier>> fieldList = new ArrayList<Pair<Expression, Identifier>>(); |
| 4283 | } |
| 4284 | { |
| 4285 | var = Variable() |
| 4286 | ( LOOKAHEAD(1) |
| 4287 | { |
| 4288 | VariableExpr fieldVarExpr = null; |
| 4289 | String fieldIdentifierStr = null; |
| 4290 | } |
| 4291 | <LEFTPAREN> |
| 4292 | fieldVarExpr = VariableRef() <AS> fieldIdentifierStr = Identifier() |
| 4293 | { |
| 4294 | fieldList.add(new Pair<Expression, Identifier>(fieldVarExpr, new Identifier(fieldIdentifierStr))); |
| 4295 | } |
| 4296 | (<COMMA> |
| 4297 | fieldVarExpr = VariableRef() <AS> fieldIdentifierStr = Identifier() |
| 4298 | { |
| 4299 | fieldList.add(new Pair<Expression, Identifier>(fieldVarExpr, new Identifier(fieldIdentifierStr))); |
| 4300 | } |
| 4301 | )* |
| 4302 | <RIGHTPAREN> |
| 4303 | )? |
| 4304 | { |
| 4305 | return new Pair<VariableExpr, List<Pair<Expression, Identifier>>>(var, fieldList); |
| 4306 | } |
| 4307 | } |
| 4308 | |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 4309 | VariableExpr ExternalVariableRef() throws ParseException: |
| 4310 | { |
| 4311 | String name = null; |
| 4312 | } |
| 4313 | { |
| 4314 | ( |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 4315 | <DOLLAR_IDENTIFIER> { name = token.image.substring(1); } |
| 4316 | | <DOLLAR_INTEGER_LITERAL> { name = token.image.substring(1); } |
| 4317 | | <DOLLAR_QUOTED_STRING> { name = removeQuotesAndEscapes(token.image.substring(1)); } |
| 4318 | | <QUES> { name = String.valueOf(++externalVarCounter); } |
Dmitry Lychagin | 1bdf808 | 2018-06-13 14:48:23 -0700 | [diff] [blame] | 4319 | ) |
| 4320 | { |
| 4321 | String idName = SqlppVariableUtil.toExternalVariableName(name); |
| 4322 | VarIdentifier id = new VarIdentifier(idName); |
| 4323 | VariableExpr varExp = new VariableExpr(id); |
| 4324 | return addSourceLocation(varExp, token); |
| 4325 | } |
| 4326 | } |
| 4327 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4328 | Expression ListConstructor() throws ParseException: |
| 4329 | { |
| 4330 | Expression expr = null; |
| 4331 | } |
| 4332 | { |
| 4333 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4334 | expr = OrderedListConstructor() | |
| 4335 | expr = UnorderedListConstructor() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4336 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4337 | { |
| 4338 | return expr; |
| 4339 | } |
| 4340 | } |
| 4341 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4342 | ListConstructor OrderedListConstructor() throws ParseException: |
| 4343 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4344 | Token startToken = null; |
| 4345 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4346 | } |
| 4347 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4348 | <LEFTBRACKET> { startToken = token; } |
| 4349 | exprList = ExpressionList() |
| 4350 | <RIGHTBRACKET> |
| 4351 | { |
| 4352 | ListConstructor expr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, exprList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4353 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4354 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4355 | } |
| 4356 | |
| 4357 | ListConstructor UnorderedListConstructor() throws ParseException: |
| 4358 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4359 | Token startToken = null; |
| 4360 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4361 | } |
| 4362 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4363 | <LEFTDBLBRACE> { startToken = token; } |
| 4364 | exprList = ExpressionList() |
| 4365 | <RIGHTDBLBRACE> |
| 4366 | { |
| 4367 | ListConstructor expr = new ListConstructor(ListConstructor.Type.UNORDERED_LIST_CONSTRUCTOR, exprList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4368 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4369 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4370 | } |
| 4371 | |
| 4372 | List<Expression> ExpressionList() throws ParseException: |
| 4373 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4374 | Expression expr = null; |
| 4375 | List<Expression> exprList = new ArrayList<Expression>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4376 | } |
| 4377 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4378 | ( |
| 4379 | expr = Expression() |
| 4380 | { |
| 4381 | exprList.add(expr); |
| 4382 | } |
| 4383 | ( <COMMA> expr = Expression() |
Till Westmann | 60f8998 | 2017-08-11 18:14:20 -0700 | [diff] [blame] | 4384 | { |
| 4385 | exprList.add(expr); |
| 4386 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4387 | )* |
| 4388 | )? |
| 4389 | { |
| 4390 | return exprList; |
| 4391 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4392 | } |
| 4393 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4394 | RecordConstructor RecordConstructor() throws ParseException: |
| 4395 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4396 | Token startToken = null; |
| 4397 | FieldBinding fb = null; |
| 4398 | List<FieldBinding> fbList = new ArrayList<FieldBinding>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4399 | } |
| 4400 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4401 | <LEFTBRACE> { startToken = token; } |
| 4402 | ( |
| 4403 | fb = FieldBinding() { fbList.add(fb); } |
| 4404 | (<COMMA> fb = FieldBinding() { fbList.add(fb); })* |
| 4405 | )? |
| 4406 | <RIGHTBRACE> |
| 4407 | { |
| 4408 | RecordConstructor expr = new RecordConstructor(fbList); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4409 | return addSourceLocation(expr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4410 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4411 | } |
| 4412 | |
| 4413 | FieldBinding FieldBinding() throws ParseException: |
| 4414 | { |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4415 | Expression left, right = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4416 | } |
| 4417 | { |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4418 | left = Expression() ( <COLON> right = Expression() )? |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4419 | { |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4420 | if (right == null) { |
| 4421 | String generatedIdentifier = ExpressionToVariableUtil.getGeneratedIdentifier(left, false); |
| 4422 | if (generatedIdentifier == null) { |
| 4423 | throw new SqlppParseException(getSourceLocation(token), "Cannot infer field name"); |
| 4424 | } |
| 4425 | String generatedName = SqlppVariableUtil.toUserDefinedName(generatedIdentifier); |
Ali Alsuliman | 5760e9e | 2019-08-22 16:37:36 -0700 | [diff] [blame] | 4426 | LiteralExpr generatedNameExpr = new LiteralExpr(new StringLiteral(generatedName)); |
| 4427 | generatedNameExpr.setSourceLocation(left.getSourceLocation()); |
| 4428 | return new FieldBinding(generatedNameExpr, left); |
Dmitry Lychagin | cdcb923 | 2019-06-04 13:27:03 -0700 | [diff] [blame] | 4429 | } else { |
| 4430 | return new FieldBinding(left, right); |
| 4431 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4432 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4433 | } |
| 4434 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4435 | Expression FunctionCallExpr() throws ParseException: |
| 4436 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4437 | List<Expression> argList = new ArrayList<Expression>(); |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4438 | Expression argExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4439 | FunctionName funcName = null; |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 4440 | boolean star = false; |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 4441 | boolean distinct = false; |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4442 | Expression filterExpr = null; |
| 4443 | WindowExpression windowExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4444 | } |
| 4445 | { |
| 4446 | funcName = FunctionName() |
Dmitry Lychagin | 7a4b568 | 2017-09-11 18:53:07 -0700 | [diff] [blame] | 4447 | <LEFTPAREN> ( |
| 4448 | ( <DISTINCT> { distinct = true; } )? |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4449 | ( argExpr = Expression() | <MUL> { star = true; } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4450 | { |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4451 | if (star) { |
| 4452 | if (funcName.function.equalsIgnoreCase(BuiltinFunctions.SCALAR_COUNT.getName())) { |
| 4453 | argExpr = new LiteralExpr(new LongIntegerLiteral(1L)); |
| 4454 | } else { |
| 4455 | throw new SqlppParseException(getSourceLocation(token), |
| 4456 | "The parameter * can only be used in " + BuiltinFunctions.SCALAR_COUNT.getName() + "()."); |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 4457 | } |
Yingyi Bu | f4d0984 | 2016-08-26 00:03:52 -0700 | [diff] [blame] | 4458 | } |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4459 | argList.add(argExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4460 | } |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4461 | (<COMMA> argExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4462 | { |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4463 | argList.add(argExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4464 | } |
| 4465 | )*)? <RIGHTPAREN> |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4466 | |
| 4467 | { |
| 4468 | String name = funcName.function; |
| 4469 | if (distinct) { |
| 4470 | name += FunctionMapUtil.DISTINCT_AGGREGATE_SUFFIX; |
| 4471 | } |
| 4472 | String fqFunctionName = funcName.library == null ? name : funcName.library + "#" + name; |
| 4473 | int arity = argList.size(); |
| 4474 | FunctionSignature signature = lookupFunctionSignature(funcName.dataverse, fqFunctionName, arity); |
| 4475 | if (signature == null) { |
| 4476 | signature = new FunctionSignature(funcName.dataverse, fqFunctionName, arity); |
| 4477 | } |
| 4478 | } |
| 4479 | |
| 4480 | ( <FILTER> <LEFTPAREN> <WHERE> filterExpr = Expression() <RIGHTPAREN> )? |
| 4481 | |
| 4482 | ( LOOKAHEAD(5) windowExpr = WindowExpr(signature, argList, filterExpr) )? |
| 4483 | |
| 4484 | { |
| 4485 | if (windowExpr != null) { |
| 4486 | return windowExpr; |
| 4487 | } else { |
| 4488 | CallExpr callExpr = new CallExpr(signature, argList, filterExpr); |
Caleb Herbel | 8d9c57a | 2020-08-14 20:41:13 -0600 | [diff] [blame] | 4489 | if (funcName.hintToken != null) { |
Dmitry Lychagin | 6fd8ab3 | 2020-12-03 09:04:14 -0800 | [diff] [blame] | 4490 | IExpressionAnnotation annotation = parseExpressionAnnotation(funcName.hintToken); |
| 4491 | if (annotation != null) { |
| 4492 | callExpr.addHint(annotation); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4493 | } |
| 4494 | } |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4495 | FunctionMapUtil.normalizedListInputFunctions(callExpr); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4496 | callExpr.setSourceLocation(funcName.sourceLoc); |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4497 | return callExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4498 | } |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 4499 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4500 | } |
| 4501 | |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4502 | WindowExpression WindowExpr(FunctionSignature signature, List<Expression> argList, Expression aggFilterExpr) |
| 4503 | throws ParseException: |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4504 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4505 | WindowExpression windowExpr = null; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4506 | Boolean fromLast = null, ignoreNulls = null; |
| 4507 | } |
| 4508 | { |
| 4509 | ( |
| 4510 | // FROM ( FIRST | LAST ) ( ( RESPECT | IGNORE ) NULLS )? OVER |
| 4511 | LOOKAHEAD(5, <FROM> <IDENTIFIER> ( <IDENTIFIER> <IDENTIFIER> )? <OVER>) |
| 4512 | <FROM> <IDENTIFIER> |
| 4513 | { |
| 4514 | if (isToken(FIRST)) { |
| 4515 | fromLast = false; |
| 4516 | } else if (isToken(LAST)) { |
| 4517 | fromLast = true; |
| 4518 | } else { |
| 4519 | throw createUnexpectedTokenError(); |
| 4520 | } |
| 4521 | } |
| 4522 | )? |
| 4523 | ( |
| 4524 | // ( RESPECT | IGNORE ) NULLS OVER |
| 4525 | LOOKAHEAD(3, <IDENTIFIER> <IDENTIFIER> <OVER>) |
| 4526 | <IDENTIFIER> |
| 4527 | { |
| 4528 | if (isToken(RESPECT)) { |
| 4529 | ignoreNulls = false; |
| 4530 | } else if (isToken(IGNORE)) { |
| 4531 | ignoreNulls = true; |
| 4532 | } else { |
| 4533 | throw createUnexpectedTokenError(); |
| 4534 | } |
| 4535 | } |
| 4536 | <IDENTIFIER> |
| 4537 | { |
| 4538 | if (!isToken(NULLS)) { |
| 4539 | throw createUnexpectedTokenError(); |
| 4540 | } |
| 4541 | } |
| 4542 | )? |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4543 | <OVER> windowExpr = OverClause(signature, argList, aggFilterExpr, token, fromLast, ignoreNulls) |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4544 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4545 | return windowExpr; |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4546 | } |
| 4547 | } |
| 4548 | |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4549 | WindowExpression OverClause(FunctionSignature signature, List<Expression> argList, Expression aggFilterExpr, |
| 4550 | Token startToken, Boolean fromLast, Boolean ignoreNulls) throws ParseException: |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4551 | { |
| 4552 | Expression partitionExpr = null; |
| 4553 | List<Expression> partitionExprs = new ArrayList<Expression>(); |
| 4554 | OrderbyClause orderByClause = null; |
| 4555 | List<Expression> orderbyList = null; |
| 4556 | List<OrderbyClause.OrderModifier> orderbyModifierList = null; |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4557 | List<OrderbyClause.NullOrderModifier> orderbyNullModifierList = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4558 | WindowExpression.FrameMode frameMode = null; |
| 4559 | Pair<WindowExpression.FrameBoundaryKind, Expression> frameStart = null, frameEnd = null; |
| 4560 | WindowExpression.FrameBoundaryKind frameStartKind = null, frameEndKind = null; |
| 4561 | Expression frameStartExpr = null, frameEndExpr = null; |
| 4562 | WindowExpression.FrameExclusionKind frameExclusionKind = null; |
| 4563 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> windowVarWithFieldList = null; |
| 4564 | VariableExpr windowVar = null; |
| 4565 | List<Pair<Expression, Identifier>> windowFieldList = null; |
| 4566 | } |
| 4567 | { |
| 4568 | ( |
| 4569 | windowVarWithFieldList = VariableWithFieldMap() <AS> |
| 4570 | { |
| 4571 | windowVar = windowVarWithFieldList.first; |
| 4572 | windowFieldList = windowVarWithFieldList.second; |
| 4573 | } |
| 4574 | )? |
| 4575 | <LEFTPAREN> |
| 4576 | ( |
| 4577 | <IDENTIFIER> { expectToken(PARTITION); } <BY> |
| 4578 | partitionExpr = Expression() { partitionExprs.add(partitionExpr); } |
| 4579 | ( <COMMA> partitionExpr = Expression() { partitionExprs.add(partitionExpr); } )* |
| 4580 | )? |
| 4581 | ( |
| 4582 | orderByClause = OrderbyClause() |
| 4583 | { |
| 4584 | orderbyList = orderByClause.getOrderbyList(); |
| 4585 | orderbyModifierList = orderByClause.getModifierList(); |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4586 | orderbyNullModifierList = orderByClause.getNullModifierList(); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4587 | } |
| 4588 | ( |
| 4589 | frameMode = WindowFrameMode() |
| 4590 | ( |
| 4591 | frameStart = WindowFrameBoundary() | |
| 4592 | ( <BETWEEN> frameStart = WindowFrameBoundary() <AND> frameEnd = WindowFrameBoundary() ) |
| 4593 | ) |
| 4594 | ( frameExclusionKind = WindowFrameExclusion() )? |
| 4595 | { |
| 4596 | frameStartKind = frameStart.first; |
| 4597 | frameStartExpr = frameStart.second; |
| 4598 | if (frameEnd == null) { |
| 4599 | frameEndKind = WindowExpression.FrameBoundaryKind.CURRENT_ROW; |
| 4600 | } else { |
| 4601 | frameEndKind = frameEnd.first; |
| 4602 | frameEndExpr = frameEnd.second; |
| 4603 | } |
| 4604 | if (frameExclusionKind == null) { |
| 4605 | frameExclusionKind = WindowExpression.FrameExclusionKind.NO_OTHERS; |
| 4606 | } |
| 4607 | } |
| 4608 | )? |
| 4609 | )? |
| 4610 | <RIGHTPAREN> |
| 4611 | { |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4612 | WindowExpression winExpr = new WindowExpression(signature, argList, aggFilterExpr, partitionExprs, orderbyList, |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 4613 | orderbyModifierList, orderbyNullModifierList, frameMode, frameStartKind, frameStartExpr, frameEndKind, |
| 4614 | frameEndExpr, frameExclusionKind, windowVar, windowFieldList, ignoreNulls, fromLast); |
Dmitry Lychagin | 9d46959 | 2020-06-01 15:42:51 -0700 | [diff] [blame] | 4615 | return addSourceLocation(winExpr, startToken); |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4616 | } |
| 4617 | } |
| 4618 | |
| 4619 | WindowExpression.FrameMode WindowFrameMode() throws ParseException: |
| 4620 | { |
| 4621 | } |
| 4622 | { |
| 4623 | <IDENTIFIER> |
| 4624 | { |
| 4625 | if (isToken(RANGE)) { |
| 4626 | return WindowExpression.FrameMode.RANGE; |
| 4627 | } else if (isToken(ROWS)) { |
| 4628 | return WindowExpression.FrameMode.ROWS; |
| 4629 | } else if (isToken(GROUPS)) { |
| 4630 | return WindowExpression.FrameMode.GROUPS; |
| 4631 | } else { |
| 4632 | throw createUnexpectedTokenError(); |
| 4633 | } |
| 4634 | } |
| 4635 | } |
| 4636 | |
| 4637 | Pair<WindowExpression.FrameBoundaryKind, Expression> WindowFrameBoundary() throws ParseException: |
| 4638 | { |
| 4639 | boolean current = false; |
| 4640 | Expression expr = null; |
| 4641 | } |
| 4642 | { |
| 4643 | ( |
Dmitry Lychagin | 5476f96 | 2019-05-31 16:03:11 -0700 | [diff] [blame] | 4644 | LOOKAHEAD({ laIdentifier(CURRENT) || laIdentifier(UNBOUNDED) }) <IDENTIFIER> { current = isToken(CURRENT); } |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 4645 | | expr = Expression() |
| 4646 | ) |
| 4647 | <IDENTIFIER> |
| 4648 | { |
| 4649 | WindowExpression.FrameBoundaryKind kind; |
| 4650 | if (current && isToken(ROW)) { |
| 4651 | kind = WindowExpression.FrameBoundaryKind.CURRENT_ROW; |
| 4652 | } else if (!current && isToken(PRECEDING)) { |
| 4653 | kind = expr == null |
| 4654 | ? WindowExpression.FrameBoundaryKind.UNBOUNDED_PRECEDING |
| 4655 | : WindowExpression.FrameBoundaryKind.BOUNDED_PRECEDING; |
| 4656 | } else if (!current && isToken(FOLLOWING)) { |
| 4657 | kind = expr == null |
| 4658 | ? WindowExpression.FrameBoundaryKind.UNBOUNDED_FOLLOWING |
| 4659 | : WindowExpression.FrameBoundaryKind.BOUNDED_FOLLOWING; |
| 4660 | } else { |
| 4661 | throw createUnexpectedTokenError(); |
| 4662 | } |
| 4663 | return new Pair<WindowExpression.FrameBoundaryKind, Expression>(kind, expr); |
| 4664 | } |
| 4665 | } |
| 4666 | |
| 4667 | WindowExpression.FrameExclusionKind WindowFrameExclusion() throws ParseException: |
| 4668 | { |
| 4669 | boolean current = false, no = false; |
| 4670 | } |
| 4671 | { |
| 4672 | <IDENTIFIER> |
| 4673 | { |
| 4674 | expectToken(EXCLUDE); |
| 4675 | } |
| 4676 | ( |
| 4677 | <GROUP> |
| 4678 | { |
| 4679 | return WindowExpression.FrameExclusionKind.GROUP; |
| 4680 | } |
| 4681 | | |
| 4682 | ( |
| 4683 | <IDENTIFIER> |
| 4684 | { |
| 4685 | if (isToken(TIES)) { |
| 4686 | return WindowExpression.FrameExclusionKind.TIES; |
| 4687 | } else if (isToken(CURRENT)) { |
| 4688 | current = true; |
| 4689 | } else if (isToken(NO)) { |
| 4690 | no = true; |
| 4691 | } else { |
| 4692 | throw createUnexpectedTokenError(); |
| 4693 | } |
| 4694 | } |
| 4695 | <IDENTIFIER> |
| 4696 | { |
| 4697 | if (current && isToken(ROW)) { |
| 4698 | return WindowExpression.FrameExclusionKind.CURRENT_ROW; |
| 4699 | } else if (no && isToken(OTHERS)) { |
| 4700 | return WindowExpression.FrameExclusionKind.NO_OTHERS; |
| 4701 | } else { |
| 4702 | throw createUnexpectedTokenError(); |
| 4703 | } |
| 4704 | } |
| 4705 | ) |
| 4706 | ) |
| 4707 | } |
| 4708 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4709 | Expression ParenthesizedExpression() throws ParseException: |
| 4710 | { |
Dmitry Lychagin | e963059 | 2021-08-30 15:29:30 -0700 | [diff] [blame] | 4711 | Token startToken = null; |
| 4712 | Expression expr = null, expr2 = null; |
| 4713 | List<Expression> exprList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4714 | } |
| 4715 | { |
| 4716 | ( |
| 4717 | LOOKAHEAD(2) |
Dmitry Lychagin | e963059 | 2021-08-30 15:29:30 -0700 | [diff] [blame] | 4718 | <LEFTPAREN> { startToken = token; } expr = Expression() |
| 4719 | ( |
| 4720 | <COMMA> expr2 = Expression() |
| 4721 | { |
| 4722 | if (exprList == null) { |
| 4723 | exprList = new ArrayList<Expression>(); |
| 4724 | exprList.add(expr); |
| 4725 | } |
| 4726 | exprList.add(expr2); |
| 4727 | } |
| 4728 | )* |
| 4729 | <RIGHTPAREN> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4730 | | |
| 4731 | expr = Subquery() |
| 4732 | ) |
| 4733 | { |
Dmitry Lychagin | e963059 | 2021-08-30 15:29:30 -0700 | [diff] [blame] | 4734 | if (exprList != null) { |
| 4735 | ListConstructor listExpr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, exprList); |
| 4736 | return addSourceLocation(listExpr, startToken); |
| 4737 | } else { |
| 4738 | return expr; |
| 4739 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4740 | } |
| 4741 | } |
| 4742 | |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4743 | Expression CaseExpr() throws ParseException: |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4744 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4745 | Token startToken = null; |
| 4746 | Expression conditionExpr = null; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4747 | List<Expression> whenExprs = new ArrayList<Expression>(); |
| 4748 | List<Expression> thenExprs = new ArrayList<Expression>(); |
| 4749 | Expression elseExpr = null; |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4750 | Expression whenExpr = null; |
| 4751 | Expression thenExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4752 | } |
| 4753 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4754 | <CASE> { startToken = token; } |
| 4755 | ( conditionExpr = Expression() )? |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4756 | ( |
| 4757 | <WHEN> whenExpr = Expression() |
| 4758 | { |
| 4759 | whenExprs.add(whenExpr); |
| 4760 | } |
| 4761 | <THEN> thenExpr = Expression() |
| 4762 | { |
| 4763 | thenExprs.add(thenExpr); |
| 4764 | } |
| 4765 | )* |
| 4766 | (<ELSE> elseExpr = Expression() )? |
| 4767 | <END> |
| 4768 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4769 | if (conditionExpr == null) { |
| 4770 | LiteralExpr litExpr = new LiteralExpr(TrueLiteral.INSTANCE); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4771 | conditionExpr = addSourceLocation(litExpr, startToken); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4772 | } |
| 4773 | CaseExpression caseExpr = new CaseExpression(conditionExpr, whenExprs, thenExprs, elseExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 4774 | return addSourceLocation(caseExpr, startToken); |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 4775 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4776 | } |
| 4777 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4778 | SelectExpression SelectExpression(boolean subquery) throws ParseException: |
| 4779 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4780 | List<LetClause> letClauses = new ArrayList<LetClause>(); |
| 4781 | SelectSetOperation selectSetOperation; |
| 4782 | OrderbyClause orderbyClause = null; |
| 4783 | LimitClause limitClause = null; |
| 4784 | createNewScope(); |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4785 | } |
| 4786 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4787 | ( letClauses = LetClause() )? |
| 4788 | selectSetOperation = SelectSetOperation() |
| 4789 | (orderbyClause = OrderbyClause() {})? |
| 4790 | (limitClause = LimitClause() {})? |
| 4791 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4792 | SelectExpression selectExpr = |
| 4793 | new SelectExpression(letClauses, selectSetOperation, orderbyClause, limitClause, subquery); |
| 4794 | selectExpr.setSourceLocation((!letClauses.isEmpty() ? letClauses.get(0) : selectSetOperation).getSourceLocation()); |
| 4795 | return selectExpr; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4796 | } |
| 4797 | } |
| 4798 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4799 | SelectSetOperation SelectSetOperation() throws ParseException: |
| 4800 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4801 | SetOperationInput setOperationInputLeft; |
| 4802 | List<SetOperationRight> setOperationRights = new ArrayList<SetOperationRight>(); |
| 4803 | } |
| 4804 | { |
| 4805 | { |
| 4806 | SelectBlock selectBlockLeft = null; |
| 4807 | SelectExpression subqueryLeft = null; |
| 4808 | Expression expr = null; |
| 4809 | } |
| 4810 | selectBlockLeft = SelectBlock() |
| 4811 | { |
| 4812 | setOperationInputLeft = new SetOperationInput(selectBlockLeft, subqueryLeft); |
| 4813 | } |
| 4814 | ( |
| 4815 | { |
| 4816 | SetOpType opType = SetOpType.UNION; |
| 4817 | boolean setSemantics = true; |
| 4818 | SelectBlock selectBlockRight = null; |
| 4819 | SelectExpression subqueryRight = null; |
| 4820 | } |
| 4821 | (<UNION> {opType = SetOpType.UNION;} |<INTERSECT> {opType = SetOpType.INTERSECT;} |<EXCEPT> {opType = SetOpType.EXCEPT;}) (<ALL> {setSemantics = false;} )? |
| 4822 | (selectBlockRight = SelectBlock()| subqueryRight = Subquery()) |
| 4823 | { |
| 4824 | setOperationRights.add(new SetOperationRight(opType, setSemantics, new SetOperationInput(selectBlockRight, subqueryRight))); |
| 4825 | } |
| 4826 | )* |
| 4827 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4828 | SelectSetOperation selectSetOp = new SelectSetOperation(setOperationInputLeft, setOperationRights); |
| 4829 | selectSetOp.setSourceLocation(selectBlockLeft.getSourceLocation()); |
| 4830 | return selectSetOp; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4831 | } |
| 4832 | } |
| 4833 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4834 | SelectExpression Subquery() throws ParseException: |
| 4835 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4836 | SelectExpression selectExpr = null; |
| 4837 | } |
| 4838 | { |
| 4839 | <LEFTPAREN> selectExpr = SelectExpression(true) {} <RIGHTPAREN> |
| 4840 | { |
| 4841 | return selectExpr; |
| 4842 | } |
| 4843 | } |
| 4844 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4845 | SelectBlock SelectBlock() throws ParseException: |
| 4846 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4847 | SelectClause selectClause = null; |
| 4848 | FromClause fromClause = null; |
| 4849 | List<LetClause> fromLetClauses = null; |
| 4850 | WhereClause whereClause = null; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 4851 | List<AbstractClause> fromLetWhereClauses = new ArrayList<AbstractClause>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4852 | GroupbyClause groupbyClause = null; |
| 4853 | List<LetClause> gbyLetClauses = null; |
| 4854 | HavingClause havingClause = null; |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 4855 | List<AbstractClause> gbyLetHavingClauses = new ArrayList<AbstractClause>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4856 | SourceLocation startSrcLoc = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4857 | } |
| 4858 | { |
| 4859 | ( |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4860 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4861 | selectClause = SelectClause() { startSrcLoc = selectClause.getSourceLocation(); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4862 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4863 | ( |
Dmitry Lychagin | 368092d | 2019-06-06 14:39:38 -0700 | [diff] [blame] | 4864 | fromClause = FromClause() |
| 4865 | ( |
| 4866 | fromLetClauses = LetClause() |
| 4867 | )? |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4868 | (whereClause = WhereClause())? |
| 4869 | ( |
| 4870 | groupbyClause = GroupbyClause() |
| 4871 | ( |
| 4872 | gbyLetClauses = LetClause() |
| 4873 | )? |
| 4874 | (havingClause = HavingClause())? |
| 4875 | )? |
Dmitry Lychagin | 368092d | 2019-06-06 14:39:38 -0700 | [diff] [blame] | 4876 | ) |
| 4877 | | |
| 4878 | ( |
| 4879 | fromLetClauses = LetClause() |
| 4880 | { |
| 4881 | // LET without FROM -> create dummy FROM clause: FROM {{missing}} AS #0 |
| 4882 | SourceLocation sourceLoc = getSourceLocation(token); |
| 4883 | LiteralExpr missingExpr = new LiteralExpr(MissingLiteral.INSTANCE); |
| 4884 | missingExpr.setSourceLocation(sourceLoc); |
| 4885 | List<Expression> list = new ArrayList<Expression>(1); |
| 4886 | list.add(missingExpr); |
| 4887 | ListConstructor listExpr = new ListConstructor(ListConstructor.Type.ORDERED_LIST_CONSTRUCTOR, list); |
| 4888 | listExpr.setSourceLocation(sourceLoc); |
| 4889 | List<FromTerm> fromTerms = new ArrayList<FromTerm>(1); |
| 4890 | VariableExpr fromVar = new VariableExpr(new VarIdentifier("#0")); |
| 4891 | fromVar.setSourceLocation(sourceLoc); |
| 4892 | fromTerms.add(new FromTerm(listExpr, fromVar, null, new ArrayList<AbstractBinaryCorrelateClause>())); |
| 4893 | fromClause = new FromClause(fromTerms); |
| 4894 | } |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4895 | (whereClause = WhereClause())? |
Dmitry Lychagin | 368092d | 2019-06-06 14:39:38 -0700 | [diff] [blame] | 4896 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4897 | )? |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4898 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4899 | | |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4900 | ( |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4901 | fromClause = FromClause() { startSrcLoc = fromClause.getSourceLocation(); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4902 | ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4903 | fromLetClauses = LetClause() |
| 4904 | )? |
| 4905 | (whereClause = WhereClause())? |
| 4906 | ( |
| 4907 | groupbyClause = GroupbyClause() |
| 4908 | ( |
| 4909 | gbyLetClauses = LetClause() |
| 4910 | )? |
| 4911 | (havingClause = HavingClause())? |
| 4912 | )? |
| 4913 | selectClause = SelectClause() |
Dmitry Lychagin | 214ff55 | 2021-07-22 18:55:41 -0700 | [diff] [blame] | 4914 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4915 | ) |
| 4916 | { |
Dmitry Lychagin | 276adf9 | 2019-01-15 13:16:40 -0800 | [diff] [blame] | 4917 | if (fromLetClauses != null) { |
| 4918 | fromLetWhereClauses.addAll(fromLetClauses); |
| 4919 | } |
| 4920 | if (whereClause != null) { |
| 4921 | fromLetWhereClauses.add(whereClause); |
| 4922 | } |
| 4923 | if (gbyLetClauses != null) { |
| 4924 | gbyLetHavingClauses.addAll(gbyLetClauses); |
| 4925 | } |
| 4926 | if (havingClause != null) { |
| 4927 | gbyLetHavingClauses.add(havingClause); |
| 4928 | } |
| 4929 | SelectBlock selectBlock = new SelectBlock(selectClause, fromClause, fromLetWhereClauses, groupbyClause, |
| 4930 | gbyLetHavingClauses); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4931 | selectBlock.setSourceLocation(startSrcLoc); |
| 4932 | return selectBlock; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4933 | } |
| 4934 | } |
| 4935 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4936 | SelectClause SelectClause() throws ParseException: |
| 4937 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4938 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4939 | SelectRegular selectRegular = null; |
| 4940 | SelectElement selectElement = null; |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4941 | List<List<String>> fieldExclusions = new ArrayList<List<String>>(); |
| 4942 | List<String> nestedField = new ArrayList<String>(); |
| 4943 | String identifier; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4944 | boolean distinct = false; |
| 4945 | } |
| 4946 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4947 | <SELECT> { startToken = token; } (<ALL>|<DISTINCT> { distinct = true; } )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4948 | ( |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4949 | ( |
| 4950 | selectRegular = SelectRegular() |
| 4951 | ( LOOKAHEAD({laIdentifier(EXCLUDE)}) <IDENTIFIER> |
| 4952 | identifier = Identifier() { nestedField.add(identifier); } |
| 4953 | ( <DOT> identifier = Identifier() { nestedField.add(identifier); } )* |
| 4954 | { |
| 4955 | fieldExclusions.add(nestedField); |
| 4956 | nestedField = new ArrayList<String>(); |
| 4957 | } |
| 4958 | ( LOOKAHEAD(1) // Force <COMMA> to be recognized for a nested field in our EXCLUDE list. |
| 4959 | <COMMA> identifier = Identifier() { nestedField.add(identifier); } |
| 4960 | ( <DOT> identifier = Identifier() { nestedField.add(identifier); } )* |
| 4961 | { |
| 4962 | fieldExclusions.add(nestedField); |
| 4963 | nestedField = new ArrayList<String>(); |
| 4964 | } |
| 4965 | )* |
| 4966 | )? |
| 4967 | ) |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 4968 | | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4969 | selectElement = SelectElement() |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 4970 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4971 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4972 | SourceLocation sourceLoc = getSourceLocation(startToken); |
| 4973 | if (selectRegular == null && selectElement == null){ |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 4974 | Projection projection = new Projection(Projection.Kind.STAR, null, null); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4975 | projection.setSourceLocation(sourceLoc); |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 4976 | List<Projection> projections = new ArrayList<Projection>(); |
| 4977 | projections.add(projection); |
| 4978 | selectRegular = new SelectRegular(projections); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4979 | selectRegular.setSourceLocation(sourceLoc); |
Yingyi Bu | a89fae6 | 2016-07-06 07:58:55 -0700 | [diff] [blame] | 4980 | } |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 4981 | SelectClause selectClause = new SelectClause(selectElement, selectRegular, fieldExclusions, distinct); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4982 | selectClause.setSourceLocation(sourceLoc); |
| 4983 | return selectClause; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4984 | } |
| 4985 | } |
| 4986 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 4987 | SelectRegular SelectRegular() throws ParseException: |
| 4988 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4989 | SourceLocation startSrcLoc = null; |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 4990 | List<Projection> projections = new ArrayList<Projection>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4991 | Projection projection = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4992 | } |
| 4993 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4994 | projection = Projection() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 4995 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 4996 | projections.add(projection); |
| 4997 | startSrcLoc = projection.getSourceLocation(); |
| 4998 | } |
| 4999 | ( LOOKAHEAD(2) <COMMA> projection = Projection() |
| 5000 | { |
| 5001 | projections.add(projection); |
| 5002 | } |
| 5003 | )* |
| 5004 | { |
| 5005 | SelectRegular selectRegular = new SelectRegular(projections); |
| 5006 | selectRegular.setSourceLocation(startSrcLoc); |
| 5007 | return selectRegular; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5008 | } |
| 5009 | } |
| 5010 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 5011 | SelectElement SelectElement() throws ParseException: |
| 5012 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5013 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5014 | Expression expr = null; |
| 5015 | String name = null; |
| 5016 | } |
| 5017 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5018 | (<RAW>|<ELEMENT>|<VALUE>) { startToken = token; } expr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5019 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5020 | SelectElement selectElement = new SelectElement(expr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5021 | return addSourceLocation(selectElement, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5022 | } |
| 5023 | } |
| 5024 | |
Yingyi Bu | ab81748 | 2016-08-19 21:29:31 -0700 | [diff] [blame] | 5025 | Projection Projection() throws ParseException : |
| 5026 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5027 | SourceLocation startSrcLoc = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5028 | Expression expr = null; |
| 5029 | Identifier identifier = null; |
| 5030 | String name = null; |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 5031 | Projection.Kind kind = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5032 | boolean star = false; |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 5033 | boolean varStar = false; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5034 | } |
| 5035 | { |
| 5036 | ( |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 5037 | <MUL> { kind = Projection.Kind.STAR; startSrcLoc = getSourceLocation(token); } |
| 5038 | | LOOKAHEAD(3) expr = VariableRef() <DOT> <MUL> { kind = Projection.Kind.VAR_STAR; } |
ggalvizo | 8249944 | 2022-10-24 12:46:15 -0700 | [diff] [blame] | 5039 | | expr = Expression() |
| 5040 | ( // EXCLUDE is a soft-keyword-- we want to avoid mistaking EXCLUDE as an identifier here. |
| 5041 | LOOKAHEAD({ getToken(1).kind == AS || getToken(1).kind == QUOTED_STRING |
| 5042 | || (getToken(1).kind == IDENTIFIER && !laIdentifier(1, EXCLUDE)) }) |
| 5043 | (<AS>)? name = Identifier() |
| 5044 | )? |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 5045 | { |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 5046 | kind = Projection.Kind.NAMED_EXPR; |
Dmitry Lychagin | 5cdaa5d | 2018-02-21 11:11:26 -0800 | [diff] [blame] | 5047 | if (name == null) { |
| 5048 | String generatedColumnIdentifier = ExpressionToVariableUtil.getGeneratedIdentifier(expr, false); |
| 5049 | if (generatedColumnIdentifier != null) { |
| 5050 | name = SqlppVariableUtil.toUserDefinedName(generatedColumnIdentifier); |
| 5051 | } |
| 5052 | } |
| 5053 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5054 | ) |
| 5055 | { |
Dmitry Lychagin | b4121e4 | 2021-09-23 15:55:09 -0700 | [diff] [blame] | 5056 | Projection projection = new Projection(kind, expr, name); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5057 | projection.setSourceLocation(expr != null ? expr.getSourceLocation() : startSrcLoc); |
| 5058 | return projection; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5059 | } |
| 5060 | } |
| 5061 | |
| 5062 | FromClause FromClause() throws ParseException : |
| 5063 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5064 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5065 | List<FromTerm> fromTerms = new ArrayList<FromTerm>(); |
| 5066 | extendCurrentScope(); |
| 5067 | } |
| 5068 | { |
| 5069 | { |
| 5070 | FromTerm fromTerm = null; |
| 5071 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5072 | <FROM> { startToken = token; } fromTerm = FromTerm() { fromTerms.add(fromTerm); } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5073 | (LOOKAHEAD(2) <COMMA> fromTerm = FromTerm() { fromTerms.add(fromTerm); } )* |
| 5074 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5075 | FromClause fromClause = new FromClause(fromTerms); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5076 | return addSourceLocation(fromClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5077 | } |
| 5078 | } |
| 5079 | |
| 5080 | FromTerm FromTerm() throws ParseException : |
| 5081 | { |
| 5082 | Expression leftExpr = null; |
Michael Blow | d6cf641 | 2016-06-30 02:44:35 -0400 | [diff] [blame] | 5083 | VariableExpr leftVar = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5084 | VariableExpr posVar = null; |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5085 | AbstractBinaryCorrelateClause correlateClause = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5086 | List<AbstractBinaryCorrelateClause> correlateClauses = new ArrayList<AbstractBinaryCorrelateClause>(); |
| 5087 | } |
| 5088 | { |
Ali Alsuliman | ba91b1c | 2023-02-22 21:33:55 -0800 | [diff] [blame] | 5089 | leftExpr = Expression() |
| 5090 | { |
| 5091 | if (leftExpr.getKind() == Expression.Kind.VARIABLE_EXPRESSION) { |
| 5092 | Token hintToken = fetchHint(token, SqlppHint.SUBPATH_HINT); |
| 5093 | if (hintToken != null) { |
| 5094 | String subPath = hintToken.hintParams; |
| 5095 | ((VariableExpr) leftExpr).addHint(new ExternalSubpathAnnotation(subPath)); |
| 5096 | } |
| 5097 | } |
| 5098 | } ((<AS>)? leftVar = Variable())? (<AT> posVar = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5099 | ( |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5100 | ( |
| 5101 | correlateClause = JoinOrUnnestClause(JoinType.INNER, UnnestType.INNER) |
| 5102 | | ( <INNER> correlateClause = JoinOrUnnestClause(JoinType.INNER, UnnestType.INNER) ) |
| 5103 | | ( <LEFT> ( <OUTER> )? correlateClause = JoinOrUnnestClause(JoinType.LEFTOUTER, UnnestType.LEFTOUTER) ) |
| 5104 | | ( <RIGHT> ( <OUTER> )? correlateClause = JoinClause(JoinType.RIGHTOUTER) ) |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5105 | | ( <CROSS> correlateClause = CrossJoinClause() ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5106 | ) |
| 5107 | { |
| 5108 | correlateClauses.add(correlateClause); |
| 5109 | } |
| 5110 | )* |
| 5111 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5112 | if (leftVar == null) { |
Yingyi Bu | 5b2d4c8 | 2016-07-13 17:56:48 -0700 | [diff] [blame] | 5113 | leftVar = ExpressionToVariableUtil.getGeneratedVariable(leftExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 5114 | } |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5115 | FromTerm fromTerm = new FromTerm(leftExpr, leftVar, posVar, correlateClauses); |
| 5116 | fromTerm.setSourceLocation(leftExpr.getSourceLocation()); |
| 5117 | return fromTerm; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5118 | } |
| 5119 | } |
| 5120 | |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5121 | AbstractBinaryCorrelateClause JoinOrUnnestClause(JoinType joinType, UnnestType unnestType) throws ParseException : |
| 5122 | { |
| 5123 | AbstractBinaryCorrelateClause correlateClause = null; |
| 5124 | } |
| 5125 | { |
| 5126 | ( correlateClause = JoinClause(joinType) | correlateClause = UnnestClause(unnestType) ) |
| 5127 | { |
| 5128 | return correlateClause; |
| 5129 | } |
| 5130 | } |
| 5131 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5132 | JoinClause JoinClause(JoinType joinType) throws ParseException : |
| 5133 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5134 | Token startToken = null; |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5135 | Triple<Expression, VariableExpr, VariableExpr> rightInput = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5136 | Expression conditionExpr = null; |
| 5137 | } |
| 5138 | { |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5139 | <JOIN> { startToken = token; } rightInput = JoinClauseRightInput() <ON> conditionExpr = Expression() |
| 5140 | { |
| 5141 | JoinClause joinClause = new JoinClause(joinType, rightInput.first, rightInput.second, rightInput.third, |
Dmitry Lychagin | 34b72ac | 2021-11-29 16:25:40 -0800 | [diff] [blame] | 5142 | conditionExpr, joinType == JoinType.INNER ? null : Literal.Type.MISSING); |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5143 | return addSourceLocation(joinClause, startToken); |
| 5144 | } |
| 5145 | } |
| 5146 | |
| 5147 | JoinClause CrossJoinClause() throws ParseException : |
| 5148 | { |
| 5149 | Token startToken = null; |
| 5150 | Triple<Expression, VariableExpr, VariableExpr> rightInput = null; |
| 5151 | Expression conditionExpr = null; |
| 5152 | } |
| 5153 | { |
| 5154 | <JOIN> { startToken = token; } rightInput = JoinClauseRightInput() |
| 5155 | { |
| 5156 | JoinClause joinClause = new JoinClause(JoinType.INNER, rightInput.first, rightInput.second, rightInput.third, |
Dmitry Lychagin | 34b72ac | 2021-11-29 16:25:40 -0800 | [diff] [blame] | 5157 | new LiteralExpr(TrueLiteral.INSTANCE), null); |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5158 | return addSourceLocation(joinClause, startToken); |
| 5159 | } |
| 5160 | } |
| 5161 | |
| 5162 | Triple<Expression, VariableExpr, VariableExpr> JoinClauseRightInput() throws ParseException : |
| 5163 | { |
| 5164 | Expression rightExpr = null; |
| 5165 | VariableExpr rightVar = null; |
| 5166 | VariableExpr posVar = null; |
| 5167 | } |
| 5168 | { |
Ali Alsuliman | ba91b1c | 2023-02-22 21:33:55 -0800 | [diff] [blame] | 5169 | rightExpr = Expression() |
| 5170 | { |
| 5171 | if (rightExpr.getKind() == Expression.Kind.VARIABLE_EXPRESSION) { |
| 5172 | Token hintToken = fetchHint(token, SqlppHint.SUBPATH_HINT); |
| 5173 | if (hintToken != null) { |
| 5174 | String subPath = hintToken.hintParams; |
| 5175 | ((VariableExpr) rightExpr).addHint(new ExternalSubpathAnnotation(subPath)); |
| 5176 | } |
| 5177 | } |
| 5178 | } ((<AS>)? rightVar = Variable())? (<AT> posVar = Variable())? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5179 | { |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5180 | if (rightVar == null) { |
| 5181 | rightVar = ExpressionToVariableUtil.getGeneratedVariable(rightExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 5182 | } |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5183 | return new Triple<Expression, VariableExpr, VariableExpr>(rightExpr, rightVar, posVar); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5184 | } |
| 5185 | } |
| 5186 | |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5187 | UnnestClause UnnestClause(UnnestType unnestType) throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5188 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5189 | Token startToken = null; |
Dmitry Lychagin | 4cf91e4 | 2021-03-12 12:53:15 -0800 | [diff] [blame] | 5190 | Expression rightExpr = null; |
| 5191 | VariableExpr rightVar = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5192 | VariableExpr posVar = null; |
| 5193 | } |
| 5194 | { |
Dmitry Lychagin | 4cf91e4 | 2021-03-12 12:53:15 -0800 | [diff] [blame] | 5195 | (<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] | 5196 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5197 | if (rightVar == null) { |
| 5198 | rightVar = ExpressionToVariableUtil.getGeneratedVariable(rightExpr, true); |
Yingyi Bu | 9e3f9be | 2016-07-01 10:07:37 -0700 | [diff] [blame] | 5199 | } |
Dmitry Lychagin | 34b72ac | 2021-11-29 16:25:40 -0800 | [diff] [blame] | 5200 | UnnestClause unnestClause = new UnnestClause(unnestType, rightExpr, rightVar, posVar, |
| 5201 | unnestType == UnnestType.INNER ? null : Literal.Type.MISSING); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5202 | return addSourceLocation(unnestClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5203 | } |
| 5204 | } |
| 5205 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5206 | List<LetClause> LetClause() throws ParseException: |
| 5207 | { |
| 5208 | List<LetClause> letList = new ArrayList<LetClause>(); |
| 5209 | LetClause letClause; |
| 5210 | } |
| 5211 | { |
| 5212 | ( |
| 5213 | (<LET>|<LETTING>) letClause = LetElement() { letList.add(letClause); } (LOOKAHEAD(1) <COMMA> letClause = LetElement() { letList.add(letClause); })* |
| 5214 | | |
| 5215 | <WITH> letClause = WithElement() { letList.add(letClause); } (LOOKAHEAD(1) <COMMA> letClause = WithElement() { letList.add(letClause); })* |
| 5216 | ) |
| 5217 | { |
| 5218 | return letList; |
| 5219 | } |
| 5220 | } |
| 5221 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5222 | WhereClause WhereClause() throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5223 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5224 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5225 | Expression whereExpr; |
| 5226 | } |
| 5227 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5228 | <WHERE> { startToken = token; } whereExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5229 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5230 | WhereClause wc = new WhereClause(whereExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5231 | return addSourceLocation(wc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5232 | } |
| 5233 | } |
| 5234 | |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5235 | OrderbyClause OrderbyClause() throws ParseException : |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5236 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5237 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5238 | OrderbyClause oc = new OrderbyClause(); |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5239 | Triple<Expression, OrderbyClause.OrderModifier, OrderbyClause.NullOrderModifier> orderbyExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5240 | List<Expression> orderbyList = new ArrayList<Expression>(); |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5241 | List<OrderbyClause.OrderModifier> modifierList = new ArrayList<OrderbyClause.OrderModifier>(); |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5242 | List<OrderbyClause.NullOrderModifier> nullModifierList = new ArrayList<OrderbyClause.NullOrderModifier>(); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5243 | } |
| 5244 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5245 | <ORDER> |
| 5246 | { |
| 5247 | startToken = token; |
| 5248 | Token hintToken = fetchHint(token, SqlppHint.INMEMORY_HINT, SqlppHint.RANGE_HINT); |
| 5249 | if (hintToken != null) { |
| 5250 | switch (hintToken.hint) { |
| 5251 | case INMEMORY_HINT: |
| 5252 | String[] splits = hintToken.hintParams.split("\\s+"); |
| 5253 | int numFrames = Integer.parseInt(splits[0]); |
| 5254 | int numTuples = Integer.parseInt(splits[1]); |
| 5255 | oc.setNumFrames(numFrames); |
| 5256 | oc.setNumTuples(numTuples); |
| 5257 | break; |
| 5258 | case RANGE_HINT: |
| 5259 | try { |
| 5260 | Expression rangeExpr = parseExpression(hintToken.hintParams); |
| 5261 | RangeMap rangeMap = RangeMapBuilder.parseHint(rangeExpr); |
| 5262 | oc.setRangeMap(rangeMap); |
| 5263 | } catch (CompilationException e) { |
| 5264 | throw new SqlppParseException(getSourceLocation(hintToken), e.getMessage()); |
Ali Alsuliman | 80225e2 | 2018-10-15 14:17:07 -0700 | [diff] [blame] | 5265 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5266 | break; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5267 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5268 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5269 | } |
| 5270 | <BY> orderbyExpr = OrderByExpression() |
| 5271 | { |
| 5272 | orderbyList.add(orderbyExpr.first); |
| 5273 | modifierList.add(orderbyExpr.second); |
| 5274 | nullModifierList.add(orderbyExpr.third); |
| 5275 | } |
| 5276 | ( |
| 5277 | LOOKAHEAD(2) <COMMA> orderbyExpr = OrderByExpression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5278 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5279 | orderbyList.add(orderbyExpr.first); |
| 5280 | modifierList.add(orderbyExpr.second); |
| 5281 | nullModifierList.add(orderbyExpr.third); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5282 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5283 | )* |
| 5284 | { |
| 5285 | oc.setOrderbyList(orderbyList); |
| 5286 | oc.setModifierList(modifierList); |
| 5287 | oc.setNullModifierList(nullModifierList); |
| 5288 | return addSourceLocation(oc, startToken); |
| 5289 | } |
| 5290 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5291 | |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5292 | Triple<Expression, OrderbyClause.OrderModifier, OrderbyClause.NullOrderModifier> OrderByExpression() |
| 5293 | throws ParseException: |
| 5294 | { |
| 5295 | Expression orderbyExpr = null; |
| 5296 | OrderbyClause.OrderModifier modif = OrderbyClause.OrderModifier.ASC; |
| 5297 | OrderbyClause.NullOrderModifier nullModif = null; |
| 5298 | } |
| 5299 | { |
| 5300 | orderbyExpr = Expression() |
| 5301 | ( |
| 5302 | <ASC> { modif = OrderbyClause.OrderModifier.ASC; } |
| 5303 | | |
| 5304 | <DESC> { modif = OrderbyClause.OrderModifier.DESC; } |
| 5305 | )? |
| 5306 | ( |
| 5307 | LOOKAHEAD({ laIdentifier(NULLS) }) <IDENTIFIER> { expectToken(NULLS); } <IDENTIFIER> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5308 | { |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5309 | if (isToken(FIRST)) { |
| 5310 | nullModif = OrderbyClause.NullOrderModifier.FIRST; |
| 5311 | } else if (isToken(LAST)) { |
| 5312 | nullModif = OrderbyClause.NullOrderModifier.LAST; |
| 5313 | } else { |
| 5314 | throw createUnexpectedTokenError(); |
| 5315 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5316 | } |
Dmitry Lychagin | e5e3ad9 | 2021-07-15 12:44:47 -0700 | [diff] [blame] | 5317 | )? |
| 5318 | { |
| 5319 | return new Triple<Expression, OrderbyClause.OrderModifier, OrderbyClause.NullOrderModifier>(orderbyExpr, modif, |
| 5320 | nullModif); |
| 5321 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5322 | } |
| 5323 | |
| 5324 | GroupbyClause GroupbyClause()throws ParseException : |
| 5325 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5326 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5327 | GroupbyClause gbc = new GroupbyClause(); |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5328 | List<List<GbyVariableExpressionPair>> gbyList = null; |
| 5329 | List<GroupingElement> groupingElementList = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 5330 | Pair<VariableExpr, List<Pair<Expression, Identifier>>> groupVarWithFieldList = null; |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 5331 | VariableExpr groupVar = null; |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 5332 | List<Pair<Expression, Identifier>> groupFieldList = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5333 | } |
| 5334 | { |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5335 | { |
| 5336 | Scope newScope = extendCurrentScopeNoPush(true); |
| 5337 | // extendCurrentScope(true); |
| 5338 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5339 | <GROUP> |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5340 | { |
| 5341 | startToken = token; |
| 5342 | Token hintToken = fetchHint(token, SqlppHint.HASH_GROUP_BY_HINT); |
| 5343 | if (hintToken != null) { |
| 5344 | gbc.setHashGroupByHint(true); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5345 | } |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5346 | } |
| 5347 | <BY> groupingElementList = GroupingElementList() |
| 5348 | ( |
| 5349 | <GROUP> <AS> groupVarWithFieldList = VariableWithFieldMap() |
Dmitry Lychagin | f2c18aa | 2018-12-28 21:20:23 -0800 | [diff] [blame] | 5350 | { |
| 5351 | groupVar = groupVarWithFieldList.first; |
| 5352 | groupFieldList = groupVarWithFieldList.second; |
| 5353 | } |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 5354 | )? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5355 | { |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5356 | if (groupingSetsParser == null) { |
| 5357 | groupingSetsParser = new SqlppGroupingSetsParser(); |
| 5358 | } |
| 5359 | SourceLocation sourceLoc = getSourceLocation(startToken); |
| 5360 | try { |
| 5361 | gbyList = groupingSetsParser.parse(groupingElementList, sourceLoc); |
| 5362 | } catch (CompilationException e) { |
| 5363 | throw new SqlppParseException(sourceLoc, e.getMessage()); |
| 5364 | } |
| 5365 | gbc.setGbyPairList(gbyList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5366 | gbc.setDecorPairList(new ArrayList<GbyVariableExpressionPair>()); |
Yingyi Bu | 8671ddf | 2016-08-14 23:58:43 -0700 | [diff] [blame] | 5367 | gbc.setWithVarMap(new HashMap<Expression, VariableExpr>()); |
Yingyi Bu | acc12a9 | 2016-03-26 17:25:05 -0700 | [diff] [blame] | 5368 | gbc.setGroupVar(groupVar); |
| 5369 | gbc.setGroupFieldList(groupFieldList); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5370 | replaceCurrentScope(newScope); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5371 | return addSourceLocation(gbc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5372 | } |
| 5373 | } |
| 5374 | |
Dmitry Lychagin | ac98f48 | 2020-03-31 12:26:40 -0700 | [diff] [blame] | 5375 | List<GroupingElement> GroupingElementList() throws ParseException: |
| 5376 | { |
| 5377 | List<GroupingElement> groupingElementList = new ArrayList<GroupingElement>(); |
| 5378 | GroupingElement groupingElement = null; |
| 5379 | } |
| 5380 | { |
| 5381 | groupingElement = GroupingElement() { groupingElementList.add(groupingElement); } |
| 5382 | ( LOOKAHEAD(1) <COMMA> groupingElement = GroupingElement() { groupingElementList.add(groupingElement); } )* |
| 5383 | { |
| 5384 | return groupingElementList; |
| 5385 | } |
| 5386 | } |
| 5387 | |
| 5388 | GroupingElement GroupingElement() throws ParseException: |
| 5389 | { |
| 5390 | GroupingElement groupingElement = null; |
| 5391 | List<GroupingSet> groupingSets = null; |
| 5392 | List<GroupingElement> groupingElements = null; |
| 5393 | } |
| 5394 | { |
| 5395 | ( |
| 5396 | LOOKAHEAD(2) |
| 5397 | <LEFTPAREN> <RIGHTPAREN> |
| 5398 | { |
| 5399 | groupingElement = GroupingSet.EMPTY; |
| 5400 | } |
| 5401 | | |
| 5402 | LOOKAHEAD({ laIdentifier(ROLLUP) && laToken(2, LEFTPAREN) }) |
| 5403 | <IDENTIFIER> { expectToken(ROLLUP); } |
| 5404 | <LEFTPAREN> groupingSets = OrdinaryGroupingSetList() <RIGHTPAREN> |
| 5405 | { |
| 5406 | groupingElement = new RollupCube(groupingSets, false); |
| 5407 | } |
| 5408 | | |
| 5409 | LOOKAHEAD({ laIdentifier(CUBE) && laToken(2, LEFTPAREN) }) |
| 5410 | <IDENTIFIER> { expectToken(CUBE); } |
| 5411 | <LEFTPAREN> groupingSets = OrdinaryGroupingSetList() <RIGHTPAREN> |
| 5412 | { |
| 5413 | groupingElement = new RollupCube(groupingSets, true); |
| 5414 | } |
| 5415 | | |
| 5416 | LOOKAHEAD({ laIdentifier(GROUPING) && laIdentifier(2, SETS) && laToken(3, LEFTPAREN) }) |
| 5417 | <IDENTIFIER> { expectToken(GROUPING); } <IDENTIFIER> { expectToken(SETS); } |
| 5418 | <LEFTPAREN> groupingElements = GroupingElementList() <RIGHTPAREN> |
| 5419 | { |
| 5420 | groupingElement = new GroupingSets(groupingElements); |
| 5421 | } |
| 5422 | | |
| 5423 | groupingElement = OrdinaryGroupingSet() |
| 5424 | ) |
| 5425 | { |
| 5426 | return groupingElement; |
| 5427 | } |
| 5428 | } |
| 5429 | |
| 5430 | GroupingSet OrdinaryGroupingSet() throws ParseException: |
| 5431 | { |
| 5432 | GbyVariableExpressionPair gbyExprPair = null; |
| 5433 | List<GbyVariableExpressionPair> items = null; |
| 5434 | } |
| 5435 | { |
| 5436 | ( |
| 5437 | LOOKAHEAD(1) <LEFTPAREN> items = GbyVariableExpressionPairList() <RIGHTPAREN> |
| 5438 | | gbyExprPair = GbyVariableExpressionPair() { items = Collections.singletonList(gbyExprPair); } |
| 5439 | ) |
| 5440 | { |
| 5441 | return new GroupingSet(items); |
| 5442 | } |
| 5443 | } |
| 5444 | |
| 5445 | List<GroupingSet> OrdinaryGroupingSetList() throws ParseException: |
| 5446 | { |
| 5447 | GroupingSet groupingSet = null; |
| 5448 | List<GroupingSet> items = new ArrayList<GroupingSet>(); |
| 5449 | } |
| 5450 | { |
| 5451 | groupingSet = OrdinaryGroupingSet() { items.add(groupingSet); } |
| 5452 | ( LOOKAHEAD(1) <COMMA> groupingSet = OrdinaryGroupingSet() { items.add(groupingSet); } )* |
| 5453 | { |
| 5454 | return items; |
| 5455 | } |
| 5456 | } |
| 5457 | |
| 5458 | List<GbyVariableExpressionPair> GbyVariableExpressionPairList() throws ParseException: |
| 5459 | { |
| 5460 | GbyVariableExpressionPair gbyExprPair = null; |
| 5461 | List<GbyVariableExpressionPair> items = new ArrayList<GbyVariableExpressionPair>(); |
| 5462 | } |
| 5463 | { |
| 5464 | gbyExprPair = GbyVariableExpressionPair() { items.add(gbyExprPair); } |
| 5465 | ( LOOKAHEAD(1) <COMMA> gbyExprPair = GbyVariableExpressionPair() { items.add(gbyExprPair); } )* |
| 5466 | { |
| 5467 | return items; |
| 5468 | } |
| 5469 | } |
| 5470 | |
| 5471 | GbyVariableExpressionPair GbyVariableExpressionPair() throws ParseException: |
| 5472 | { |
| 5473 | Expression expr = null; |
| 5474 | VariableExpr var = null; |
| 5475 | } |
| 5476 | { |
| 5477 | expr = Expression() ( (<AS>)? var = Variable() )? |
| 5478 | { |
| 5479 | return new GbyVariableExpressionPair(var, expr); |
| 5480 | } |
| 5481 | } |
| 5482 | |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5483 | HavingClause HavingClause() throws ParseException: |
| 5484 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5485 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5486 | Expression filterExpr = null; |
| 5487 | } |
| 5488 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5489 | <HAVING> { startToken = token; } filterExpr = Expression() |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5490 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5491 | HavingClause havingClause = new HavingClause(filterExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5492 | return addSourceLocation(havingClause, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5493 | } |
| 5494 | } |
| 5495 | |
| 5496 | LimitClause LimitClause() throws ParseException: |
| 5497 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5498 | Token startToken = null; |
Dmitry Lychagin | 761c9a6 | 2020-11-19 10:22:11 -0800 | [diff] [blame] | 5499 | Expression limitExpr = null, offsetExpr = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5500 | } |
| 5501 | { |
Dmitry Lychagin | 761c9a6 | 2020-11-19 10:22:11 -0800 | [diff] [blame] | 5502 | ( |
| 5503 | ( |
| 5504 | <LIMIT> { startToken = token; pushForbiddenScope(getCurrentScope()); } limitExpr = Expression() |
| 5505 | ( <OFFSET> offsetExpr = Expression() )? |
| 5506 | { popForbiddenScope(); } |
| 5507 | ) |
| 5508 | | |
| 5509 | ( |
| 5510 | <OFFSET> { startToken = token; pushForbiddenScope(getCurrentScope()); } offsetExpr = Expression() |
| 5511 | { popForbiddenScope(); } |
| 5512 | ) |
| 5513 | ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5514 | { |
Dmitry Lychagin | 761c9a6 | 2020-11-19 10:22:11 -0800 | [diff] [blame] | 5515 | LimitClause lc = new LimitClause(limitExpr, offsetExpr); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5516 | return addSourceLocation(lc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5517 | } |
| 5518 | } |
| 5519 | |
| 5520 | QuantifiedExpression QuantifiedExpression()throws ParseException: |
| 5521 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5522 | Token startToken = null; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5523 | QuantifiedExpression qc = new QuantifiedExpression(); |
| 5524 | List<QuantifiedPair> quantifiedList = new ArrayList<QuantifiedPair>(); |
| 5525 | Expression satisfiesExpr; |
| 5526 | VariableExpr var; |
| 5527 | Expression inExpr; |
| 5528 | QuantifiedPair pair; |
| 5529 | } |
| 5530 | { |
| 5531 | { |
| 5532 | createNewScope(); |
| 5533 | } |
| 5534 | |
ggalvizo | 21e5282 | 2021-07-27 10:26:31 -1000 | [diff] [blame] | 5535 | ( LOOKAHEAD(2) |
| 5536 | (<ANY>|<SOME>)<AND><EVERY> { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.SOME_AND_EVERY); } |
| 5537 | | (<ANY>|<SOME>) { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.SOME); } |
| 5538 | | <EVERY> { startToken = token; qc.setQuantifier(QuantifiedExpression.Quantifier.EVERY); } ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5539 | var = Variable() <IN> inExpr = Expression() |
| 5540 | { |
| 5541 | pair = new QuantifiedPair(var, inExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5542 | quantifiedList.add(pair); |
| 5543 | } |
| 5544 | ( |
| 5545 | <COMMA> var = Variable() <IN> inExpr = Expression() |
| 5546 | { |
| 5547 | pair = new QuantifiedPair(var, inExpr); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5548 | quantifiedList.add(pair); |
| 5549 | } |
| 5550 | )* |
Yingyi Bu | 858efae | 2016-10-13 17:31:57 -0700 | [diff] [blame] | 5551 | <SATISFIES> satisfiesExpr = Expression() (<END>)? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5552 | { |
| 5553 | qc.setSatisfiesExpr(satisfiesExpr); |
| 5554 | qc.setQuantifiedList(quantifiedList); |
| 5555 | removeCurrentScope(); |
Dmitry Lychagin | 5c26b42 | 2018-06-01 10:22:16 -0700 | [diff] [blame] | 5556 | return addSourceLocation(qc, startToken); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5557 | } |
| 5558 | } |
| 5559 | |
| 5560 | LetClause LetElement() throws ParseException: |
| 5561 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5562 | VariableExpr varExp; |
| 5563 | Expression beExp; |
| 5564 | extendCurrentScope(); |
| 5565 | } |
| 5566 | { |
| 5567 | varExp = Variable() <EQ> beExp = Expression() |
| 5568 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5569 | LetClause lc = new LetClause(varExp, beExp); |
| 5570 | lc.setSourceLocation(varExp.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5571 | return lc; |
| 5572 | } |
| 5573 | } |
| 5574 | |
| 5575 | LetClause WithElement() throws ParseException: |
| 5576 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5577 | VariableExpr varExp; |
| 5578 | Expression beExp; |
| 5579 | extendCurrentScope(); |
| 5580 | } |
| 5581 | { |
| 5582 | varExp = Variable() <AS> beExp = Expression() |
| 5583 | { |
Dmitry Lychagin | ee54cc0 | 2018-05-25 19:26:18 -0700 | [diff] [blame] | 5584 | LetClause lc = new LetClause(varExp, beExp); |
| 5585 | lc.setSourceLocation(varExp.getSourceLocation()); |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5586 | return lc; |
| 5587 | } |
| 5588 | } |
| 5589 | |
| 5590 | TOKEN_MGR_DECLS: |
| 5591 | { |
| 5592 | public int commentDepth = 0; |
Till Westmann | e9b2adf | 2016-10-15 12:39:01 -0700 | [diff] [blame] | 5593 | public ArrayDeque<Integer> lexerStateStack = new ArrayDeque<Integer>(); |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5594 | public Map<SourceLocation, String> hintCollector; |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5595 | |
| 5596 | public void pushState() { |
| 5597 | lexerStateStack.push( curLexState ); |
| 5598 | } |
| 5599 | |
| 5600 | public void popState(String token) { |
| 5601 | if (lexerStateStack.size() > 0) { |
| 5602 | SwitchTo( lexerStateStack.pop() ); |
| 5603 | } else { |
| 5604 | int errorLine = input_stream.getEndLine(); |
| 5605 | int errorColumn = input_stream.getEndColumn(); |
| 5606 | String msg = "Lexical error at line " + errorLine + ", column " + errorColumn + ". Encountered \"" + token |
| 5607 | + "\" but state stack is empty."; |
| 5608 | throw new TokenMgrError(msg, -1); |
| 5609 | } |
| 5610 | } |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5611 | |
| 5612 | void CommonTokenAction(Token token) { |
| 5613 | Token hintToken = token.specialToken; |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 5614 | while (hintToken != null) { // make this a while loop |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5615 | hintToken.sourceLocation = new SourceLocation(hintToken.beginLine, hintToken.beginColumn); |
| 5616 | String text = hintToken.image.substring(1).trim(); |
| 5617 | boolean hintFound = hintToken.parseHint(text); |
| 5618 | hintCollector.put(hintToken.sourceLocation, hintFound ? hintToken.hint.getIdentifier() : hintToken.hintParams); |
Vijay Sarathy | 243ef2a | 2022-08-23 11:56:56 -0700 | [diff] [blame] | 5619 | hintToken = hintToken.specialToken; |
Dmitry Lychagin | e77cdac | 2019-08-05 11:37:47 -0700 | [diff] [blame] | 5620 | } |
| 5621 | } |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5622 | } |
| 5623 | |
| 5624 | <DEFAULT,IN_DBL_BRACE> |
| 5625 | TOKEN [IGNORE_CASE]: |
| 5626 | { |
Ian Maxon | 38fe940 | 2020-01-29 19:27:40 -0800 | [diff] [blame] | 5627 | <ADAPTER: "adapter"> |
| 5628 | | <ALL : "all"> |
Dmitry Lychagin | f3eec28 | 2022-06-10 12:44:25 -0700 | [diff] [blame] | 5629 | | <ANALYZE: "analyze"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5630 | | <AND : "and"> |
Yingyi Bu | 8aac724 | 2016-09-13 23:14:09 -0700 | [diff] [blame] | 5631 | | <ANY : "any"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5632 | | <APPLY : "apply"> |
| 5633 | | <AS : "as"> |
| 5634 | | <ASC : "asc"> |
| 5635 | | <AT : "at"> |
| 5636 | | <AUTOGENERATED : "autogenerated"> |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 5637 | | <BETWEEN : "between"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5638 | | <BTREE : "btree"> |
| 5639 | | <BY : "by"> |
| 5640 | | <CASE : "case"> |
Ali Alsuliman | 69ce7d8 | 2021-11-01 15:00:16 -0700 | [diff] [blame] | 5641 | | <CAST : "cast"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5642 | | <CLOSED : "closed"> |
| 5643 | | <CREATE : "create"> |
Dmitry Lychagin | d3eccd4 | 2021-08-19 12:18:17 -0700 | [diff] [blame] | 5644 | | <CROSS : "cross"> |
Dmitry Lychagin | 0ebc420 | 2021-01-25 13:12:41 -0800 | [diff] [blame] | 5645 | | <COMPACTION : "compaction"> // no longer used |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5646 | | <COMPACT : "compact"> |
| 5647 | | <CONNECT : "connect"> |
| 5648 | | <CORRELATE : "correlate"> |
Yingyi Bu | d56ff03 | 2016-08-01 10:26:57 -0700 | [diff] [blame] | 5649 | | <DATASET : "dataset"> |
Yingyi Bu | 1c0fff5 | 2016-03-25 20:23:30 -0700 | [diff] [blame] | 5650 | | <COLLECTION : "collection"> |
Yingyi Bu | d56ff03 | 2016-08-01 10:26:57 -0700 | [diff] [blame] | 5651 | | <DATAVERSE : "dataverse"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5652 | | <DECLARE : "declare"> |
| 5653 | | <DEFINITION : "definition"> |
| 5654 | | <DELETE : "delete"> |
| 5655 | | <DESC : "desc"> |
| 5656 | | <DISCONNECT : "disconnect"> |
| 5657 | | <DISTINCT : "distinct"> |
Murtadha Hubail | 29f6391 | 2019-04-21 14:23:57 +0300 | [diff] [blame] | 5658 | | <DIV : "div"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5659 | | <DROP : "drop"> |
| 5660 | | <ELEMENT : "element"> |
Till Westmann | 516d1a8 | 2016-08-02 14:45:53 -0700 | [diff] [blame] | 5661 | | <EXPLAIN : "explain"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5662 | | <ELSE : "else"> |
| 5663 | | <ENFORCED : "enforced"> |
Yingyi Bu | c8c067c | 2016-07-25 23:37:19 -0700 | [diff] [blame] | 5664 | | <END : "end"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5665 | | <EVERY : "every"> |
| 5666 | | <EXCEPT : "except"> |
| 5667 | | <EXISTS : "exists"> |
| 5668 | | <EXTERNAL : "external"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5669 | | <FALSE : "false"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5670 | | <FEED : "feed"> |
| 5671 | | <FILTER : "filter"> |
| 5672 | | <FLATTEN : "flatten"> |
| 5673 | | <FOR : "for"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5674 | | <FROM : "from"> |
| 5675 | | <FULL : "full"> |
Taewoo Kim | c49405a | 2017-01-04 00:30:43 -0800 | [diff] [blame] | 5676 | | <FULLTEXT : "fulltext"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5677 | | <FUNCTION : "function"> |
| 5678 | | <GROUP : "group"> |
| 5679 | | <HAVING : "having"> |
| 5680 | | <HINTS : "hints"> |
| 5681 | | <IF : "if"> |
| 5682 | | <INTO : "into"> |
| 5683 | | <IN : "in"> |
| 5684 | | <INDEX : "index"> |
| 5685 | | <INGESTION : "ingestion"> |
| 5686 | | <INNER : "inner"> |
| 5687 | | <INSERT : "insert"> |
| 5688 | | <INTERNAL : "internal"> |
| 5689 | | <INTERSECT : "intersect"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5690 | | <IS : "is"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5691 | | <JOIN : "join"> |
| 5692 | | <KEYWORD : "keyword"> |
| 5693 | | <KEY : "key"> |
Dmitry Lychagin | 1aa0dd4 | 2018-04-17 14:35:24 -0700 | [diff] [blame] | 5694 | | <KNOWN : "known"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5695 | | <LEFT : "left"> |
| 5696 | | <LETTING : "letting"> |
| 5697 | | <LET : "let"> |
Yingyi Bu | a8baf6d | 2016-07-05 21:40:44 -0700 | [diff] [blame] | 5698 | | <LIKE : "like"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5699 | | <LIMIT : "limit"> |
| 5700 | | <LOAD : "load"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5701 | | <MISSING : "missing"> |
Murtadha Hubail | 29f6391 | 2019-04-21 14:23:57 +0300 | [diff] [blame] | 5702 | | <MOD : "mod"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5703 | | <NODEGROUP : "nodegroup"> |
| 5704 | | <NGRAM : "ngram"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5705 | | <NOT : "not"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5706 | | <NULL : "null"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5707 | | <OFFSET : "offset"> |
| 5708 | | <ON : "on"> |
| 5709 | | <OPEN : "open"> |
| 5710 | | <OR : "or"> |
| 5711 | | <ORDER : "order"> |
| 5712 | | <OUTER : "outer"> |
| 5713 | | <OUTPUT : "output"> |
Dmitry Lychagin | fdedf62 | 2018-10-30 18:12:40 -0700 | [diff] [blame] | 5714 | | <OVER: "over"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5715 | | <PATH : "path"> |
| 5716 | | <POLICY : "policy"> |
| 5717 | | <PRESORTED : "pre-sorted"> |
| 5718 | | <PRIMARY : "primary"> |
| 5719 | | <RAW : "raw"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5720 | | <RETURN : "return"> |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 5721 | | <RETURNING : "returning"> |
Dmitry Lychagin | d4ce84c | 2020-10-13 16:24:37 -0700 | [diff] [blame] | 5722 | | <RIGHT : "right"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5723 | | <RTREE : "rtree"> |
| 5724 | | <RUN : "run"> |
| 5725 | | <SATISFIES : "satisfies"> |
| 5726 | | <SECONDARY : "secondary"> |
| 5727 | | <SELECT : "select"> |
| 5728 | | <SET : "set"> |
| 5729 | | <SOME : "some"> |
Abdullah Alamoudi | fff200c | 2017-02-18 20:32:14 -0800 | [diff] [blame] | 5730 | | <START : "start"> |
| 5731 | | <STOP : "stop"> |
Dmitry Lychagin | 2a0848e | 2020-01-08 13:57:22 -0800 | [diff] [blame] | 5732 | | <SYNONYM : "synonym"> |
Murtadha Hubail | 2c04ae0 | 2017-11-21 15:58:01 +0300 | [diff] [blame] | 5733 | | <TEMPORARY : "temporary"> // intentionally not used but reserved for future usage |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5734 | | <THEN : "then"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5735 | | <TO : "to"> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5736 | | <TRUE : "true"> |
| 5737 | | <TYPE : "type"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5738 | | <UNION : "union"> |
Dmitry Lychagin | 8b6578a | 2017-11-08 15:04:35 -0800 | [diff] [blame] | 5739 | | <UNKNOWN : "unknown"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5740 | | <UNNEST : "unnest"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5741 | | <UPDATE : "update"> |
Yingyi Bu | cb5bf33 | 2017-01-02 22:19:50 -0800 | [diff] [blame] | 5742 | | <UPSERT : "upsert"> |
Yingyi Bu | daa549c | 2016-06-28 22:30:52 -0700 | [diff] [blame] | 5743 | | <USE : "use"> |
| 5744 | | <USING : "using"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5745 | | <VALUE : "value"> |
Dmitry Lychagin | 7d594a3 | 2018-01-15 14:31:03 -0800 | [diff] [blame] | 5746 | | <VALUED : "valued"> |
Dmitry Lychagin | 793c39e | 2021-04-21 16:52:10 -0700 | [diff] [blame] | 5747 | | <VIEW : "view"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5748 | | <WHEN : "when"> |
| 5749 | | <WHERE : "where"> |
| 5750 | | <WITH : "with"> |
| 5751 | | <WRITE : "write"> |
Peeyush Gupta | 066fd56 | 2023-04-30 13:03:00 -0700 | [diff] [blame] | 5752 | | <COPY : "copy"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5753 | } |
| 5754 | |
| 5755 | <DEFAULT,IN_DBL_BRACE> |
| 5756 | TOKEN : |
| 5757 | { |
| 5758 | <CARET : "^"> |
Yingyi Bu | fdc71eb | 2016-08-24 22:41:57 -0700 | [diff] [blame] | 5759 | | <CONCAT : "||"> |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 5760 | | <DIVIDE : "/"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5761 | | <MINUS : "-"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5762 | | <MUL : "*"> |
| 5763 | | <PLUS : "+"> |
| 5764 | |
| 5765 | | <LEFTPAREN : "("> |
| 5766 | | <RIGHTPAREN : ")"> |
| 5767 | | <LEFTBRACKET : "["> |
| 5768 | | <RIGHTBRACKET : "]"> |
| 5769 | |
| 5770 | | <ATT : "@"> |
| 5771 | | <COLON : ":"> |
| 5772 | | <COMMA : ","> |
| 5773 | | <DOT : "."> |
Dmitry Lychagin | bf48c49 | 2018-05-01 18:30:27 -0700 | [diff] [blame] | 5774 | | <PERCENT: "%"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5775 | | <QUES : "?"> |
| 5776 | | <SEMICOLON : ";"> |
| 5777 | | <SHARP : "#"> |
| 5778 | |
| 5779 | | <LT : "<"> |
| 5780 | | <GT : ">"> |
| 5781 | | <LE : "<="> |
| 5782 | | <GE : ">="> |
| 5783 | | <EQ : "="> |
| 5784 | | <NE : "!="> |
Yingyi Bu | 4a4b896 | 2016-09-16 12:09:11 -0700 | [diff] [blame] | 5785 | | <LG : "<>"> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5786 | | <SIMILAR : "~="> |
| 5787 | } |
| 5788 | |
| 5789 | <DEFAULT,IN_DBL_BRACE> |
| 5790 | TOKEN : |
| 5791 | { |
| 5792 | <LEFTBRACE : "{"> { pushState(); } : DEFAULT |
| 5793 | } |
| 5794 | |
| 5795 | <DEFAULT> |
| 5796 | TOKEN : |
| 5797 | { |
| 5798 | <RIGHTBRACE : "}"> { popState("}"); } |
| 5799 | } |
| 5800 | |
| 5801 | <DEFAULT,IN_DBL_BRACE> |
| 5802 | TOKEN : |
| 5803 | { |
| 5804 | <LEFTDBLBRACE : "{{"> { pushState(); } : IN_DBL_BRACE |
| 5805 | } |
| 5806 | |
| 5807 | <IN_DBL_BRACE> |
| 5808 | TOKEN : |
| 5809 | { |
| 5810 | <RIGHTDBLBRACE : "}}"> { popState("}}"); } |
| 5811 | } |
| 5812 | |
| 5813 | <DEFAULT,IN_DBL_BRACE> |
| 5814 | TOKEN : |
| 5815 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5816 | <#DIGIT : ["0" - "9"]> |
| 5817 | } |
| 5818 | |
| 5819 | <DEFAULT,IN_DBL_BRACE> |
| 5820 | TOKEN: |
| 5821 | { |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5822 | <INTEGER_LITERAL : <DIGITS> > |
| 5823 | | <DOUBLE_LITERAL: <DIGITS> ( "." <DIGITS> ) (("e"|"E") ("+"|"-")? <DIGITS>)? |
Dmitry Lychagin | ee8526b | 2018-03-30 14:21:01 -0700 | [diff] [blame] | 5824 | | <DIGITS> (("e"|"E") ("+"|"-")? <DIGITS>) |
| 5825 | | "." <DIGITS> (("e"|"E") ("+"|"-")? <DIGITS>)? |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5826 | > |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5827 | | <FLOAT_LITERAL: <DIGITS> ( "f" | "F" ) |
Yingyi Bu | e4d919e | 2016-10-30 10:47:03 -0700 | [diff] [blame] | 5828 | | <DIGITS> ( "." <DIGITS> ( "f" | "F" ) )? |
| 5829 | | "." <DIGITS> ( "f" | "F" ) |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5830 | > |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5831 | | <#DIGITS : (<DIGIT>)+ > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5832 | } |
| 5833 | |
| 5834 | <DEFAULT,IN_DBL_BRACE> |
| 5835 | TOKEN : |
| 5836 | { |
| 5837 | <#LETTER : ["A" - "Z", "a" - "z"]> |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5838 | | <#IDENTIFIER_START_SPECIALCHAR : ["_"]> |
| 5839 | | <#IDENTIFIER_REST_SPECIALCHAR : ["$"]> |
| 5840 | | <#IDENTIFIER_START : <LETTER> | <IDENTIFIER_START_SPECIALCHAR> > |
| 5841 | | <#IDENTIFIER_REST : <LETTER> | <DIGIT> | <IDENTIFIER_START_SPECIALCHAR> | <IDENTIFIER_REST_SPECIALCHAR> > |
| 5842 | | <IDENTIFIER : <IDENTIFIER_START> (<IDENTIFIER_REST>)* > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5843 | } |
| 5844 | |
| 5845 | <DEFAULT,IN_DBL_BRACE> |
| 5846 | TOKEN : |
| 5847 | { |
| 5848 | // backslash u + 4 hex digits escapes are handled in the underlying JavaCharStream |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5849 | <QUOTED_STRING : "`" ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5850 | <EscapeQuot> |
| 5851 | | <EscapeBslash> |
| 5852 | | <EscapeSlash> |
| 5853 | | <EscapeBspace> |
| 5854 | | <EscapeFormf> |
| 5855 | | <EscapeNl> |
| 5856 | | <EscapeCr> |
| 5857 | | <EscapeTab> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5858 | | <EscapeBTickWithBslash> |
| 5859 | | <EscapeBtickWithBtick> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5860 | | ~["`","\\"])* "`"> |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 5861 | | <STRING_LITERAL : ( ("E")? "\"" ( |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5862 | <EscapeQuot> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5863 | | <EscapeBslash> |
| 5864 | | <EscapeSlash> |
| 5865 | | <EscapeBspace> |
| 5866 | | <EscapeFormf> |
| 5867 | | <EscapeNl> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5868 | | <EscapeBTickWithBslash> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5869 | | <EscapeCr> |
| 5870 | | <EscapeTab> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5871 | | ~["\"","\\"])* "\"") |
Dmitry Lychagin | 984bc52 | 2021-10-13 16:22:25 -0700 | [diff] [blame] | 5872 | | ( ("E")? "\'" ( |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5873 | <EscapeApos> |
| 5874 | | <EscapeBslash> |
| 5875 | | <EscapeSlash> |
| 5876 | | <EscapeBspace> |
| 5877 | | <EscapeFormf> |
| 5878 | | <EscapeNl> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5879 | | <EscapeBTickWithBslash> |
Yingyi Bu | 6d57e49 | 2016-06-06 21:24:42 -0700 | [diff] [blame] | 5880 | | <EscapeCr> |
| 5881 | | <EscapeTab> |
| 5882 | | ~["\'","\\"])* "\'")> |
Ritik Raj | df16f3b | 2023-03-27 19:56:56 +0530 | [diff] [blame] | 5883 | | < #EscapeBTickWithBslash: "\\`" > |
| 5884 | | < #EscapeBtickWithBtick: "``" > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5885 | | < #EscapeQuot: "\\\"" > |
| 5886 | | < #EscapeApos: "\\\'" > |
| 5887 | | < #EscapeBslash: "\\\\" > |
| 5888 | | < #EscapeSlash: "\\/" > |
| 5889 | | < #EscapeBspace: "\\b" > |
| 5890 | | < #EscapeFormf: "\\f" > |
| 5891 | | < #EscapeNl: "\\n" > |
| 5892 | | < #EscapeCr: "\\r" > |
| 5893 | | < #EscapeTab: "\\t" > |
| 5894 | } |
| 5895 | |
| 5896 | <DEFAULT,IN_DBL_BRACE> |
| 5897 | TOKEN : |
| 5898 | { |
Dmitry Lychagin | 41b511d | 2020-12-07 14:48:13 -0800 | [diff] [blame] | 5899 | <DOLLAR_INTEGER_LITERAL : "$" <INTEGER_LITERAL> > |
| 5900 | | <DOLLAR_IDENTIFIER : "$" <IDENTIFIER> > |
| 5901 | | <DOLLAR_QUOTED_STRING: "$" <QUOTED_STRING> > |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5902 | } |
| 5903 | |
| 5904 | <DEFAULT,IN_DBL_BRACE> |
| 5905 | SKIP: |
| 5906 | { |
| 5907 | " " |
| 5908 | | "\t" |
| 5909 | | "\r" |
| 5910 | | "\n" |
| 5911 | } |
| 5912 | |
| 5913 | <DEFAULT,IN_DBL_BRACE> |
| 5914 | SKIP: |
| 5915 | { |
| 5916 | <"//" (~["\n"])* "\n"> |
| 5917 | } |
| 5918 | |
| 5919 | <DEFAULT,IN_DBL_BRACE> |
| 5920 | SKIP: |
| 5921 | { |
| 5922 | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")?> |
| 5923 | } |
| 5924 | |
| 5925 | <DEFAULT,IN_DBL_BRACE> |
| 5926 | SKIP: |
| 5927 | { |
Yingyi Bu | 93846a7 | 2016-09-13 16:30:39 -0700 | [diff] [blame] | 5928 | <"--" (~["\n"])* "\n"> |
| 5929 | } |
| 5930 | |
| 5931 | |
| 5932 | <DEFAULT,IN_DBL_BRACE> |
| 5933 | SKIP: |
| 5934 | { |
| 5935 | <"--" (~["\n","\r"])* ("\n"|"\r"|"\r\n")?> |
| 5936 | } |
| 5937 | |
| 5938 | <DEFAULT,IN_DBL_BRACE> |
| 5939 | SKIP: |
| 5940 | { |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 5941 | <"/*"> { pushState(); } : INSIDE_COMMENT |
| 5942 | } |
| 5943 | |
| 5944 | <INSIDE_COMMENT> |
| 5945 | SPECIAL_TOKEN: |
| 5946 | { |
| 5947 | <"+"(" ")*(~["*"])*> |
| 5948 | } |
| 5949 | |
| 5950 | <INSIDE_COMMENT> |
| 5951 | SKIP: |
| 5952 | { |
| 5953 | <"/*"> { pushState(); } |
| 5954 | } |
| 5955 | |
| 5956 | <INSIDE_COMMENT> |
| 5957 | SKIP: |
| 5958 | { |
| 5959 | <"*/"> { popState("*/"); } |
| 5960 | | <~[]> |
| 5961 | } |