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

org.sonar.classloader.Mask Maven / Gradle / Ivy

There is a newer version: 10.5.0.78949
Show newest version
/*
 * Sonar Classloader
 * Copyright (C) 2015 SonarSource
 * [email protected]
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.classloader;

import java.util.ArrayList;
import java.util.List;

/**
 * A mask restricts access of a classloader to resources through inclusion and exclusion patterns.
 * By default all resources/classes are visible.
 * 

* Format of inclusion/exclusion patterns is the file path separated by slashes, for example * "org/foo/Bar.class" or "org/foo/config.xml". Wildcard patterns are not supported. Directories must end with * slash, for example "org/foo/" for excluding package org.foo and its sub-packages. Add the * exclusion "/" to exclude everything. * * @since 0.1 */ public class Mask { private static final String ROOT = "" + "/"; private final List inclusions = new ArrayList<>(); private final List exclusions = new ArrayList<>(); List getInclusions() { return inclusions; } List getExclusions() { return exclusions; } public Mask addInclusion(String s) { inclusions.add(s); return this; } public Mask addExclusion(String s) { exclusions.add(s); return this; } boolean acceptClass(String classname) { if (inclusions.isEmpty() && exclusions.isEmpty()) { return true; } return acceptResource(classToResource(classname)); } boolean acceptResource(String name) { boolean ok = true; if (!inclusions.isEmpty()) { ok = false; for (String include : inclusions) { if (matchPattern(name, include)) { ok = true; break; } } } if (ok) { for (String exclude : exclusions) { if (matchPattern(name, exclude)) { ok = false; break; } } } return ok; } private boolean matchPattern(String name, String pattern) { return pattern.equals(ROOT) || (pattern.endsWith("/") && name.startsWith(pattern)) || pattern.equals(name); } void merge(Mask with) { List lowestIncludes = new ArrayList<>(); if (inclusions.isEmpty()) { lowestIncludes.addAll(with.inclusions); } else if (with.inclusions.isEmpty()) { lowestIncludes.addAll(inclusions); } else { for (String include : inclusions) { for (String fromInclude : with.inclusions) { if (fromInclude.startsWith(include)) { lowestIncludes.add(fromInclude); } } } for (String fromInclude : with.inclusions) { for (String include : inclusions) { if (include.startsWith(fromInclude)) { lowestIncludes.add(include); } } } } inclusions.clear(); inclusions.addAll(lowestIncludes); exclusions.addAll(with.exclusions); } private String classToResource(String classname) { return classname.replace('.', '/') + ".class"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy