blob: ac2651bb646534975420bcdaddcee8e68feb0acb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.meecrowave.tomcat;
import org.apache.tomcat.Jar;
import org.apache.tomcat.JarScanFilter;
import org.apache.tomcat.JarScanType;
import org.apache.tomcat.JarScanner;
import org.apache.tomcat.JarScannerCallback;
import org.apache.tomcat.util.buf.UriUtil;
import org.apache.tomcat.util.scan.Constants;
import org.apache.tomcat.util.scan.JarFactory;
import org.apache.webbeans.config.WebBeansContext;
import org.apache.webbeans.corespi.scanner.xbean.CdiArchive;
import org.apache.webbeans.web.scanner.WebScannerService;
import javax.servlet.ServletContext;
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import java.net.URL;
public class OWBJarScanner implements JarScanner {
private JarScanFilter filter; // not yet used
@Override
public void scan(final JarScanType jarScanType, final ServletContext servletContext, final JarScannerCallback callback) {
switch (jarScanType) {
case PLUGGABILITY:
CdiArchive.class.cast(WebScannerService.class.cast(WebBeansContext.getInstance().getScannerService()).getFinder().getArchive())
.classesByUrl().keySet().stream()
.filter(u -> !"jar:file://!/".equals(u)) // not a fake in memory url
.forEach(u -> {
try {
final URL url = new URL(u);
if ("jar".equals(url.getProtocol()) || url.getPath().endsWith(Constants.JAR_EXT)) {
try (final Jar jar = JarFactory.newInstance(url)) {
callback.scan(jar, u, true);
}
} else if ("file".equals(url.getProtocol())) {
final File f = new File(url.toURI());
if (f.isFile()) {
try (final Jar jar = JarFactory.newInstance(UriUtil.buildJarUrl(f))) {
callback.scan(jar, f.getAbsolutePath(), true);
}
} else if (f.isDirectory()) {
callback.scan(f, f.getAbsolutePath(), true);
}
}
} catch (final MalformedURLException e) {
// skip
} catch (final IOException | URISyntaxException ioe) {
throw new IllegalArgumentException(ioe);
}
});
return;
case TLD:
default:
}
}
@Override
public JarScanFilter getJarScanFilter() {
return filter;
}
@Override
public void setJarScanFilter(final JarScanFilter jarScanFilter) {
this.filter = jarScanFilter;
}
}