net.hasor.cobble.loader.AbstractResourceLoader Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2008-2009 the original author or authors.
*
* 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 net.hasor.cobble.loader;
import java.io.IOException;
import java.util.List;
import java.util.function.Function;
import java.util.function.Predicate;
/**
* Loader 基类
* @version : 2021-09-29
* @author 赵永春 ([email protected])
*/
public abstract class AbstractResourceLoader implements ResourceLoader {
protected final ClassLoader parentClassLoader;
private volatile ResourceClassLoader innerClassLoader;
public AbstractResourceLoader() {
this.parentClassLoader = null;
}
public AbstractResourceLoader(ClassLoader parent) {
this.parentClassLoader = parent;
}
protected ResourceLoader loaderForClassLoader() {
return this;
}
public Class> getClass(String className) throws ClassNotFoundException {
if (this.innerClassLoader == null) {
synchronized (this) {
if (this.innerClassLoader == null) {
this.innerClassLoader = new ResourceClassLoader(this.parentClassLoader, loaderForClassLoader());
}
}
}
return this.innerClassLoader.loadClass(className);
}
public List scanResources(Scanner scanner) throws IOException {
return scanResources(MatchType.None, scanner, new String[0]);
}
public List scanResources(MatchType matchType, Scanner scanner) throws IOException {
return scanResources(matchType, scanner, new String[0]);
}
public List scanResources(MatchType matchType, Scanner scanner, String[] scanPaths) throws IOException {
return this.scanResources(matchType, t -> true, scanner, scanPaths);
}
public T scanOneResource(Scanner scanner) throws IOException {
return scanOneResource(MatchType.None, scanner, new String[0]);
}
public T scanOneResource(MatchType matchType, Scanner scanner) throws IOException {
return scanOneResource(matchType, scanner, new String[0]);
}
public T scanOneResource(MatchType matchType, Scanner scanner, String[] scanPaths) throws IOException {
return this.scanOneResource(matchType, t -> true, scanner, scanPaths);
}
protected Predicate[] buildPredicate(MatchType matchType, String[] scanPaths, Function nameFunc) {
if (matchType == null) {
throw new IllegalStateException("missing matchType.");
}
Predicate[] tests = new Predicate[scanPaths.length];
for (int i = 0; i < scanPaths.length; i++) {
final String matchExpr = scanPaths[i];
switch (matchType) {
case None: {
tests[i] = e -> true;
break;
}
case Match: {
tests[i] = e -> nameFunc.apply(e).equals(matchExpr);
break;
}
case Regex: {
tests[i] = e -> nameFunc.apply(e).matches(matchExpr);
break;
}
case ContainsAny: {
tests[i] = e -> nameFunc.apply(e).contains(matchExpr);
break;
}
case Prefix: {
tests[i] = e -> nameFunc.apply(e).startsWith(matchExpr);
break;
}
case Suffix: {
tests[i] = e -> nameFunc.apply(e).endsWith(matchExpr);
break;
}
default: {
tests[i] = e -> false;
break;
}
}
}
return tests;
}
}