org.eclipse.jetty.http.pathmap.PathSpecSet Maven / Gradle / Ivy
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.http.pathmap;
import java.util.AbstractSet;
import java.util.Iterator;
import java.util.Objects;
import java.util.function.Predicate;
/**
* A Set of PathSpec strings.
*
* Used by {@link org.eclipse.jetty.util.IncludeExclude} logic
*/
public class PathSpecSet extends AbstractSet implements Predicate
{
private final PathMappings specs = new PathMappings<>();
@Override
public boolean test(String s)
{
return specs.test(s);
}
@Override
public int size()
{
return specs.size();
}
private PathSpec asPathSpec(Object o)
{
if (o == null)
{
return null;
}
if (o instanceof PathSpec)
{
return (PathSpec)o;
}
return PathSpec.from(Objects.toString(o));
}
public boolean add(PathSpec pathSpec)
{
return specs.put(pathSpec, Boolean.TRUE) == null;
}
@Override
public boolean add(String s)
{
return add(PathSpec.from(s));
}
public boolean remove(PathSpec pathSpec)
{
return specs.remove(pathSpec) != null;
}
@Override
public boolean remove(Object o)
{
return remove(asPathSpec(o));
}
@Override
public void clear()
{
specs.reset();
}
@Override
public Iterator iterator()
{
final Iterator> iterator = specs.iterator();
return new Iterator()
{
@Override
public boolean hasNext()
{
return iterator.hasNext();
}
@Override
public String next()
{
return iterator.next().getPathSpec().getDeclaration();
}
};
}
}