![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.regex.RegexLeaf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.regex;
import java.util.Collections;
import java.util.Iterator;
import java.util.Map;
import java.util.StringTokenizer;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.sourceforge.plantuml.text.FoxSignature;
import net.sourceforge.plantuml.text.StringLocated;
public class RegexLeaf implements IRegex {
private static final RegexLeaf END = new RegexLeaf("$");
private static final RegexLeaf START = new RegexLeaf("^");
private final String pattern;
private final String name;
private int count = -1;
public RegexLeaf(String regex) {
this(null, regex);
}
public RegexLeaf(String name, String regex) {
this.pattern = regex;
this.name = name;
}
public static RegexLeaf spaceZeroOrMore() {
return new RegexLeaf("[%s]*");
}
public static RegexLeaf spaceOneOrMore() {
return new RegexLeaf("[%s]+");
}
public static RegexLeaf start() {
return START;
}
public static RegexLeaf end() {
return END;
}
@Override
public String toString() {
return super.toString() + " " + name + " " + pattern;
}
public String getName() {
return name;
}
public String getPattern() {
return pattern;
}
public int count() {
if (count == -1)
count = MyPattern.cmpile(pattern).matcher("").groupCount();
return count;
}
public Map createPartialMatch(Iterator it) {
final RegexPartialMatch m = new RegexPartialMatch(name);
for (int i = 0; i < count(); i++) {
final String group = it.next();
m.add(group);
}
if (name == null)
return Collections.emptyMap();
return Collections.singletonMap(name, m);
}
public boolean match(StringLocated full) {
throw new UnsupportedOperationException();
}
public RegexResult matcher(String full) {
throw new UnsupportedOperationException();
}
// static private final Set UNKNOWN = new HashSet<>();
static private final Pattern p1 = Pattern.compile(
"^\\(?((?:[-0A-Za-z_!:@;/=,\" ][?+*]?|\\\\[b$(){}<>|*.+^\\[\\]][?+*]?|\\.\\*|\\.\\+)+)(?:\\)\\+|\\))?$");
static private final Pattern p2 = Pattern.compile("^\\([-?a-z ]+(\\|[-?a-z ]+)+\\)$");
static private final Pattern p3 = Pattern.compile("^\\(?\\[[-=.~]+\\]\\+\\)?$");
private static long getSignatureP2(String s) {
long result = -1L;
for (StringTokenizer st = new StringTokenizer(s, "()|"); st.hasMoreTokens();) {
final String val = st.nextToken();
result = result & FoxSignature.getFoxSignatureFromRegex(val);
}
return result;
}
public long getFoxSignature() {
if (pattern.equals("[%s]+"))
return FoxSignature.getSpecialSpaces();
if (pattern.equals("[%s]*"))
return 0;
final String pattern2 = pattern.replaceAll("\\[%s\\][+*?]?|\\(\\[([^\\\\\\[\\]])+\\]\\)[+*?]?", "");
final Matcher m1 = p1.matcher(pattern2);
if (m1.matches())
return FoxSignature.getFoxSignatureFromRegex(m1.group(1));
final Matcher m2 = p2.matcher(pattern2);
if (m2.matches())
return getSignatureP2(pattern2);
final Matcher m3 = p3.matcher(pattern2);
if (m3.matches())
return FoxSignature.getSpecial1();
// synchronized (UNKNOWN) {
// final boolean changed = UNKNOWN.add(pattern2);
// if (changed) {
// if (pattern.equals(pattern2))
// System.err.println("unknow=" + UNKNOWN.size() + " " + pattern);
// else
// System.err.println("unknow=" + UNKNOWN.size() + " " + pattern2 + " " + pattern);
// // Thread.dumpStack();
// }
// }
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy