blob: fdeae4f8cb0e6bccf0b518039c11aad2e7616b42 [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.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.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
public class TransformNode extends SingleChildProcessNode {
protected Expression[] outputExpressions;
protected final boolean keepNull;
protected final Ordering scanOrder;
private List<String> outputColumnNames;
public TransformNode(
PlanNodeId id,
PlanNode child,
Expression[] outputExpressions,
boolean keepNull,
Ordering scanOrder) {
super(id, child);
this.outputExpressions = outputExpressions;
this.keepNull = keepNull;
this.scanOrder = scanOrder;
}
public TransformNode(
PlanNodeId id, Expression[] outputExpressions, boolean keepNull, Ordering scanOrder) {
super(id);
this.outputExpressions = outputExpressions;
this.keepNull = keepNull;
this.scanOrder = scanOrder;
}
@Override
public final List<String> getOutputColumnNames() {
if (outputColumnNames == null) {
outputColumnNames = new ArrayList<>();
for (Expression expression : outputExpressions) {
outputColumnNames.add(expression.getExpressionString());
}
}
return outputColumnNames;
}
@Override
public <R, C> R accept(PlanVisitor<R, C> visitor, C context) {
return visitor.visitTransform(this, context);
}
@Override
public PlanNodeType getType() {
return PlanNodeType.TRANSFORM;
}
@Override
public PlanNode clone() {
return new TransformNode(getPlanNodeId(), outputExpressions, keepNull, scanOrder);
}
@Override
protected void serializeAttributes(ByteBuffer byteBuffer) {
PlanNodeType.TRANSFORM.serialize(byteBuffer);
ReadWriteIOUtils.write(outputExpressions.length, byteBuffer);
for (Expression expression : outputExpressions) {
Expression.serialize(expression, byteBuffer);
}
ReadWriteIOUtils.write(keepNull, byteBuffer);
ReadWriteIOUtils.write(scanOrder.ordinal(), byteBuffer);
}
@Override
protected void serializeAttributes(DataOutputStream stream) throws IOException {
PlanNodeType.TRANSFORM.serialize(stream);
ReadWriteIOUtils.write(outputExpressions.length, stream);
for (Expression expression : outputExpressions) {
Expression.serialize(expression, stream);
}
ReadWriteIOUtils.write(keepNull, stream);
ReadWriteIOUtils.write(scanOrder.ordinal(), stream);
}
public static TransformNode 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);
}
boolean keepNull = ReadWriteIOUtils.readBool(byteBuffer);
Ordering scanOrder = Ordering.values()[ReadWriteIOUtils.readInt(byteBuffer)];
PlanNodeId planNodeId = PlanNodeId.deserialize(byteBuffer);
return new TransformNode(planNodeId, outputExpressions, keepNull, scanOrder);
}
public final Expression[] getOutputExpressions() {
return outputExpressions;
}
public final boolean isKeepNull() {
return keepNull;
}
public Ordering getScanOrder() {
return scanOrder;
}
@Override
public String toString() {
return "TransformNode-" + this.getPlanNodeId();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof TransformNode)) {
return false;
}
if (!super.equals(o)) {
return false;
}
TransformNode that = (TransformNode) o;
return keepNull == that.keepNull
&& Arrays.equals(outputExpressions, that.outputExpressions)
&& scanOrder == that.scanOrder;
}
@Override
public int hashCode() {
int result = Objects.hash(super.hashCode(), keepNull, scanOrder);
result = 31 * result + Arrays.hashCode(outputExpressions);
return result;
}
}