com.hazelcast.org.apache.calcite.plan.VisitorDataContext Maven / Gradle / Ivy
/*
* 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 com.hazelcast.org.apache.calcite.plan;
import com.hazelcast.org.apache.calcite.DataContext;
import com.hazelcast.org.apache.calcite.adapter.java.JavaTypeFactory;
import com.hazelcast.org.apache.calcite.linq4j.QueryProvider;
import com.hazelcast.org.apache.calcite.rel.RelNode;
import com.hazelcast.org.apache.calcite.rel.logical.LogicalFilter;
import com.hazelcast.org.apache.calcite.rel.type.RelDataType;
import com.hazelcast.org.apache.calcite.rex.RexCall;
import com.hazelcast.org.apache.calcite.rex.RexInputRef;
import com.hazelcast.org.apache.calcite.rex.RexLiteral;
import com.hazelcast.org.apache.calcite.rex.RexNode;
import com.hazelcast.org.apache.calcite.rex.RexUtil;
import com.hazelcast.org.apache.calcite.schema.SchemaPlus;
import com.hazelcast.org.apache.calcite.util.NlsString;
import com.hazelcast.org.apache.calcite.util.Pair;
import com.hazelcast.org.apache.calcite.util.trace.CalciteLogger;
import com.hazelcast.org.slf4j.LoggerFactory;
import java.math.BigDecimal;
import java.util.List;
/**
* DataContext for evaluating an RexExpression
*/
public class VisitorDataContext implements DataContext {
private static final CalciteLogger LOGGER =
new CalciteLogger(LoggerFactory.getLogger(VisitorDataContext.class.getName()));
private final Object[] values;
public VisitorDataContext(Object[] values) {
this.values = values;
}
public SchemaPlus getRootSchema() {
throw new RuntimeException("Unsupported");
}
public JavaTypeFactory getTypeFactory() {
throw new RuntimeException("Unsupported");
}
public QueryProvider getQueryProvider() {
throw new RuntimeException("Unsupported");
}
public Object get(String name) {
if (name.equals("inputRecord")) {
return values;
} else {
return null;
}
}
public static DataContext of(RelNode targetRel, LogicalFilter queryRel) {
return of(targetRel.getRowType(), queryRel.getCondition());
}
public static DataContext of(RelDataType rowType, RexNode rex) {
final int size = rowType.getFieldList().size();
final Object[] values = new Object[size];
final List operands = ((RexCall) rex).getOperands();
final RexNode firstOperand = operands.get(0);
final RexNode secondOperand = operands.get(1);
final Pair value = getValue(firstOperand, secondOperand);
if (value != null) {
int index = value.getKey();
values[index] = value.getValue();
return new VisitorDataContext(values);
} else {
return null;
}
}
public static DataContext of(RelDataType rowType,
List> usageList) {
final int size = rowType.getFieldList().size();
final Object[] values = new Object[size];
for (Pair elem : usageList) {
Pair value = getValue(elem.getKey(), elem.getValue());
if (value == null) {
LOGGER.warn("{} is not handled for {} for checking implication",
elem.getKey(), elem.getValue());
return null;
}
int index = value.getKey();
values[index] = value.getValue();
}
return new VisitorDataContext(values);
}
public static Pair getValue(RexNode inputRef, RexNode literal) {
inputRef = inputRef == null ? null : RexUtil.removeCast(inputRef);
literal = literal == null ? null : RexUtil.removeCast(literal);
if (inputRef instanceof RexInputRef
&& literal instanceof RexLiteral) {
final int index = ((RexInputRef) inputRef).getIndex();
final RexLiteral rexLiteral = (RexLiteral) literal;
final RelDataType type = inputRef.getType();
if (type.getSqlTypeName() == null) {
LOGGER.warn("{} returned null SqlTypeName", inputRef.toString());
return null;
}
switch (type.getSqlTypeName()) {
case INTEGER:
return Pair.of(index, rexLiteral.getValueAs(Integer.class));
case DOUBLE:
return Pair.of(index, rexLiteral.getValueAs(Double.class));
case REAL:
return Pair.of(index, rexLiteral.getValueAs(Float.class));
case BIGINT:
return Pair.of(index, rexLiteral.getValueAs(Long.class));
case SMALLINT:
return Pair.of(index, rexLiteral.getValueAs(Short.class));
case TINYINT:
return Pair.of(index, rexLiteral.getValueAs(Byte.class));
case DECIMAL:
return Pair.of(index, rexLiteral.getValueAs(BigDecimal.class));
case DATE:
case TIME:
return Pair.of(index, rexLiteral.getValueAs(Integer.class));
case TIMESTAMP:
return Pair.of(index, rexLiteral.getValueAs(Long.class));
case CHAR:
return Pair.of(index, rexLiteral.getValueAs(Character.class));
case VARCHAR:
return Pair.of(index, rexLiteral.getValueAs(String.class));
default:
// TODO: Support few more supported cases
LOGGER.warn("{} for value of class {} is being handled in default way",
type.getSqlTypeName(), rexLiteral.getValue().getClass());
if (rexLiteral.getValue() instanceof NlsString) {
return Pair.of(index, ((NlsString) rexLiteral.getValue()).getValue());
} else {
return Pair.of(index, rexLiteral.getValue());
}
}
}
// Unsupported Arguments
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy