com.cobber.fta.core.RegExpSplitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fta-core Show documentation
Show all versions of fta-core Show documentation
Analyze Text data to determine simple type and Semantic type information as well as other key metrics associated with a text stream.
/*
* 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;
/*
* Determine the min/max for the quantity qualifier on a RegExp - input is expected to be of the form '{,}' or '{}'.
*/
public class RegExpSplitter {
private final int min;
private final int max;
private int length;
RegExpSplitter(final int min, final int max) {
this.min = min;
this.max = max;
}
public static RegExpSplitter newInstance(final String input) {
if (input == null || input.length() == 0 || input.charAt(0) != '{')
return null;
final int close = input.indexOf('}');
if (close == -1)
return null;
final int comma = input.indexOf(',');
RegExpSplitter facts;
if (comma != -1)
facts = new RegExpSplitter(Utils.getValue(input, 1, 1, comma - 1), Utils.getValue(input, comma + 1, 1, close - (comma + 1)));
else {
final int len = Utils.getValue(input, 1, 1, close - 1);
facts = new RegExpSplitter(len, len);
}
facts.length = close + 1;
return facts;
}
public static String qualify(final int min, final int max) {
if (max == 1 && max == min)
return "";
String ret = "{" + min;
if (min != max)
ret += "," + max;
ret += "}";
return ret;
}
public int getMin() {
return min;
}
public int getMax() {
return max;
}
public int getLength() {
return length;
}
}