blob: 4ebdc9768e654e123d7e46957785a0da7bc3f708 [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.commons.schema.filter.impl;
import org.apache.iotdb.commons.schema.filter.SchemaFilter;
import org.apache.iotdb.commons.schema.filter.SchemaFilterType;
import org.apache.iotdb.commons.schema.filter.SchemaFilterVisitor;
import org.apache.tsfile.utils.ReadWriteIOUtils;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
public class TagFilter extends SchemaFilter {
private final String key;
private final String value;
private final boolean isContains;
public TagFilter(String key, String value, boolean isContains) {
this.key = key;
this.value = value;
this.isContains = isContains;
}
public TagFilter(ByteBuffer byteBuffer) {
this.key = ReadWriteIOUtils.readString(byteBuffer);
this.value = ReadWriteIOUtils.readString(byteBuffer);
this.isContains = ReadWriteIOUtils.readBool(byteBuffer);
}
public String getKey() {
return key;
}
public String getValue() {
return value;
}
public boolean isContains() {
return isContains;
}
@Override
public <C> boolean accept(SchemaFilterVisitor<C> visitor, C node) {
return visitor.visitTagFilter(this, node);
}
@Override
public SchemaFilterType getSchemaFilterType() {
return SchemaFilterType.TAGS_FILTER;
}
@Override
public void serialize(ByteBuffer byteBuffer) {
ReadWriteIOUtils.write(key, byteBuffer);
ReadWriteIOUtils.write(value, byteBuffer);
ReadWriteIOUtils.write(isContains, byteBuffer);
}
@Override
public void serialize(DataOutputStream stream) throws IOException {
ReadWriteIOUtils.write(key, stream);
ReadWriteIOUtils.write(value, stream);
ReadWriteIOUtils.write(isContains, stream);
}
}