// 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.bazel.rules.python; import static com.google.devtools.build.lib.packages.Attribute.ConfigurationTransition.HOST; import static com.google.devtools.build.lib.packages.Attribute.attr; import static com.google.devtools.build.lib.packages.BuildType.LABEL; import static com.google.devtools.build.lib.packages.BuildType.LABEL_LIST; import static com.google.devtools.build.lib.packages.BuildType.TRISTATE; import static com.google.devtools.build.lib.syntax.Type.STRING; import com.google.devtools.build.lib.analysis.BaseRuleClasses; import com.google.devtools.build.lib.analysis.RuleDefinition; import com.google.devtools.build.lib.analysis.RuleDefinitionEnvironment; import com.google.devtools.build.lib.bazel.rules.cpp.BazelCppRuleClasses; import com.google.devtools.build.lib.packages.RuleClass; import com.google.devtools.build.lib.packages.RuleClass.Builder.RuleClassType; import com.google.devtools.build.lib.packages.TriState; import com.google.devtools.build.lib.rules.python.PyRuleClasses; import com.google.devtools.build.lib.rules.python.PythonVersion; import com.google.devtools.build.lib.util.FileType; /** * Bazel-specific rule definitions for Python rules. */ public final class BazelPyRuleClasses { public static final FileType PYTHON_SOURCE = FileType.of(".py"); public static final String[] ALLOWED_RULES_IN_DEPS = new String[] { "py_binary", "py_library", }; /** * Base class for Python rule definitions. */ public static final class PyBaseRule implements RuleDefinition { @Override public RuleClass build(RuleClass.Builder builder, RuleDefinitionEnvironment env) { return builder /* The list of other libraries to be linked in to the binary target. ${SYNOPSIS} See general comments about deps at Attributes common to all build rules. These can be py_binary rules, py_library rules or cc_library rules, */ .override(builder.copy("deps") .allowedRuleClasses(ALLOWED_RULES_IN_DEPS) .allowedFileTypes()) /* A string specifying the Python major version(s) that the .py source files listed in the srcs of this rule are compatible with. ${SYNOPSIS} Valid values are:
"PY2ONLY" - Python 2 code that is not suitable for 2to3 conversion.
"PY2" - Python 2 code that is expected to work when run through 2to3.
"PY2AND3" - Code that is compatible with both Python 2 and 3 without 2to3 conversion.
"PY3" - Python 3 code that will not run on Python 2.

*/ .add(attr("srcs_version", STRING) .value(PythonVersion.defaultValue().toString())) // do not depend on lib2to3:2to3 rule, because it creates circular dependencies // 2to3 is itself written in Python and depends on many libraries. .add(attr("$python2to3", LABEL).cfg(HOST).exec() .value(env.getLabel("//tools/python:2to3"))) .setPreferredDependencyPredicate(PyRuleClasses.PYTHON_SOURCE) .build(); } @Override public Metadata getMetadata() { return RuleDefinition.Metadata.builder() .name("$base_py") .type(RuleClassType.ABSTRACT) .ancestors(BaseRuleClasses.RuleBase.class) .build(); } } /** * Base class for Python rule definitions that produce binaries. */ public static final class PyBinaryBaseRule implements RuleDefinition { @Override public RuleClass build(RuleClass.Builder builder, final RuleDefinitionEnvironment env) { return builder /* The list of files needed by this binary at runtime. ${SYNOPSIS} See general comments about data at Attributes common to all build rules. Also see the data argument of the py_library rule for details. */ /* The name of the source file that is the main entry point of the application. ${SYNOPSIS} This file must also be listed in srcs. If left unspecified, name is used instead (see above). If name does not match any filename in srcs, main must be specified. */ .add(attr("main", LABEL).allowedFileTypes(PYTHON_SOURCE)) /* A string specifying the default Python major version to use when building this binary and all of its deps. ${SYNOPSIS} Valid values are "PY2" (default) or "PY3". Python 3 support is experimental. */ .add(attr("default_python_version", STRING) .value(PythonVersion.defaultValue().toString()) .nonconfigurable("read by PythonUtils.getNewPythonVersion, which doesn't have access" + " to configuration keys")) /* The list of source files that are processed to create the target. ${SYNOPSIS} This includes all your checked-in code and any generated source files. The line between srcs and deps is loose. The .py files probably belong in srcs and library targets probably belong in deps, but don't worry about it too much. */ .add(attr("srcs", LABEL_LIST) .mandatory() .allowedFileTypes(PYTHON_SOURCE) .direct_compile_time_input() .allowedFileTypes(BazelPyRuleClasses.PYTHON_SOURCE)) /* Enable link stamping. ${SYNOPSIS} Whether to encode build information into the binary. Possible values: */ .add(attr("stamp", TRISTATE).value(TriState.AUTO)) .build(); } @Override public Metadata getMetadata() { return RuleDefinition.Metadata.builder() .name("$base_py_binary") .type(RuleClassType.ABSTRACT) .ancestors(PyBaseRule.class, BazelCppRuleClasses.CcLinkingRule.class) .build(); } } }