-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompile.java
119 lines (95 loc) · 3.39 KB
/
Compile.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import java.io.File;
import java.io.FileWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import java.lang.ProcessBuilder;
import java.lang.Process;
public class Compile {
static Set<String> EXCLUDE_FOLDERS = new HashSet<>(Arrays.asList("extra","gradle","test","gui"));
static String root_path = "./";
static String classpath = "./build/";
static String argsfilename = "javafiles.args";
static String cmd_compile =
"javac -cp " + Compile.classpath +
" -sourcepath " + root_path +
" -encoding UTF-8" +
" -d " + Compile.classpath +
" @" + argsfilename;
static String cmd_run = "java -cp " + Compile.classpath + " ufs.Main";
static ArrayList<String> javafiles = new ArrayList<String>(25);
public static void main(String[] args) {
File root = new File(Compile.root_path);
File[] files = root.listFiles();
if (files == null) {
System.out.println(">> root = " + Compile.root_path + " path para compilar é um directory null");
return;
}
for ( File file : files) {
getFilesRecursive(file,Compile.javafiles);
}
try {
File argsfile = new File(Compile.argsfilename);
argsfile.createNewFile();
FileWriter fw = new FileWriter(argsfile,false);
// Adiciona a lista de arquivos para compilar
// apenas se o path do arquivo não contem os folders
// especificados em EXCLUDE_FOLDERS
for (int i = 0; i < javafiles.size(); i++) {
fw.write(javafiles.get(i) + "\n");
//System.out.println(javafiles.get(i));
}
fw.close();
System.out.println( ">> Escrita dos arquivos java no arquvivo: " + Compile.argsfilename + " feita com sucesso");
}
catch (Exception e) {
System.out.println( ">> Escrita dos arquivos java no arquvivo: " + Compile.argsfilename + " falhou \n" + e);
}
Process compile_proc, run_proc;
String[] compile_args = Compile.cmd_compile.split(" ");
String[] run_args = Compile.cmd_run.split(" ");
// Compilar o programa
try {
System.out.print(">> Compilando... " + cmd_compile + "\n");
compile_proc = new ProcessBuilder(compile_args).start();
compile_proc.waitFor();
if (compile_proc.exitValue() == 0) {
System.out.println(">> Compilado com sucesso!");
}
else {
System.out.println(">> Compilado com fracasso");
return;
}
}
catch (Exception e) {
System.out.println( ">> Comando javac falhou ao tentar compilar o projeto\n" + e);
System.out.println( "\n>> IMPORTANTE : Compile manualmente com o comando abaixo:\n" + Compile.cmd_compile);
}
System.out.println( "\n>> IMPORTANTE : para rodar o projeto compilado, deve-se rodar o comando abaixo:\n" + Compile.cmd_run);
}
static void getFilesRecursive(File pFile, List<String> list) {
File[] files = pFile.listFiles();
if (files == null){
//System.out.println("Files returned are empty");
return;
}
for (int i = 0; i < files.length; i++) {
if(files[i].isDirectory()) {
// Excluindo Folder que não queremos acesssar
if (EXCLUDE_FOLDERS.contains(files[i].getName())) {
}
else {
getFilesRecursive(files[i], list);
}
}
else {
String filename = files[i].getPath();
if (filename.endsWith(".java")){
list.add(filename.replaceAll("\\\\", "/"));
}
}
}
}
}