BuildState.java revision 2958:27da0c3ac83a
1/*
2 * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package com.sun.tools.sjavac;
27
28import java.io.File;
29import java.util.Collections;
30import java.util.HashMap;
31import java.util.Map;
32import java.util.Set;
33
34import com.sun.tools.javac.util.Assert;
35import com.sun.tools.sjavac.pubapi.PubApi;
36
37/**
38 * The build state class captures the source code and generated artifacts
39 * from a build. There are usually two build states, the previous one (prev),
40 * loaded from the javac_state file, and the current one (now).
41 *
42 *  <p><b>This is NOT part of any supported API.
43 *  If you write code that depends on this, you do so at your own risk.
44 *  This code and its internal interfaces are subject to change or
45 *  deletion without notice.</b>
46 */
47public class BuildState {
48    private Map<String,Module> modules = new HashMap<>();
49    private Map<String,Package> packages = new HashMap<>();
50    private Map<String,Source> sources = new HashMap<>();
51    private Map<String,File> artifacts = new HashMap<>();
52    // Map from package to a set of packages that depend on said package.
53    private Map<String,Set<String>> dependents = new HashMap<>();
54
55    public  Map<String,Module> modules() { return modules; }
56    public  Map<String,Package> packages() { return packages; }
57    public  Map<String,Source> sources() { return sources; }
58    public  Map<String,File> artifacts() { return artifacts; }
59    public  Map<String,Set<String>> dependents() { return dependents; }
60
61    /**
62     * Lookup a module from a name. Create the module if it does
63     * not exist yet.
64     */
65    public Module lookupModule(String mod) {
66        Module m = modules.get(mod);
67        if (m == null) {
68            m = new Module(mod, "???");
69            modules.put(mod, m);
70        }
71        return m;
72    }
73
74    /**
75     * Find a module from a given package name. For example:
76     * The package name "base:java.lang" will fetch the module named "base".
77     * The package name ":java.net" will fetch the default module.
78     */
79    Module findModuleFromPackageName(String pkg) {
80        int cp = pkg.indexOf(':');
81        Assert.check(cp != -1, "Could not find package name");
82        String mod = pkg.substring(0, cp);
83        return lookupModule(mod);
84    }
85
86    /**
87     * Store references to all packages, sources and artifacts for all modules
88     * into the build state. I.e. flatten the module tree structure
89     * into global maps stored in the BuildState for easy access.
90     *
91     * @param m The set of modules.
92     */
93    public void flattenPackagesSourcesAndArtifacts(Map<String,Module> m) {
94        modules = m;
95        // Extract all the found packages.
96        for (Module i : modules.values()) {
97            for (Map.Entry<String,Package> j : i.packages().entrySet()) {
98                Package p = packages.get(j.getKey());
99                // Check that no two different packages are stored under same name.
100                Assert.check(p == null || p == j.getValue());
101                if (p == null) {
102                    p = j.getValue();
103                    packages.put(j.getKey(),j.getValue());
104                }
105                for (Map.Entry<String,Source> k : p.sources().entrySet()) {
106                    Source s = sources.get(k.getKey());
107                    // Check that no two different sources are stored under same name.
108                    Assert.check(s == null || s == k.getValue());
109                    if (s == null) {
110                        s = k.getValue();
111                        sources.put(k.getKey(), k.getValue());
112                    }
113                }
114                for (Map.Entry<String,File> g : p.artifacts().entrySet()) {
115                    File f = artifacts.get(g.getKey());
116                    // Check that no two artifacts are stored under the same file.
117                    Assert.check(f == null || f == g.getValue());
118                    if (f == null) {
119                        f = g.getValue();
120                        artifacts.put(g.getKey(), g.getValue());
121                    }
122                }
123            }
124        }
125    }
126
127    /**
128     * Store references to all artifacts found in the module tree into the maps
129     * stored in the build state.
130     *
131     * @param m The set of modules.
132     */
133    public void flattenArtifacts(Map<String,Module> m) {
134        modules = m;
135        // Extract all the found packages.
136        for (Module i : modules.values()) {
137            for (Map.Entry<String,Package> j : i.packages().entrySet()) {
138                Package p = packages.get(j.getKey());
139                // Check that no two different packages are stored under same name.
140                Assert.check(p == null || p == j.getValue());
141                p = j.getValue();
142                packages.put(j.getKey(),j.getValue());
143                for (Map.Entry<String,File> g : p.artifacts().entrySet()) {
144                    File f = artifacts.get(g.getKey());
145                    // Check that no two artifacts are stored under the same file.
146                    Assert.check(f == null || f == g.getValue());
147                    artifacts.put(g.getKey(), g.getValue());
148                }
149            }
150        }
151    }
152
153    /**
154     * Calculate the package dependents (ie the reverse of the dependencies).
155     */
156    public void calculateDependents() {
157        dependents = new HashMap<>();
158
159        for (String s : packages.keySet()) {
160            Package p = packages.get(s);
161
162            // Collect all dependencies of the classes in this package
163            Set<String> deps = p.typeDependencies()  // maps fqName -> set of dependencies
164                                .values()
165                                .stream()
166                                .reduce(Collections.emptySet(), Util::union);
167
168            // Now reverse the direction
169
170            for (String dep : deps) {
171                // Add the dependent information to the global dependent map.
172                String depPkgStr = ":" + dep.substring(0, dep.lastIndexOf('.'));
173                dependents.merge(depPkgStr, Collections.singleton(s), Util::union);
174
175                // Also add the dependent information to the package specific map.
176                // Normally, you do not compile java.lang et al. Therefore
177                // there are several packages that p depends upon that you
178                // do not have in your state database. This is perfectly fine.
179                Package dp = packages.get(depPkgStr);
180                if (dp != null) {
181                    // But this package did exist in the state database.
182                    dp.addDependent(p.name());
183                }
184            }
185        }
186    }
187
188    /**
189     * Verify that the setModules method above did the right thing when
190     * running through the module->package->source structure.
191     */
192    public void checkInternalState(String msg, boolean linkedOnly, Map<String,Source> srcs) {
193        boolean baad = false;
194        Map<String,Source> original = new HashMap<>();
195        Map<String,Source> calculated = new HashMap<>();
196
197        for (String s : sources.keySet()) {
198            Source ss = sources.get(s);
199            if (ss.isLinkedOnly() == linkedOnly) {
200                calculated.put(s,ss);
201            }
202        }
203        for (String s : srcs.keySet()) {
204            Source ss = srcs.get(s);
205            if (ss.isLinkedOnly() == linkedOnly) {
206                original.put(s,ss);
207            }
208        }
209        if (original.size() != calculated.size()) {
210            Log.error("INTERNAL ERROR "+msg+" original and calculated are not the same size!");
211            baad = true;
212        }
213        if (!original.keySet().equals(calculated.keySet())) {
214            Log.error("INTERNAL ERROR "+msg+" original and calculated do not have the same domain!");
215            baad = true;
216        }
217        if (!baad) {
218            for (String s : original.keySet()) {
219                Source s1 = original.get(s);
220                Source s2 = calculated.get(s);
221                if (s1 == null || s2 == null || !s1.equals(s2)) {
222                    Log.error("INTERNAL ERROR "+msg+" original and calculated have differing elements for "+s);
223                }
224                baad = true;
225            }
226        }
227        if (baad) {
228            for (String s : original.keySet()) {
229                Source ss = original.get(s);
230                Source sss = calculated.get(s);
231                if (sss == null) {
232                    Log.error("The file "+s+" does not exist in calculated tree of sources.");
233                }
234            }
235            for (String s : calculated.keySet()) {
236                Source ss = calculated.get(s);
237                Source sss = original.get(s);
238                if (sss == null) {
239                    Log.error("The file "+s+" does not exist in original set of found sources.");
240                }
241            }
242        }
243    }
244
245    /**
246     * Load a module from the javac state file.
247     */
248    public Module loadModule(String l) {
249        Module m = Module.load(l);
250        modules.put(m.name(), m);
251        return m;
252    }
253
254    /**
255     * Load a package from the javac state file.
256     */
257    public Package loadPackage(Module lastModule, String l) {
258        Package p = Package.load(lastModule, l);
259        lastModule.addPackage(p);
260        packages.put(p.name(), p);
261        return p;
262    }
263
264    /**
265     * Load a source from the javac state file.
266     */
267    public Source loadSource(Package lastPackage, String l, boolean is_generated) {
268        Source s = Source.load(lastPackage, l, is_generated);
269        lastPackage.addSource(s);
270        sources.put(s.name(), s);
271        return s;
272    }
273
274    /**
275     * During an incremental compile we need to copy the old javac state
276     * information about packages that were not recompiled.
277     */
278    public void copyPackagesExcept(BuildState prev, Set<String> recompiled, Set<String> removed) {
279        for (String pkg : prev.packages().keySet()) {
280            // Do not copy recompiled or removed packages.
281            if (recompiled.contains(pkg) || removed.contains(pkg))
282                continue;
283
284            Module mnew = findModuleFromPackageName(pkg);
285            Package pprev = prev.packages().get(pkg);
286
287            // Even though we haven't recompiled this package, we may have
288            // information about its public API: It may be a classpath dependency
289            if (packages.containsKey(pkg)) {
290                pprev.setPubapi(PubApi.mergeTypes(pprev.getPubApi(),
291                                                  packages.get(pkg).getPubApi()));
292            }
293
294            mnew.addPackage(pprev);
295            // Do not forget to update the flattened data. (See JDK-8071904)
296            packages.put(pkg, pprev);
297        }
298    }
299}
300