blob: 7ec9e6c6cca4a808df8e9c26f841d883d0edc5c9 [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.parameter;
import org.apache.iotdb.db.queryengine.execution.operator.window.WindowType;
import org.apache.iotdb.db.queryengine.plan.expression.Expression;
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 GroupByConditionParameter extends GroupByParameter {
private final Expression keepExpression;
private final boolean ignoringNull;
public GroupByConditionParameter(boolean ignoringNull, Expression keepExpression) {
super(WindowType.CONDITION_WINDOW);
this.keepExpression = keepExpression;
this.ignoringNull = ignoringNull;
}
@Override
protected void serializeAttributes(ByteBuffer byteBuffer) {
ReadWriteIOUtils.write(ignoringNull, byteBuffer);
Expression.serialize(keepExpression, byteBuffer);
}
@Override
protected void serializeAttributes(DataOutputStream stream) throws IOException {
ReadWriteIOUtils.write(ignoringNull, stream);
Expression.serialize(keepExpression, stream);
}
public static GroupByParameter deserialize(ByteBuffer buffer) {
boolean ignoringNull = ReadWriteIOUtils.readBool(buffer);
Expression keepExpression = Expression.deserialize(buffer);
return new GroupByConditionParameter(ignoringNull, keepExpression);
}
public Expression getKeepExpression() {
return keepExpression;
}
public boolean isIgnoringNull() {
return ignoringNull;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
if (!super.equals(obj)) {
return false;
}
return this.keepExpression == ((GroupByConditionParameter) obj).getKeepExpression()
&& this.ignoringNull == ((GroupByConditionParameter) obj).ignoringNull;
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), keepExpression, ignoringNull);
}
}