blob: 21513a9a13ac06f55b5eb8d20d3dda8d91fe5026 [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.schemaengine.schemaregion.read.resp.info.impl;
import org.apache.iotdb.db.schemaengine.schemaregion.read.resp.info.ITimeSeriesSchemaInfo;
import org.apache.tsfile.enums.TSDataType;
import org.apache.tsfile.file.metadata.enums.CompressionType;
import org.apache.tsfile.file.metadata.enums.TSEncoding;
import org.apache.tsfile.write.schema.IMeasurementSchema;
import java.util.Map;
import java.util.Objects;
public class ShowTimeSeriesResult extends ShowSchemaResult implements ITimeSeriesSchemaInfo {
private String alias;
private IMeasurementSchema measurementSchema;
private Map<String, String> tags;
private Map<String, String> attributes;
private boolean isUnderAlignedDevice;
public ShowTimeSeriesResult(
String path,
String alias,
IMeasurementSchema measurementSchema,
Map<String, String> tags,
Map<String, String> attributes,
boolean isUnderAlignedDevice) {
super(path);
this.alias = alias;
this.measurementSchema = measurementSchema;
this.tags = tags;
this.attributes = attributes;
this.isUnderAlignedDevice = isUnderAlignedDevice;
}
public ShowTimeSeriesResult() {
super();
}
public String getAlias() {
return alias;
}
@Override
public IMeasurementSchema getSchema() {
return measurementSchema;
}
@Override
public Map<String, String> getTags() {
return tags;
}
@Override
public Map<String, String> getAttributes() {
return attributes;
}
@Override
public boolean isUnderAlignedDevice() {
return isUnderAlignedDevice;
}
@Override
public boolean isLogicalView() {
return this.measurementSchema.isLogicalView();
}
@Override
public ITimeSeriesSchemaInfo snapshot() {
return this;
}
public TSDataType getDataType() {
return measurementSchema.getType();
}
public TSEncoding getEncoding() {
return measurementSchema.getEncodingType();
}
public CompressionType getCompressor() {
return measurementSchema.getCompressor();
}
public Map<String, String> getTag() {
return tags;
}
public Map<String, String> getAttribute() {
return attributes;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ShowTimeSeriesResult result = (ShowTimeSeriesResult) o;
return Objects.equals(path, result.path);
}
@Override
public int hashCode() {
return Objects.hash(path);
}
}