blob: 06b0ae70174e0652b3b155a767696433e374ea35 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill.exec.planner.sql.parser;
import org.apache.calcite.sql.SqlCall;
import org.apache.calcite.sql.SqlKind;
import org.apache.calcite.sql.SqlLiteral;
import org.apache.calcite.sql.SqlNode;
import org.apache.calcite.sql.SqlOperator;
import org.apache.calcite.sql.SqlSpecialOperator;
import org.apache.calcite.sql.SqlWriter;
import org.apache.calcite.sql.parser.SqlParserPos;
import org.apache.drill.exec.planner.sql.handlers.AbstractSqlHandler;
import org.apache.drill.exec.planner.sql.handlers.DropAllAliasesHandler;
import org.apache.drill.exec.planner.sql.handlers.SqlHandlerConfig;
import java.util.ArrayList;
import java.util.List;
public class SqlDropAllAliases extends DrillSqlCall {
private final SqlNode isPublic;
private final SqlNode aliasKind;
private final SqlNode user;
public static final SqlSpecialOperator OPERATOR = new SqlSpecialOperator("DROP_ALIAS", SqlKind.OTHER_DDL) {
@Override
public SqlCall createCall(SqlLiteral functionQualifier, SqlParserPos pos, SqlNode... operands) {
return SqlDropAllAliases.builder()
.pos(pos)
.aliasKind(operands[0])
.isPublic(operands[1])
.user(operands[2])
.build();
}
};
private SqlDropAllAliases(SqlDropAllAliasesBuilder builder) {
super(builder.pos);
this.isPublic = builder.isPublic;
this.aliasKind = builder.aliasKind;
this.user = builder.user;
}
public static SqlDropAllAliasesBuilder builder() {
return new SqlDropAllAliasesBuilder();
}
@Override
public SqlOperator getOperator() {
return OPERATOR;
}
@Override
public List<SqlNode> getOperandList() {
List<SqlNode> opList = new ArrayList<>();
opList.add(aliasKind);
opList.add(isPublic);
opList.add(user);
return opList;
}
@Override
public void unparse(SqlWriter writer, int leftPrec, int rightPrec) {
writer.keyword("DROP");
writer.keyword("ALL");
if (((SqlLiteral) isPublic).booleanValue()) {
writer.keyword("PUBLIC");
}
writer.keyword("ALIASES");
writer.keyword("FOR");
writer.keyword(((SqlLiteral) aliasKind).toValue());
if (user != null) {
writer.keyword("AS");
writer.keyword("USER");
user.unparse(writer, leftPrec, rightPrec);
}
}
@Override
public AbstractSqlHandler getSqlHandler(SqlHandlerConfig config) {
return new DropAllAliasesHandler(config);
}
public SqlNode getIsPublic() {
return this.isPublic;
}
public SqlNode getAliasKind() {
return this.aliasKind;
}
public SqlNode getUser() {
return this.user;
}
public static class SqlDropAllAliasesBuilder {
private SqlParserPos pos;
private SqlNode isPublic;
private SqlNode aliasKind;
private SqlNode user;
public SqlDropAllAliasesBuilder pos(SqlParserPos pos) {
this.pos = pos;
return this;
}
public SqlDropAllAliasesBuilder isPublic(SqlNode isPublic) {
this.isPublic = isPublic;
return this;
}
public SqlDropAllAliasesBuilder aliasKind(SqlNode aliasKind) {
this.aliasKind = aliasKind;
return this;
}
public SqlDropAllAliasesBuilder user(SqlNode user) {
this.user = user;
return this;
}
public SqlDropAllAliases build() {
return new SqlDropAllAliases(this);
}
}
}