# 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. # This is a quick and dirty rule to make Bazel compile itself. It # only supports Java. jar_filetype = FileType([".jar"]) proto_filetype = FileType([".proto"]) def java_compile_command(ctx, classdir, classpath, output): java = ctx.file._java.path langtools = ctx.file._java_langtools.path javabuilder = ctx.file._javabuilder.path return ("%s -Xbootclasspath/p:%s -jar %s " % (java, langtools, javabuilder) + "--classdir %s --classpath %s " % (classdir, classpath) + "--output %s " % (output) + "--javacopts -source 1.8 -target 1.8 --compress_jar --sources ${JAVA_FILES}") def genproto_impl(ctx): src = ctx.file.src proto_compiler = ctx.file._proto_compiler proto_dep = ctx.file._proto_dep class_jar = ctx.outputs.java proto_output = class_jar.path + ".proto_output" build_output = class_jar.path + ".build_output" build_output = class_jar.path + ".build_output" inputs = [src, proto_dep, proto_compiler] proto_compiler_path = proto_compiler.path javapath = "tools/jdk/jdk/bin/" cmd = ("set -e;" + "rm -rf " + proto_output + ";" + "mkdir " + proto_output + ";" + "rm -rf " + build_output + ";" + "mkdir " + build_output + "\n" + proto_compiler_path + " --java_out=" + proto_output +" " + src.path + "\n" + "JAVA_FILES=$(find " + proto_output + " -name '*.java')\n" + java_compile_command(ctx, build_output, proto_dep.path, class_jar.path)) ctx.action( inputs = inputs, outputs = [class_jar], mnemonic = 'CompileProtos', command = cmd, use_default_shell_env = True) return struct(compile_time_jars = set([class_jar]), runtime_jars = set([class_jar, proto_dep], order="link")) genproto = rule(genproto_impl, # There should be a flag like gen_java, and only generate the jar if it's # set. Skylark needs a bit of improvement first (concat structs). attrs = { "src": attr.label(allow_files=proto_filetype, single_file=True), # TODO(bazel-team): this should be a hidden attribute with a default # value, but Skylark needs to support select first. "_proto_compiler": attr.label( default=Label("//third_party:protoc"), allow_files=True, single_file=True), "_proto_dep": attr.label( default=Label("//third_party:protobuf"), single_file=True, allow_files=jar_filetype, ), "_javabuilder": attr.label( default=Label("//tools/defaults:javabuilder"), single_file=True, ), "_java_langtools": attr.label( default=Label("//tools/defaults:java_langtools"), single_file=True, ), "_java": attr.label( default=Label("//tools/jdk:java"), single_file=True, ), }, outputs = {"java": "lib%{name}.jar"}, )