org.etlunit.util.regexp.InfaExportResultExpression Maven / Gradle / Ivy
package org.etlunit.util.regexp;
/*
Regular expression class compiled by the Regular Expression Compiler 1.5.0-SNAPSHOT
*/
import java.util.Map;
import java.util.HashMap;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public final class InfaExportResultExpression
{
public static final String PATTERN_RAW_TEXT = "Exported (?'objects'\\d{1,5}) object\\(s\\) - (?'errors'\\d{1,5}) Error\\(s\\), - (?'warnings'\\d{1,5}) Warning\\(s\\)";
public static final String PATTERN_TEXT;
public static final Pattern pattern;
private static final Map groupOffsets = new HashMap();
private final Matcher matcher;
private final CharSequence matchText;
public static interface RegExpIterator
{
String replaceMatch(InfaExportResultExpression e);
}
static
{
PATTERN_TEXT = PATTERN_RAW_TEXT.replaceAll("\\(\\?'[^']+'", "(");
Pattern cpattern = Pattern.compile("(\\\\)?\\((\\?'([^']+)')?");
Matcher matcher = cpattern.matcher(PATTERN_RAW_TEXT);
int groupCount = 1;
while (matcher.find())
{
if (matcher.group(1) != null)
{
continue;
}
String groupName = matcher.group(3);
if (groupName != null)
{
groupOffsets.put(groupName, new Integer(groupCount));
}
groupCount++;
}
pattern = Pattern.compile(PATTERN_TEXT, Pattern.CASE_INSENSITIVE | Pattern.MULTILINE);
}
private InfaExportResultExpression(Matcher pMatcher, CharSequence ch)
{
matcher = pMatcher;
matchText = ch;
}
public InfaExportResultExpression(CharSequence ch)
{
this(pattern.matcher(ch), ch);
}
public static InfaExportResultExpression match(CharSequence pText)
{
return new InfaExportResultExpression(pText);
}
public int end()
{
return matcher.end();
}
public int end(int group)
{
return matcher.end(group);
}
public int start()
{
return matcher.start();
}
public int start(int group)
{
return matcher.start(group);
}
public String replaceAll(String replacement)
{
return matcher.replaceAll(replacement);
}
public String replaceAll(RegExpIterator it)
{
String match = matchText.toString();
String str = "";
int end = -1;
while (hasNext())
{
str += match.substring(end == -1 ? 0 : end, start());
str += it.replaceMatch(this);
end = end();
}
str += match.substring(end == -1 ? 0 : end, match.length());
return str;
}
public boolean matches()
{
return matcher.matches();
}
public boolean hasNext()
{
return matcher.find();
}
public int groupCount()
{
return matcher.groupCount();
}
public String group()
{
return matcher.group();
}
public String group(int i)
{
return matcher.group(i);
}
public InfaExportResultExpression resetMatch(CharSequence seq)
{
return match(seq);
}
public String group(String name)
{
return matcher.group(groupOffsets.get(name).intValue());
}
private static String scope(String text, String name)
{
return text.replaceAll("(\\(\\?')(\\w+')", "$1" + name + ".$2");
}
public boolean hasObjects()
{
return group("objects") != null;
}
public int getObjects()
{
if (!hasObjects())
{
throw new IllegalArgumentException("Property not defined: Objects");
}
return Integer.parseInt(group("objects"));
}
public boolean hasErrors()
{
return group("errors") != null;
}
public int getErrors()
{
if (!hasErrors())
{
throw new IllegalArgumentException("Property not defined: Errors");
}
return Integer.parseInt(group("errors"));
}
public boolean hasWarnings()
{
return group("warnings") != null;
}
public int getWarnings()
{
if (!hasWarnings())
{
throw new IllegalArgumentException("Property not defined: Warnings");
}
return Integer.parseInt(group("warnings"));
}
public String toString()
{
return "{InfaExportResultExpression, matchText='" + matchText + "'}[" + "(objects)=" + (hasObjects() ? getObjects() : "null") + ", (errors)=" + (hasErrors() ? getErrors() : "null") + ", (warnings)=" + (hasWarnings() ? getWarnings() : "null") + "]";
}
public static void main(String [] argv)
{
System.out.println(PATTERN_TEXT);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy