blob: 2cc353fe79d8e27ae2119c411e7e72114d463edf [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.iotdb.db.queryengine.plan.planner.plan.node.process;
import org.apache.iotdb.db.queryengine.plan.analyze.TypeProvider;
import org.apache.iotdb.db.queryengine.plan.expression.Expression;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanNode;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanNodeId;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanNodeType;
import org.apache.iotdb.db.queryengine.plan.planner.plan.node.PlanVisitor;
import org.apache.iotdb.db.queryengine.plan.statement.component.Ordering;
import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Objects;
public class FilterNode extends TransformNode {
private final Expression predicate;
public FilterNode(
PlanNodeId id,
PlanNode childPlanNode,
Expression[] outputExpressions,
Expression predicate,
boolean keepNull,
Ordering scanOrder) {
super(id, childPlanNode, outputExpressions, keepNull, scanOrder);
this.predicate = predicate;
}
/** This construction method is only used in inner of class `FilterNode`. */
public FilterNode(
PlanNodeId id,
Expression[] outputExpressions,
Expression predicate,
boolean keepNull,
Ordering scanOrder) {
super(id, outputExpressions, keepNull, scanOrder);
this.predicate = predicate;
}
@Override
public <R, C> R accept(PlanVisitor<R, C> visitor, C context) {
return visitor.visitFilter(this, context);
}
@Override
public PlanNodeType getType() {
return PlanNodeType.FILTER;
}
@Override
public PlanNode clone() {
return new FilterNode(getPlanNodeId(), outputExpressions, predicate, keepNull, scanOrder);
}
@Override
protected void serializeAttributes(ByteBuffer byteBuffer) {
PlanNodeType.FILTER.serialize(byteBuffer);
ReadWriteIOUtils.write(outputExpressions.length, byteBuffer);
for (Expression expression : outputExpressions) {
Expression.serialize(expression, byteBuffer);
}
Expression.serialize(predicate, byteBuffer);
ReadWriteIOUtils.write(keepNull, byteBuffer);
ReadWriteIOUtils.write(scanOrder.ordinal(), byteBuffer);
}
@Override
protected void serializeAttributes(DataOutputStream stream) throws IOException {
PlanNodeType.FILTER.serialize(stream);
ReadWriteIOUtils.write(outputExpressions.length, stream);
for (Expression expression : outputExpressions) {
Expression.serialize(expression, stream);
}
Expression.serialize(predicate, stream);
ReadWriteIOUtils.write(keepNull, stream);
ReadWriteIOUtils.write(scanOrder.ordinal(), stream);
}
public static FilterNode deserialize(ByteBuffer byteBuffer) {
int outputExpressionsLength = ReadWriteIOUtils.readInt(byteBuffer);
Expression[] outputExpressions = new Expression[outputExpressionsLength];
for (int i = 0; i < outputExpressionsLength; ++i) {
outputExpressions[i] = Expression.deserialize(byteBuffer);
}
Expression predicate = Expression.deserialize(byteBuffer);
boolean keepNull = ReadWriteIOUtils.readBool(byteBuffer);
Ordering scanOrder = Ordering.values()[ReadWriteIOUtils.readInt(byteBuffer)];
PlanNodeId planNodeId = PlanNodeId.deserialize(byteBuffer);
return new FilterNode(planNodeId, outputExpressions, predicate, keepNull, scanOrder);
}
@Override
public void serializeUseTemplate(DataOutputStream stream, TypeProvider typeProvider)
throws IOException {
PlanNodeType.FILTER.serialize(stream);
id.serialize(stream);
ReadWriteIOUtils.write(getChildren().size(), stream);
for (PlanNode planNode : getChildren()) {
planNode.serializeUseTemplate(stream, typeProvider);
}
}
public static FilterNode deserializeUseTemplate(
ByteBuffer byteBuffer, TypeProvider typeProvider) {
PlanNodeId planNodeId = PlanNodeId.deserialize(byteBuffer);
return new FilterNode(
planNodeId,
null,
typeProvider.getTemplatedInfo().getPredicate(),
typeProvider.getTemplatedInfo().isKeepNull(),
typeProvider.getTemplatedInfo().getScanOrder());
}
public Expression getPredicate() {
return predicate;
}
public void setOutputExpressions(Expression[] outputExpressions) {
this.outputExpressions = outputExpressions;
}
@Override
public String toString() {
return "FilterNode-" + this.getPlanNodeId();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof FilterNode)) {
return false;
}
if (!super.equals(o)) {
return false;
}
FilterNode that = (FilterNode) o;
return predicate.equals(that.predicate);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), predicate);
}
}