All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.dev.javac.testing.GeneratorContextBuilder Maven / Gradle / Ivy

/*
 * Copyright 2011 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.testing;

import com.google.gwt.core.ext.GeneratorContext;
import com.google.gwt.core.ext.TreeLogger;
import com.google.gwt.core.ext.UnableToCompleteException;
import com.google.gwt.dev.CompilerContext;
import com.google.gwt.dev.javac.CompilationState;
import com.google.gwt.dev.javac.CompilationStateBuilder;
import com.google.gwt.dev.javac.StandardGeneratorContext;
import com.google.gwt.dev.javac.testing.impl.JavaResourceBase;
import com.google.gwt.dev.javac.testing.impl.MockResource;
import com.google.gwt.dev.resource.Resource;
import com.google.gwt.dev.util.collect.HashSet;
import com.google.gwt.dev.util.log.PrintWriterTreeLogger;

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Set;

/**
 * Builder creating a new generator context for testing purposes, based on the
 * sources provided.
 */
public class GeneratorContextBuilder {

  /**
   * Creates a new {@link GeneratorContextBuilder} that is pre-populated with a
   * number of basic types provided by
   * {@link JavaResourceBase#getStandardResources()}.
   *
   * @return pre-populated context builder
   */
  public static GeneratorContextBuilder newCoreBasedBuilder() {
    Set resources = new HashSet();
    resources.addAll(Arrays.asList(JavaResourceBase.getStandardResources()));
    return new GeneratorContextBuilder(resources);
  }

  /**
   * Creates a new empty {@link GeneratorContextBuilder}. Note that this
   * builder does not contain any base java types.
   *
   * @return empty context builder
   */
  public static GeneratorContextBuilder newEmptyBuilder() {
    return new GeneratorContextBuilder(new HashSet());
  }

  private final CompilerContext compilerContext;
  private final Set resources;
  private TreeLogger treeLogger;

  private GeneratorContextBuilder(Set resources) {
    this.resources = resources;
    this.compilerContext = new CompilerContext();
  }

  /**
   * Adds the provided source to this builder, it will be included in any
   * subsequently built generator context.
   *
   * @param source source to be added
   */
  public GeneratorContextBuilder add(Source source) {
    resources.add(new StubResource(source));
    return this;
  }

  /**
   * Returns a newly created {@link GeneratorContext} based on the sources
   * added to this builder.
   */
  public GeneratorContext buildGeneratorContext() {
    // TODO: Add ability to add property values later and add them to this
    // context.
    try {
      return new StandardGeneratorContext(compilerContext, buildCompilationState(), null, false);
    } catch (UnableToCompleteException e) {
      // TODO: change signature and fix callers (looks like it's just tests)
      throw new RuntimeException(e);
    }
  }

  /**
   * Sets a custom logger on for this generator context.
   * 

* If no custom logger is set, errors will be printed to {@code System.err}. */ public void setTreeLogger(TreeLogger treeLogger) { this.treeLogger = treeLogger; } private CompilationState buildCompilationState() throws UnableToCompleteException { TreeLogger logger = treeLogger != null ? treeLogger : createLogger(); return new CompilationStateBuilder().doBuildFrom(logger, compilerContext, resources, null); } private TreeLogger createLogger() { PrintWriterTreeLogger logger = new PrintWriterTreeLogger(new PrintWriter( System.err, true)); logger.setMaxDetail(TreeLogger.ERROR); return logger; } private static class StubResource extends MockResource { private final Source source; public StubResource(Source source) { super(source.getPath()); this.source = source; } @Override public CharSequence getContent() { return source.getSource(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy