-
Notifications
You must be signed in to change notification settings - Fork 54
/
RunCbindgen.py
76 lines (60 loc) · 2.46 KB
/
RunCbindgen.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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import print_function
import buildconfig
import mozpack.path as mozpath
import os
import subprocess
import pytoml
# Try to read the package name or otherwise assume same name as the crate path.
def _get_crate_name(crate_path):
try:
with open(mozpath.join(crate_path, "Cargo.toml")) as f:
return pytoml.load(f)["package"]["name"]
except Exception:
return mozpath.basename(crate_path)
CARGO_LOCK = mozpath.join(buildconfig.topsrcdir, "Cargo.lock")
def _generate(output, cbindgen_crate_path, metadata_crate_path,
in_tree_dependencies):
env = os.environ.copy()
env['CARGO'] = str(buildconfig.substs['CARGO'])
p = subprocess.Popen([
buildconfig.substs['CBINDGEN'],
metadata_crate_path,
"--lockfile",
CARGO_LOCK,
"--crate",
_get_crate_name(cbindgen_crate_path),
"--cpp-compat"
], env=env, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
if p.returncode != 0:
print(stdout)
print(stderr)
return p.returncode
output.write(stdout)
deps = set()
deps.add(CARGO_LOCK)
deps.add(mozpath.join(cbindgen_crate_path, "cbindgen.toml"))
for directory in in_tree_dependencies + (cbindgen_crate_path,):
for path, dirs, files in os.walk(directory):
for file in files:
if os.path.splitext(file)[1] == ".rs":
deps.add(mozpath.join(path, file))
return deps
def generate(output, cbindgen_crate_path, *in_tree_dependencies):
metadata_crate_path = mozpath.join(buildconfig.topsrcdir,
"toolkit", "library", "rust")
return _generate(output, cbindgen_crate_path, metadata_crate_path,
in_tree_dependencies)
# Use the binding's crate directory instead of toolkit/library/rust as
# the metadata crate directory.
#
# This is necessary for the bindings inside SpiderMonkey, given that
# SpiderMonkey tarball doesn't contain toolkit/library/rust and its
# dependencies.
def generate_with_same_crate(output, cbindgen_crate_path,
*in_tree_dependencies):
return _generate(output, cbindgen_crate_path, cbindgen_crate_path,
in_tree_dependencies)