blob: 8e06778cfb9f92450dc1feca27e3a52eabf4d202 [file] [log] [blame]
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.dev.javac;
import com.google.gwt.dev.jjs.ast.JDeclaredType;
import com.google.gwt.dev.jjs.ast.JProgram;
import com.google.gwt.dev.util.collect.Lists;
import com.google.gwt.thirdparty.guava.common.base.Predicate;
import com.google.gwt.thirdparty.guava.common.collect.Iterables;
import org.eclipse.jdt.core.compiler.CategorizedProblem;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.Collection;
import java.util.List;
abstract class CompilationUnitImpl extends CompilationUnit {
/**
* Handle to serialized GWT AST.
*/
protected transient long astToken;
private final Dependencies dependencies;
private final List<CompiledClass> exposedCompiledClasses;
private final boolean hasErrors;
private final boolean hasJsInteropRootType;
private final List<JsniMethod> jsniMethods;
private final MethodArgNamesLookup methodArgs;
private final CategorizedProblem[] problems;
public CompilationUnitImpl(List<CompiledClass> compiledClasses,
List<JDeclaredType> types, Dependencies dependencies,
Collection<? extends JsniMethod> jsniMethods,
MethodArgNamesLookup methodArgs, CategorizedProblem[] problems) {
this.exposedCompiledClasses = Lists.normalizeUnmodifiable(compiledClasses);
this.dependencies = dependencies;
this.jsniMethods = Lists.create(jsniMethods.toArray(new JsniMethod[jsniMethods.size()]));
this.methodArgs = methodArgs;
this.problems = problems;
boolean hasAnyErrors = false;
if (problems != null) {
for (CategorizedProblem problem : problems) {
if (problem.isError()) {
hasAnyErrors = true;
}
}
}
this.hasErrors = hasAnyErrors;
this.hasJsInteropRootType = Iterables.any(types, new Predicate<JDeclaredType>() {
@Override public boolean apply(JDeclaredType type) {
return type.hasJsInteropEntryPoints();
}
});
for (CompiledClass cc : compiledClasses) {
cc.initUnit(this);
}
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream(baos);
JProgram.serializeTypes(types, out);
out.close();
astToken = diskCache.writeByteArray(baos.toByteArray());
} catch (IOException e) {
throw new RuntimeException("Unexpected IOException on in-memory stream",
e);
}
}
@Override
public Collection<CompiledClass> getCompiledClasses() {
return exposedCompiledClasses;
}
@Override
public List<JsniMethod> getJsniMethods() {
return jsniMethods;
}
@Override
public MethodArgNamesLookup getMethodArgs() {
return methodArgs;
}
@Override
public byte[] getTypesSerialized() {
return diskCache.readByteArray(astToken);
}
@Override
public boolean isError() {
return hasErrors;
}
@Override
boolean hasJsInteropRootType() {
return hasJsInteropRootType;
}
@Override
Dependencies getDependencies() {
return dependencies;
}
@Override
CategorizedProblem[] getProblems() {
return problems;
}
}