forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 4
/
generate-umbrella.py
206 lines (173 loc) · 6.32 KB
/
generate-umbrella.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
"""
Creates the Polkadot-SDK umbrella crate that re-exports all other crates.
This re-creates the `umbrella/` folder. Ensure that it does not contain any changes you want to keep.
Usage:
python3 generate-umbrella.py --sdk <path> --version <version>
Example:
python3 generate-umbrella.py --sdk .. --version 1.11.0
"""
import argparse
import os
import re
import toml
import shutil
from cargo_workspace import Workspace
"""
Crate names that should be excluded from the umbrella crate.
"""
def exclude(crate):
name = crate.name
if crate.metadata.get("polkadot-sdk.exclude-from-umbrella", False):
return True
# No fuzzers or examples:
if "example" in name or name.endswith("fuzzer"):
return True
# No runtime crates:
if name.endswith("-runtime"):
# Note: this is a bit hacky. We should use custom crate metadata instead.
return name != "sp-runtime" and name != "bp-runtime" and name != "frame-try-runtime"
return False
def main(path, version):
delete_umbrella(path)
workspace = Workspace.from_path(path)
print(f'Indexed {workspace}')
std_crates = [] # name -> path. use list for sorting
nostd_crates = []
for crate in workspace.crates:
if crate.name == 'polkadot-sdk':
continue
if not crate.publish:
print(f"Skipping {crate.name} as it is not published")
continue
lib_path = os.path.dirname(crate.abs_path)
manifest_path = os.path.join(lib_path, "Cargo.toml")
lib_path = os.path.join(lib_path, "src", "lib.rs")
path = os.path.dirname(crate.rel_path)
# Guess which crates support no_std. Proc-macro crates are always no_std:
with open(manifest_path, "r") as f:
manifest = toml.load(f)
if 'lib' in manifest and 'proc-macro' in manifest['lib']:
if manifest['lib']['proc-macro']:
nostd_crates.append((crate, path))
continue
# Crates without a lib.rs cannot be no_std
if not os.path.exists(lib_path):
print(f"Skipping {crate.name} as it does not have a 'src/lib.rs'")
continue
if exclude(crate):
print(f"Skipping {crate.name} as it is in the exclude list")
continue
# No search for a no_std attribute:
with open(lib_path, "r") as f:
content = f.read()
if "#![no_std]" in content or '#![cfg_attr(not(feature = "std"), no_std)]' in content:
nostd_crates.append((crate, path))
elif 'no_std' in content:
raise Exception(f"Found 'no_std' in {lib_path} without knowing how to handle it")
else:
std_crates.append((crate, path))
# Sort by name
std_crates.sort(key=lambda x: x[0].name)
nostd_crates.sort(key=lambda x: x[0].name)
all_crates = std_crates + nostd_crates
all_crates.sort(key=lambda x: x[0].name)
dependencies = {}
for (crate, path) in nostd_crates:
dependencies[crate.name] = {"path": f"../{path}", "default-features": False, "optional": True}
for (crate, path) in std_crates:
dependencies[crate.name] = {"path": f"../{path}", "default-features": False, "optional": True}
# The empty features are filled by Zepter
features = {
"default": [ "std" ],
"std": [],
"runtime-benchmarks": [],
"try-runtime": [],
"serde": [],
"experimental": [],
"with-tracing": [],
"runtime": list([f"{d.name}" for d, _ in nostd_crates]),
"node": ["std"] + list([f"{d.name}" for d, _ in std_crates]),
"tuples-96": [],
"riscv": [],
}
manifest = {
"package": {
"name": "polkadot-sdk",
"version": version,
"edition": { "workspace": True },
"authors": { "workspace": True },
"description": "Polkadot SDK umbrella crate.",
"license": "Apache-2.0",
"metadata": { "docs": { "rs": {
"features": ["runtime", "node"],
"targets": ["x86_64-unknown-linux-gnu"]
}}}
},
"dependencies": dependencies,
"features": features,
}
umbrella_dir = os.path.join(workspace.path, "umbrella")
manifest_path = os.path.join(umbrella_dir, "Cargo.toml")
lib_path = os.path.join(umbrella_dir, "src", "lib.rs")
# create all dir
os.makedirs(os.path.dirname(lib_path), exist_ok=True)
# Write the manifest
with open(manifest_path, "w") as f:
toml_manifest = toml.dumps(manifest)
f.write(toml_manifest)
print(f"Wrote {manifest_path}")
# and the lib.rs
with open(lib_path, "w") as f:
f.write('''// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: Apache-2.0
#![cfg_attr(not(feature = "std"), no_std)]
//! Polkadot SDK umbrella crate re-exporting all other published crates.
//!
//! This helps to set a single version number for all your dependencies. Docs are in the
//! `polkadot-sdk-docs` crate.
// This file is auto-generated and checked by the CI. You can edit it manually, but it must be
// exactly the way that the CI expects it.
''')
for crate, _ in all_crates:
use = crate.name.replace("-", "_")
desc = crate.description if crate.description.endswith(".") else crate.description + "."
f.write(f'\n/// {desc}')
f.write(f'\n#[cfg(feature = "{crate.name}")]\n')
f.write(f"pub use {use};\n")
print(f"Wrote {lib_path}")
add_to_workspace(workspace.path)
"""
Delete the umbrella folder and remove the umbrella crate from the workspace.
"""
def delete_umbrella(path):
umbrella_dir = os.path.join(path, "umbrella")
# remove the umbrella crate from the workspace
manifest = os.path.join(path, "Cargo.toml")
manifest = open(manifest, "r").read()
manifest = re.sub(r'\s+"umbrella",\n', "", manifest)
with open(os.path.join(path, "Cargo.toml"), "w") as f:
f.write(manifest)
if os.path.exists(umbrella_dir):
print(f"Deleting {umbrella_dir}")
shutil.rmtree(umbrella_dir)
"""
Create the umbrella crate and add it to the workspace.
"""
def add_to_workspace(path):
manifest = os.path.join(path, "Cargo.toml")
manifest = open(manifest, "r").read()
manifest = re.sub(r'^members = \[', 'members = [\n "umbrella",', manifest, flags=re.M)
with open(os.path.join(path, "Cargo.toml"), "w") as f:
f.write(manifest)
os.chdir(path) # hack
os.system("cargo metadata --format-version 1 > /dev/null") # update the lockfile
os.system(f"zepter") # enable the features
os.system(f"taplo format --config .config/taplo.toml Cargo.toml umbrella/Cargo.toml")
def parse_args():
parser = argparse.ArgumentParser(description="Create a polkadot-sdk crate")
parser.add_argument("--sdk", type=str, default="polkadot-sdk", help="Path to the polkadot-sdk crate")
parser.add_argument("--version", type=str, help="Version of the polkadot-sdk crate")
return parser.parse_args()
if __name__ == "__main__":
args = parse_args()
main(args.sdk, args.version)