src.org.python.compiler.LegacyCompiler Maven / Gradle / Ivy
package org.python.compiler;
import java.io.ByteArrayOutputStream;
import java.io.OutputStream;
import org.python.antlr.base.mod;
import org.python.core.BytecodeLoader;
import org.python.core.CompilerFlags;
import org.python.core.Py;
import org.python.core.PyCode;
import org.python.core.PythonCodeBundle;
import org.python.core.PythonCompiler;
public class LegacyCompiler implements PythonCompiler {
public PythonCodeBundle compile(mod node, String name, String filename,
boolean linenumbers, boolean printResults, CompilerFlags cflags) {
return new LazyLegacyBundle(node, name, filename, linenumbers,
printResults, cflags);
}
private static class LazyLegacyBundle implements PythonCodeBundle {
private final mod node;
private final String name;
private final String filename;
private final boolean linenumbers;
private final boolean printResults;
private final CompilerFlags cflags;
private ByteArrayOutputStream ostream = null;
public LazyLegacyBundle(mod node, String name, String filename,
boolean linenumbers, boolean printResults, CompilerFlags cflags) {
this.node = node;
this.name = name;
this.filename = filename;
this.linenumbers = linenumbers;
this.printResults = printResults;
this.cflags = cflags;
}
public PyCode loadCode() throws Exception {
return BytecodeLoader.makeCode(name, ostream().toByteArray(),
filename);
}
public void writeTo(OutputStream stream) throws Exception {
if (this.ostream != null) {
stream.write(ostream.toByteArray());
} else {
Module.compile(node, stream, name, filename, linenumbers,
printResults, cflags);
}
}
public void saveCode(String directory) throws Exception {
// FIXME: this is slightly broken, it should use the directory
Py.saveClassFile(name, ostream());
}
private ByteArrayOutputStream ostream() throws Exception {
if (ostream == null) {
ostream = new ByteArrayOutputStream();
Module.compile(node, ostream, name, filename, linenumbers,
printResults, cflags);
}
return ostream;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy