author | vasya |
Mon, 14 Dec 2015 20:18:19 +0100 | |
changeset 34752 | 9c262a013456 |
parent 34560 | b6a567b677f7 |
child 34991 | ff8be37d1164 |
permissions | -rw-r--r-- |
25605
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
1 |
/* |
31115
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
2 |
* Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. |
25605
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
4 |
* |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
7 |
* published by the Free Software Foundation. Oracle designates this |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
10 |
* |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
15 |
* accompanied this code). |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
16 |
* |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
20 |
* |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
22 |
* or visit www.oracle.com if you need additional information or have any |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
23 |
* questions. |
c2d72342fe19
8050408: A few new Java src files for sjavac are missing copyright notices
jjg
parents:
25299
diff
changeset
|
24 |
*/ |
34752
9c262a013456
8145342: Some copyright notices are inconsistently and ill formatted
vasya
parents:
34560
diff
changeset
|
25 |
|
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
26 |
package com.sun.tools.sjavac.comp; |
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
27 |
|
27388
d694da45bd7a
8062676: Tests which leak lots of file managers should be fixed (group 2)
jjg
parents:
26992
diff
changeset
|
28 |
import java.io.IOException; |
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
29 |
import java.io.PrintWriter; |
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
30 |
import java.io.Writer; |
32335 | 31 |
import java.nio.file.Files; |
32 |
import java.nio.file.Path; |
|
33 |
import java.util.ArrayList; |
|
34 |
import java.util.Collections; |
|
35 |
import java.util.HashMap; |
|
36 |
import java.util.HashSet; |
|
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
37 |
import java.util.List; |
32335 | 38 |
import java.util.Map; |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
39 |
import java.util.Set; |
32799 | 40 |
import java.util.stream.Stream; |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
41 |
|
32799 | 42 |
import com.sun.tools.javac.file.JavacFileManager; |
43 |
import com.sun.tools.javac.main.Main; |
|
44 |
import com.sun.tools.javac.util.Context; |
|
32335 | 45 |
import com.sun.tools.sjavac.JavacState; |
31115
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
46 |
import com.sun.tools.sjavac.Log; |
32335 | 47 |
import com.sun.tools.sjavac.Module; |
48 |
import com.sun.tools.sjavac.ProblemException; |
|
49 |
import com.sun.tools.sjavac.Source; |
|
50 |
import com.sun.tools.sjavac.Transformer; |
|
26991
88d998b3bb4b
8056258: Analysis of public API does not take super classes into account
alundblad
parents:
26107
diff
changeset
|
51 |
import com.sun.tools.sjavac.Util; |
32799 | 52 |
import com.sun.tools.sjavac.options.Option; |
32335 | 53 |
import com.sun.tools.sjavac.options.Options; |
54 |
import com.sun.tools.sjavac.options.SourceLocation; |
|
26098
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
55 |
import com.sun.tools.sjavac.server.Sjavac; |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
56 |
|
32799 | 57 |
import javax.tools.JavaFileManager; |
58 |
||
26098
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
59 |
/** |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
60 |
* The sjavac implementation that interacts with javac and performs the actual |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
61 |
* compilation. |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
62 |
* |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
63 |
* <p><b>This is NOT part of any supported API. |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
64 |
* If you write code that depends on this, you do so at your own risk. |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
65 |
* This code and its internal interfaces are subject to change or |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
66 |
* deletion without notice.</b> |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
67 |
*/ |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
68 |
public class SjavacImpl implements Sjavac { |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
69 |
|
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
70 |
@Override |
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
71 |
public int compile(String[] args, Writer out, Writer err) { |
32335 | 72 |
Options options; |
73 |
try { |
|
74 |
options = Options.parseArgs(args); |
|
75 |
} catch (IllegalArgumentException e) { |
|
76 |
Log.error(e.getMessage()); |
|
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
77 |
return RC_FATAL; |
32335 | 78 |
} |
79 |
||
80 |
Log.setLogLevel(options.getLogLevel()); |
|
81 |
||
82 |
if (!validateOptions(options)) |
|
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
83 |
return RC_FATAL; |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
84 |
|
32335 | 85 |
if (!createIfMissing(options.getDestDir())) |
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
86 |
return RC_FATAL; |
32335 | 87 |
|
32799 | 88 |
Path stateDir = options.getStateDir(); |
89 |
if (stateDir != null && !createIfMissing(options.getStateDir())) |
|
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
90 |
return RC_FATAL; |
32335 | 91 |
|
92 |
Path gensrc = options.getGenSrcDir(); |
|
93 |
if (gensrc != null && !createIfMissing(gensrc)) |
|
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
94 |
return RC_FATAL; |
31115
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
95 |
|
32335 | 96 |
Path hdrdir = options.getHeaderDir(); |
97 |
if (hdrdir != null && !createIfMissing(hdrdir)) |
|
32542
f4e4f4c4f9f4
8129114: Sjavac should stream back compiler output to the client as soon as it becomes available
alundblad
parents:
32335
diff
changeset
|
98 |
return RC_FATAL; |
32335 | 99 |
|
32799 | 100 |
if (stateDir == null) { |
101 |
// Prepare context. Direct logging to our byte array stream. |
|
102 |
Context context = new Context(); |
|
103 |
PrintWriter writer = new PrintWriter(err); |
|
104 |
com.sun.tools.javac.util.Log.preRegister(context, writer); |
|
105 |
JavacFileManager.preRegister(context); |
|
32335 | 106 |
|
32799 | 107 |
// Prepare arguments |
108 |
String[] passThroughArgs = Stream.of(args) |
|
109 |
.filter(arg -> !arg.startsWith(Option.SERVER.arg)) |
|
110 |
.toArray(String[]::new); |
|
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
111 |
|
32799 | 112 |
// Compile |
113 |
com.sun.tools.javac.main.Main compiler = new com.sun.tools.javac.main.Main("javac", writer); |
|
114 |
Main.Result result = compiler.compile(passThroughArgs, context); |
|
32335 | 115 |
|
32799 | 116 |
// Clean up |
117 |
JavaFileManager fileManager = context.get(JavaFileManager.class); |
|
118 |
if (fileManager instanceof JavacFileManager) { |
|
34560
b6a567b677f7
8059976: Convert JavacFileManager to use java.nio.file internally
jjg
parents:
33553
diff
changeset
|
119 |
try { |
b6a567b677f7
8059976: Convert JavacFileManager to use java.nio.file internally
jjg
parents:
33553
diff
changeset
|
120 |
((JavacFileManager) fileManager).close(); |
b6a567b677f7
8059976: Convert JavacFileManager to use java.nio.file internally
jjg
parents:
33553
diff
changeset
|
121 |
} catch (IOException e) { |
b6a567b677f7
8059976: Convert JavacFileManager to use java.nio.file internally
jjg
parents:
33553
diff
changeset
|
122 |
return RC_FATAL; |
b6a567b677f7
8059976: Convert JavacFileManager to use java.nio.file internally
jjg
parents:
33553
diff
changeset
|
123 |
} |
32799 | 124 |
} |
125 |
return result.exitCode; |
|
126 |
||
127 |
} else { |
|
128 |
// Load the prev build state database. |
|
129 |
JavacState javac_state = JavacState.load(options, out, err); |
|
130 |
||
131 |
// Setup the suffix rules from the command line. |
|
132 |
Map<String, Transformer> suffixRules = new HashMap<>(); |
|
31115
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
133 |
|
32799 | 134 |
// Handling of .java-compilation |
135 |
suffixRules.putAll(javac_state.getJavaSuffixRule()); |
|
136 |
||
137 |
// Handling of -copy and -tr |
|
138 |
suffixRules.putAll(options.getTranslationRules()); |
|
32335 | 139 |
|
32799 | 140 |
// All found modules are put here. |
141 |
Map<String,Module> modules = new HashMap<>(); |
|
142 |
// We start out in the legacy empty no-name module. |
|
143 |
// As soon as we stumble on a module-info.java file we change to that module. |
|
144 |
Module current_module = new Module("", ""); |
|
145 |
modules.put("", current_module); |
|
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
146 |
|
32799 | 147 |
// Find all sources, use the suffix rules to know which files are sources. |
148 |
Map<String,Source> sources = new HashMap<>(); |
|
26991
88d998b3bb4b
8056258: Analysis of public API does not take super classes into account
alundblad
parents:
26107
diff
changeset
|
149 |
|
32799 | 150 |
// Find the files, this will automatically populate the found modules |
151 |
// with found packages where the sources are found! |
|
152 |
findSourceFiles(options.getSources(), |
|
153 |
suffixRules.keySet(), |
|
154 |
sources, |
|
155 |
modules, |
|
156 |
current_module, |
|
157 |
options.isDefaultPackagePermitted(), |
|
158 |
false); |
|
159 |
||
160 |
if (sources.isEmpty()) { |
|
161 |
Log.error("Found nothing to compile!"); |
|
162 |
return RC_FATAL; |
|
163 |
} |
|
32335 | 164 |
|
165 |
||
32799 | 166 |
// Create a map of all source files that are available for linking. Both -src and |
167 |
// -sourcepath point to such files. It is possible to specify multiple |
|
168 |
// -sourcepath options to enable different filtering rules. If the |
|
169 |
// filters are the same for multiple sourcepaths, they may be concatenated |
|
170 |
// using :(;). Before sending the list of sourcepaths to javac, they are |
|
171 |
// all concatenated. The list created here is used by the SmartFileWrapper to |
|
172 |
// make sure only the correct sources are actually available. |
|
173 |
// We might find more modules here as well. |
|
174 |
Map<String,Source> sources_to_link_to = new HashMap<>(); |
|
31115
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
175 |
|
32799 | 176 |
List<SourceLocation> sourceResolutionLocations = new ArrayList<>(); |
177 |
sourceResolutionLocations.addAll(options.getSources()); |
|
178 |
sourceResolutionLocations.addAll(options.getSourceSearchPaths()); |
|
179 |
findSourceFiles(sourceResolutionLocations, |
|
180 |
Collections.singleton(".java"), |
|
181 |
sources_to_link_to, |
|
182 |
modules, |
|
183 |
current_module, |
|
184 |
options.isDefaultPackagePermitted(), |
|
185 |
true); |
|
32335 | 186 |
|
32799 | 187 |
// Add the set of sources to the build database. |
188 |
javac_state.now().flattenPackagesSourcesAndArtifacts(modules); |
|
189 |
javac_state.now().checkInternalState("checking sources", false, sources); |
|
190 |
javac_state.now().checkInternalState("checking linked sources", true, sources_to_link_to); |
|
191 |
javac_state.setVisibleSources(sources_to_link_to); |
|
32335 | 192 |
|
32799 | 193 |
int round = 0; |
194 |
printRound(round); |
|
32335 | 195 |
|
32799 | 196 |
// If there is any change in the source files, taint packages |
197 |
// and mark the database in need of saving. |
|
198 |
javac_state.checkSourceStatus(false); |
|
32335 | 199 |
|
32799 | 200 |
// Find all existing artifacts. Their timestamp will match the last modified timestamps stored |
201 |
// in javac_state, simply because loading of the JavacState will clean out all artifacts |
|
202 |
// that do not match the javac_state database. |
|
203 |
javac_state.findAllArtifacts(); |
|
32335 | 204 |
|
32799 | 205 |
// Remove unidentified artifacts from the bin, gensrc and header dirs. |
206 |
// (Unless we allow them to be there.) |
|
207 |
// I.e. artifacts that are not known according to the build database (javac_state). |
|
208 |
// For examples, files that have been manually copied into these dirs. |
|
209 |
// Artifacts with bad timestamps (ie the on disk timestamp does not match the timestamp |
|
210 |
// in javac_state) have already been removed when the javac_state was loaded. |
|
211 |
if (!options.areUnidentifiedArtifactsPermitted()) { |
|
212 |
javac_state.removeUnidentifiedArtifacts(); |
|
213 |
} |
|
214 |
// Go through all sources and taint all packages that miss artifacts. |
|
215 |
javac_state.taintPackagesThatMissArtifacts(); |
|
32335 | 216 |
|
33553
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
217 |
try { |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
218 |
// Check recorded classpath public apis. Taint packages that depend on |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
219 |
// classpath classes whose public apis have changed. |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
220 |
javac_state.taintPackagesDependingOnChangedClasspathPackages(); |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
221 |
|
33553
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
222 |
// Now clean out all known artifacts belonging to tainted packages. |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
223 |
javac_state.deleteClassArtifactsInTaintedPackages(); |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
224 |
// Copy files, for example property files, images files, xml files etc etc. |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
225 |
javac_state.performCopying(Util.pathToFile(options.getDestDir()), suffixRules); |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
226 |
// Translate files, for example compile properties or compile idls. |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
227 |
javac_state.performTranslation(Util.pathToFile(gensrc), suffixRules); |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
228 |
// Add any potentially generated java sources to the tobe compiled list. |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
229 |
// (Generated sources must always have a package.) |
9a742b6b95d3
8137075: Sjavac tests are leaking file managers
alundblad
parents:
32799
diff
changeset
|
230 |
Map<String,Source> generated_sources = new HashMap<>(); |
32335 | 231 |
|
32799 | 232 |
Source.scanRoot(Util.pathToFile(options.getGenSrcDir()), Util.set(".java"), null, null, null, null, |
233 |
generated_sources, modules, current_module, false, true, false); |
|
234 |
javac_state.now().flattenPackagesSourcesAndArtifacts(modules); |
|
235 |
// Recheck the the source files and their timestamps again. |
|
236 |
javac_state.checkSourceStatus(true); |
|
32335 | 237 |
|
32799 | 238 |
// Now do a safety check that the list of source files is identical |
239 |
// to the list Make believes we are compiling. If we do not get this |
|
240 |
// right, then incremental builds will fail with subtility. |
|
241 |
// If any difference is detected, then we will fail hard here. |
|
242 |
// This is an important safety net. |
|
243 |
javac_state.compareWithMakefileList(Util.pathToFile(options.getSourceReferenceList())); |
|
32335 | 244 |
|
32799 | 245 |
// Do the compilations, repeatedly until no tainted packages exist. |
246 |
boolean again; |
|
247 |
// Collect the name of all compiled packages. |
|
248 |
Set<String> recently_compiled = new HashSet<>(); |
|
249 |
boolean[] rc = new boolean[1]; |
|
32335 | 250 |
|
32799 | 251 |
CompilationService compilationService = new CompilationService(); |
252 |
do { |
|
253 |
if (round > 0) |
|
254 |
printRound(round); |
|
255 |
// Clean out artifacts in tainted packages. |
|
256 |
javac_state.deleteClassArtifactsInTaintedPackages(); |
|
257 |
again = javac_state.performJavaCompilations(compilationService, options, recently_compiled, rc); |
|
258 |
if (!rc[0]) { |
|
259 |
Log.debug("Compilation failed."); |
|
260 |
break; |
|
261 |
} |
|
262 |
if (!again) { |
|
263 |
Log.debug("Nothing left to do."); |
|
264 |
} |
|
265 |
round++; |
|
266 |
} while (again); |
|
267 |
Log.debug("No need to do another round."); |
|
268 |
||
269 |
// Only update the state if the compile went well. |
|
270 |
if (rc[0]) { |
|
271 |
javac_state.save(); |
|
272 |
// Reflatten only the artifacts. |
|
273 |
javac_state.now().flattenArtifacts(modules); |
|
274 |
// Remove artifacts that were generated during the last compile, but not this one. |
|
275 |
javac_state.removeSuperfluousArtifacts(recently_compiled); |
|
32335 | 276 |
} |
277 |
||
32799 | 278 |
return rc[0] ? RC_OK : RC_FATAL; |
279 |
} catch (ProblemException e) { |
|
280 |
Log.error(e.getMessage()); |
|
281 |
return RC_FATAL; |
|
282 |
} catch (Exception e) { |
|
283 |
e.printStackTrace(new PrintWriter(err)); |
|
284 |
return RC_FATAL; |
|
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
285 |
} |
26992
92e69fa21956
8059349: Public API scanning should be implemented in the form of a TaskListener
alundblad
parents:
26991
diff
changeset
|
286 |
} |
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
287 |
} |
26088 | 288 |
|
289 |
@Override |
|
26098
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
290 |
public void shutdown() { |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
291 |
// Nothing to clean up |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
292 |
} |
32588700060b
8048457: Sjavac should not use portfiles, sockets, etc if background=false
alundblad
parents:
26088
diff
changeset
|
293 |
|
32335 | 294 |
private static boolean validateOptions(Options options) { |
295 |
||
296 |
String err = null; |
|
297 |
||
298 |
if (options.getDestDir() == null) { |
|
299 |
err = "Please specify output directory."; |
|
300 |
} else if (options.isJavaFilesAmongJavacArgs()) { |
|
301 |
err = "Sjavac does not handle explicit compilation of single .java files."; |
|
302 |
} else if (options.getServerConf() == null) { |
|
303 |
err = "No server configuration provided."; |
|
304 |
} else if (!options.getImplicitPolicy().equals("none")) { |
|
305 |
err = "The only allowed setting for sjavac is -implicit:none"; |
|
32799 | 306 |
} else if (options.getSources().isEmpty() && options.getStateDir() != null) { |
307 |
err = "You have to specify -src when using --state-dir."; |
|
32335 | 308 |
} else if (options.getTranslationRules().size() > 1 |
309 |
&& options.getGenSrcDir() == null) { |
|
310 |
err = "You have translators but no gensrc dir (-s) specified!"; |
|
311 |
} |
|
312 |
||
313 |
if (err != null) |
|
314 |
Log.error(err); |
|
315 |
||
316 |
return err == null; |
|
317 |
||
26088 | 318 |
} |
319 |
||
32335 | 320 |
private static boolean createIfMissing(Path dir) { |
321 |
||
322 |
if (Files.isDirectory(dir)) |
|
323 |
return true; |
|
324 |
||
325 |
if (Files.exists(dir)) { |
|
326 |
Log.error(dir + " is not a directory."); |
|
327 |
return false; |
|
328 |
} |
|
329 |
||
330 |
try { |
|
331 |
Files.createDirectories(dir); |
|
332 |
} catch (IOException e) { |
|
333 |
Log.error("Could not create directory: " + e.getMessage()); |
|
334 |
return false; |
|
335 |
} |
|
336 |
||
337 |
return true; |
|
338 |
} |
|
339 |
||
340 |
/** Find source files in the given source locations. */ |
|
341 |
public static void findSourceFiles(List<SourceLocation> sourceLocations, |
|
342 |
Set<String> sourceTypes, |
|
343 |
Map<String,Source> foundFiles, |
|
344 |
Map<String, Module> foundModules, |
|
345 |
Module currentModule, |
|
346 |
boolean permitSourcesInDefaultPackage, |
|
347 |
boolean inLinksrc) { |
|
348 |
||
349 |
for (SourceLocation source : sourceLocations) { |
|
350 |
source.findSourceFiles(sourceTypes, |
|
351 |
foundFiles, |
|
352 |
foundModules, |
|
353 |
currentModule, |
|
354 |
permitSourcesInDefaultPackage, |
|
355 |
inLinksrc); |
|
31115
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
356 |
} |
8d8e98052d5d
8054717: SJavac should track changes in the public apis of classpath classes!
alundblad
parents:
27388
diff
changeset
|
357 |
} |
32335 | 358 |
|
359 |
private static void printRound(int round) { |
|
360 |
Log.debug("****************************************"); |
|
361 |
Log.debug("* Round " + round + " *"); |
|
362 |
Log.debug("****************************************"); |
|
363 |
} |
|
25299
b4a7dcd657f5
8048594: The sjavac client/server protocol should be hidden behind an interface
alundblad
parents:
diff
changeset
|
364 |
} |