blob: e9b731c63be4b5a2ddc0df30f5c8d668bd1c686f [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.myfaces.extensions.scripting.loaders.java.jsr199;
import org.apache.myfaces.extensions.scripting.core.util.ClassLoaderUtils;
import org.apache.myfaces.extensions.scripting.core.util.WeavingContext;
import org.apache.myfaces.extensions.scripting.loaders.java.RecompiledClassLoader;
import javax.tools.FileObject;
import javax.tools.ForwardingJavaFileManager;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import java.io.File;
import java.io.IOException;
/**
* File manager, enforced by the Java Compiler API
* which handles the source files
*
* @author Werner Punz (latest modification by $Author$)
* @version $Revision$ $Date$
*/
public class ContainerFileManager extends ForwardingJavaFileManager<StandardJavaFileManager> {
StandardJavaFileManager _delegate = null;
String _classPath = null;
RecompiledClassLoader classLoader = null;
public ContainerFileManager(StandardJavaFileManager standardJavaFileManager) {
super(standardJavaFileManager);
_delegate = standardJavaFileManager;
}
@Override
public JavaFileObject getJavaFileForOutput(Location location, String s, JavaFileObject.Kind kind, FileObject fileObject) throws IOException {
return super.getJavaFileForOutput(location, s, kind, fileObject);
}
@Override
public ClassLoader getClassLoader(Location location) {
return Thread.currentThread().getContextClassLoader();
}
public ClassLoader getClassLoader() {
return classLoader;
}
public Iterable<? extends JavaFileObject> getJavaFileObjects(File... files) {
return _delegate.getJavaFileObjects(files);
}
public Iterable<? extends JavaFileObject> getJavaFileObjects(String... files) {
return _delegate.getJavaFileObjects(files);
}
public Iterable<? extends JavaFileObject> getJavaFileObjectsSingle(String files) {
return _delegate.getJavaFileObjects(files);
}
public String getClassPath() {
if (_classPath != null) {
return _classPath;
}
String retStr = ClassLoaderUtils.buildClasspath(getClassLoader(null));
return (_classPath = retStr);
}
public File getTempDir() {
return WeavingContext.getConfiguration().getCompileTarget();
}
}