com.sun.faces.config.manager.tasks.ProvideMetadataToAnnotationScanTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakarta.faces Show documentation
Show all versions of jakarta.faces Show documentation
EE4J Compatible Implementation for Jakarta Faces API
The newest version!
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.faces.config.manager.tasks;
import java.net.URI;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import com.sun.faces.config.manager.FacesConfigInfo;
import com.sun.faces.config.manager.documents.DocumentInfo;
import com.sun.faces.spi.AnnotationScanner;
import com.sun.faces.spi.InjectionProvider;
public final class ProvideMetadataToAnnotationScanTask {
private static final Pattern FACES_CONFIG_XML_IN_JAR_PATTERN = Pattern.compile("(.*/(\\S*\\.jar)).*(/faces-config.xml|/*.\\.faces-config.xml)");
private static final Pattern CURRENT_RESOURCE_IN_JAR_PATTERN = Pattern.compile("(?<=\\.jar)[!/].*");
private final DocumentInfo[] documentInfos;
private final InjectionProvider containerConnector;
private Set uris;
private Set jarNames;
public ProvideMetadataToAnnotationScanTask(DocumentInfo[] documentInfos, InjectionProvider containerConnector) {
this.documentInfos = documentInfos;
this.containerConnector = containerConnector;
}
private void initializeIvars(Set> annotatedSet) {
if (uris != null || jarNames != null) {
return;
}
uris = new HashSet<>(documentInfos.length);
jarNames = new HashSet<>(documentInfos.length);
for (DocumentInfo docInfo : documentInfos) {
URI facesConfigURI = docInfo.getSourceURI();
Matcher jarMatcher = FACES_CONFIG_XML_IN_JAR_PATTERN.matcher(facesConfigURI == null ? "" : facesConfigURI.toString());
if (jarMatcher.matches()) {
String jarName = jarMatcher.group(2);
if (!jarNames.contains(jarName)) {
FacesConfigInfo configInfo = new FacesConfigInfo(docInfo);
if (!configInfo.isMetadataComplete()) {
uris.add(facesConfigURI);
jarNames.add(jarName);
} else {
/*
* Because the container annotation scanning does not know anything about faces-config.xml metadata-complete the
* annotatedSet of classes will include classes that are not supposed to be included.
*
* The code below looks at the CodeSource of the class and determines whether or not it should be removed from the
* annotatedSet because the faces-config.xml that owns it has metadata-complete="true".
*/
ArrayList> toRemove = new ArrayList<>(1);
String facesConfigURIString = facesConfigURI.toString();
if (annotatedSet != null) {
for (Class> clazz : annotatedSet) {
URL classURI = clazz.getClassLoader().getResource(clazz.getName().replace('.', '/') + ".class");
String jarURIString = CURRENT_RESOURCE_IN_JAR_PATTERN.split(classURI.toString(), 2)[0];
if (facesConfigURIString.startsWith(jarURIString)) {
toRemove.add(clazz);
}
}
annotatedSet.removeAll(toRemove);
}
}
}
}
}
}
public Set getAnnotationScanURIs(Set> annotatedSet) {
initializeIvars(annotatedSet);
return uris;
}
public Set getJarNames(Set> annotatedSet) {
initializeIvars(annotatedSet);
return jarNames;
}
public AnnotationScanner getAnnotationScanner() {
if (containerConnector instanceof AnnotationScanner) {
return (AnnotationScanner) containerConnector;
}
return null;
}
}