-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrepository_rules.bzl
96 lines (84 loc) · 3.54 KB
/
repository_rules.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright 2020 Google LLC
#
# 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
#
# https://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.AGE.
# Read dependencies from pom.xml and make them available for importing in Bazel.
# This lets us to avoid dependencies list sync problem between Maven and Bazel.
def read_properties_from_pom_xml(props, parent_tags, property_tags):
props_as_map = {}
tag_index = 0
cur_dep_val = "::"
for prop in props:
p = prop.strip()
if len(p) <= 0 or p.startswith("<!--"):
continue
if tag_index < len(parent_tags) and ("<%s>" % parent_tags[tag_index]) == p:
tag_index += 1
if tag_index == len(parent_tags):
cur_dep_val = "::"
continue
elif tag_index > 0 and ("</%s>" % parent_tags[tag_index - 1]) == p:
if tag_index == len(parent_tags):
props_as_map[construct_property_key("maven.", cur_dep_val)] = cur_dep_val
tag_index -= 1
continue
if tag_index != len(parent_tags):
continue
cur_dep_val = read_property(p, cur_dep_val, property_tags)
return props_as_map
# Convert the the <dependencies></dependencies> block from pom.xml to a
# Starlark dictionary with the same information in it.
def _com_google_disco_to_proto3_converter_properties_impl(ctx):
props_path = ctx.path(ctx.attr.file)
result = ctx.execute(["cat", props_path])
if result.return_code != 0:
fail("Could not load dependencies from properties file, error_code %s" + str(result.return_code))
props = result.stdout.splitlines()
props_as_map = read_properties_from_pom_xml(
props,
["dependencies", "dependency"],
["groupId", "artifactId", "version"],
)
props_name = ctx.attr.file.name
dependencies_bzl = """
# DO NOT EDIT. This file was generated from {properties_file}.
PROPERTIES = {props_as_map}
""".format(
properties_file = props_name,
props_as_map = str(props_as_map),
)
ctx.file("BUILD.bazel", "")
ctx.file("%s.bzl" % props_name, dependencies_bzl)
com_google_disco_to_proto3_converter_properties = repository_rule(
implementation = _com_google_disco_to_proto3_converter_properties_impl,
attrs = {
"file": attr.label(),
},
local = True,
)
# Read 'val' from '<foo>val</foo>' and place it in the ith element of
# 'cur_prop_val', where 'i' is such that 'prop_names[i]=="foo".
def read_property(prop, cur_prop_val, prop_names):
for i in range(len(prop_names)):
prop_name = prop_names[i]
if prop.startswith("<%s>" % prop_name) and prop.endswith("</%s>" % prop_name):
pv = cur_prop_val.split(":")
pv[i] = prop[len(prop_name) + 2:len(prop) - (len(prop_name) + 3)].strip()
return ":".join(pv)
return cur_prop_val
# Replace the ':', '-', '.' characters with '_' to construct a proper dictionary
# key value.
def construct_property_key(prefix, dep_val):
key_suffix = dep_val[:dep_val.rfind(":")]
for ch in [":", "-", "."]:
key_suffix = key_suffix.replace(ch, "_")
return "%s%s" % (prefix, key_suffix)