All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cobber.fta.core.HeaderEntry Maven / Gradle / Ivy

Go to download

Analyze Text data to determine simple type and Semantic type information as well as other key metrics associated with a text stream.

There is a newer version: 15.7.14
Show newest version
/*
 * Copyright 2017-2024 Tim Segall
 *
 * Licensed 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 com.cobber.fta.core;

import java.util.regex.Pattern;

/**
 * The Header entry has a Regular Expression and a Confidence that reflects the confidence that if the regular expression
 * matches the input header we are likely to have a match.
 */
public class HeaderEntry {
	/** The Regular Expression used to match against the input. */
	public String regExp;
	/** The confidence that the match is a good predictor. */
	public int confidence;
	/** If true then the header must match be present. */
	public boolean mandatory;

	/** The pattern is used to cache the compiled regular expression since it will be executed many times. */
	private Pattern pattern;

	public HeaderEntry() {
	}

	/**
	 * Constructor for a Locale entry.
	 * @param regExp The Regular Expression used to match against the input.
	 * @param confidence The confidence in our assessment that this is the Semantic Type if the regular expression matches.
	 */
	public HeaderEntry(final String regExp, final int confidence) {
		this.regExp = regExp;
		this.confidence = confidence;
		pattern = Pattern.compile(regExp);
	}

	@Override
	public String toString() {
		return (new StringBuilder()).append('[').append(regExp).append(':').append(confidence).append(':').append(mandatory).append(']').toString();
	}

	public boolean matches(final String streamName) {
		if (pattern == null) {
			synchronized (this) {
				pattern = Pattern.compile(regExp);
			}
		}

		return pattern.matcher(streamName).matches();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy