blob: f7edef2e7a738484b393a6719debefe6d538b7a5 [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.view.viewExpression.unary;
import org.apache.iotdb.commons.schema.view.viewExpression.ViewExpression;
import org.apache.iotdb.commons.schema.view.viewExpression.ViewExpressionType;
import org.apache.iotdb.commons.schema.view.viewExpression.visitor.ViewExpressionVisitor;
import org.apache.iotdb.tsfile.utils.ReadWriteIOUtils;
import org.apache.commons.lang3.Validate;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.util.regex.Pattern;
public class RegularViewExpression extends UnaryViewExpression {
// region member variables and init functions
private final String patternString;
private final Pattern pattern;
private final boolean isNot;
public RegularViewExpression(ViewExpression expression, String patternString, boolean isNot) {
super(expression);
this.patternString = patternString;
this.isNot = isNot;
pattern = Pattern.compile(patternString);
}
public RegularViewExpression(
ViewExpression expression, String patternString, Pattern pattern, boolean isNot) {
super(expression);
this.patternString = patternString;
this.pattern = pattern;
this.isNot = isNot;
}
public RegularViewExpression(ByteBuffer byteBuffer) {
super(ViewExpression.deserialize(byteBuffer));
patternString = ReadWriteIOUtils.readString(byteBuffer);
isNot = ReadWriteIOUtils.readBool(byteBuffer);
pattern = Pattern.compile(Validate.notNull(patternString));
}
public RegularViewExpression(InputStream inputStream) {
super(ViewExpression.deserialize(inputStream));
try {
patternString = ReadWriteIOUtils.readString(inputStream);
isNot = ReadWriteIOUtils.readBool(inputStream);
pattern = Pattern.compile(Validate.notNull(patternString));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
// endregion
// region common interfaces that have to be implemented
@Override
public <R, C> R accept(ViewExpressionVisitor<R, C> visitor, C context) {
return visitor.visitRegularExpression(this, context);
}
@Override
public ViewExpressionType getExpressionType() {
return ViewExpressionType.REGEXP;
}
@Override
public String toString(boolean isRoot) {
return (isNot ? "NOT " : "")
+ "REGULAR("
+ this.expression.toString()
+ ", "
+ this.patternString
+ ")";
}
@Override
protected void serialize(ByteBuffer byteBuffer) {
super.serialize(byteBuffer);
ReadWriteIOUtils.write(patternString, byteBuffer);
ReadWriteIOUtils.write(isNot, byteBuffer);
}
@Override
protected void serialize(OutputStream stream) throws IOException {
super.serialize(stream);
ReadWriteIOUtils.write(patternString, stream);
ReadWriteIOUtils.write(isNot, stream);
}
// endregion
public String getPatternString() {
return patternString;
}
public Pattern getPattern() {
return pattern;
}
public boolean isNot() {
return isNot;
}
}