blob: 49c6d4a1979b591ae1a13079d0ed09fe61aa14b3 [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.exception.sql.SemanticException;
import org.apache.iotdb.db.queryengine.execution.operator.window.WindowType;
import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Objects;
/** The parameter of `GROUP BY` clause. */
public abstract class GroupByParameter {
protected WindowType windowType;
public GroupByParameter(WindowType windowType) {
this.windowType = windowType;
}
public WindowType getWindowType() {
return windowType;
}
protected abstract void serializeAttributes(ByteBuffer byteBuffer);
protected abstract void serializeAttributes(DataOutputStream stream) throws IOException;
public void serialize(ByteBuffer buffer) {
ReadWriteIOUtils.write(windowType.getType(), buffer);
serializeAttributes(buffer);
}
public void serialize(DataOutputStream stream) throws IOException {
ReadWriteIOUtils.write(windowType.getType(), stream);
serializeAttributes(stream);
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof GroupByParameter)) {
return false;
}
GroupByParameter other = (GroupByParameter) obj;
return this.windowType == other.windowType;
}
@Override
public int hashCode() {
return Objects.hash(windowType);
}
public static GroupByParameter deserialize(ByteBuffer byteBuffer) {
byte type = ReadWriteIOUtils.readByte(byteBuffer);
if (type == WindowType.VARIATION_WINDOW.getType()) {
return GroupByVariationParameter.deserialize(byteBuffer);
} else if (type == WindowType.CONDITION_WINDOW.getType()) {
return GroupByConditionParameter.deserialize(byteBuffer);
} else if (type == WindowType.SESSION_WINDOW.getType()) {
return GroupBySessionParameter.deserialize(byteBuffer);
} else if (type == WindowType.COUNT_WINDOW.getType()) {
return GroupByCountParameter.deserialize(byteBuffer);
} else throw new SemanticException("Unsupported window type");
}
}