aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/packages/Preprocessor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/packages/Preprocessor.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/packages/Preprocessor.java155
1 files changed, 155 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/packages/Preprocessor.java b/src/main/java/com/google/devtools/build/lib/packages/Preprocessor.java
new file mode 100644
index 0000000000..8eda1e9dec
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/packages/Preprocessor.java
@@ -0,0 +1,155 @@
+// Copyright 2014 Google Inc. All rights reserved.
+//
+// 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.devtools.build.lib.packages;
+
+import com.google.devtools.build.lib.events.EventHandler;
+import com.google.devtools.build.lib.packages.PackageFactory.Globber;
+import com.google.devtools.build.lib.syntax.Environment;
+import com.google.devtools.build.lib.syntax.ParserInputSource;
+import com.google.devtools.build.lib.vfs.Path;
+
+import java.io.IOException;
+import java.util.Set;
+
+import javax.annotation.Nullable;
+
+/** A Preprocessor is an interface to implement generic text-based preprocessing of BUILD files. */
+public interface Preprocessor {
+ /** Factory for {@link Preprocessor} instances. */
+ interface Factory {
+ /** Supplier for {@link Factory} instances. */
+ interface Supplier {
+ /**
+ * Returns a Preprocessor factory to use for getting Preprocessor instances.
+ *
+ * <p>The CachingPackageLocator is provided so the constructed preprocessors can look up
+ * other BUILD files.
+ */
+ Factory getFactory(CachingPackageLocator loc);
+
+ /** Supplier that always returns {@code NullFactory.INSTANCE}. */
+ static class NullSupplier implements Supplier {
+
+ public static final NullSupplier INSTANCE = new NullSupplier();
+
+ private NullSupplier() {
+ }
+
+ @Override
+ public Factory getFactory(CachingPackageLocator loc) {
+ return NullFactory.INSTANCE;
+ }
+ }
+ }
+
+ /**
+ * Returns whether this {@link Factory} is still suitable for providing {@link Preprocessor}s.
+ * If not, all previous preprocessing results should be assumed to be invalid and a new
+ * {@link Factory} should be created via {@link Supplier#getFactory}.
+ */
+ boolean isStillValid();
+
+ /**
+ * Returns a Preprocessor instance capable of preprocessing a BUILD file independently (e.g. it
+ * ought to be fine to call {@link #getPreprocessor} for each BUILD file).
+ */
+ @Nullable
+ Preprocessor getPreprocessor();
+
+ /** Factory that always returns {@code null} {@link Preprocessor}s. */
+ static class NullFactory implements Factory {
+ public static final NullFactory INSTANCE = new NullFactory();
+
+ private NullFactory() {
+ }
+
+ @Override
+ public boolean isStillValid() {
+ return true;
+ }
+
+ @Override
+ public Preprocessor getPreprocessor() {
+ return null;
+ }
+ }
+ }
+
+ /**
+ * A (result, success) tuple indicating the outcome of preprocessing.
+ */
+ static class Result {
+ public final ParserInputSource result;
+ public final boolean preprocessed;
+ public final boolean containsErrors;
+ public final boolean containsTransientErrors;
+
+ private Result(ParserInputSource result,
+ boolean preprocessed, boolean containsPersistentErrors, boolean containsTransientErrors) {
+ this.result = result;
+ this.preprocessed = preprocessed;
+ this.containsErrors = containsPersistentErrors || containsTransientErrors;
+ this.containsTransientErrors = containsTransientErrors;
+ }
+
+ /** Convenience factory for a {@link Result} wrapping non-preprocessed BUILD file contents. */
+ public static Result noPreprocessing(ParserInputSource buildFileSource) {
+ return new Result(buildFileSource, /*preprocessed=*/false, /*containsErrors=*/false,
+ /*containsTransientErrors=*/false);
+ }
+
+ /**
+ * Factory for a successful preprocessing result, meaning that the BUILD file was able to be
+ * read and has valid syntax and was preprocessed. But note that there may have been be errors
+ * during preprocessing.
+ */
+ public static Result success(ParserInputSource result, boolean containsErrors) {
+ return new Result(result, /*preprocessed=*/true, /*containsPersistentErrors=*/containsErrors,
+ /*containsTransientErrors=*/false);
+ }
+
+ public static Result invalidSyntax(Path buildFile) {
+ return new Result(ParserInputSource.create("", buildFile), /*preprocessed=*/true,
+ /*containsPersistentErrors=*/true, /*containsTransientErrors=*/false);
+ }
+
+ public static Result transientError(Path buildFile) {
+ return new Result(ParserInputSource.create("", buildFile), /*preprocessed=*/false,
+ /*containsPersistentErrors=*/false, /*containsTransientErrors=*/true);
+ }
+ }
+
+ /**
+ * Returns a Result resulting from applying Python preprocessing to the contents of "in". If
+ * errors happen, they must be reported both as an event on eventHandler and in the function
+ * return value.
+ *
+ * @param in the BUILD file to be preprocessed.
+ * @param packageName the BUILD file's package.
+ * @param globber a globber for evaluating globs.
+ * @param eventHandler a eventHandler on which to report warnings/errors.
+ * @param globalEnv the GLOBALS Python environment.
+ * @param ruleNames the set of names of all rules in the build language.
+ * @throws IOException if there was an I/O problem during preprocessing.
+ * @return a pair of the ParserInputSource and a map of subincludes seen during the evaluation
+ */
+ Result preprocess(
+ ParserInputSource in,
+ String packageName,
+ Globber globber,
+ EventHandler eventHandler,
+ Environment globalEnv,
+ Set<String> ruleNames)
+ throws IOException, InterruptedException;
+}