some logging
This commit is contained in:
@@ -124,6 +124,10 @@ public class CompileEnvironment {
|
|||||||
throw new CompileEnvironmentException("Module script " + moduleFile + " compilation failed");
|
throw new CompileEnvironmentException("Module script " + moduleFile + " compilation failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (modules.isEmpty()) {
|
||||||
|
throw new CompileEnvironmentException("No modules where defined by " + moduleFile);
|
||||||
|
}
|
||||||
|
|
||||||
final String directory = new File(moduleFile).getParent();
|
final String directory = new File(moduleFile).getParent();
|
||||||
for (Module moduleBuilder : modules) {
|
for (Module moduleBuilder : modules) {
|
||||||
ClassFileFactory moduleFactory = compileModule(moduleBuilder, directory);
|
ClassFileFactory moduleFactory = compileModule(moduleBuilder, directory);
|
||||||
@@ -169,12 +173,21 @@ public class CompileEnvironment {
|
|||||||
|
|
||||||
public ClassFileFactory compileModule(Module moduleBuilder, String directory) {
|
public ClassFileFactory compileModule(Module moduleBuilder, String directory) {
|
||||||
CompileSession moduleCompileSession = new CompileSession(myEnvironment);
|
CompileSession moduleCompileSession = new CompileSession(myEnvironment);
|
||||||
|
|
||||||
|
if (moduleBuilder.getSourceFiles().isEmpty()) {
|
||||||
|
throw new CompileEnvironmentException("No source files where defined");
|
||||||
|
}
|
||||||
|
|
||||||
for (String sourceFile : moduleBuilder.getSourceFiles()) {
|
for (String sourceFile : moduleBuilder.getSourceFiles()) {
|
||||||
File source = new File(sourceFile);
|
File source = new File(sourceFile);
|
||||||
if (!source.isAbsolute()) {
|
if (!source.isAbsolute()) {
|
||||||
source = new File(directory, sourceFile);
|
source = new File(directory, sourceFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!source.exists()) {
|
||||||
|
throw new CompileEnvironmentException("'" + source + "' does not exist");
|
||||||
|
}
|
||||||
|
|
||||||
moduleCompileSession.addSources(source.getPath());
|
moduleCompileSession.addSources(source.getPath());
|
||||||
}
|
}
|
||||||
for (String classpathRoot : moduleBuilder.getClasspathRoots()) {
|
for (String classpathRoot : moduleBuilder.getClasspathRoots()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user