blob: 79ee8b195294147eb9ef5587709d0aeda228a517 [file] [log] [blame]
# Copyright 2018 The Bazel Authors. 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.
load("//kotlin/internal:compile.bzl", "compile")
load("//kotlin/internal:kt.bzl", "kt")
load("//kotlin/internal:utils.bzl", "utils")
def kt_jvm_import_impl(ctx):
jars = depset()
source_jars = depset()
runtime_jars = depset()
transitive_compile_time_jars = depset()
transitive_runtime_jars = depset()
if ctx.file.srcjar:
source_jars += [ctx.file.srcjar]
if hasattr(ctx.attr, "runtime_deps"):
for jar in ctx.attr.runtime_deps:
transitive_runtime_jars += jar[JavaInfo].transitive_runtime_jars
for jar in ctx.attr.jars:
if JavaInfo in jar:
jars += jar[JavaInfo].full_compile_jars
source_jars += jar[JavaInfo].transitive_source_jars
transitive_compile_time_jars += jar[JavaInfo].transitive_compile_time_jars
transitive_runtime_jars += jar[JavaInfo].transitive_runtime_jars
else:
for file in jar.files:
if file.basename.endswith("-sources.jar"):
source_jars += [file]
elif file.basename.endswith(".jar"):
jars += [file]
else:
fail("a jar pointing to a filegroup must either end with -sources.jar or .jar")
runtime_jars += jars
transitive_compile_time_jars += jars
transitive_runtime_jars += jars
java_info = java_common.create_provider(
use_ijar = False,
source_jars=source_jars,
compile_time_jars = jars,
runtime_jars= runtime_jars,
transitive_compile_time_jars=transitive_compile_time_jars,
transitive_runtime_jars=transitive_runtime_jars
)
# This is needed for intellij plugin, try to pair up jars with their sources so that the sources are mounted
# correctly.
source_tally = {}
for sj in source_jars.to_list():
if sj.basename.endswith("-sources.jar"):
source_tally[sj.basename.replace("-sources.jar", ".jar")] = sj
artifacts = []
for jar in jars.to_list():
if jar.basename in source_tally:
artifacts += [struct(class_jar=jar, source_jar=source_tally[jar.basename], ijar = None)]
else:
artifacts += [struct(class_jar=jar, ijar = None)]
kotlin_info=kt.info.KtInfo(outputs=struct(jars=artifacts))
default_info = DefaultInfo(files=depset(jars))
return struct(kt = kotlin_info, providers= [default_info, java_info, kotlin_info])
def kt_jvm_library_impl(ctx):
module_name=utils.derive_module_name(ctx)
return compile.make_providers(
ctx,
compile.compile_action(ctx, "kt_jvm_library", module_name),
module_name,
)
def kt_jvm_binary_impl(ctx):
module_name=utils.derive_module_name(ctx)
java_info = compile.compile_action(ctx, "kt_jvm_binary", module_name)
utils.actions.write_launcher(
ctx,
java_info.transitive_runtime_jars,
ctx.attr.main_class,
ctx.attr.jvm_flags
)
return compile.make_providers(
ctx,
java_info,
module_name,
depset(
order = "default",
transitive=[java_info.transitive_runtime_jars],
direct=[ctx.executable._java]
),
)
def kt_jvm_junit_test_impl(ctx):
module_name=utils.derive_module_name(ctx)
friend_paths=depset()
friends=getattr(ctx.attr, "friends", [])
if len(friends) > 1:
fail("only one friend is possible")
elif len(friends) == 1:
if friends[0][kt.info.KtInfo] == None:
fail("only kotlin dependencies can be friends")
else:
friend_paths += [j.path for j in friends[0][JavaInfo].compile_jars]
module_name = friends[0][kt.info.KtInfo].module_name
java_info = compile.compile_action(ctx, "kt_jvm_test", module_name,friend_paths)
transitive_runtime_jars = java_info.transitive_runtime_jars + ctx.files._bazel_test_runner
launcherJvmFlags = ["-ea", "-Dbazel.test_suite=%s"% ctx.attr.test_class]
utils.actions.write_launcher(
ctx,
transitive_runtime_jars,
main_class = ctx.attr.main_class,
jvm_flags = launcherJvmFlags + ctx.attr.jvm_flags,
)
return compile.make_providers(
ctx,
java_info,
module_name,
depset(
order = "default",
transitive=[transitive_runtime_jars],
direct=[ctx.executable._java]
),
)