ShowRoutineLoadTaskStmt.java
// 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.doris.analysis;
import org.apache.doris.catalog.Column;
import org.apache.doris.catalog.ScalarType;
import org.apache.doris.common.AnalysisException;
import org.apache.doris.common.UserException;
import org.apache.doris.qe.ShowResultSetMetaData;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import java.util.Arrays;
import java.util.List;
/*
show all of task belong to job
SHOW ROUTINE LOAD TASK FROM DB where expr;
where expr: JobName=xxx
*/
public class ShowRoutineLoadTaskStmt extends ShowStmt implements NotFallbackInParser {
private static final List<String> supportColumn = Arrays.asList("jobname");
private static final ImmutableList<String> TITLE_NAMES =
new ImmutableList.Builder<String>()
.add("TaskId")
.add("TxnId")
.add("TxnStatus")
.add("JobId")
.add("CreateTime")
.add("ExecuteStartTime")
.add("Timeout")
.add("BeId")
.add("DataSourceProperties")
.build();
private final String dbName;
private final Expr jobNameExpr;
private String jobName;
private String dbFullName;
public ShowRoutineLoadTaskStmt(String dbName, Expr jobNameExpr) {
this.dbName = dbName;
this.jobNameExpr = jobNameExpr;
}
public String getJobName() {
return jobName;
}
public String getDbFullName() {
return dbFullName;
}
@Override
public void analyze(Analyzer analyzer) throws UserException {
super.analyze(analyzer);
checkDB(analyzer);
checkJobNameExpr(analyzer);
}
private void checkDB(Analyzer analyzer) throws AnalysisException {
if (Strings.isNullOrEmpty(dbName)) {
if (Strings.isNullOrEmpty(analyzer.getDefaultDb())) {
throw new AnalysisException("please designate a database in show stmt");
}
dbFullName = analyzer.getDefaultDb();
}
}
private void checkJobNameExpr(Analyzer analyzer) throws AnalysisException {
if (jobNameExpr == null) {
throw new AnalysisException("please designate a jobName in where expr such as JobName=\"ILoveDoris\"");
}
boolean valid = true;
CHECK:
{ // CHECKSTYLE IGNORE THIS LINE
// check predicate
if (!(jobNameExpr instanceof BinaryPredicate)) {
valid = false;
break CHECK;
}
BinaryPredicate binaryPredicate = (BinaryPredicate) jobNameExpr;
if (binaryPredicate.getOp() != BinaryPredicate.Operator.EQ) {
valid = false;
break CHECK;
}
// check child(0)
if (!(binaryPredicate.getChild(0) instanceof SlotRef)) {
valid = false;
break CHECK;
}
SlotRef slotRef = (SlotRef) binaryPredicate.getChild(0);
if (!supportColumn.stream().anyMatch(entity -> entity.equals(slotRef.getColumnName().toLowerCase()))) {
valid = false;
break CHECK;
}
// check child(1)
if (!(binaryPredicate.getChild(1) instanceof StringLiteral)) {
valid = false;
break CHECK;
}
StringLiteral stringLiteral = (StringLiteral) binaryPredicate.getChild(1);
jobName = stringLiteral.getValue();
} // CHECKSTYLE IGNORE THIS LINE
if (!valid) {
throw new AnalysisException("show routine load job only support one equal expr "
+ "which is sames like JobName=\"ILoveDoris\"");
}
}
@Override
public ShowResultSetMetaData getMetaData() {
ShowResultSetMetaData.Builder builder = ShowResultSetMetaData.builder();
for (String title : TITLE_NAMES) {
builder.addColumn(new Column(title, ScalarType.createVarchar(30)));
}
return builder.build();
}
public static List<String> getTitleNames() {
return TITLE_NAMES;
}
@Override
public RedirectStatus getRedirectStatus() {
return RedirectStatus.FORWARD_NO_SYNC;
}
}