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