forked from bazelbuild/bazel-central-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistry.py
437 lines (367 loc) · 13.4 KB
/
registry.py
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#!/usr/bin/env python3
#
# Copyright 2021 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.
# pylint: disable=missing-function-docstring
# pylint: disable=too-many-instance-attributes
# pylint: disable=unspecified-encoding
# pylint: disable=invalid-name
"""Tool classes to handle a Bazel registry"""
import base64
import difflib
import functools
import hashlib
import json
import netrc
import pathlib
import re
import shutil
import urllib.parse
import urllib.request
import yaml
GREEN = "\x1b[32m"
RESET = "\x1b[0m"
def log(msg):
print(f"{GREEN}INFO: {RESET}{msg}")
def download(url):
parts = urllib.parse.urlparse(url)
try:
authenticators = netrc.netrc().authenticators(parts.netloc)
except FileNotFoundError:
authenticators = None
if authenticators != None:
(login, _, password) = authenticators
req = urllib.request.Request(url)
creds = base64.b64encode(str.encode('%s:%s' % (login, password))).decode()
req.add_header("Authorization", "Basic %s" % creds)
else:
req = url
with urllib.request.urlopen(req) as response:
return response.read()
def download_file(url, file):
with open(file, "wb") as f:
f.write(download(url))
def read(path):
with open(path, "rb") as file:
return file.read()
def integrity(data):
hash_value = hashlib.sha256(data)
return "sha256-" + base64.b64encode(hash_value.digest()).decode()
def json_dump(file, data, sort_keys=True):
with open(file, "w") as f:
json.dump(data, f, indent=4, sort_keys=sort_keys)
f.write("\n")
# Translated from:
# https://github.com/bazelbuild/bazel/blob/79a53def2ebbd9358450f739ea37bf70662e8614/src/main/java/com/google/devtools/build/lib/bazel/bzlmod/Version.java#L58
@functools.total_ordering
class Version:
@functools.total_ordering
class Identifier:
def __init__(self, s):
if not s:
raise RegistryException("identifier is empty")
self.val = int(s) if s.isnumeric() else s
def __eq__(self, other):
if type(self.val) != type(other.val):
return False
return self.val == other.val
def __lt__(self, other):
if type(self.val) != type(other.val):
return type(self.val) == int
return self.val < other.val
@staticmethod
def convert_to_identifiers(s):
if s == None:
return None
return [Version.Identifier(i) for i in s.split(".")]
def __init__(self, version_str):
PATTERN = re.compile(r"^([a-zA-Z0-9.]+)(?:-([a-zA-Z0-9.-]+))?(?:\+[a-zA-Z0-9.-]+)?$")
m = PATTERN.match(version_str)
if not m:
raise RegistryException(f"`{version_str}` is not a valid version")
self.release = Version.convert_to_identifiers(m.groups()[0])
self.prerelease = Version.convert_to_identifiers(m.groups()[1])
def __eq__(self, other):
return (self.release, self.prerelease) == (other.release, other.prerelease)
def __lt__(self, other):
if self.release != other.release:
return self.release < other.release
if self.prerelease == None:
return False
if other.prerelease == None:
return True
return self.prerelease < other.prerelease
class Module:
"""A class to represent all information of a Bazel module."""
def __init__(self, name=None, version=None, compatibility_level=1):
self.name = name
self.version = version
self.compatibility_level = compatibility_level
self.module_dot_bazel = None
self.url = None
self.strip_prefix = None
self.deps = []
self.patches = []
self.patch_strip = 0
self.build_file = None
self.presubmit_yml = None
self.build_targets = []
self.test_module_path = None
self.test_module_build_targets = []
self.test_module_test_targets = []
def add_dep(self, module_name, version):
self.deps.append((module_name, version))
return self
def set_module_dot_bazel(self, module_dot_bazel):
self.module_dot_bazel = module_dot_bazel
return self
def set_source(self, url, strip_prefix=None):
self.url = url
self.strip_prefix = strip_prefix
return self
def add_patch(self, patch_file):
self.patches.append(patch_file)
return self
def set_patch_strip(self, patch_strip):
self.patch_strip = patch_strip
return self
def set_build_file(self, build_file):
self.build_file = build_file
return self
def set_presubmit_yml(self, presubmit_yml):
self.presubmit_yml = presubmit_yml
return self
def add_build_target(self, target):
if not target.startswith("@" + self.name):
target = "@" + self.name + target
self.build_targets.append(target)
return self
def add_test_module_build_target(self, target):
self.test_module_build_targets.append(target)
return self
def add_test_module_test_target(self, target):
self.test_module_test_targets.append(target)
return self
def dump(self, file):
json_dump(file, self.__dict__)
def from_json(self, file):
with open(file) as f:
self.__dict__ = json.load(f)
class RegistryException(Exception):
"""
Raised whenever something goes wrong with modifying the registry.
"""
class RegistryClient:
"""A class to help create a Bazel registry."""
_MODULE_BAZEL = """
module(
name = "{0}",
version = "{1}",
compatibility_level = {2},
)
""".strip()
def __init__(self, root):
self.root = pathlib.Path(root)
def get_all_modules(self):
modules_dir = self.root.joinpath("modules")
return [path.name for path in modules_dir.iterdir()]
def get_module_versions(self, module_name):
module_versions = []
metadata = self.get_metadata(module_name)
for version in metadata["versions"]:
module_versions.append((module_name, version))
return module_versions
def get_all_module_versions(self):
module_versions = []
for module_name in self.get_all_modules():
module_versions.extend(self.get_module_versions(module_name))
return module_versions
def get_metadata(self, module_name):
metadata_path = self.root.joinpath("modules", module_name,
"metadata.json")
return json.load(metadata_path.open())
def get_source(self, module_name, version):
source_path = self.root.joinpath("modules", module_name, version,
"source.json")
return json.load(source_path.open())
def get_source_path(self, module_name, version):
return self.root.joinpath("modules", module_name, version,
"source.json")
def get_presubmit_yml_path(self, module_name, version):
return self.root.joinpath("modules", module_name, version,
"presubmit.yml")
def get_patch_file_path(self, module_name, version, patch_name):
return self.root.joinpath("modules", module_name, version,
"patches", patch_name)
def get_module_dot_bazel_path(self, module_name, version):
return self.root.joinpath("modules", module_name, version,
"MODULE.bazel")
def contains(self, module_name, version=None):
"""
Check if the registry contains a module or a specific version of a
module by verifying if the directory exists.
"""
dir_path = self.root.joinpath("modules", module_name)
if version:
dir_path = dir_path.joinpath(version)
return dir_path.is_dir()
def init_module(self, module_name, maintainers, homepage, source_repository = ""):
"""
Initialize a module, create the directory and metadata.json file.
Parameters
----------
module_name : str
The module name
maintainers : list of maps of string -> string
The maintainer information, eg
[{"name": "John", "email": "[email protected]"},
{"name": "Yun", "github": "meteorcloudy"}]
homepage : str
A URL to the project's homepage
"""
p = self.root.joinpath("modules", module_name)
p.mkdir(parents=True, exist_ok=True)
# Create metadata.json file
metadata = {
"maintainers": maintainers,
"homepage": homepage,
"repository": [source_repository] if source_repository else [],
"versions": [],
"yanked_versions": {},
}
json_dump(p.joinpath("metadata.json"), metadata)
def add(self, module, override=False):
"""
Add a new module version, the module must be already initialized
Parameters
----------
module : Module
A Module instance containing information of the module version to
be added
override : Whether to override existing module
"""
# Check if the module version already exists
if self.contains(module.name, module.version):
if override:
log("Overriding module '%s' at version '%s'..." %
(module.name, module.version))
self.delete(module.name, module.version)
else:
raise RegistryException(
f"Version {module.version} for module {module.name} already exists.")
p = self.root.joinpath("modules", module.name, module.version)
p.mkdir()
# Create MODULE.bazel
module_dot_bazel = p.joinpath("MODULE.bazel")
if module.module_dot_bazel:
# TODO(pcloudy): Sanity check the given MODULE.bazel
# - module name and version should match the specified values
# - no override is used
shutil.copy(module.module_dot_bazel, module_dot_bazel)
else:
deps = "\n".join(
f"bazel_dep(name = \"{name}\", version = \"{version}\")"
for name, version in module.deps)
with module_dot_bazel.open("w") as f:
f.write(self._MODULE_BAZEL.format(
module.name, module.version,
module.compatibility_level))
if deps:
f.write("\n")
f.write(deps)
f.write("\n")
# Create source.json & copy patch files to the registry
source = {
"url": module.url,
"integrity": integrity(download(module.url)),
}
if module.strip_prefix:
source["strip_prefix"] = module.strip_prefix
patch_dir = p.joinpath("patches")
if module.patches or module.build_file:
patch_dir.mkdir()
source["patches"] = {}
source["patch_strip"] = module.patch_strip
if module.patches:
for s in module.patches:
patch = pathlib.Path(s)
source["patches"][patch.name] = integrity(read(patch))
shutil.copy(patch, patch_dir)
# Turn additional BUILD file into a patch
if module.build_file:
build_file_content = pathlib.Path(module.build_file).open().readlines()
build_file = "a/" * module.patch_strip + "BUILD.bazel"
patch_content = difflib.unified_diff(
[], build_file_content, "/dev/null", build_file)
patch_name = "add_build_file.patch"
patch = patch_dir.joinpath(patch_name)
with patch.open("w") as f:
f.writelines(patch_content)
source["patches"][patch_name] = integrity(read(patch))
json_dump(p.joinpath("source.json"), source, sort_keys=False)
# Create presubmit.yml file
presubmit_yml = p.joinpath("presubmit.yml")
if module.presubmit_yml:
shutil.copy(module.presubmit_yml, presubmit_yml)
else:
PLATFORMS = ["debian10", "ubuntu2004", "macos", "macos_arm64", "windows"]
presubmit = {
"matrix": {
"platform": PLATFORMS.copy(),
},
"tasks": {
"verify_targets": {
"name": "Verify build targets",
"platform": "${{ platform }}",
"build_targets": module.build_targets.copy()
}
}
}
if module.test_module_path:
task = {
"name": "Run test module",
"platform": "${{ platform }}",
}
if module.test_module_build_targets:
task["build_targets"] = module.test_module_build_targets.copy()
if module.test_module_test_targets:
task["test_targets"] = module.test_module_test_targets.copy()
presubmit["bcr_test_module"] = {
"module_path": module.test_module_path,
"matrix": {
"platform": PLATFORMS.copy(),
},
"tasks": {
"run_test_module": task
}
}
with presubmit_yml.open("w") as f:
yaml.dump(presubmit, f, sort_keys=False)
# Add new version to metadata.json
metadata_path = self.root.joinpath("modules", module.name,
"metadata.json")
metadata = json.load(metadata_path.open())
metadata["versions"].append(module.version)
metadata["versions"] = list(set(metadata["versions"]))
metadata["versions"].sort(key=Version)
json_dump(metadata_path, metadata)
def delete(self, module_name, version):
"""Delete an existing module version."""
p = self.root.joinpath("modules", module_name)
shutil.rmtree(p.joinpath(version))
metadata_path = p.joinpath("metadata.json")
metadata = json.load(metadata_path.open())
if version in metadata["versions"]:
metadata["versions"].remove(version)
json_dump(metadata_path, metadata)