JavaBuilder/src/dorkbox/build/util/JavaMemFileManager.java

100 lines
3.2 KiB
Java

/*
* Copyright 2012 dorkbox, llc
*
* 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 dorkbox.build.util;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.URI;
import java.util.HashMap;
import java.util.Map.Entry;
import javax.tools.FileObject;
import javax.tools.ForwardingJavaFileManager;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.StandardLocation;
import com.esotericsoftware.wildcard.Paths;
public class JavaMemFileManager extends ForwardingJavaFileManager<StandardJavaFileManager> {
static class ClassMemFileObject extends SimpleJavaFileObject {
ByteArrayOutputStream os = new ByteArrayOutputStream();
ClassMemFileObject(String className) {
super(URI.create("mem:///" + className + Kind.CLASS.extension), Kind.CLASS);
}
byte[] getBytes() {
return this.os.toByteArray();
}
@Override
public OutputStream openOutputStream() throws IOException {
return this.os;
}
}
private HashMap<String, ClassMemFileObject> classes = new HashMap<String, ClassMemFileObject>();
private Paths source;
private ByteClassloader bytesClassloader;
public JavaMemFileManager(StandardJavaFileManager standardFileManager, ByteClassloader bytesClassloader) {
super(standardFileManager);
this.bytesClassloader = bytesClassloader;
}
@Override
public JavaFileObject getJavaFileForOutput(Location location, String className, JavaFileObject.Kind kind, FileObject sibling)
throws IOException {
if (StandardLocation.CLASS_OUTPUT == location && JavaFileObject.Kind.CLASS == kind) {
ClassMemFileObject clazz = new ClassMemFileObject(className);
this.classes.put(className, clazz);
return clazz;
} else {
return super.getJavaFileForOutput(location, className, kind, sibling);
}
}
public void setSource(Paths source) {
this.source = source;
}
public Iterable<? extends JavaFileObject> getSourceFiles() {
return super.fileManager.getJavaFileObjectsFromFiles(this.source.getFiles());
}
@Override
public void close() throws IOException {
super.close();
// and save all of our bytes into our classloader
for (Entry<String, ClassMemFileObject> entry : this.classes.entrySet()) {
String key = entry.getKey();
ClassMemFileObject value = entry.getValue();
this.bytesClassloader.saveBytes(key, value.getBytes());
}
this.classes.clear();
}
}