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
|
#!/usr/bin/env python3
# Copyright 2022 Huawei Cloud Computing Technology Co., Ltd.
#
# 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.
import hashlib
import json
import os
import shutil
import subprocess
import sys
from typing import Any, Dict, List, Optional, cast
from argparse import ArgumentParser
# generic JSON type that avoids getter issues; proper use is being enforced by
# return types of methods and typing vars holding return values of json getter
Json = Dict[str, Any]
def log(*args: str, **kwargs: Any) -> None:
print(*args, file=sys.stderr, **kwargs)
def fail(s: str) -> None:
log(s)
sys.exit(1)
def git_hash(content: bytes) -> str:
header = "blob {}\0".format(len(content)).encode('utf-8')
h = hashlib.sha1()
h.update(header)
h.update(content)
return h.hexdigest()
def create_blobs(blobs: List[str], *, root: str) -> None:
os.makedirs(os.path.join(root, "KNOWN"))
for blob in blobs:
blob_bin = blob.encode('utf-8')
with open(os.path.join(root, "KNOWN", git_hash(blob_bin)), "wb") as f:
f.write(blob_bin)
def build_known(desc: Json, *, root: str) -> str:
return os.path.join(root, "KNOWN", desc["data"]["id"])
def link(src: str, dest: str) -> None:
dest = os.path.normpath(dest)
os.makedirs(os.path.dirname(dest), exist_ok=True)
try:
os.link(src, dest)
except:
os.symlink(src, dest)
def build_local(desc: Json, *, root: str, config: Json) -> Optional[str]:
repo_name = desc["data"]["repository"]
repo: List[str] = config["repositories"][repo_name]["workspace_root"]
rel_path = desc["data"]["path"]
if repo[0] == "file":
return os.path.join(repo[1], rel_path)
fail("Unsupported repository root %r" % (repo, ))
def build_tree(desc: Json, *, config: Json, root: str, graph: Json) -> str:
tree_id = desc["data"]["id"]
tree_dir = os.path.normpath(os.path.join(root, "TREE", tree_id))
if os.path.isdir(tree_dir):
return tree_dir
tree_dir_tmp = tree_dir + ".tmp"
tree_desc = graph["trees"][tree_id]
for location, desc in tree_desc.items():
link(cast(str, build(desc, config=config, root=root, graph=graph)),
os.path.join(tree_dir_tmp, location))
# correctly handle the empty tree
os.makedirs(tree_dir_tmp, exist_ok=True)
shutil.copytree(tree_dir_tmp, tree_dir)
return tree_dir
def run_action(action_id: str, *, config: Json, root: str, graph: Json) -> str:
action_dir = os.path.normpath(os.path.join(root, "ACTION", action_id))
if os.path.isdir(action_dir):
return action_dir
os.makedirs(action_dir)
action_desc = graph["actions"][action_id]
for location, desc in action_desc.get("input", {}).items():
link(cast(str, build(desc, config=config, root=root, graph=graph)),
os.path.join(action_dir, location))
cmd = action_desc["command"]
env = action_desc.get("env")
log("Running %r with env %r for action %r" % (cmd, env, action_id))
for out in action_desc["output"]:
os.makedirs(os.path.join(action_dir, os.path.dirname(out)),
exist_ok=True)
subprocess.run(cmd, env=env, cwd=action_dir, check=True)
return action_dir
def build_action(desc: Json, *, config: Json, root: str, graph: Json) -> str:
action_dir = run_action(desc["data"]["id"],
config=config,
root=root,
graph=graph)
return os.path.join(action_dir, desc["data"]["path"])
def build(desc: Json, *, config: Json, root: str, graph: Json) -> Optional[str]:
if desc["type"] == "TREE":
return build_tree(desc, config=config, root=root, graph=graph)
if desc["type"] == "ACTION":
return build_action(desc, config=config, root=root, graph=graph)
if desc["type"] == "KNOWN":
return build_known(desc, root=root)
if desc["type"] == "LOCAL":
return build_local(desc, root=root, config=config)
fail("Don't know how to build artifact %r" % (desc, ))
def traverse(*, graph: Json, to_build: Json, out: str, root: str,
config: Json) -> None:
os.makedirs(out, exist_ok=True)
os.makedirs(root, exist_ok=True)
create_blobs(graph["blobs"], root=root)
for location, artifact in to_build.items():
link(cast(str, build(artifact, config=config, root=root, graph=graph)),
os.path.join(out, location))
def main():
parser = ArgumentParser()
parser.add_argument("-C",
dest="repository_config",
help="Repository-description file to use",
metavar="FILE")
parser.add_argument("-o",
dest="output_directory",
help="Directory to place output to")
parser.add_argument("--local-build-root",
dest="local_build_root",
help="Root for storing intermediate outputs",
metavar="PATH")
parser.add_argument("--default-workspace",
dest="default_workspace",
help="Workspace root to use if none is specified",
metavar="PATH")
(options, args) = parser.parse_known_args()
if len(args) != 2:
fail("usage: %r <graph> <targets_to_build>" % (sys.argv[0], ))
with open(args[0]) as f:
graph = json.load(f)
with open(args[1]) as f:
to_build = json.load(f)
out = os.path.abspath(cast(str, options.output_directory or "out-boot"))
root = os.path.abspath(cast(str, options.local_build_root or ".just-boot"))
with open(options.repository_config or "repo-conf.json") as f:
config = json.load(f)
if options.default_workspace:
ws_root = os.path.abspath(options.default_workspace)
repos = config.get("repositories", {}).keys()
for repo in repos:
if not "workspace_root" in config["repositories"][repo]:
config["repositories"][repo]["workspace_root"] = [
"file", ws_root
]
traverse(graph=graph, to_build=to_build, out=out, root=root, config=config)
if __name__ == "__main__":
main()
|