org.thymeleaf.PatternSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.everit.osgi.bundles.org.thymeleaf.thymeleaf Show documentation
Show all versions of org.everit.osgi.bundles.org.thymeleaf.thymeleaf Show documentation
XML/XHTML/HTML5 template engine for Java
The newest version!
/*
* =============================================================================
*
* Copyright (c) 2011-2013, The THYMELEAF team (http://www.thymeleaf.org)
*
* 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 org.thymeleaf;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.regex.Pattern;
import org.thymeleaf.exceptions.AlreadyInitializedException;
import org.thymeleaf.util.PatternUtils;
import org.thymeleaf.util.Validate;
/**
*
* Utility class of internal use for holding the patterns that certain artifacts
* (usually template names) must match for obtaining some consideration. For
* example, it is used at many {@link org.thymeleaf.templateresolver.ITemplateResolver}
* implementations for holding the patterns that match a template to a specific
* template mode.
*
*
* @author Daniel Fernández
*
* @since 1.0
*
*/
public final class PatternSpec {
private final LinkedHashSet patternStrs = new LinkedHashSet(3);
private final LinkedHashSet patterns = new LinkedHashSet(3);
private volatile boolean initialized;
public PatternSpec() {
super();
}
private boolean isInitialized() {
return this.initialized;
}
public synchronized void initialize() {
if (!isInitialized()) {
this.initialized = true;
}
}
private void checkNotInitialized() {
if (isInitialized()) {
throw new AlreadyInitializedException(
"Cannot modify template resolver when it has already been initialized");
}
}
public Set getPatterns() {
return Collections.unmodifiableSet(this.patternStrs);
}
public void setPatterns(final Set newPatterns) {
checkNotInitialized();
if (newPatterns != null) {
this.patternStrs.addAll(newPatterns);
for (final String pattern : newPatterns) {
this.patterns.add(PatternUtils.strPatternToPattern(pattern));
}
}
}
public void addPattern(final String pattern) {
checkNotInitialized();
Validate.notEmpty(pattern, "Pattern cannot be null or empty");
this.patternStrs.add(pattern);
this.patterns.add(PatternUtils.strPatternToPattern(pattern));
}
public void clearPatterns() {
checkNotInitialized();
this.patternStrs.clear();
this.patterns.clear();
}
public boolean matches(final String templateName) {
for (final Pattern p : this.patterns) {
if (p.matcher(templateName).matches()) {
return true;
}
}
return false;
}
}