-
-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathmain.rs
476 lines (454 loc) · 15.9 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
//! Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries
//! as python packages. This file contains the CLI and keyring integration.
//!
//! Run with --help for usage information
use anyhow::{bail, Context, Result};
use cargo_zigbuild::Zig;
use clap::{ArgEnum, IntoApp, Parser, Subcommand};
use clap_complete::Generator;
use maturin::{
develop, init_project, new_project, write_dist_info, BridgeModel, BuildOptions,
GenerateProjectOptions, PathWriter, PlatformTag, PythonInterpreter, Target,
};
#[cfg(feature = "upload")]
use maturin::{upload_ui, PublishOpt};
use std::env;
use std::io;
use std::path::PathBuf;
use std::str::FromStr;
#[derive(Debug, Parser)]
#[clap(name = env!("CARGO_PKG_NAME"), version)]
#[cfg_attr(feature = "cargo-clippy", allow(clippy::large_enum_variant))]
/// Build and publish crates with pyo3, rust-cpython and cffi bindings as well
/// as rust binaries as python packages
enum Opt {
#[clap(name = "build")]
/// Build the crate into python packages
Build {
#[clap(flatten)]
build: BuildOptions,
/// Pass --release to cargo
#[clap(short = 'r', long)]
release: bool,
/// Strip the library for minimum file size
#[clap(long)]
strip: bool,
/// Don't build a source distribution
#[clap(long = "no-sdist")]
no_sdist: bool,
},
#[cfg(feature = "upload")]
#[clap(name = "publish")]
/// Build and publish the crate as python packages to pypi
Publish {
#[clap(flatten)]
build: BuildOptions,
/// Do not pass --release to cargo
#[clap(long)]
debug: bool,
/// Do not strip the library for minimum file size
#[clap(long = "no-strip")]
no_strip: bool,
/// Don't build a source distribution
#[clap(long = "no-sdist")]
no_sdist: bool,
#[clap(flatten)]
publish: PublishOpt,
},
#[clap(name = "list-python")]
/// Searches and lists the available python installations
ListPython,
#[clap(name = "develop")]
/// Installs the crate as module in the current virtualenv
///
/// Note that this command doesn't create entrypoints
Develop {
/// Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
#[clap(short = 'b', long = "bindings", alias = "binding-crate")]
bindings: Option<String>,
#[clap(
short = 'm',
long = "manifest-path",
parse(from_os_str),
default_value = "Cargo.toml"
)]
/// The path to the Cargo.toml
manifest_path: PathBuf,
/// Pass --release to cargo
#[clap(short = 'r', long)]
release: bool,
/// Strip the library for minimum file size
#[clap(long)]
strip: bool,
/// Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`
///
/// Use as `--cargo-extra-args="--my-arg"`
#[clap(long = "cargo-extra-args")]
cargo_extra_args: Vec<String>,
/// Extra arguments that will be passed to rustc as `cargo rustc [...] -- [arg1] [arg2]`
///
/// Use as `--rustc-extra-args="--my-arg"`
#[clap(long = "rustc-extra-args")]
rustc_extra_args: Vec<String>,
/// Install extra requires aka. optional dependencies
///
/// Use as `--extras=extra1,extra2`
#[clap(
short = 'E',
long,
use_value_delimiter = true,
multiple_values = false,
multiple_occurrences = false
)]
extras: Vec<String>,
},
/// Build only a source distribution (sdist) without compiling.
///
/// Building a source distribution requires a pyproject.toml with a `[build-system]` table.
///
/// This command is a workaround for [pypa/pip#6041](https://github.com/pypa/pip/issues/6041)
#[clap(name = "sdist")]
SDist {
#[clap(
short = 'm',
long = "manifest-path",
parse(from_os_str),
default_value = "Cargo.toml"
)]
/// The path to the Cargo.toml
manifest_path: PathBuf,
/// The directory to store the built wheels in. Defaults to a new "wheels"
/// directory in the project's target directory
#[clap(short, long, parse(from_os_str))]
out: Option<PathBuf>,
},
/// Create a new cargo project in an existing directory
#[clap(name = "init")]
InitProject {
/// Project path
path: Option<String>,
#[clap(flatten)]
options: GenerateProjectOptions,
},
/// Create a new cargo project
#[clap(name = "new")]
NewProject {
/// Project path
path: String,
#[clap(flatten)]
options: GenerateProjectOptions,
},
/// Uploads python packages to pypi
///
/// It is mostly similar to `twine upload`, but can only upload python wheels
/// and source distributions.
#[cfg(feature = "upload")]
#[clap(name = "upload")]
Upload {
#[clap(flatten)]
publish: PublishOpt,
/// The python packages to upload
#[clap(name = "FILE", parse(from_os_str))]
files: Vec<PathBuf>,
},
/// Backend for the PEP 517 integration. Not for human consumption
///
/// The commands are meant to be called from the python PEP 517
#[clap(subcommand)]
Pep517(Pep517Command),
/// Generate shell completions
#[clap(name = "completions", hide = true)]
Completions {
#[clap(name = "SHELL", parse(try_from_str))]
shell: Shell,
},
/// Zig linker wrapper
#[clap(subcommand, hide = true)]
Zig(Zig),
}
/// Backend for the PEP 517 integration. Not for human consumption
///
/// The commands are meant to be called from the python PEP 517
#[derive(Debug, Subcommand)]
#[clap(name = "pep517", hide = true)]
enum Pep517Command {
/// The implementation of prepare_metadata_for_build_wheel
#[clap(name = "write-dist-info")]
WriteDistInfo {
#[clap(flatten)]
build_options: BuildOptions,
/// The metadata_directory argument to prepare_metadata_for_build_wheel
#[clap(long = "metadata-directory", parse(from_os_str))]
metadata_directory: PathBuf,
/// Strip the library for minimum file size
#[clap(long)]
strip: bool,
},
#[clap(name = "build-wheel")]
/// Implementation of build_wheel
///
/// --release and --strip are currently unused by the PEP 517 implementation
BuildWheel {
#[clap(flatten)]
build_options: BuildOptions,
/// Strip the library for minimum file size
#[clap(long)]
strip: bool,
/// Build editable wheels
#[clap(long)]
editable: bool,
},
/// The implementation of build_sdist
#[clap(name = "write-sdist")]
WriteSDist {
/// The sdist_directory argument to build_sdist
#[clap(long = "sdist-directory", parse(from_os_str))]
sdist_directory: PathBuf,
#[clap(
short = 'm',
long = "manifest-path",
parse(from_os_str),
default_value = "Cargo.toml",
name = "PATH"
)]
/// The path to the Cargo.toml
manifest_path: PathBuf,
},
}
#[derive(Debug, Clone, Copy, ArgEnum)]
#[allow(clippy::enum_variant_names)]
enum Shell {
Bash,
Elvish,
Fish,
PowerShell,
Zsh,
Fig,
}
impl FromStr for Shell {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s.to_ascii_lowercase().as_str() {
"bash" => Ok(Shell::Bash),
"elvish" => Ok(Shell::Elvish),
"fish" => Ok(Shell::Fish),
"powershell" => Ok(Shell::PowerShell),
"zsh" => Ok(Shell::Zsh),
"fig" => Ok(Shell::Fig),
_ => Err("[valid values: bash, elvish, fish, powershell, zsh, fig]".to_string()),
}
}
}
/// Dispatches into the native implementations of the PEP 517 functions
///
/// The last line of stdout is used as return value from the python part of the implementation
fn pep517(subcommand: Pep517Command) -> Result<()> {
match subcommand {
Pep517Command::WriteDistInfo {
build_options,
metadata_directory,
strip,
} => {
assert!(build_options.interpreter.len() == 1);
let context = build_options.into_build_context(true, strip, false)?;
// Since afaik all other PEP 517 backends also return linux tagged wheels, we do so too
let tags = match context.bridge {
BridgeModel::Bindings(..) => {
vec![context.interpreter[0].get_tag(PlatformTag::Linux, context.universal2)?]
}
BridgeModel::BindingsAbi3(major, minor) => {
let platform = context
.target
.get_platform_tag(PlatformTag::Linux, context.universal2)?;
vec![format!("cp{}{}-abi3-{}", major, minor, platform)]
}
BridgeModel::Bin | BridgeModel::Cffi => {
context
.target
.get_universal_tags(PlatformTag::Linux, context.universal2)?
.1
}
};
let mut writer = PathWriter::from_path(metadata_directory);
write_dist_info(&mut writer, &context.metadata21, &tags)?;
println!("{}", context.metadata21.get_dist_info_dir().display());
}
Pep517Command::BuildWheel {
build_options,
strip,
editable,
} => {
let build_context = build_options.into_build_context(true, strip, editable)?;
let wheels = build_context.build_wheels()?;
assert_eq!(wheels.len(), 1);
println!("{}", wheels[0].0.to_str().unwrap());
}
Pep517Command::WriteSDist {
sdist_directory,
manifest_path,
} => {
let build_options = BuildOptions {
manifest_path: Some(manifest_path),
out: Some(sdist_directory),
..Default::default()
};
let build_context = build_options.into_build_context(false, false, false)?;
let (path, _) = build_context
.build_source_distribution()?
.context("Failed to build source distribution")?;
println!("{}", path.file_name().unwrap().to_str().unwrap());
}
};
Ok(())
}
fn run() -> Result<()> {
#[cfg(feature = "log")]
pretty_env_logger::init();
let opt = Opt::parse();
match opt {
Opt::Build {
build,
release,
strip,
no_sdist,
} => {
let build_context = build.into_build_context(release, strip, false)?;
if !no_sdist {
build_context.build_source_distribution()?;
}
build_context.build_wheels()?;
}
#[cfg(feature = "upload")]
Opt::Publish {
build,
publish,
debug,
no_strip,
no_sdist,
} => {
let build_context = build.into_build_context(!debug, !no_strip, false)?;
if !build_context.release {
eprintln!("⚠️ Warning: You're publishing debug wheels");
}
let mut wheels = build_context.build_wheels()?;
if !no_sdist {
if let Some(sd) = build_context.build_source_distribution()? {
wheels.push(sd);
}
}
let items = wheels.into_iter().map(|wheel| wheel.0).collect::<Vec<_>>();
upload_ui(&items, &publish)?
}
Opt::ListPython => {
let target = Target::from_target_triple(None)?;
// We don't know the targeted bindings yet, so we use the most lenient
let found = PythonInterpreter::find_all(&target, &BridgeModel::Cffi, None)?;
println!("🐍 {} python interpreter found:", found.len());
for interpreter in found {
println!(" - {}", interpreter);
}
}
Opt::Develop {
bindings,
manifest_path,
cargo_extra_args,
rustc_extra_args,
release,
strip,
extras,
} => {
let venv_dir = match (env::var_os("VIRTUAL_ENV"), env::var_os("CONDA_PREFIX")) {
(Some(dir), None) => PathBuf::from(dir),
(None, Some(dir)) => PathBuf::from(dir),
(Some(_), Some(_)) => {
bail!("Both VIRTUAL_ENV and CONDA_PREFIX are set. Please unset one of them")
}
(None, None) => {
bail!(
"You need to be inside a virtualenv or conda environment to use develop \
(neither VIRTUAL_ENV nor CONDA_PREFIX are set). \
See https://virtualenv.pypa.io/en/latest/index.html on how to use virtualenv or \
use `maturin build` and `pip install <path/to/wheel>` instead."
)
}
};
develop(
bindings,
&manifest_path,
cargo_extra_args,
rustc_extra_args,
&venv_dir,
release,
strip,
extras,
)?;
}
Opt::SDist { manifest_path, out } => {
let build_options = BuildOptions {
manifest_path: Some(manifest_path),
out,
..Default::default()
};
let build_context = build_options.into_build_context(false, false, false)?;
build_context
.build_source_distribution()?
.context("Failed to build source distribution")?;
}
Opt::Pep517(subcommand) => pep517(subcommand)?,
Opt::InitProject { path, options } => init_project(path, options)?,
Opt::NewProject { path, options } => new_project(path, options)?,
#[cfg(feature = "upload")]
Opt::Upload { publish, files } => {
if files.is_empty() {
println!("⚠️ Warning: No files given, exiting.");
return Ok(());
}
upload_ui(&files, &publish)?
}
Opt::Completions { shell } => {
let mut cmd = Opt::command();
match shell {
Shell::Fig => {
cmd.set_bin_name(env!("CARGO_BIN_NAME"));
let fig = clap_complete_fig::Fig;
fig.generate(&cmd, &mut io::stdout());
}
_ => {
let shell = match shell {
Shell::Bash => clap_complete::Shell::Bash,
Shell::Elvish => clap_complete::Shell::Elvish,
Shell::Fish => clap_complete::Shell::Fish,
Shell::PowerShell => clap_complete::Shell::PowerShell,
Shell::Zsh => clap_complete::Shell::Zsh,
Shell::Fig => unreachable!(),
};
clap_complete::generate(
shell,
&mut cmd,
env!("CARGO_BIN_NAME"),
&mut io::stdout(),
)
}
}
}
Opt::Zig(subcommand) => {
subcommand
.execute()
.context("Failed to create zig wrapper script")?;
}
}
Ok(())
}
fn main() {
#[cfg(feature = "human-panic")]
{
human_panic::setup_panic!();
}
if let Err(e) = run() {
eprintln!("💥 maturin failed");
for cause in e.chain().collect::<Vec<_>>().iter() {
eprintln!(" Caused by: {}", cause);
}
std::process::exit(1);
}
}