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

org.eclipse.jetty.util.RegexSet Maven / Gradle / Ivy

Go to download

Ehcache is an open source, standards-based cache used to boost performance, offload the database and simplify scalability. Ehcache is robust, proven and full-featured and this has made it the most widely-used Java-based cache.

There is a newer version: 2.10.9.2
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2018 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.util;

import java.util.AbstractSet;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import java.util.function.Predicate;
import java.util.regex.Pattern;

/**
 * A Set of Regular expressions strings.
 * 

* Provides the efficient {@link #matches(String)} method to check for a match against all the combined Regex's */ public class RegexSet extends AbstractSet implements Predicate { private final Set _patterns=new HashSet(); private final Set _unmodifiable=Collections.unmodifiableSet(_patterns); private Pattern _pattern; @Override public Iterator iterator() { return _unmodifiable.iterator(); } @Override public int size() { return _patterns.size(); } @Override public boolean add(String pattern) { boolean added = _patterns.add(pattern); if (added) updatePattern(); return added; } @Override public boolean remove(Object pattern) { boolean removed = _patterns.remove(pattern); if (removed) updatePattern(); return removed; } @Override public boolean isEmpty() { return _patterns.isEmpty(); } @Override public void clear() { _patterns.clear(); _pattern=null; } private void updatePattern() { StringBuilder builder = new StringBuilder(); builder.append("^("); for (String pattern: _patterns) { if (builder.length()>2) builder.append('|'); builder.append('('); builder.append(pattern); builder.append(')'); } builder.append(")$"); _pattern = Pattern.compile(builder.toString()); } @Override public boolean test(String s) { return _pattern!=null && _pattern.matcher(s).matches(); } public boolean matches(String s) { return _pattern!=null && _pattern.matcher(s).matches(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy