blob: 37ecb959fb00466c085e8cd33f99e92e11e493b2 [file] [log] [blame]
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001#!/usr/bin/env python3
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08002#
3# Copyright (C) 2019 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16"""Call cargo -v, parse its output, and generate Android.bp.
17
18Usage: Run this script in a crate workspace root directory.
19The Cargo.toml file should work at least for the host platform.
20
21(1) Without other flags, "cargo2android.py --run"
22 calls cargo clean, calls cargo build -v, and generates Android.bp.
23 The cargo build only generates crates for the host,
24 without test crates.
25
26(2) To build crates for both host and device in Android.bp, use the
27 --device flag, for example:
28 cargo2android.py --run --device
29
Chih-Hung Hsiehe1b7bb62020-09-30 13:09:30 -070030 Note that cargo build is only called once with the default target
31 x86_64-unknown-linux-gnu.
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080032
33(3) To build default and test crates, for host and device, use both
34 --device and --tests flags:
35 cargo2android.py --run --device --tests
36
37 This is equivalent to using the --cargo flag to add extra builds:
38 cargo2android.py --run
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080039 --cargo "build --target x86_64-unknown-linux-gnu"
40 --cargo "build --tests --target x86_64-unknown-linux-gnu"
41
Chih-Hung Hsieh35ca4bc2020-07-10 16:49:51 -070042If there are rustc warning messages, this script will add
43a warning comment to the owner crate module in Android.bp.
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080044"""
45
46from __future__ import print_function
47
48import argparse
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -070049import glob
Joel Galenson0fbdafe2021-04-21 16:33:33 -070050import json
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080051import os
52import os.path
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -070053import platform
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080054import re
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -070055import shutil
Joel Galenson7e8247e2021-05-20 18:51:42 -070056import subprocess
Andrew Walbran80e90be2020-06-09 14:33:18 +010057import sys
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080058
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -070059# Some Rust packages include extra unwanted crates.
60# This set contains all such excluded crate names.
61EXCLUDED_CRATES = set(['protobuf_bin_gen_rust_do_not_use'])
62
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080063RENAME_MAP = {
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -070064 # This map includes all changes to the default rust module names
65 # to resolve name conflicts, avoid confusion, or work as plugin.
Jason Macnak051340d2021-09-04 11:04:26 -070066 'libash': 'libash_rust',
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080067 'libbacktrace': 'libbacktrace_rust',
Andrew Walbrane51f1042020-08-11 16:42:48 +010068 'libbase': 'libbase_rust',
Luke Huanga1371af2021-06-29 18:04:40 +080069 'libbase64': 'libbase64_rust',
Victor Hsieh21bea792020-12-04 10:59:16 -080070 'libfuse': 'libfuse_rust',
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080071 'libgcc': 'libgcc_rust',
72 'liblog': 'liblog_rust',
Chih-Hung Hsieh07119862020-07-24 15:34:06 -070073 'libminijail': 'libminijail_rust',
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080074 'libsync': 'libsync_rust',
75 'libx86_64': 'libx86_64_rust',
Jooyung Hana427c9b2021-07-16 08:53:14 +090076 'libxml': 'libxml_rust',
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -070077 'protoc_gen_rust': 'protoc-gen-rust',
78}
79
80RENAME_STEM_MAP = {
81 # This map includes all changes to the default rust module stem names,
82 # which is used for output files when different from the module name.
83 'protoc_gen_rust': 'protoc-gen-rust',
84}
85
86RENAME_DEFAULTS_MAP = {
87 # This map includes all changes to the default prefix of rust_default
88 # module names, to avoid conflict with existing Android modules.
89 'libc': 'rust_libc',
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080090}
91
92# Header added to all generated Android.bp files.
Joel Galenson56446742021-02-18 08:27:48 -080093ANDROID_BP_HEADER = (
94 '// This file is generated by cargo2android.py {args}.\n' +
95 '// Do not modify this file as changes will be overridden on upgrade.\n')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -080096
97CARGO_OUT = 'cargo.out' # Name of file to keep cargo build -v output.
98
Joel Galenson3f42f802021-04-07 12:42:17 -070099# This should be kept in sync with tools/external_updater/crates_updater.py.
100ERRORS_LINE = 'Errors in ' + CARGO_OUT + ':'
101
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800102TARGET_TMP = 'target.tmp' # Name of temporary output directory.
103
104# Message to be displayed when this script is called without the --run flag.
105DRY_RUN_NOTE = (
106 'Dry-run: This script uses ./' + TARGET_TMP + ' for output directory,\n' +
107 'runs cargo clean, runs cargo build -v, saves output to ./cargo.out,\n' +
108 'and writes to Android.bp in the current and subdirectories.\n\n' +
109 'To do do all of the above, use the --run flag.\n' +
110 'See --help for other flags, and more usage notes in this script.\n')
111
112# Cargo -v output of a call to rustc.
113RUSTC_PAT = re.compile('^ +Running `rustc (.*)`$')
114
115# Cargo -vv output of a call to rustc could be split into multiple lines.
116# Assume that the first line will contain some CARGO_* env definition.
117RUSTC_VV_PAT = re.compile('^ +Running `.*CARGO_.*=.*$')
118# The combined -vv output rustc command line pattern.
119RUSTC_VV_CMD_ARGS = re.compile('^ *Running `.*CARGO_.*=.* rustc (.*)`$')
120
121# Cargo -vv output of a "cc" or "ar" command; all in one line.
122CC_AR_VV_PAT = re.compile(r'^\[([^ ]*)[^\]]*\] running:? "(cc|ar)" (.*)$')
123# Some package, such as ring-0.13.5, has pattern '... running "cc"'.
124
125# Rustc output of file location path pattern for a warning message.
126WARNING_FILE_PAT = re.compile('^ *--> ([^:]*):[0-9]+')
127
Joel Galenson308f3522021-09-30 14:13:45 -0700128# Rust package name with suffix -d1.d2.d3(+.*)?.
129VERSION_SUFFIX_PAT = re.compile(r'^(.*)-[0-9]+\.[0-9]+\.[0-9]+(?:\+.*)?$')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800130
Matthew Maurer062709c2021-08-17 11:27:36 -0700131# Crate types corresponding to a C ABI library
132C_LIBRARY_CRATE_TYPES = ['staticlib', 'cdylib']
133# Crate types corresponding to a Rust ABI library
134RUST_LIBRARY_CRATE_TYPES = ['lib', 'rlib', 'dylib']
135# Crate types corresponding to a library
136LIBRARY_CRATE_TYPES = C_LIBRARY_CRATE_TYPES + RUST_LIBRARY_CRATE_TYPES
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800137
138def altered_name(name):
139 return RENAME_MAP[name] if (name in RENAME_MAP) else name
140
141
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700142def altered_stem(name):
143 return RENAME_STEM_MAP[name] if (name in RENAME_STEM_MAP) else name
144
145
146def altered_defaults(name):
147 return RENAME_DEFAULTS_MAP[name] if (name in RENAME_DEFAULTS_MAP) else name
148
149
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800150def is_build_crate_name(name):
151 # We added special prefix to build script crate names.
152 return name.startswith('build_script_')
153
154
155def is_dependent_file_path(path):
156 # Absolute or dependent '.../' paths are not main files of this crate.
157 return path.startswith('/') or path.startswith('.../')
158
159
160def get_module_name(crate): # to sort crates in a list
161 return crate.module_name
162
163
164def pkg2crate_name(s):
165 return s.replace('-', '_').replace('.', '_')
166
167
168def file_base_name(path):
169 return os.path.splitext(os.path.basename(path))[0]
170
171
172def test_base_name(path):
173 return pkg2crate_name(file_base_name(path))
174
175
176def unquote(s): # remove quotes around str
177 if s and len(s) > 1 and s[0] == '"' and s[-1] == '"':
178 return s[1:-1]
179 return s
180
181
182def remove_version_suffix(s): # remove -d1.d2.d3 suffix
183 if VERSION_SUFFIX_PAT.match(s):
184 return VERSION_SUFFIX_PAT.match(s).group(1)
185 return s
186
187
188def short_out_name(pkg, s): # replace /.../pkg-*/out/* with .../out/*
189 return re.sub('^/.*/' + pkg + '-[0-9a-f]*/out/', '.../out/', s)
190
191
192def escape_quotes(s): # replace '"' with '\\"'
193 return s.replace('"', '\\"')
194
195
196class Crate(object):
197 """Information of a Rust crate to collect/emit for an Android.bp module."""
198
199 def __init__(self, runner, outf_name):
200 # Remembered global runner and its members.
201 self.runner = runner
202 self.debug = runner.args.debug
203 self.cargo_dir = '' # directory of my Cargo.toml
204 self.outf_name = outf_name # path to Android.bp
205 self.outf = None # open file handle of outf_name during dump*
206 # Variants/results that could be merged from multiple rustc lines.
207 self.host_supported = False
208 self.device_supported = False
209 self.has_warning = False
210 # Android module properties derived from rustc parameters.
211 self.module_name = '' # unique in Android build system
212 self.module_type = '' # rust_{binary,library,test}[_host] etc.
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700213 self.defaults = '' # rust_defaults used by rust_test* modules
Chih-Hung Hsiehf7eff152020-07-16 15:36:22 -0700214 self.default_srcs = False # use 'srcs' defined in self.defaults
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800215 self.root_pkg = '' # parent package name of a sub/test packge, from -L
216 self.srcs = list() # main_src or merged multiple source files
217 self.stem = '' # real base name of output file
218 # Kept parsed status
219 self.errors = '' # all errors found during parsing
220 self.line_num = 1 # runner told input source line number
221 self.line = '' # original rustc command line parameters
222 # Parameters collected from rustc command line.
223 self.crate_name = '' # follows --crate-name
224 self.main_src = '' # follows crate_name parameter, shortened
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700225 self.crate_types = list() # follows --crate-type
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800226 self.cfgs = list() # follows --cfg, without feature= prefix
227 self.features = list() # follows --cfg, name in 'feature="..."'
228 self.codegens = list() # follows -C, some ignored
229 self.externs = list() # follows --extern
230 self.core_externs = list() # first part of self.externs elements
231 self.static_libs = list() # e.g. -l static=host_cpuid
232 self.shared_libs = list() # e.g. -l dylib=wayland-client, -l z
233 self.cap_lints = '' # follows --cap-lints
234 self.emit_list = '' # e.g., --emit=dep-info,metadata,link
235 self.edition = '2015' # rustc default, e.g., --edition=2018
236 self.target = '' # follows --target
Ivan Lozanocc660f12021-08-11 16:49:46 -0400237 self.cargo_env_compat = True
238 self.cargo_pkg_version = '' # value extracted from Cargo.toml version field
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800239
240 def write(self, s):
241 # convenient way to output one line at a time with EOL.
242 self.outf.write(s + '\n')
243
244 def same_flags(self, other):
245 # host_supported, device_supported, has_warning are not compared but merged
246 # target is not compared, to merge different target/host modules
247 # externs is not compared; only core_externs is compared
248 return (not self.errors and not other.errors and
249 self.edition == other.edition and
250 self.cap_lints == other.cap_lints and
251 self.emit_list == other.emit_list and
252 self.core_externs == other.core_externs and
253 self.codegens == other.codegens and
254 self.features == other.features and
255 self.static_libs == other.static_libs and
256 self.shared_libs == other.shared_libs and self.cfgs == other.cfgs)
257
258 def merge_host_device(self, other):
259 """Returns true if attributes are the same except host/device support."""
260 return (self.crate_name == other.crate_name and
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700261 self.crate_types == other.crate_types and
262 self.main_src == other.main_src and
263 # before merge, each test module has an unique module name and stem
264 (self.stem == other.stem or self.crate_types == ['test']) and
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800265 self.root_pkg == other.root_pkg and not self.skip_crate() and
266 self.same_flags(other))
267
268 def merge_test(self, other):
269 """Returns true if self and other are tests of same root_pkg."""
270 # Before merger, each test has its own crate_name.
271 # A merged test uses its source file base name as output file name,
272 # so a test is mergeable only if its base name equals to its crate name.
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700273 return (self.crate_types == other.crate_types and
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -0700274 self.crate_types == ['test'] and self.root_pkg == other.root_pkg and
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800275 not self.skip_crate() and
276 other.crate_name == test_base_name(other.main_src) and
277 (len(self.srcs) > 1 or
278 (self.crate_name == test_base_name(self.main_src)) and
279 self.host_supported == other.host_supported and
280 self.device_supported == other.device_supported) and
281 self.same_flags(other))
282
283 def merge(self, other, outf_name):
284 """Try to merge crate into self."""
Chih-Hung Hsiehe1b7bb62020-09-30 13:09:30 -0700285 # Cargo build --tests could recompile a library for tests.
286 # We need to merge such duplicated calls to rustc, with
287 # the algorithm in merge_host_device.
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800288 should_merge_host_device = self.merge_host_device(other)
289 should_merge_test = False
290 if not should_merge_host_device:
291 should_merge_test = self.merge_test(other)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800292 if should_merge_host_device or should_merge_test:
293 self.runner.init_bp_file(outf_name)
294 with open(outf_name, 'a') as outf: # to write debug info
295 self.outf = outf
296 other.outf = outf
297 self.do_merge(other, should_merge_test)
298 return True
299 return False
300
301 def do_merge(self, other, should_merge_test):
302 """Merge attributes of other to self."""
303 if self.debug:
304 self.write('\n// Before merge definition (1):')
305 self.dump_debug_info()
306 self.write('\n// Before merge definition (2):')
307 other.dump_debug_info()
308 # Merge properties of other to self.
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800309 self.has_warning = self.has_warning or other.has_warning
310 if not self.target: # okay to keep only the first target triple
311 self.target = other.target
312 # decide_module_type sets up default self.stem,
313 # which can be changed if self is a merged test module.
314 self.decide_module_type()
315 if should_merge_test:
Joel Galenson57fa23a2021-07-15 10:47:35 -0700316 if (self.main_src in self.runner.args.test_blocklist and
317 not other.main_src in self.runner.args.test_blocklist):
318 self.main_src = other.main_src
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800319 self.srcs.append(other.main_src)
320 # use a short unique name as the merged module name.
321 prefix = self.root_pkg + '_tests'
322 self.module_name = self.runner.claim_module_name(prefix, self, 0)
323 self.stem = self.module_name
324 # This normalized root_pkg name although might be the same
325 # as other module's crate_name, it is not actually used for
326 # output file name. A merged test module always have multiple
327 # source files and each source file base name is used as
328 # its output file name.
329 self.crate_name = pkg2crate_name(self.root_pkg)
330 if self.debug:
331 self.write('\n// After merge definition (1):')
332 self.dump_debug_info()
333
334 def find_cargo_dir(self):
335 """Deepest directory with Cargo.toml and contains the main_src."""
336 if not is_dependent_file_path(self.main_src):
337 dir_name = os.path.dirname(self.main_src)
338 while dir_name:
339 if os.path.exists(dir_name + '/Cargo.toml'):
340 self.cargo_dir = dir_name
341 return
342 dir_name = os.path.dirname(dir_name)
343
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700344 def add_codegens_flag(self, flag):
Chih-Hung Hsiehe1b7bb62020-09-30 13:09:30 -0700345 """Ignore options not used in Android."""
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700346 # 'prefer-dynamic' does not work with common flag -C lto
Chih-Hung Hsieh63459ed2020-08-26 11:51:15 -0700347 # 'embed-bitcode' is ignored; we might control LTO with other .bp flag
Chih-Hung Hsieh6c13b722020-09-11 21:24:03 -0700348 # 'codegen-units' is set in Android global config or by default
349 if not (flag.startswith('codegen-units=') or
350 flag.startswith('debuginfo=') or
Chih-Hung Hsieh63459ed2020-08-26 11:51:15 -0700351 flag.startswith('embed-bitcode=') or
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700352 flag.startswith('extra-filename=') or
353 flag.startswith('incremental=') or
354 flag.startswith('metadata=') or
355 flag == 'prefer-dynamic'):
356 self.codegens.append(flag)
357
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800358 def parse(self, line_num, line):
359 """Find important rustc arguments to convert to Android.bp properties."""
360 self.line_num = line_num
361 self.line = line
362 args = line.split() # Loop through every argument of rustc.
363 i = 0
364 while i < len(args):
365 arg = args[i]
366 if arg == '--crate-name':
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700367 i += 1
368 self.crate_name = args[i]
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800369 elif arg == '--crate-type':
370 i += 1
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700371 # cargo calls rustc with multiple --crate-type flags.
372 # rustc can accept:
373 # --crate-type [bin|lib|rlib|dylib|cdylib|staticlib|proc-macro]
374 self.crate_types.append(args[i])
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800375 elif arg == '--test':
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700376 self.crate_types.append('test')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800377 elif arg == '--target':
378 i += 1
379 self.target = args[i]
380 elif arg == '--cfg':
381 i += 1
382 if args[i].startswith('\'feature='):
383 self.features.append(unquote(args[i].replace('\'feature=', '')[:-1]))
384 else:
385 self.cfgs.append(args[i])
386 elif arg == '--extern':
387 i += 1
388 extern_names = re.sub('=/[^ ]*/deps/', ' = ', args[i])
389 self.externs.append(extern_names)
390 self.core_externs.append(re.sub(' = .*', '', extern_names))
391 elif arg == '-C': # codegen options
392 i += 1
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700393 self.add_codegens_flag(args[i])
394 elif arg.startswith('-C'):
395 # cargo has been passing "-C <xyz>" flag to rustc,
396 # but newer cargo could pass '-Cembed-bitcode=no' to rustc.
397 self.add_codegens_flag(arg[2:])
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800398 elif arg == '--cap-lints':
399 i += 1
400 self.cap_lints = args[i]
401 elif arg == '-L':
402 i += 1
403 if args[i].startswith('dependency=') and args[i].endswith('/deps'):
404 if '/' + TARGET_TMP + '/' in args[i]:
405 self.root_pkg = re.sub(
406 '^.*/', '', re.sub('/' + TARGET_TMP + '/.*/deps$', '', args[i]))
407 else:
408 self.root_pkg = re.sub('^.*/', '',
409 re.sub('/[^/]+/[^/]+/deps$', '', args[i]))
410 self.root_pkg = remove_version_suffix(self.root_pkg)
411 elif arg == '-l':
412 i += 1
413 if args[i].startswith('static='):
414 self.static_libs.append(re.sub('static=', '', args[i]))
415 elif args[i].startswith('dylib='):
416 self.shared_libs.append(re.sub('dylib=', '', args[i]))
417 else:
418 self.shared_libs.append(args[i])
419 elif arg == '--out-dir' or arg == '--color': # ignored
420 i += 1
421 elif arg.startswith('--error-format=') or arg.startswith('--json='):
422 _ = arg # ignored
423 elif arg.startswith('--emit='):
424 self.emit_list = arg.replace('--emit=', '')
425 elif arg.startswith('--edition='):
426 self.edition = arg.replace('--edition=', '')
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700427 elif not arg.startswith('-'):
428 # shorten imported crate main source paths like $HOME/.cargo/
429 # registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/lib.rs
430 self.main_src = re.sub(r'^/[^ ]*/registry/src/', '.../', args[i])
431 self.main_src = re.sub(r'^\.\.\./github.com-[0-9a-f]*/', '.../',
432 self.main_src)
433 self.find_cargo_dir()
Chih-Hung Hsieh07119862020-07-24 15:34:06 -0700434 if self.cargo_dir: # for a subdirectory
435 if self.runner.args.no_subdir: # all .bp content to /dev/null
436 self.outf_name = '/dev/null'
437 elif not self.runner.args.onefile:
438 # Write to Android.bp in the subdirectory with Cargo.toml.
439 self.outf_name = self.cargo_dir + '/Android.bp'
440 self.main_src = self.main_src[len(self.cargo_dir) + 1:]
Ivan Lozanocc660f12021-08-11 16:49:46 -0400441
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800442 else:
443 self.errors += 'ERROR: unknown ' + arg + '\n'
444 i += 1
445 if not self.crate_name:
446 self.errors += 'ERROR: missing --crate-name\n'
447 if not self.main_src:
448 self.errors += 'ERROR: missing main source file\n'
449 else:
450 self.srcs.append(self.main_src)
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700451 if not self.crate_types:
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800452 # Treat "--cfg test" as "--test"
453 if 'test' in self.cfgs:
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700454 self.crate_types.append('test')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800455 else:
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700456 self.errors += 'ERROR: missing --crate-type or --test\n'
457 elif len(self.crate_types) > 1:
458 if 'test' in self.crate_types:
459 self.errors += 'ERROR: cannot handle both --crate-type and --test\n'
460 if 'lib' in self.crate_types and 'rlib' in self.crate_types:
461 self.errors += 'ERROR: cannot generate both lib and rlib crate types\n'
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800462 if not self.root_pkg:
463 self.root_pkg = self.crate_name
Ivan Lozano26aa1c32021-08-16 11:20:32 -0400464
465 # get the package version from running cargo metadata
Joel Galenson69ba8072021-08-16 11:31:29 -0700466 if not self.runner.args.no_pkg_vers and not self.skip_crate():
Ivan Lozano26aa1c32021-08-16 11:20:32 -0400467 self.get_pkg_version()
468
Chih-Hung Hsiehe1b7bb62020-09-30 13:09:30 -0700469 self.device_supported = self.runner.args.device
470 self.host_supported = not self.runner.args.no_host
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800471 self.cfgs = sorted(set(self.cfgs))
472 self.features = sorted(set(self.features))
473 self.codegens = sorted(set(self.codegens))
474 self.externs = sorted(set(self.externs))
475 self.core_externs = sorted(set(self.core_externs))
476 self.static_libs = sorted(set(self.static_libs))
477 self.shared_libs = sorted(set(self.shared_libs))
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700478 self.crate_types = sorted(set(self.crate_types))
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800479 self.decide_module_type()
480 self.module_name = altered_name(self.stem)
481 return self
482
Ivan Lozano26aa1c32021-08-16 11:20:32 -0400483 def get_pkg_version(self):
484 """Attempt to retrieve the package version from the Cargo.toml
485
486 If there is only one package, use its version. Otherwise, try to
487 match the emitted `--crate_name` arg against the package name.
488
489 This may fail in cases where multiple packages are defined (workspaces)
490 and where the package name does not match the emitted crate_name
491 (e.g. [lib.name] is set).
492 """
Joel Galenson69ba8072021-08-16 11:31:29 -0700493 cargo_metadata = subprocess.run([self.runner.cargo_path, 'metadata', '--no-deps',
494 '--format-version', '1'],
Joel Galensonc5186502021-08-16 11:22:47 -0700495 cwd=os.path.abspath(self.cargo_dir),
496 stdout=subprocess.PIPE)
Ivan Lozano26aa1c32021-08-16 11:20:32 -0400497 if cargo_metadata.returncode:
498 self.errors += ('ERROR: unable to get cargo metadata for package version; ' +
499 'return code ' + cargo_metadata.returncode + '\n')
500 else:
501 metadata_json = json.loads(cargo_metadata.stdout)
502 if len(metadata_json['packages']) > 1:
503 for package in metadata_json['packages']:
504 # package names may contain '-', but is changed to '_' in the crate_name
505 if package['name'].replace('-','_') == self.crate_name:
506 self.cargo_pkg_version = package['version']
507 break
508 else:
509 self.cargo_pkg_version = metadata_json['packages'][0]['version']
510
511 if not self.cargo_pkg_version:
512 self.errors += ('ERROR: Unable to retrieve package version; ' +
513 'to disable, run with arg "--no-pkg-vers"\n')
514
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800515 def dump_line(self):
516 self.write('\n// Line ' + str(self.line_num) + ' ' + self.line)
517
518 def feature_list(self):
519 """Return a string of main_src + "feature_list"."""
520 pkg = self.main_src
521 if pkg.startswith('.../'): # keep only the main package name
522 pkg = re.sub('/.*', '', pkg[4:])
Chih-Hung Hsieh07119862020-07-24 15:34:06 -0700523 elif pkg.startswith('/'): # use relative path for a local package
524 pkg = os.path.relpath(pkg)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800525 if not self.features:
526 return pkg
527 return pkg + ' "' + ','.join(self.features) + '"'
528
529 def dump_skip_crate(self, kind):
530 if self.debug:
531 self.write('\n// IGNORED: ' + kind + ' ' + self.main_src)
532 return self
533
534 def skip_crate(self):
535 """Return crate_name or a message if this crate should be skipped."""
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -0700536 if (is_build_crate_name(self.crate_name) or
537 self.crate_name in EXCLUDED_CRATES):
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800538 return self.crate_name
539 if is_dependent_file_path(self.main_src):
540 return 'dependent crate'
541 return ''
542
543 def dump(self):
544 """Dump all error/debug/module code to the output .bp file."""
545 self.runner.init_bp_file(self.outf_name)
546 with open(self.outf_name, 'a') as outf:
547 self.outf = outf
548 if self.errors:
549 self.dump_line()
550 self.write(self.errors)
551 elif self.skip_crate():
552 self.dump_skip_crate(self.skip_crate())
553 else:
554 if self.debug:
555 self.dump_debug_info()
556 self.dump_android_module()
557
558 def dump_debug_info(self):
559 """Dump parsed data, when cargo2android is called with --debug."""
560
561 def dump(name, value):
562 self.write('//%12s = %s' % (name, value))
563
564 def opt_dump(name, value):
565 if value:
566 dump(name, value)
567
568 def dump_list(fmt, values):
569 for v in values:
570 self.write(fmt % v)
571
572 self.dump_line()
573 dump('module_name', self.module_name)
574 dump('crate_name', self.crate_name)
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700575 dump('crate_types', self.crate_types)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800576 dump('main_src', self.main_src)
577 dump('has_warning', self.has_warning)
578 dump('for_host', self.host_supported)
579 dump('for_device', self.device_supported)
580 dump('module_type', self.module_type)
581 opt_dump('target', self.target)
582 opt_dump('edition', self.edition)
583 opt_dump('emit_list', self.emit_list)
584 opt_dump('cap_lints', self.cap_lints)
585 dump_list('// cfg = %s', self.cfgs)
586 dump_list('// cfg = \'feature "%s"\'', self.features)
587 # TODO(chh): escape quotes in self.features, but not in other dump_list
588 dump_list('// codegen = %s', self.codegens)
589 dump_list('// externs = %s', self.externs)
590 dump_list('// -l static = %s', self.static_libs)
591 dump_list('// -l (dylib) = %s', self.shared_libs)
592
593 def dump_android_module(self):
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700594 """Dump one or more Android module definition, depending on crate_types."""
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700595 if len(self.crate_types) == 1:
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700596 self.dump_single_type_android_module()
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700597 return
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700598 if 'test' in self.crate_types:
599 self.write('\nERROR: multiple crate types cannot include test type')
600 return
601 # Dump one Android module per crate_type.
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700602 for crate_type in self.crate_types:
603 self.decide_one_module_type(crate_type)
604 self.dump_one_android_module(crate_type)
605
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -0700606 def build_default_name(self):
607 """Return a short and readable name for the rust_defaults module."""
Joel Galensond37d7e62021-07-13 09:03:01 -0700608 # Choices: (1) root_pkg + '_test'? + '_defaults',
609 # (2) root_pkg + '_test'? + '_defaults_' + crate_name
610 # (3) root_pkg + '_test'? + '_defaults_' + main_src_basename_path
611 # (4) root_pkg + '_test'? + '_defaults_' + a_positive_sequence_number
612 test = "_test" if self.crate_types == ['test'] else ""
613 name1 = altered_defaults(self.root_pkg) + test + '_defaults'
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -0700614 if self.runner.try_claim_module_name(name1, self):
615 return name1
616 name2 = name1 + '_' + self.crate_name
617 if self.runner.try_claim_module_name(name2, self):
618 return name2
619 name3 = name1 + '_' + self.main_src_basename_path()
620 if self.runner.try_claim_module_name(name3, self):
621 return name3
622 return self.runner.claim_module_name(name1, self, 0)
623
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -0700624 def dump_srcs_list(self):
625 """Dump the srcs list, for defaults or regular modules."""
626 if len(self.srcs) > 1:
627 srcs = sorted(set(self.srcs)) # make a copy and dedup
628 else:
629 srcs = [self.main_src]
630 copy_out = self.runner.copy_out_module_name()
631 if copy_out:
632 srcs.append(':' + copy_out)
633 self.dump_android_property_list('srcs', '"%s"', srcs)
634
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700635 def dump_defaults_module(self):
636 """Dump a rust_defaults module to be shared by other modules."""
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -0700637 name = self.build_default_name()
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700638 self.defaults = name
639 self.write('\nrust_defaults {')
640 self.write(' name: "' + name + '",')
Chih-Hung Hsieh07119862020-07-24 15:34:06 -0700641 if self.runner.args.global_defaults:
642 self.write(' defaults: ["' + self.runner.args.global_defaults + '"],')
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700643 self.write(' crate_name: "' + self.crate_name + '",')
Chih-Hung Hsiehf7eff152020-07-16 15:36:22 -0700644 if len(self.srcs) == 1: # only one source file; share it in defaults
645 self.default_srcs = True
646 if self.has_warning and not self.cap_lints:
647 self.write(' // has rustc warnings')
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -0700648 self.dump_srcs_list()
Joel Galensonb06c42a2021-08-31 14:28:48 -0700649 if self.cargo_env_compat:
650 self.write(' cargo_env_compat: true,')
651 self.write(' cargo_pkg_version: "' + self.cargo_pkg_version + '",')
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700652 if 'test' in self.crate_types:
653 self.write(' test_suites: ["general-tests"],')
654 self.write(' auto_gen_config: true,')
655 self.dump_edition_flags_libs()
Joel Galensone4f53882021-07-19 11:14:55 -0700656 if 'test' in self.crate_types and len(self.srcs) == 1:
657 self.dump_test_data()
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700658 self.write('}')
659
660 def dump_single_type_android_module(self):
661 """Dump one simple Android module, which has only one crate_type."""
662 crate_type = self.crate_types[0]
663 if crate_type != 'test':
664 # do not change self.stem or self.module_name
665 self.dump_one_android_module(crate_type)
666 return
667 # Dump one test module per source file, and separate host and device tests.
668 # crate_type == 'test'
Joel Galensonf6b3c912021-06-03 16:00:54 -0700669 self.srcs = [src for src in self.srcs if not src in self.runner.args.test_blocklist]
670 if ((self.host_supported and self.device_supported and len(self.srcs) > 0) or
671 len(self.srcs) > 1):
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700672 self.srcs = sorted(set(self.srcs))
673 self.dump_defaults_module()
674 saved_srcs = self.srcs
675 for src in saved_srcs:
676 self.srcs = [src]
677 saved_device_supported = self.device_supported
678 saved_host_supported = self.host_supported
679 saved_main_src = self.main_src
680 self.main_src = src
681 if saved_host_supported:
682 self.device_supported = False
683 self.host_supported = True
684 self.module_name = self.test_module_name()
685 self.decide_one_module_type(crate_type)
686 self.dump_one_android_module(crate_type)
687 if saved_device_supported:
688 self.device_supported = True
689 self.host_supported = False
690 self.module_name = self.test_module_name()
691 self.decide_one_module_type(crate_type)
692 self.dump_one_android_module(crate_type)
693 self.host_supported = saved_host_supported
694 self.device_supported = saved_device_supported
695 self.main_src = saved_main_src
696 self.srcs = saved_srcs
697
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700698 def dump_one_android_module(self, crate_type):
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800699 """Dump one Android module definition."""
700 if not self.module_type:
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700701 self.write('\nERROR: unknown crate_type ' + crate_type)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800702 return
703 self.write('\n' + self.module_type + ' {')
704 self.dump_android_core_properties()
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700705 if not self.defaults:
706 self.dump_edition_flags_libs()
707 if self.runner.args.host_first_multilib and self.host_supported and crate_type != 'test':
708 self.write(' compile_multilib: "first",')
Matthew Maurer062709c2021-08-17 11:27:36 -0700709 if self.runner.args.exported_c_header_dir and crate_type in C_LIBRARY_CRATE_TYPES:
710 self.write(' include_dirs: [')
711 for header_dir in self.runner.args.exported_c_header_dir:
712 self.write(' "%s",' % header_dir)
713 self.write(' ],')
Matthew Maurer9e4b7812021-08-16 14:21:01 -0700714 if self.runner.args.apex_available and crate_type in LIBRARY_CRATE_TYPES:
Joel Galensond9c4de62021-04-23 10:26:40 -0700715 self.write(' apex_available: [')
716 for apex in self.runner.args.apex_available:
717 self.write(' "%s",' % apex)
718 self.write(' ],')
Matthew Maurer70182e42021-08-17 13:53:52 -0700719 if crate_type != 'test':
720 if self.runner.args.native_bridge_supported:
721 self.write(' native_bridge_supported: true,')
722 if self.runner.args.product_available:
723 self.write(' product_available: true,')
724 if self.runner.args.recovery_available:
725 self.write(' recovery_available: true,')
726 if self.runner.args.vendor_available:
727 self.write(' vendor_available: true,')
728 if self.runner.args.vendor_ramdisk_available:
729 self.write(' vendor_ramdisk_available: true,')
730 if self.runner.args.ramdisk_available:
731 self.write(' ramdisk_available: true,')
Matthew Maurer9e4b7812021-08-16 14:21:01 -0700732 if self.runner.args.min_sdk_version and crate_type in LIBRARY_CRATE_TYPES:
Joel Galensond9c4de62021-04-23 10:26:40 -0700733 self.write(' min_sdk_version: "%s",' % self.runner.args.min_sdk_version)
Joel Galensone4f53882021-07-19 11:14:55 -0700734 if crate_type == 'test' and not self.default_srcs:
735 self.dump_test_data()
Joel Galenson5664f2a2021-06-10 10:13:49 -0700736 if self.runner.args.add_module_block:
737 with open(self.runner.args.add_module_block, 'r') as f:
738 self.write(' %s,' % f.read().replace('\n', '\n '))
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700739 self.write('}')
740
741 def dump_android_flags(self):
742 """Dump Android module flags property."""
ThiƩbaud Weksteena5a728b2021-04-08 14:23:49 +0200743 if not self.codegens and not self.cap_lints:
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700744 return
745 self.write(' flags: [')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800746 if self.cap_lints:
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700747 self.write(' "--cap-lints ' + self.cap_lints + '",')
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700748 codegens_fmt = '"-C %s"'
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -0700749 self.dump_android_property_list_items(codegens_fmt, self.codegens)
750 self.write(' ],')
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700751
752 def dump_edition_flags_libs(self):
753 if self.edition:
754 self.write(' edition: "' + self.edition + '",')
755 self.dump_android_property_list('features', '"%s"', self.features)
Joel Galenson3d6d1e72021-06-07 15:00:24 -0700756 cfgs = [cfg for cfg in self.cfgs if not cfg in self.runner.args.cfg_blocklist]
757 self.dump_android_property_list('cfgs', '"%s"', cfgs)
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700758 self.dump_android_flags()
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800759 if self.externs:
760 self.dump_android_externs()
Joel Galenson12467e52021-07-12 14:33:28 -0700761 all_static_libs = [lib for lib in self.static_libs if not lib in self.runner.args.lib_blocklist]
762 static_libs = [lib for lib in all_static_libs if not lib in self.runner.args.whole_static_libs]
Joel Galensoncb5f2f02021-06-08 14:47:55 -0700763 self.dump_android_property_list('static_libs', '"lib%s"', static_libs)
Joel Galenson12467e52021-07-12 14:33:28 -0700764 whole_static_libs = [lib for lib in all_static_libs if lib in self.runner.args.whole_static_libs]
765 self.dump_android_property_list('whole_static_libs', '"lib%s"', whole_static_libs)
Joel Galensoncb5f2f02021-06-08 14:47:55 -0700766 shared_libs = [lib for lib in self.shared_libs if not lib in self.runner.args.lib_blocklist]
767 self.dump_android_property_list('shared_libs', '"lib%s"', shared_libs)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800768
Joel Galensone4f53882021-07-19 11:14:55 -0700769 def dump_test_data(self):
770 data = [data for (name, data) in map(lambda kv: kv.split('=', 1), self.runner.args.test_data)
771 if self.srcs == [name]]
772 if data:
773 self.dump_android_property_list('data', '"%s"', data)
774
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -0700775 def main_src_basename_path(self):
776 return re.sub('/', '_', re.sub('.rs$', '', self.main_src))
777
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800778 def test_module_name(self):
779 """Return a unique name for a test module."""
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700780 # root_pkg+(_host|_device) + '_test_'+source_file_name
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -0700781 suffix = self.main_src_basename_path()
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700782 host_device = '_host'
783 if self.device_supported:
784 host_device = '_device'
785 return self.root_pkg + host_device + '_test_' + suffix
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800786
787 def decide_module_type(self):
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700788 # Use the first crate type for the default/first module.
789 crate_type = self.crate_types[0] if self.crate_types else ''
790 self.decide_one_module_type(crate_type)
791
792 def decide_one_module_type(self, crate_type):
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800793 """Decide which Android module type to use."""
794 host = '' if self.device_supported else '_host'
Joel Galensoncb5f2f02021-06-08 14:47:55 -0700795 rlib = '_rlib' if self.runner.args.force_rlib else ''
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700796 if crate_type == 'bin': # rust_binary[_host]
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800797 self.module_type = 'rust_binary' + host
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700798 # In rare cases like protobuf-codegen, the output binary name must
799 # be renamed to use as a plugin for protoc.
800 self.stem = altered_stem(self.crate_name)
801 self.module_name = altered_name(self.crate_name)
Chih-Hung Hsieh35ca4bc2020-07-10 16:49:51 -0700802 elif crate_type == 'lib': # rust_library[_host]
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700803 # TODO(chh): should this be rust_library[_host]?
804 # Assuming that Cargo.toml do not use both 'lib' and 'rlib',
805 # because we map them both to rlib.
Joel Galensoncb5f2f02021-06-08 14:47:55 -0700806 self.module_type = 'rust_library' + rlib + host
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800807 self.stem = 'lib' + self.crate_name
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700808 self.module_name = altered_name(self.stem)
Chih-Hung Hsieh35ca4bc2020-07-10 16:49:51 -0700809 elif crate_type == 'rlib': # rust_library[_host]
Joel Galensoncb5f2f02021-06-08 14:47:55 -0700810 self.module_type = 'rust_library' + rlib + host
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700811 self.stem = 'lib' + self.crate_name
812 self.module_name = altered_name(self.stem)
813 elif crate_type == 'dylib': # rust_library[_host]_dylib
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800814 self.module_type = 'rust_library' + host + '_dylib'
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700815 self.stem = 'lib' + self.crate_name
816 self.module_name = altered_name(self.stem) + '_dylib'
817 elif crate_type == 'cdylib': # rust_library[_host]_shared
Ivan Lozano0c057ad2020-12-15 10:41:26 -0500818 self.module_type = 'rust_ffi' + host + '_shared'
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700819 self.stem = 'lib' + self.crate_name
820 self.module_name = altered_name(self.stem) + '_shared'
821 elif crate_type == 'staticlib': # rust_library[_host]_static
Ivan Lozano0c057ad2020-12-15 10:41:26 -0500822 self.module_type = 'rust_ffi' + host + '_static'
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700823 self.stem = 'lib' + self.crate_name
824 self.module_name = altered_name(self.stem) + '_static'
825 elif crate_type == 'test': # rust_test[_host]
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800826 self.module_type = 'rust_test' + host
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700827 # Before do_merge, stem name is based on the --crate-name parameter.
828 # and test module name is based on stem.
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800829 self.stem = self.test_module_name()
830 # self.stem will be changed after merging with other tests.
831 # self.stem is NOT used for final test binary name.
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700832 # rust_test uses each source file base name as part of output file name.
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700833 # In do_merge, this function is called again, with a module_name.
834 # We make sure that the module name is unique in each package.
835 if self.module_name:
836 # Cargo uses "-C extra-filename=..." and "-C metadata=..." to add
837 # different suffixes and distinguish multiple tests of the same
838 # crate name. We ignore -C and use claim_module_name to get
839 # unique sequential suffix.
840 self.module_name = self.runner.claim_module_name(
841 self.module_name, self, 0)
842 # Now the module name is unique, stem should also match and unique.
843 self.stem = self.module_name
844 elif crate_type == 'proc-macro': # rust_proc_macro
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800845 self.module_type = 'rust_proc_macro'
846 self.stem = 'lib' + self.crate_name
Chih-Hung Hsieh8a1a2302020-04-03 14:33:33 -0700847 self.module_name = altered_name(self.stem)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800848 else: # unknown module type, rust_prebuilt_dylib? rust_library[_host]?
849 self.module_type = ''
850 self.stem = ''
851
852 def dump_android_property_list_items(self, fmt, values):
853 for v in values:
854 # fmt has quotes, so we need escape_quotes(v)
855 self.write(' ' + (fmt % escape_quotes(v)) + ',')
856
857 def dump_android_property_list(self, name, fmt, values):
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -0700858 if not values:
859 return
860 if len(values) > 1:
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800861 self.write(' ' + name + ': [')
862 self.dump_android_property_list_items(fmt, values)
863 self.write(' ],')
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -0700864 else:
865 self.write(' ' + name + ': [' +
866 (fmt % escape_quotes(values[0])) + '],')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800867
868 def dump_android_core_properties(self):
869 """Dump the module header, name, stem, etc."""
870 self.write(' name: "' + self.module_name + '",')
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700871 # see properties shared by dump_defaults_module
872 if self.defaults:
873 self.write(' defaults: ["' + self.defaults + '"],')
Chih-Hung Hsieh07119862020-07-24 15:34:06 -0700874 elif self.runner.args.global_defaults:
875 self.write(' defaults: ["' + self.runner.args.global_defaults + '"],')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800876 if self.stem != self.module_name:
877 self.write(' stem: "' + self.stem + '",')
Chih-Hung Hsiehf7eff152020-07-16 15:36:22 -0700878 if self.has_warning and not self.cap_lints and not self.default_srcs:
Chih-Hung Hsieh35ca4bc2020-07-10 16:49:51 -0700879 self.write(' // has rustc warnings')
Chih-Hung Hsiehe1b7bb62020-09-30 13:09:30 -0700880 if self.host_supported and self.device_supported and self.module_type != 'rust_proc_macro':
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800881 self.write(' host_supported: true,')
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700882 if not self.defaults:
883 self.write(' crate_name: "' + self.crate_name + '",')
Ivan Lozanocc660f12021-08-11 16:49:46 -0400884 if not self.defaults and self.cargo_env_compat:
885 self.write(' cargo_env_compat: true,')
886 self.write(' cargo_pkg_version: "' + self.cargo_pkg_version + '",')
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -0700887 if not self.default_srcs:
888 self.dump_srcs_list()
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700889 if 'test' in self.crate_types and not self.defaults:
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800890 # self.root_pkg can have multiple test modules, with different *_tests[n]
891 # names, but their executables can all be installed under the same _tests
892 # directory. When built from Cargo.toml, all tests should have different
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -0700893 # file or crate names. So we used (root_pkg + '_tests') name as the
894 # relative_install_path.
895 # However, some package like 'slab' can have non-mergeable tests that
896 # must be separated by different module names. So, here we no longer
897 # emit relative_install_path.
898 # self.write(' relative_install_path: "' + self.root_pkg + '_tests",')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800899 self.write(' test_suites: ["general-tests"],')
900 self.write(' auto_gen_config: true,')
Joel Galensone261a152021-01-12 11:31:53 -0800901 if 'test' in self.crate_types and self.host_supported:
902 self.write(' test_options: {')
903 self.write(' unit_test: true,')
904 self.write(' },')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800905
906 def dump_android_externs(self):
907 """Dump the dependent rlibs and dylibs property."""
908 so_libs = list()
909 rust_libs = ''
910 deps_libname = re.compile('^.* = lib(.*)-[0-9a-f]*.(rlib|so|rmeta)$')
911 for lib in self.externs:
912 # normal value of lib: "libc = liblibc-*.rlib"
913 # strange case in rand crate: "getrandom_package = libgetrandom-*.rlib"
914 # we should use "libgetrandom", not "lib" + "getrandom_package"
915 groups = deps_libname.match(lib)
916 if groups is not None:
917 lib_name = groups.group(1)
918 else:
919 lib_name = re.sub(' .*$', '', lib)
Joel Galenson97e414a2021-05-27 09:42:32 -0700920 if lib_name in self.runner.args.dependency_blocklist:
921 continue
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800922 if lib.endswith('.rlib') or lib.endswith('.rmeta'):
923 # On MacOS .rmeta is used when Linux uses .rlib or .rmeta.
924 rust_libs += ' "' + altered_name('lib' + lib_name) + '",\n'
925 elif lib.endswith('.so'):
926 so_libs.append(lib_name)
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -0700927 elif lib != 'proc_macro': # --extern proc_macro is special and ignored
928 rust_libs += ' // ERROR: unknown type of lib ' + lib + '\n'
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800929 if rust_libs:
Chih-Hung Hsieh35ca4bc2020-07-10 16:49:51 -0700930 self.write(' rustlibs: [\n' + rust_libs + ' ],')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -0800931 # Are all dependent .so files proc_macros?
932 # TODO(chh): Separate proc_macros and dylib.
933 self.dump_android_property_list('proc_macros', '"lib%s"', so_libs)
934
935
936class ARObject(object):
937 """Information of an "ar" link command."""
938
939 def __init__(self, runner, outf_name):
940 # Remembered global runner and its members.
941 self.runner = runner
942 self.pkg = ''
943 self.outf_name = outf_name # path to Android.bp
944 # "ar" arguments
945 self.line_num = 1
946 self.line = ''
947 self.flags = '' # e.g. "crs"
948 self.lib = '' # e.g. "/.../out/lib*.a"
949 self.objs = list() # e.g. "/.../out/.../*.o"
950
951 def parse(self, pkg, line_num, args_line):
952 """Collect ar obj/lib file names."""
953 self.pkg = pkg
954 self.line_num = line_num
955 self.line = args_line
956 args = args_line.split()
957 num_args = len(args)
958 if num_args < 3:
959 print('ERROR: "ar" command has too few arguments', args_line)
960 else:
961 self.flags = unquote(args[0])
962 self.lib = unquote(args[1])
963 self.objs = sorted(set(map(unquote, args[2:])))
964 return self
965
966 def write(self, s):
967 self.outf.write(s + '\n')
968
969 def dump_debug_info(self):
970 self.write('\n// Line ' + str(self.line_num) + ' "ar" ' + self.line)
971 self.write('// ar_object for %12s' % self.pkg)
972 self.write('// flags = %s' % self.flags)
973 self.write('// lib = %s' % short_out_name(self.pkg, self.lib))
974 for o in self.objs:
975 self.write('// obj = %s' % short_out_name(self.pkg, o))
976
977 def dump_android_lib(self):
978 """Write cc_library_static into Android.bp."""
979 self.write('\ncc_library_static {')
980 self.write(' name: "' + file_base_name(self.lib) + '",')
981 self.write(' host_supported: true,')
982 if self.flags != 'crs':
983 self.write(' // ar flags = %s' % self.flags)
984 if self.pkg not in self.runner.pkg_obj2cc:
985 self.write(' ERROR: cannot find source files.\n}')
986 return
987 self.write(' srcs: [')
988 obj2cc = self.runner.pkg_obj2cc[self.pkg]
989 # Note: wflags are ignored.
990 dflags = list()
991 fflags = list()
992 for obj in self.objs:
993 self.write(' "' + short_out_name(self.pkg, obj2cc[obj].src) + '",')
994 # TODO(chh): union of dflags and flags of all obj
995 # Now, just a temporary hack that uses the last obj's flags
996 dflags = obj2cc[obj].dflags
997 fflags = obj2cc[obj].fflags
998 self.write(' ],')
999 self.write(' cflags: [')
1000 self.write(' "-O3",') # TODO(chh): is this default correct?
1001 self.write(' "-Wno-error",')
1002 for x in fflags:
1003 self.write(' "-f' + x + '",')
1004 for x in dflags:
1005 self.write(' "-D' + x + '",')
1006 self.write(' ],')
1007 self.write('}')
1008
1009 def dump(self):
1010 """Dump error/debug/module info to the output .bp file."""
1011 self.runner.init_bp_file(self.outf_name)
1012 with open(self.outf_name, 'a') as outf:
1013 self.outf = outf
1014 if self.runner.args.debug:
1015 self.dump_debug_info()
1016 self.dump_android_lib()
1017
1018
1019class CCObject(object):
1020 """Information of a "cc" compilation command."""
1021
1022 def __init__(self, runner, outf_name):
1023 # Remembered global runner and its members.
1024 self.runner = runner
1025 self.pkg = ''
1026 self.outf_name = outf_name # path to Android.bp
1027 # "cc" arguments
1028 self.line_num = 1
1029 self.line = ''
1030 self.src = ''
1031 self.obj = ''
1032 self.dflags = list() # -D flags
1033 self.fflags = list() # -f flags
1034 self.iflags = list() # -I flags
1035 self.wflags = list() # -W flags
1036 self.other_args = list()
1037
1038 def parse(self, pkg, line_num, args_line):
1039 """Collect cc compilation flags and src/out file names."""
1040 self.pkg = pkg
1041 self.line_num = line_num
1042 self.line = args_line
1043 args = args_line.split()
1044 i = 0
1045 while i < len(args):
1046 arg = args[i]
1047 if arg == '"-c"':
1048 i += 1
1049 if args[i].startswith('"-o'):
1050 # ring-0.13.5 dumps: ... "-c" "-o/.../*.o" ".../*.c"
1051 self.obj = unquote(args[i])[2:]
1052 i += 1
1053 self.src = unquote(args[i])
1054 else:
1055 self.src = unquote(args[i])
1056 elif arg == '"-o"':
1057 i += 1
1058 self.obj = unquote(args[i])
1059 elif arg == '"-I"':
1060 i += 1
1061 self.iflags.append(unquote(args[i]))
1062 elif arg.startswith('"-D'):
1063 self.dflags.append(unquote(args[i])[2:])
1064 elif arg.startswith('"-f'):
1065 self.fflags.append(unquote(args[i])[2:])
1066 elif arg.startswith('"-W'):
1067 self.wflags.append(unquote(args[i])[2:])
1068 elif not (arg.startswith('"-O') or arg == '"-m64"' or arg == '"-g"' or
1069 arg == '"-g3"'):
1070 # ignore -O -m64 -g
1071 self.other_args.append(unquote(args[i]))
1072 i += 1
1073 self.dflags = sorted(set(self.dflags))
1074 self.fflags = sorted(set(self.fflags))
1075 # self.wflags is not sorted because some are order sensitive
1076 # and we ignore them anyway.
1077 if self.pkg not in self.runner.pkg_obj2cc:
1078 self.runner.pkg_obj2cc[self.pkg] = {}
1079 self.runner.pkg_obj2cc[self.pkg][self.obj] = self
1080 return self
1081
1082 def write(self, s):
1083 self.outf.write(s + '\n')
1084
1085 def dump_debug_flags(self, name, flags):
1086 self.write('// ' + name + ':')
1087 for f in flags:
1088 self.write('// %s' % f)
1089
1090 def dump(self):
1091 """Dump only error/debug info to the output .bp file."""
1092 if not self.runner.args.debug:
1093 return
1094 self.runner.init_bp_file(self.outf_name)
1095 with open(self.outf_name, 'a') as outf:
1096 self.outf = outf
1097 self.write('\n// Line ' + str(self.line_num) + ' "cc" ' + self.line)
1098 self.write('// cc_object for %12s' % self.pkg)
1099 self.write('// src = %s' % short_out_name(self.pkg, self.src))
1100 self.write('// obj = %s' % short_out_name(self.pkg, self.obj))
1101 self.dump_debug_flags('-I flags', self.iflags)
1102 self.dump_debug_flags('-D flags', self.dflags)
1103 self.dump_debug_flags('-f flags', self.fflags)
1104 self.dump_debug_flags('-W flags', self.wflags)
1105 if self.other_args:
1106 self.dump_debug_flags('other args', self.other_args)
1107
1108
1109class Runner(object):
1110 """Main class to parse cargo -v output and print Android module definitions."""
1111
1112 def __init__(self, args):
1113 self.bp_files = set() # Remember all output Android.bp files.
1114 self.root_pkg = '' # name of package in ./Cargo.toml
1115 # Saved flags, modes, and data.
1116 self.args = args
1117 self.dry_run = not args.run
1118 self.skip_cargo = args.skipcargo
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001119 self.cargo_path = './cargo' # path to cargo, will be set later
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001120 self.checked_out_files = False # to check only once
1121 self.build_out_files = [] # output files generated by build.rs
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001122 # All cc/ar objects, crates, dependencies, and warning files
1123 self.cc_objects = list()
1124 self.pkg_obj2cc = {}
1125 # pkg_obj2cc[cc_object[i].pkg][cc_objects[i].obj] = cc_objects[i]
1126 self.ar_objects = list()
1127 self.crates = list()
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001128 self.warning_files = set()
1129 # Keep a unique mapping from (module name) to crate
1130 self.name_owners = {}
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -07001131 # Save and dump all errors from cargo to Android.bp.
1132 self.errors = ''
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001133 self.setup_cargo_path()
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001134 # Default action is cargo clean, followed by build or user given actions.
1135 if args.cargo:
1136 self.cargo = ['clean'] + args.cargo
1137 else:
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001138 default_target = '--target x86_64-unknown-linux-gnu'
Chih-Hung Hsiehe1b7bb62020-09-30 13:09:30 -07001139 # Use the same target for both host and default device builds.
1140 # Same target is used as default in host x86_64 Android compilation.
1141 # Note: b/169872957, prebuilt cargo failed to build vsock
1142 # on x86_64-unknown-linux-musl systems.
1143 self.cargo = ['clean', 'build ' + default_target]
1144 if args.tests:
1145 self.cargo.append('build --tests ' + default_target)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001146
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001147 def setup_cargo_path(self):
1148 """Find cargo in the --cargo_bin or prebuilt rust bin directory."""
1149 if self.args.cargo_bin:
1150 self.cargo_path = os.path.join(self.args.cargo_bin, 'cargo')
1151 if not os.path.isfile(self.cargo_path):
1152 sys.exit('ERROR: cannot find cargo in ' + self.args.cargo_bin)
1153 print('WARNING: using cargo in ' + self.args.cargo_bin)
1154 return
1155 # We have only tested this on Linux.
1156 if platform.system() != 'Linux':
1157 sys.exit('ERROR: this script has only been tested on Linux with cargo.')
1158 # Assuming that this script is in development/scripts.
1159 my_dir = os.path.dirname(os.path.abspath(__file__))
1160 linux_dir = os.path.join(my_dir, '..', '..',
1161 'prebuilts', 'rust', 'linux-x86')
1162 if not os.path.isdir(linux_dir):
1163 sys.exit('ERROR: cannot find directory ' + linux_dir)
1164 rust_version = self.find_rust_version(my_dir, linux_dir)
1165 cargo_bin = os.path.join(linux_dir, rust_version, 'bin')
1166 self.cargo_path = os.path.join(cargo_bin, 'cargo')
1167 if not os.path.isfile(self.cargo_path):
1168 sys.exit('ERROR: cannot find cargo in ' + cargo_bin
1169 + '; please try --cargo_bin= flag.')
1170 return
1171
1172 def find_rust_version(self, my_dir, linux_dir):
1173 """Use my script directory, find prebuilt rust version."""
1174 # First look up build/soong/rust/config/global.go.
1175 path2global = os.path.join(my_dir, '..', '..',
1176 'build', 'soong', 'rust', 'config', 'global.go')
1177 if os.path.isfile(path2global):
1178 # try to find: RustDefaultVersion = "1.44.0"
1179 version_pat = re.compile(
1180 r'\s*RustDefaultVersion\s*=\s*"([0-9]+\.[0-9]+\.[0-9]+)".*$')
1181 with open(path2global, 'r') as inf:
1182 for line in inf:
1183 result = version_pat.match(line)
1184 if result:
1185 return result.group(1)
1186 print('WARNING: cannot find RustDefaultVersion in ' + path2global)
1187 # Otherwise, find the newest (largest) version number in linux_dir.
1188 rust_version = (0, 0, 0) # the prebuilt version to use
1189 version_pat = re.compile(r'([0-9]+)\.([0-9]+)\.([0-9]+)$')
1190 for dir_name in os.listdir(linux_dir):
1191 result = version_pat.match(dir_name)
1192 if not result:
1193 continue
1194 version = (result.group(1), result.group(2), result.group(3))
1195 if version > rust_version:
1196 rust_version = version
1197 return '.'.join(rust_version)
1198
Chih-Hung Hsieh60140752020-11-03 15:05:58 -08001199 def find_out_files(self):
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001200 # list1 has build.rs output for normal crates
1201 list1 = glob.glob(TARGET_TMP + '/*/*/build/' + self.root_pkg + '-*/out/*')
1202 # list2 has build.rs output for proc-macro crates
1203 list2 = glob.glob(TARGET_TMP + '/*/build/' + self.root_pkg + '-*/out/*')
Chih-Hung Hsieh60140752020-11-03 15:05:58 -08001204 return list1 + list2
1205
1206 def copy_out_files(self):
1207 """Copy build.rs output files to ./out and set up build_out_files."""
1208 if self.checked_out_files:
1209 return
1210 self.checked_out_files = True
1211 cargo_out_files = self.find_out_files()
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001212 out_files = set()
Chih-Hung Hsieh60140752020-11-03 15:05:58 -08001213 if cargo_out_files:
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001214 os.makedirs('out', exist_ok=True)
Chih-Hung Hsieh60140752020-11-03 15:05:58 -08001215 for path in cargo_out_files:
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001216 file_name = path.split('/')[-1]
1217 out_files.add(file_name)
1218 shutil.copy(path, 'out/' + file_name)
1219 self.build_out_files = sorted(out_files)
1220
Chih-Hung Hsieh60140752020-11-03 15:05:58 -08001221 def has_used_out_dir(self):
1222 """Returns true if env!("OUT_DIR") is found."""
1223 return 0 == os.system('grep -rl --exclude build.rs --include \\*.rs' +
1224 ' \'env!("OUT_DIR")\' * > /dev/null')
1225
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001226 def copy_out_module_name(self):
1227 if self.args.copy_out and self.build_out_files:
1228 return 'copy_' + self.root_pkg + '_build_out'
1229 else:
1230 return ''
1231
Haibo Huang0f72c952021-03-19 11:34:15 -07001232 def read_license(self, name):
1233 if not os.path.isfile(name):
1234 return ''
1235 license = ''
1236 with open(name, 'r') as intf:
1237 line = intf.readline()
1238 # Firstly skip ANDROID_BP_HEADER
1239 while line.startswith('//'):
1240 line = intf.readline()
Joel Galensond9d13b82021-04-05 11:27:55 -07001241 # Read all lines until we see a rust_* or genrule rule.
1242 while line != '' and not (line.startswith('rust_') or line.startswith('genrule {')):
Haibo Huang0f72c952021-03-19 11:34:15 -07001243 license += line
1244 line = intf.readline()
1245 return license.strip()
1246
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001247 def dump_copy_out_module(self, outf):
1248 """Output the genrule module to copy out/* to $(genDir)."""
1249 copy_out = self.copy_out_module_name()
1250 if not copy_out:
1251 return
1252 outf.write('\ngenrule {\n')
1253 outf.write(' name: "' + copy_out + '",\n')
1254 outf.write(' srcs: ["out/*"],\n')
1255 outf.write(' cmd: "cp $(in) $(genDir)",\n')
1256 if len(self.build_out_files) > 1:
1257 outf.write(' out: [\n')
1258 for f in self.build_out_files:
1259 outf.write(' "' + f + '",\n')
1260 outf.write(' ],\n')
1261 else:
1262 outf.write(' out: ["' + self.build_out_files[0] + '"],\n')
1263 outf.write('}\n')
1264
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001265 def init_bp_file(self, name):
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001266 # name could be Android.bp or sub_dir_path/Android.bp
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001267 if name not in self.bp_files:
1268 self.bp_files.add(name)
Haibo Huang0f72c952021-03-19 11:34:15 -07001269 license_section = self.read_license(name)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001270 with open(name, 'w') as outf:
Joel Galensonc3bfaf82021-08-18 09:39:36 -07001271 outf.write(ANDROID_BP_HEADER.format(args=' '.join(sys.argv[1:])))
Haibo Huang0f72c952021-03-19 11:34:15 -07001272 outf.write('\n')
1273 outf.write(license_section)
1274 outf.write('\n')
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001275 # at most one copy_out module per .bp file
1276 self.dump_copy_out_module(outf)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001277
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -07001278 def try_claim_module_name(self, name, owner):
1279 """Reserve and return True if it has not been reserved yet."""
1280 if name not in self.name_owners or owner == self.name_owners[name]:
1281 self.name_owners[name] = owner
1282 return True
1283 return False
1284
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001285 def claim_module_name(self, prefix, owner, counter):
1286 """Return prefix if not owned yet, otherwise, prefix+str(counter)."""
1287 while True:
1288 name = prefix
1289 if counter > 0:
Chih-Hung Hsiehe02dce12020-07-14 16:05:21 -07001290 name += '_' + str(counter)
1291 if self.try_claim_module_name(name, owner):
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001292 return name
1293 counter += 1
1294
1295 def find_root_pkg(self):
1296 """Read name of [package] in ./Cargo.toml."""
1297 if not os.path.exists('./Cargo.toml'):
1298 return
1299 with open('./Cargo.toml', 'r') as inf:
1300 pkg_section = re.compile(r'^ *\[package\]')
1301 name = re.compile('^ *name *= * "([^"]*)"')
1302 in_pkg = False
1303 for line in inf:
1304 if in_pkg:
1305 if name.match(line):
1306 self.root_pkg = name.match(line).group(1)
1307 break
1308 else:
1309 in_pkg = pkg_section.match(line) is not None
1310
1311 def run_cargo(self):
1312 """Calls cargo -v and save its output to ./cargo.out."""
1313 if self.skip_cargo:
1314 return self
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001315 cargo_toml = './Cargo.toml'
1316 cargo_out = './cargo.out'
Chih-Hung Hsieh610a8942020-10-29 17:21:35 -07001317 # Do not use Cargo.lock, because .bp rules are designed to
1318 # run with "latest" crates avaialable on Android.
1319 cargo_lock = './Cargo.lock'
1320 cargo_lock_saved = './cargo.lock.saved'
1321 had_cargo_lock = os.path.exists(cargo_lock)
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001322 if not os.access(cargo_toml, os.R_OK):
1323 print('ERROR: Cannot find or read', cargo_toml)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001324 return self
Chih-Hung Hsieh610a8942020-10-29 17:21:35 -07001325 if not self.dry_run:
1326 if os.path.exists(cargo_out):
1327 os.remove(cargo_out)
1328 if not self.args.use_cargo_lock and had_cargo_lock: # save it
1329 os.rename(cargo_lock, cargo_lock_saved)
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001330 cmd_tail = ' --target-dir ' + TARGET_TMP + ' >> ' + cargo_out + ' 2>&1'
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001331 # set up search PATH for cargo to find the correct rustc
1332 saved_path = os.environ['PATH']
1333 os.environ['PATH'] = os.path.dirname(self.cargo_path) + ':' + saved_path
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001334 # Add [workspace] to Cargo.toml if it is not there.
1335 added_workspace = False
1336 if self.args.add_workspace:
1337 with open(cargo_toml, 'r') as in_file:
1338 cargo_toml_lines = in_file.readlines()
1339 found_workspace = '[workspace]\n' in cargo_toml_lines
1340 if found_workspace:
1341 print('### WARNING: found [workspace] in Cargo.toml')
1342 else:
1343 with open(cargo_toml, 'a') as out_file:
1344 out_file.write('[workspace]\n')
1345 added_workspace = True
1346 if self.args.verbose:
1347 print('### INFO: added [workspace] to Cargo.toml')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001348 for c in self.cargo:
1349 features = ''
Chih-Hung Hsieh6c8d52f2020-03-30 18:28:52 -07001350 if c != 'clean':
1351 if self.args.features is not None:
1352 features = ' --no-default-features'
1353 if self.args.features:
1354 features += ' --features ' + self.args.features
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001355 cmd_v_flag = ' -vv ' if self.args.vv else ' -v '
1356 cmd = self.cargo_path + cmd_v_flag
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001357 cmd += c + features + cmd_tail
1358 if self.args.rustflags and c != 'clean':
1359 cmd = 'RUSTFLAGS="' + self.args.rustflags + '" ' + cmd
1360 if self.dry_run:
1361 print('Dry-run skip:', cmd)
1362 else:
1363 if self.args.verbose:
1364 print('Running:', cmd)
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001365 with open(cargo_out, 'a') as out_file:
1366 out_file.write('### Running: ' + cmd + '\n')
Joel Galenson6bf54e32021-05-17 10:54:50 -07001367 ret = os.system(cmd)
1368 if ret != 0:
1369 print('*** There was an error while running cargo. ' +
1370 'See the cargo.out file for details.')
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001371 if added_workspace: # restore original Cargo.toml
1372 with open(cargo_toml, 'w') as out_file:
1373 out_file.writelines(cargo_toml_lines)
1374 if self.args.verbose:
1375 print('### INFO: restored original Cargo.toml')
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001376 os.environ['PATH'] = saved_path
Chih-Hung Hsieh610a8942020-10-29 17:21:35 -07001377 if not self.dry_run:
1378 if not had_cargo_lock: # restore to no Cargo.lock state
1379 os.remove(cargo_lock)
1380 elif not self.args.use_cargo_lock: # restore saved Cargo.lock
1381 os.rename(cargo_lock_saved, cargo_lock)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001382 return self
1383
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001384 def dump_pkg_obj2cc(self):
1385 """Dump debug info of the pkg_obj2cc map."""
1386 if not self.args.debug:
1387 return
1388 self.init_bp_file('Android.bp')
1389 with open('Android.bp', 'a') as outf:
1390 sorted_pkgs = sorted(self.pkg_obj2cc.keys())
1391 for pkg in sorted_pkgs:
1392 if not self.pkg_obj2cc[pkg]:
1393 continue
1394 outf.write('\n// obj => src for %s\n' % pkg)
1395 obj2cc = self.pkg_obj2cc[pkg]
1396 for obj in sorted(obj2cc.keys()):
1397 outf.write('// ' + short_out_name(pkg, obj) + ' => ' +
1398 short_out_name(pkg, obj2cc[obj].src) + '\n')
1399
Chih-Hung Hsiehec8846b2020-10-30 17:03:47 -07001400 def apply_patch(self):
1401 """Apply local patch file if it is given."""
1402 if self.args.patch:
1403 if self.dry_run:
1404 print('Dry-run skip patch file:', self.args.patch)
1405 else:
1406 if not os.path.exists(self.args.patch):
1407 self.append_to_bp('ERROR cannot find patch file: ' + self.args.patch)
1408 return self
1409 if self.args.verbose:
1410 print('### INFO: applying local patch file:', self.args.patch)
Joel Galenson7e8247e2021-05-20 18:51:42 -07001411 subprocess.run(['patch', '-s', '--no-backup-if-mismatch', './Android.bp',
1412 self.args.patch], check=True)
Chih-Hung Hsiehec8846b2020-10-30 17:03:47 -07001413 return self
1414
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001415 def gen_bp(self):
1416 """Parse cargo.out and generate Android.bp files."""
1417 if self.dry_run:
1418 print('Dry-run skip: read', CARGO_OUT, 'write Android.bp')
1419 elif os.path.exists(CARGO_OUT):
1420 self.find_root_pkg()
Chih-Hung Hsieh60140752020-11-03 15:05:58 -08001421 if self.args.copy_out:
1422 self.copy_out_files()
1423 elif self.find_out_files() and self.has_used_out_dir():
1424 print('WARNING: ' + self.root_pkg + ' has cargo output files; ' +
1425 'please rerun with the --copy-out flag.')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001426 with open(CARGO_OUT, 'r') as cargo_out:
1427 self.parse(cargo_out, 'Android.bp')
1428 self.crates.sort(key=get_module_name)
1429 for obj in self.cc_objects:
1430 obj.dump()
1431 self.dump_pkg_obj2cc()
1432 for crate in self.crates:
1433 crate.dump()
1434 dumped_libs = set()
1435 for lib in self.ar_objects:
1436 if lib.pkg == self.root_pkg:
1437 lib_name = file_base_name(lib.lib)
1438 if lib_name not in dumped_libs:
1439 dumped_libs.add(lib_name)
1440 lib.dump()
Joel Galenson5664f2a2021-06-10 10:13:49 -07001441 if self.args.add_toplevel_block:
1442 with open(self.args.add_toplevel_block, 'r') as f:
1443 self.append_to_bp('\n' + f.read() + '\n')
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -07001444 if self.errors:
Joel Galenson3f42f802021-04-07 12:42:17 -07001445 self.append_to_bp('\n' + ERRORS_LINE + '\n' + self.errors)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001446 return self
1447
1448 def add_ar_object(self, obj):
1449 self.ar_objects.append(obj)
1450
1451 def add_cc_object(self, obj):
1452 self.cc_objects.append(obj)
1453
1454 def add_crate(self, crate):
1455 """Merge crate with someone in crates, or append to it. Return crates."""
1456 if crate.skip_crate():
1457 if self.args.debug: # include debug info of all crates
1458 self.crates.append(crate)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001459 else:
1460 for c in self.crates:
1461 if c.merge(crate, 'Android.bp'):
1462 return
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -07001463 # If not merged, decide module type and name now.
1464 crate.decide_module_type()
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001465 self.crates.append(crate)
1466
1467 def find_warning_owners(self):
1468 """For each warning file, find its owner crate."""
1469 missing_owner = False
1470 for f in self.warning_files:
1471 cargo_dir = '' # find lowest crate, with longest path
1472 owner = None # owner crate of this warning
1473 for c in self.crates:
1474 if (f.startswith(c.cargo_dir + '/') and
1475 len(cargo_dir) < len(c.cargo_dir)):
1476 cargo_dir = c.cargo_dir
1477 owner = c
1478 if owner:
1479 owner.has_warning = True
1480 else:
1481 missing_owner = True
1482 if missing_owner and os.path.exists('Cargo.toml'):
1483 # owner is the root cargo, with empty cargo_dir
1484 for c in self.crates:
1485 if not c.cargo_dir:
1486 c.has_warning = True
1487
1488 def rustc_command(self, n, rustc_line, line, outf_name):
1489 """Process a rustc command line from cargo -vv output."""
1490 # cargo build -vv output can have multiple lines for a rustc command
1491 # due to '\n' in strings for environment variables.
1492 # strip removes leading spaces and '\n' at the end
1493 new_rustc = (rustc_line.strip() + line) if rustc_line else line
1494 # Use an heuristic to detect the completions of a multi-line command.
1495 # This might fail for some very rare case, but easy to fix manually.
1496 if not line.endswith('`\n') or (new_rustc.count('`') % 2) != 0:
1497 return new_rustc
1498 if RUSTC_VV_CMD_ARGS.match(new_rustc):
1499 args = RUSTC_VV_CMD_ARGS.match(new_rustc).group(1)
1500 self.add_crate(Crate(self, outf_name).parse(n, args))
1501 else:
1502 self.assert_empty_vv_line(new_rustc)
1503 return ''
1504
1505 def cc_ar_command(self, n, groups, outf_name):
1506 pkg = groups.group(1)
1507 line = groups.group(3)
1508 if groups.group(2) == 'cc':
1509 self.add_cc_object(CCObject(self, outf_name).parse(pkg, n, line))
1510 else:
1511 self.add_ar_object(ARObject(self, outf_name).parse(pkg, n, line))
1512
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -07001513 def append_to_bp(self, line):
1514 self.init_bp_file('Android.bp')
1515 with open('Android.bp', 'a') as outf:
1516 outf.write(line)
1517
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001518 def assert_empty_vv_line(self, line):
1519 if line: # report error if line is not empty
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -07001520 self.append_to_bp('ERROR -vv line: ' + line)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001521 return ''
1522
1523 def parse(self, inf, outf_name):
1524 """Parse rustc and warning messages in inf, return a list of Crates."""
1525 n = 0 # line number
1526 prev_warning = False # true if the previous line was warning: ...
1527 rustc_line = '' # previous line(s) matching RUSTC_VV_PAT
1528 for line in inf:
1529 n += 1
1530 if line.startswith('warning: '):
1531 prev_warning = True
1532 rustc_line = self.assert_empty_vv_line(rustc_line)
1533 continue
1534 new_rustc = ''
1535 if RUSTC_PAT.match(line):
1536 args_line = RUSTC_PAT.match(line).group(1)
1537 self.add_crate(Crate(self, outf_name).parse(n, args_line))
1538 self.assert_empty_vv_line(rustc_line)
1539 elif rustc_line or RUSTC_VV_PAT.match(line):
1540 new_rustc = self.rustc_command(n, rustc_line, line, outf_name)
1541 elif CC_AR_VV_PAT.match(line):
1542 self.cc_ar_command(n, CC_AR_VV_PAT.match(line), outf_name)
1543 elif prev_warning and WARNING_FILE_PAT.match(line):
1544 self.assert_empty_vv_line(rustc_line)
1545 fpath = WARNING_FILE_PAT.match(line).group(1)
1546 if fpath[0] != '/': # ignore absolute path
1547 self.warning_files.add(fpath)
Chih-Hung Hsieh185052a2020-05-07 14:48:57 -07001548 elif line.startswith('error: ') or line.startswith('error[E'):
Chih-Hung Hsiehec8846b2020-10-30 17:03:47 -07001549 if not self.args.ignore_cargo_errors:
1550 self.errors += line
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001551 prev_warning = False
1552 rustc_line = new_rustc
1553 self.find_warning_owners()
1554
1555
Joel Galenson0fbdafe2021-04-21 16:33:33 -07001556def get_parser():
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001557 """Parse main arguments."""
1558 parser = argparse.ArgumentParser('cargo2android')
1559 parser.add_argument(
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001560 '--add_workspace',
1561 action='store_true',
1562 default=False,
1563 help=('append [workspace] to Cargo.toml before calling cargo,' +
1564 ' to treat current directory as root of package source;' +
1565 ' otherwise the relative source file path in generated' +
1566 ' .bp file will be from the parent directory.'))
1567 parser.add_argument(
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001568 '--cargo',
1569 action='append',
1570 metavar='args_string',
1571 help=('extra cargo build -v args in a string, ' +
1572 'each --cargo flag calls cargo build -v once'))
1573 parser.add_argument(
Chih-Hung Hsieh776f6a12020-07-22 14:16:54 -07001574 '--cargo_bin',
1575 type=str,
1576 help='use cargo in the cargo_bin directory instead of the prebuilt one')
1577 parser.add_argument(
Chih-Hung Hsiehe2342ba2020-10-25 03:51:24 -07001578 '--copy-out',
1579 action='store_true',
1580 default=False,
1581 help=('only for root directory, ' +
1582 'copy build.rs output to ./out/* and add a genrule to copy ' +
1583 './out/* to genrule output; for crates with code pattern: ' +
1584 'include!(concat!(env!("OUT_DIR"), "/<some_file>.rs"))'))
1585 parser.add_argument(
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001586 '--debug',
1587 action='store_true',
1588 default=False,
1589 help='dump debug info into Android.bp')
1590 parser.add_argument(
1591 '--dependencies',
1592 action='store_true',
1593 default=False,
Joel Galenson833848c2021-08-17 10:50:42 -07001594 help='Deprecated. Has no effect.')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001595 parser.add_argument(
1596 '--device',
1597 action='store_true',
1598 default=False,
1599 help='run cargo also for a default device target')
1600 parser.add_argument(
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001601 '--features',
1602 type=str,
1603 help=('pass features to cargo build, ' +
1604 'empty string means no default features'))
1605 parser.add_argument(
1606 '--global_defaults',
1607 type=str,
1608 help='add a defaults name to every module')
Chih-Hung Hsieh3725e082020-07-12 00:51:20 -07001609 parser.add_argument(
1610 '--host-first-multilib',
1611 action='store_true',
1612 default=False,
1613 help=('add a compile_multilib:"first" property ' +
1614 'to Android.bp host modules.'))
1615 parser.add_argument(
Chih-Hung Hsiehec8846b2020-10-30 17:03:47 -07001616 '--ignore-cargo-errors',
1617 action='store_true',
1618 default=False,
1619 help='do not append cargo/rustc error messages to Android.bp')
1620 parser.add_argument(
Chih-Hung Hsieh07119862020-07-24 15:34:06 -07001621 '--no-host',
1622 action='store_true',
1623 default=False,
1624 help='do not run cargo for the host; only for the device target')
1625 parser.add_argument(
1626 '--no-subdir',
1627 action='store_true',
1628 default=False,
1629 help='do not output anything for sub-directories')
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001630 parser.add_argument(
1631 '--onefile',
1632 action='store_true',
1633 default=False,
1634 help=('output all into one ./Android.bp, default will generate ' +
1635 'one Android.bp per Cargo.toml in subdirectories'))
1636 parser.add_argument(
Chih-Hung Hsiehec8846b2020-10-30 17:03:47 -07001637 '--patch',
1638 type=str,
1639 help='apply the given patch file to generated ./Android.bp')
1640 parser.add_argument(
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001641 '--run',
1642 action='store_true',
1643 default=False,
1644 help='run it, default is dry-run')
1645 parser.add_argument('--rustflags', type=str, help='passing flags to rustc')
1646 parser.add_argument(
1647 '--skipcargo',
1648 action='store_true',
1649 default=False,
1650 help='skip cargo command, parse cargo.out, and generate Android.bp')
1651 parser.add_argument(
1652 '--tests',
1653 action='store_true',
1654 default=False,
1655 help='run cargo build --tests after normal build')
1656 parser.add_argument(
Chih-Hung Hsieh610a8942020-10-29 17:21:35 -07001657 '--use-cargo-lock',
1658 action='store_true',
1659 default=False,
1660 help=('run cargo build with existing Cargo.lock ' +
1661 '(used when some latest dependent crates failed)'))
1662 parser.add_argument(
Matthew Maurer062709c2021-08-17 11:27:36 -07001663 '--exported_c_header_dir',
1664 nargs='*',
1665 help='Directories with headers to export for C usage'
1666 )
1667 parser.add_argument(
Joel Galensond9c4de62021-04-23 10:26:40 -07001668 '--min-sdk-version',
1669 type=str,
1670 help='Minimum SDK version')
1671 parser.add_argument(
1672 '--apex-available',
1673 nargs='*',
1674 help='Mark the main library as apex_available with the given apexes.')
1675 parser.add_argument(
Matthew Maurerac677252021-08-13 15:52:52 -07001676 '--native-bridge-supported',
1677 action='store_true',
1678 default=False,
1679 help='Mark the main library as native_bridge_supported.')
1680 parser.add_argument(
1681 '--product-available',
1682 action='store_true',
1683 default=False,
1684 help='Mark the main library as product_available.')
1685 parser.add_argument(
1686 '--recovery-available',
1687 action='store_true',
1688 default=False,
1689 help='Mark the main library as recovery_available.')
1690 parser.add_argument(
Ivan Lozano91920862021-07-19 10:49:08 -04001691 '--vendor-available',
1692 action='store_true',
1693 default=False,
1694 help='Mark the main library as vendor_available.')
1695 parser.add_argument(
1696 '--vendor-ramdisk-available',
1697 action='store_true',
1698 default=False,
1699 help='Mark the main library as vendor_ramdisk_available.')
1700 parser.add_argument(
Matthew Maurerac677252021-08-13 15:52:52 -07001701 '--ramdisk-available',
1702 action='store_true',
1703 default=False,
1704 help='Mark the main library as ramdisk_available.')
1705 parser.add_argument(
Joel Galensoncb5f2f02021-06-08 14:47:55 -07001706 '--force-rlib',
1707 action='store_true',
1708 default=False,
1709 help='Make the main library an rlib.')
1710 parser.add_argument(
Joel Galenson12467e52021-07-12 14:33:28 -07001711 '--whole-static-libs',
1712 nargs='*',
1713 default=[],
1714 help='Make the given libraries (without lib prefixes) whole_static_libs.')
1715 parser.add_argument(
Ivan Lozano26aa1c32021-08-16 11:20:32 -04001716 '--no-pkg-vers',
1717 action='store_true',
1718 default=False,
1719 help='Do not attempt to determine the package version automatically.')
1720 parser.add_argument(
Joel Galensone4f53882021-07-19 11:14:55 -07001721 '--test-data',
1722 nargs='*',
1723 default=[],
1724 help=('Add the given file to the given test\'s data property. ' +
1725 'Usage: test-path=data-path'))
1726 parser.add_argument(
Joel Galenson97e414a2021-05-27 09:42:32 -07001727 '--dependency-blocklist',
1728 nargs='*',
1729 default=[],
Joel Galenson12467e52021-07-12 14:33:28 -07001730 help='Do not emit the given dependencies (without lib prefixes).')
Joel Galenson97e414a2021-05-27 09:42:32 -07001731 parser.add_argument(
Joel Galensoncb5f2f02021-06-08 14:47:55 -07001732 '--lib-blocklist',
1733 nargs='*',
1734 default=[],
Joel Galenson12467e52021-07-12 14:33:28 -07001735 help='Do not emit the given C libraries as dependencies (without lib prefixes).')
Joel Galensoncb5f2f02021-06-08 14:47:55 -07001736 parser.add_argument(
Joel Galensonf6b3c912021-06-03 16:00:54 -07001737 '--test-blocklist',
1738 nargs='*',
1739 default=[],
1740 help=('Do not emit the given tests. ' +
1741 'Pass the path to the test file to exclude.'))
1742 parser.add_argument(
Joel Galenson3d6d1e72021-06-07 15:00:24 -07001743 '--cfg-blocklist',
1744 nargs='*',
1745 default=[],
1746 help='Do not emit the given cfg.')
1747 parser.add_argument(
Joel Galenson5664f2a2021-06-10 10:13:49 -07001748 '--add-toplevel-block',
1749 type=str,
1750 help='Add the contents of the given file to the top level of the Android.bp.')
1751 parser.add_argument(
1752 '--add-module-block',
1753 type=str,
1754 help='Add the contents of the given file to the main module.')
1755 parser.add_argument(
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001756 '--verbose',
1757 action='store_true',
1758 default=False,
1759 help='echo executed commands')
1760 parser.add_argument(
1761 '--vv',
1762 action='store_true',
1763 default=False,
1764 help='run cargo with -vv instead of default -v')
Joel Galenson0fbdafe2021-04-21 16:33:33 -07001765 parser.add_argument(
1766 '--dump-config-and-exit',
1767 type=str,
1768 help=('Dump command-line arguments (minus this flag) to a config file and exit. ' +
1769 'This is intended to help migrate from command line options to config files.'))
1770 parser.add_argument(
1771 '--config',
1772 type=str,
1773 help=('Load command-line options from the given config file. ' +
1774 'Options in this file will override those passed on the command line.'))
1775 return parser
1776
1777
1778def parse_args(parser):
1779 """Parses command-line options."""
1780 args = parser.parse_args()
1781 # Use the values specified in a config file if one was found.
1782 if args.config:
1783 with open(args.config, 'r') as f:
1784 config = json.load(f)
1785 args_dict = vars(args)
1786 for arg in config:
1787 args_dict[arg.replace('-', '_')] = config[arg]
1788 return args
1789
1790
1791def dump_config(parser, args):
1792 """Writes the non-default command-line options to the specified file."""
1793 args_dict = vars(args)
1794 # Filter out the arguments that have their default value.
Joel Galenson367360c2021-04-29 14:31:43 -07001795 # Also filter certain "temporary" arguments.
Joel Galenson0fbdafe2021-04-21 16:33:33 -07001796 non_default_args = {}
1797 for arg in args_dict:
Joel Galenson9a82ad92021-08-17 17:52:04 -07001798 if (args_dict[arg] != parser.get_default(arg) and arg != 'dump_config_and_exit'
Joel Galensonc3bfaf82021-08-18 09:39:36 -07001799 and arg != 'config'):
Joel Galenson0fbdafe2021-04-21 16:33:33 -07001800 non_default_args[arg.replace('_', '-')] = args_dict[arg]
1801 # Write to the specified file.
1802 with open(args.dump_config_and_exit, 'w') as f:
1803 json.dump(non_default_args, f, indent=2, sort_keys=True)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001804
1805
1806def main():
Joel Galenson0fbdafe2021-04-21 16:33:33 -07001807 parser = get_parser()
1808 args = parse_args(parser)
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001809 if not args.run: # default is dry-run
1810 print(DRY_RUN_NOTE)
Joel Galenson0fbdafe2021-04-21 16:33:33 -07001811 if args.dump_config_and_exit:
1812 dump_config(parser, args)
1813 else:
ThiƩbaud Weksteen198e93f2021-07-02 14:49:19 +02001814 Runner(args).run_cargo().gen_bp().apply_patch()
Chih-Hung Hsiehe8887372019-11-05 10:34:17 -08001815
1816
1817if __name__ == '__main__':
1818 main()