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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
use cargo_platform::Platform;
use log::trace;
use semver::VersionReq;
use serde::ser;
use serde::Serialize;
use std::borrow::Cow;
use std::fmt;
use std::path::PathBuf;
use std::rc::Rc;
use crate::core::compiler::{CompileKind, CompileTarget};
use crate::core::{PackageId, SourceId, Summary};
use crate::util::errors::CargoResult;
use crate::util::interning::InternedString;
use crate::util::toml::StringOrVec;
use crate::util::OptVersionReq;
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
pub struct Dependency {
inner: Rc<Inner>,
}
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
struct Inner {
name: InternedString,
source_id: SourceId,
registry_id: Option<SourceId>,
req: OptVersionReq,
specified_req: bool,
kind: DepKind,
only_match_name: bool,
explicit_name_in_toml: Option<InternedString>,
optional: bool,
public: bool,
default_features: bool,
features: Vec<InternedString>,
artifact: Option<Artifact>,
platform: Option<Platform>,
}
#[derive(Serialize)]
struct SerializedDependency<'a> {
name: &'a str,
source: SourceId,
req: String,
kind: DepKind,
rename: Option<&'a str>,
optional: bool,
uses_default_features: bool,
features: &'a [InternedString],
#[serde(skip_serializing_if = "Option::is_none")]
artifact: Option<&'a Artifact>,
target: Option<&'a Platform>,
registry: Option<&'a str>,
#[serde(skip_serializing_if = "Option::is_none")]
path: Option<PathBuf>,
}
impl ser::Serialize for Dependency {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
let registry_id = self.registry_id();
SerializedDependency {
name: &*self.package_name(),
source: self.source_id(),
req: self.version_req().to_string(),
kind: self.kind(),
optional: self.is_optional(),
uses_default_features: self.uses_default_features(),
features: self.features(),
target: self.platform(),
rename: self.explicit_name_in_toml().map(|s| s.as_str()),
registry: registry_id.as_ref().map(|sid| sid.url().as_str()),
path: self.source_id().local_path(),
artifact: self.artifact(),
}
.serialize(s)
}
}
#[derive(PartialEq, Eq, Hash, Ord, PartialOrd, Clone, Debug, Copy)]
pub enum DepKind {
Normal,
Development,
Build,
}
impl ser::Serialize for DepKind {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
match *self {
DepKind::Normal => None,
DepKind::Development => Some("dev"),
DepKind::Build => Some("build"),
}
.serialize(s)
}
}
impl Dependency {
pub fn parse(
name: impl Into<InternedString>,
version: Option<&str>,
source_id: SourceId,
) -> CargoResult<Dependency> {
let name = name.into();
let (specified_req, version_req) = match version {
Some(v) => match VersionReq::parse(v) {
Ok(req) => (true, OptVersionReq::Req(req)),
Err(err) => {
return Err(anyhow::Error::new(err).context(format!(
"failed to parse the version requirement `{}` for dependency `{}`",
v, name,
)))
}
},
None => (false, OptVersionReq::Any),
};
let mut ret = Dependency::new_override(name, source_id);
{
let ptr = Rc::make_mut(&mut ret.inner);
ptr.only_match_name = false;
ptr.req = version_req;
ptr.specified_req = specified_req;
}
Ok(ret)
}
pub fn new_override(name: InternedString, source_id: SourceId) -> Dependency {
assert!(!name.is_empty());
Dependency {
inner: Rc::new(Inner {
name,
source_id,
registry_id: None,
req: OptVersionReq::Any,
kind: DepKind::Normal,
only_match_name: true,
optional: false,
public: false,
features: Vec::new(),
default_features: true,
specified_req: false,
platform: None,
explicit_name_in_toml: None,
artifact: None,
}),
}
}
pub fn version_req(&self) -> &OptVersionReq {
&self.inner.req
}
pub fn name_in_toml(&self) -> InternedString {
self.explicit_name_in_toml().unwrap_or(self.inner.name)
}
pub fn package_name(&self) -> InternedString {
self.inner.name
}
pub fn source_id(&self) -> SourceId {
self.inner.source_id
}
pub fn registry_id(&self) -> Option<SourceId> {
self.inner.registry_id
}
pub fn set_registry_id(&mut self, registry_id: SourceId) -> &mut Dependency {
Rc::make_mut(&mut self.inner).registry_id = Some(registry_id);
self
}
pub fn kind(&self) -> DepKind {
self.inner.kind
}
pub fn is_public(&self) -> bool {
self.inner.public
}
pub fn set_public(&mut self, public: bool) -> &mut Dependency {
if public {
assert_eq!(self.kind(), DepKind::Normal);
}
Rc::make_mut(&mut self.inner).public = public;
self
}
pub fn specified_req(&self) -> bool {
self.inner.specified_req
}
pub fn platform(&self) -> Option<&Platform> {
self.inner.platform.as_ref()
}
pub fn explicit_name_in_toml(&self) -> Option<InternedString> {
self.inner.explicit_name_in_toml
}
pub fn set_kind(&mut self, kind: DepKind) -> &mut Dependency {
if self.is_public() {
assert_eq!(kind, DepKind::Normal);
}
Rc::make_mut(&mut self.inner).kind = kind;
self
}
pub fn set_features(
&mut self,
features: impl IntoIterator<Item = impl Into<InternedString>>,
) -> &mut Dependency {
Rc::make_mut(&mut self.inner).features = features.into_iter().map(|s| s.into()).collect();
self
}
pub fn set_default_features(&mut self, default_features: bool) -> &mut Dependency {
Rc::make_mut(&mut self.inner).default_features = default_features;
self
}
pub fn set_optional(&mut self, optional: bool) -> &mut Dependency {
Rc::make_mut(&mut self.inner).optional = optional;
self
}
pub fn set_source_id(&mut self, id: SourceId) -> &mut Dependency {
Rc::make_mut(&mut self.inner).source_id = id;
self
}
pub fn set_version_req(&mut self, req: VersionReq) -> &mut Dependency {
Rc::make_mut(&mut self.inner).req = OptVersionReq::Req(req);
self
}
pub fn set_platform(&mut self, platform: Option<Platform>) -> &mut Dependency {
Rc::make_mut(&mut self.inner).platform = platform;
self
}
pub fn set_explicit_name_in_toml(
&mut self,
name: impl Into<InternedString>,
) -> &mut Dependency {
Rc::make_mut(&mut self.inner).explicit_name_in_toml = Some(name.into());
self
}
pub fn lock_to(&mut self, id: PackageId) -> &mut Dependency {
assert_eq!(self.inner.source_id, id.source_id());
trace!(
"locking dep from `{}` with `{}` at {} to {}",
self.package_name(),
self.version_req(),
self.source_id(),
id
);
let me = Rc::make_mut(&mut self.inner);
me.req.lock_to(id.version());
me.source_id = me
.source_id
.with_precise(id.source_id().precise().map(|s| s.to_string()));
self
}
pub fn lock_version(&mut self, version: &semver::Version) -> &mut Dependency {
let me = Rc::make_mut(&mut self.inner);
me.req.lock_to(version);
self
}
pub fn is_locked(&self) -> bool {
self.inner.req.is_locked()
}
pub fn is_transitive(&self) -> bool {
match self.inner.kind {
DepKind::Normal | DepKind::Build => true,
DepKind::Development => false,
}
}
pub fn is_build(&self) -> bool {
matches!(self.inner.kind, DepKind::Build)
}
pub fn is_optional(&self) -> bool {
self.inner.optional
}
pub fn uses_default_features(&self) -> bool {
self.inner.default_features
}
pub fn features(&self) -> &[InternedString] {
&self.inner.features
}
pub fn matches(&self, sum: &Summary) -> bool {
self.matches_id(sum.package_id())
}
pub fn matches_ignoring_source(&self, id: PackageId) -> bool {
self.package_name() == id.name() && self.version_req().matches(id.version())
}
pub fn matches_id(&self, id: PackageId) -> bool {
self.inner.name == id.name()
&& (self.inner.only_match_name
|| (self.inner.req.matches(id.version()) && self.inner.source_id == id.source_id()))
}
pub fn map_source(mut self, to_replace: SourceId, replace_with: SourceId) -> Dependency {
if self.source_id() == to_replace {
self.set_source_id(replace_with);
}
self
}
pub(crate) fn set_artifact(&mut self, artifact: Artifact) {
Rc::make_mut(&mut self.inner).artifact = Some(artifact);
}
pub(crate) fn artifact(&self) -> Option<&Artifact> {
self.inner.artifact.as_ref()
}
pub(crate) fn maybe_lib(&self) -> bool {
self.artifact().map(|a| a.is_lib).unwrap_or(true)
}
}
#[derive(PartialEq, Eq, Hash, Clone, Debug)]
pub struct Artifact {
inner: Rc<Vec<ArtifactKind>>,
is_lib: bool,
target: Option<ArtifactTarget>,
}
#[derive(Serialize)]
pub struct SerializedArtifact<'a> {
kinds: &'a [ArtifactKind],
lib: bool,
target: Option<&'a str>,
}
impl ser::Serialize for Artifact {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
SerializedArtifact {
kinds: self.kinds(),
lib: self.is_lib,
target: self.target.as_ref().map(|t| match t {
ArtifactTarget::BuildDependencyAssumeTarget => "target",
ArtifactTarget::Force(target) => target.rustc_target().as_str(),
}),
}
.serialize(s)
}
}
impl Artifact {
pub(crate) fn parse(
artifacts: &StringOrVec,
is_lib: bool,
target: Option<&str>,
) -> CargoResult<Self> {
let kinds = ArtifactKind::validate(
artifacts
.iter()
.map(|s| ArtifactKind::parse(s))
.collect::<Result<Vec<_>, _>>()?,
)?;
Ok(Artifact {
inner: Rc::new(kinds),
is_lib,
target: target.map(ArtifactTarget::parse).transpose()?,
})
}
pub(crate) fn kinds(&self) -> &[ArtifactKind] {
&self.inner
}
pub(crate) fn is_lib(&self) -> bool {
self.is_lib
}
pub(crate) fn target(&self) -> Option<ArtifactTarget> {
self.target
}
}
#[derive(PartialEq, Eq, Hash, Copy, Clone, Ord, PartialOrd, Debug)]
pub enum ArtifactTarget {
BuildDependencyAssumeTarget,
Force(CompileTarget),
}
impl ArtifactTarget {
pub fn parse(target: &str) -> CargoResult<ArtifactTarget> {
Ok(match target {
"target" => ArtifactTarget::BuildDependencyAssumeTarget,
name => ArtifactTarget::Force(CompileTarget::new(name)?),
})
}
pub fn to_compile_kind(&self) -> Option<CompileKind> {
self.to_compile_target().map(CompileKind::Target)
}
pub fn to_compile_target(&self) -> Option<CompileTarget> {
match self {
ArtifactTarget::BuildDependencyAssumeTarget => None,
ArtifactTarget::Force(target) => Some(*target),
}
}
pub(crate) fn to_resolved_compile_kind(
&self,
root_unit_compile_kind: CompileKind,
) -> CompileKind {
match self {
ArtifactTarget::Force(target) => CompileKind::Target(*target),
ArtifactTarget::BuildDependencyAssumeTarget => root_unit_compile_kind,
}
}
pub(crate) fn to_resolved_compile_target(
&self,
root_unit_compile_kind: CompileKind,
) -> Option<CompileTarget> {
match self.to_resolved_compile_kind(root_unit_compile_kind) {
CompileKind::Host => None,
CompileKind::Target(target) => Some(target),
}
}
}
#[derive(PartialEq, Eq, Hash, Copy, Clone, Ord, PartialOrd, Debug)]
pub enum ArtifactKind {
AllBinaries,
SelectedBinary(InternedString),
Cdylib,
Staticlib,
}
impl ser::Serialize for ArtifactKind {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
let out: Cow<'_, str> = match *self {
ArtifactKind::AllBinaries => "bin".into(),
ArtifactKind::Staticlib => "staticlib".into(),
ArtifactKind::Cdylib => "cdylib".into(),
ArtifactKind::SelectedBinary(name) => format!("bin:{}", name.as_str()).into(),
};
out.serialize(s)
}
}
impl fmt::Display for ArtifactKind {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(match self {
ArtifactKind::Cdylib => "cdylib",
ArtifactKind::Staticlib => "staticlib",
ArtifactKind::AllBinaries => "bin",
ArtifactKind::SelectedBinary(bin_name) => return write!(f, "bin:{}", bin_name),
})
}
}
impl ArtifactKind {
fn parse(kind: &str) -> CargoResult<Self> {
Ok(match kind {
"bin" => ArtifactKind::AllBinaries,
"cdylib" => ArtifactKind::Cdylib,
"staticlib" => ArtifactKind::Staticlib,
_ => {
return kind
.strip_prefix("bin:")
.map(|bin_name| ArtifactKind::SelectedBinary(InternedString::new(bin_name)))
.ok_or_else(|| anyhow::anyhow!("'{}' is not a valid artifact specifier", kind))
}
})
}
fn validate(kinds: Vec<ArtifactKind>) -> CargoResult<Vec<ArtifactKind>> {
if kinds.iter().any(|k| matches!(k, ArtifactKind::AllBinaries))
&& kinds
.iter()
.any(|k| matches!(k, ArtifactKind::SelectedBinary(_)))
{
anyhow::bail!("Cannot specify both 'bin' and 'bin:<name>' binary artifacts, as 'bin' selects all available binaries.");
}
let mut kinds_without_dupes = kinds.clone();
kinds_without_dupes.sort();
kinds_without_dupes.dedup();
let num_dupes = kinds.len() - kinds_without_dupes.len();
if num_dupes != 0 {
anyhow::bail!(
"Found {} duplicate binary artifact{}",
num_dupes,
(num_dupes > 1).then(|| "s").unwrap_or("")
);
}
Ok(kinds)
}
}