blob: ef6d8f8ef5f1e74ed69ddc6df19e6685abe1ae85 [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.utils.columngenerator.parameter;
import org.apache.iotdb.db.utils.columngenerator.ColumnGeneratorType;
import org.apache.tsfile.enums.TSDataType;
import org.apache.tsfile.utils.ReadWriteIOUtils;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.List;
public abstract class ColumnGeneratorParameter {
protected ColumnGeneratorType generatorType;
public ColumnGeneratorParameter(ColumnGeneratorType generatorType) {
this.generatorType = generatorType;
}
public ColumnGeneratorType getGeneratorType() {
return generatorType;
}
protected abstract void serializeAttributes(ByteBuffer buffer);
protected abstract void serializeAttributes(DataOutputStream stream) throws IOException;
public void serialize(ByteBuffer buffer) {
ReadWriteIOUtils.write(generatorType.getType(), buffer);
serializeAttributes(buffer);
}
public void serialize(DataOutputStream stream) throws IOException {
ReadWriteIOUtils.write(generatorType.getType(), stream);
serializeAttributes(stream);
}
public abstract List<String> getColumnNames();
public abstract List<TSDataType> getColumnTypes();
@Override
public boolean equals(Object obj) {
if (!(obj instanceof ColumnGeneratorParameter)) {
return false;
}
ColumnGeneratorParameter other = (ColumnGeneratorParameter) obj;
return this.generatorType == other.generatorType;
}
@Override
public int hashCode() {
return generatorType.hashCode();
}
// Deserialize the parameter according to its type, currently we only support
// SlidingTimeColumnGenerator used in GROUP BY TIME.
public static ColumnGeneratorParameter deserialize(ByteBuffer byteBuffer) {
byte type = ReadWriteIOUtils.readByte(byteBuffer);
if (type == ColumnGeneratorType.SLIDING_TIME.getType()) {
return SlidingTimeColumnGeneratorParameter.deserialize(byteBuffer);
} else throw new UnsupportedOperationException("Unsupported ColumnGeneratorType: " + type);
}
}