-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsources.rs
162 lines (150 loc) · 4.93 KB
/
sources.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
// Copyright (c) 2017-2018 ETH Zurich
// Fabian Schuiki <fschuiki@iis.ee.ethz.ch>
//! The `sources` subcommand.
use std;
use clap::{value_parser, Arg, ArgAction, ArgMatches, Command};
use indexmap::IndexSet;
use serde_json;
use tokio::runtime::Runtime;
use crate::error::*;
use crate::sess::{Session, SessionIo};
use crate::src::SourceGroup;
use crate::target::{TargetSet, TargetSpec};
/// Assemble the `sources` subcommand.
pub fn new() -> Command {
Command::new("sources")
.about("Emit the source file manifest for the package")
.arg(
Arg::new("target")
.short('t')
.long("target")
.help("Filter sources by target")
.num_args(1)
.action(ArgAction::Append)
.value_parser(value_parser!(String)),
)
.arg(
Arg::new("flatten")
.short('f')
.long("flatten")
.help("Flatten JSON struct")
.num_args(0)
.action(ArgAction::SetTrue),
)
.arg(
Arg::new("package")
.short('p')
.long("package")
.help("Specify package to show sources for")
.num_args(1)
.action(ArgAction::Append)
.value_parser(value_parser!(String)),
)
.arg(
Arg::new("no_deps")
.short('n')
.long("no-deps")
.num_args(0)
.action(ArgAction::SetTrue)
.help("Exclude all dependencies, i.e. only top level or specified package(s)"),
)
.arg(
Arg::new("exclude")
.short('e')
.long("exclude")
.help("Specify package to exclude from sources")
.num_args(1)
.action(ArgAction::Append)
.value_parser(value_parser!(String)),
)
.arg(
Arg::new("raw")
.long("raw")
.help("Exports the raw internal source tree.")
.num_args(0)
.action(ArgAction::SetTrue),
)
}
fn get_package_strings<I>(packages: I) -> IndexSet<String>
where
I: IntoIterator,
I::Item: AsRef<str>,
{
packages
.into_iter()
.map(|t| t.as_ref().to_string().to_lowercase())
.collect()
}
/// Execute the `sources` subcommand.
pub fn run(sess: &Session, matches: &ArgMatches) -> Result<()> {
let rt = Runtime::new()?;
let io = SessionIo::new(sess);
let mut srcs = rt.block_on(io.sources())?;
if matches.get_flag("raw") {
let stdout = std::io::stdout();
let handle = stdout.lock();
return serde_json::to_writer_pretty(handle, &srcs.flatten())
.map_err(|err| Error::chain("Failed to serialize source file manifest.", err));
}
// Filter the sources by target.
let targets = matches
.get_many::<String>("target")
.map(TargetSet::new)
.unwrap_or_else(TargetSet::empty);
srcs = srcs
.filter_targets(&targets)
.unwrap_or_else(|| SourceGroup {
package: Default::default(),
independent: true,
target: TargetSpec::Wildcard,
include_dirs: Default::default(),
export_incdirs: Default::default(),
defines: Default::default(),
files: Default::default(),
dependencies: Default::default(),
version: None,
});
// Filter the sources by specified packages.
let packages = &srcs.get_package_list(
sess,
&matches
.get_many::<String>("package")
.map(get_package_strings)
.unwrap_or_default(),
&matches
.get_many::<String>("exclude")
.map(get_package_strings)
.unwrap_or_default(),
matches.get_flag("no_deps"),
);
if matches.contains_id("package")
|| matches.contains_id("exclude")
|| matches.get_flag("no_deps")
{
srcs = srcs
.filter_packages(packages)
.unwrap_or_else(|| SourceGroup {
package: Default::default(),
independent: true,
target: TargetSpec::Wildcard,
include_dirs: Default::default(),
export_incdirs: Default::default(),
defines: Default::default(),
files: Default::default(),
dependencies: Default::default(),
version: None,
});
}
let result = {
let stdout = std::io::stdout();
let handle = stdout.lock();
if matches.get_flag("flatten") {
let srcs = srcs.flatten();
serde_json::to_writer_pretty(handle, &srcs)
} else {
serde_json::to_writer_pretty(handle, &srcs)
}
};
println!();
result.map_err(|cause| Error::chain("Failed to serialize source file manifest.", cause))
}