-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathbuild.rs
1429 lines (1230 loc) · 44.2 KB
/
build.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
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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use std::collections::HashMap;
use std::hash::{DefaultHasher, Hash, Hasher};
use std::io::Read;
use std::path::{Path, PathBuf};
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex};
use cargo::core::compiler::{unit_graph::UnitDep, unit_graph::UnitGraph, Executor, Unit};
use cargo::core::profiles::Profiles;
use cargo::core::{FeatureValue, Package, PackageId, Target, TargetKind, Workspace};
use cargo::ops::{self, CompileFilter, CompileOptions, FilterRule, LibRule};
use cargo::util::command_prelude::{ArgMatches, ArgMatchesExt, CompileMode, ProfileChecking};
use cargo::util::interning::InternedString;
use cargo::{CliResult, GlobalContext};
use anyhow::Context as _;
use cargo_util::paths::{copy, create_dir_all, open, read, read_bytes, write};
use implib::def::ModuleDef;
use implib::{Flavor, ImportLibrary, MachineType};
use itertools::Itertools;
use semver::Version;
use crate::build_targets::BuildTargets;
use crate::install::InstallPaths;
use crate::pkg_config_gen::PkgConfig;
use crate::target;
/// Build the C header
fn build_include_file(
ws: &Workspace,
name: &str,
version: &Version,
root_output: &Path,
root_path: &Path,
) -> anyhow::Result<()> {
ws.gctx()
.shell()
.status("Building", "header file using cbindgen")?;
let mut header_name = PathBuf::from(name);
header_name.set_extension("h");
let include_path = root_output.join(header_name);
let crate_path = root_path;
// TODO: map the errors
let mut config = cbindgen::Config::from_root_or_default(crate_path);
let warning = config.autogen_warning.unwrap_or_default();
let version_info = format!(
"\n#define {0}_MAJOR {1}\n#define {0}_MINOR {2}\n#define {0}_PATCH {3}\n",
name.to_uppercase().replace('-', "_"),
version.major,
version.minor,
version.patch
);
config.autogen_warning = Some(warning + &version_info);
cbindgen::Builder::new()
.with_crate(crate_path)
.with_config(config)
.generate()
.unwrap()
.write_to_file(include_path);
Ok(())
}
/// Copy the pre-built C header from the asset directory to the root_dir
fn copy_prebuilt_include_file(
ws: &Workspace,
build_targets: &BuildTargets,
root_output: &Path,
) -> anyhow::Result<()> {
let mut shell = ws.gctx().shell();
shell.status("Populating", "uninstalled header directory")?;
for (from, to) in build_targets.extra.include.iter() {
let to = root_output.join("include").join(to);
create_dir_all(to.parent().unwrap())?;
copy(from, to)?;
}
Ok(())
}
fn build_pc_file(name: &str, root_output: &Path, pc: &PkgConfig) -> anyhow::Result<()> {
let pc_path = root_output.join(format!("{name}.pc"));
let buf = pc.render();
write(pc_path, buf)
}
fn build_pc_files(
ws: &Workspace,
filename: &str,
root_output: &Path,
pc: &PkgConfig,
) -> anyhow::Result<()> {
ws.gctx().shell().status("Building", "pkg-config files")?;
build_pc_file(filename, root_output, pc)?;
let pc_uninstalled = pc.uninstalled(root_output);
build_pc_file(
&format!("{filename}-uninstalled"),
root_output,
&pc_uninstalled,
)
}
fn patch_target(
pkg: &mut Package,
library_types: LibraryTypes,
capi_config: &CApiConfig,
) -> anyhow::Result<()> {
use cargo::core::compiler::CrateType;
let manifest = pkg.manifest_mut();
let targets = manifest.targets_mut();
let mut kinds = Vec::with_capacity(2);
if library_types.staticlib {
kinds.push(CrateType::Staticlib);
}
if library_types.cdylib {
kinds.push(CrateType::Cdylib);
}
for target in targets.iter_mut().filter(|t| t.is_lib()) {
target.set_kind(TargetKind::Lib(kinds.to_vec()));
target.set_name(&capi_config.library.name);
}
Ok(())
}
/// Build def file for windows-msvc
fn build_def_file(
ws: &Workspace,
name: &str,
target: &target::Target,
targetdir: &Path,
) -> anyhow::Result<()> {
if target.os == "windows" && target.env == "msvc" {
ws.gctx().shell().status("Building", ".def file")?;
// Parse the .dll as an object file
let dll_path = targetdir.join(format!("{}.dll", name.replace('-', "_")));
let dll_content = std::fs::read(&dll_path)?;
let dll_file = object::File::parse(&*dll_content)?;
// Create the .def output file
let def_file = cargo_util::paths::create(targetdir.join(format!("{name}.def")))?;
write_def_file(dll_file, def_file)?;
}
Ok(())
}
fn write_def_file<W: std::io::Write>(dll_file: object::File, mut def_file: W) -> anyhow::Result<W> {
use object::read::Object;
writeln!(def_file, "EXPORTS")?;
for export in dll_file.exports()? {
def_file.write_all(export.name())?;
def_file.write_all(b"\n")?;
}
Ok(def_file)
}
/// Build import library for windows
fn build_implib_file(
ws: &Workspace,
build_targets: &BuildTargets,
name: &str,
target: &target::Target,
targetdir: &Path,
) -> anyhow::Result<()> {
if target.os == "windows" {
ws.gctx().shell().status("Building", "implib")?;
let def_path = targetdir.join(format!("{name}.def"));
let def_contents = cargo_util::paths::read(&def_path)?;
let flavor = match target.env.as_str() {
"msvc" => Flavor::Msvc,
_ => Flavor::Gnu,
};
let machine_type = match target.arch.as_str() {
"x86_64" => MachineType::AMD64,
"x86" => MachineType::I386,
"aarch64" => MachineType::ARM64,
_ => {
return Err(anyhow::anyhow!(
"Windows support for {} is not implemented yet.",
target.arch
))
}
};
let lib_name = build_targets
.shared_output_file_name()
.unwrap()
.into_string()
.unwrap();
let implib_path = build_targets.impl_lib.as_ref().unwrap();
let implib_file = cargo_util::paths::create(implib_path)?;
write_implib(implib_file, lib_name, machine_type, flavor, &def_contents)?;
}
Ok(())
}
fn write_implib<W: std::io::Write + std::io::Seek>(
mut w: W,
lib_name: String,
machine_type: MachineType,
flavor: Flavor,
def_contents: &str,
) -> anyhow::Result<W> {
let mut module_def = ModuleDef::parse(def_contents, machine_type)?;
module_def.import_name = lib_name;
let import_library = ImportLibrary::from_def(module_def, machine_type, flavor);
import_library.write_to(&mut w)?;
Ok(w)
}
#[derive(Debug)]
struct FingerPrint {
id: PackageId,
root_output: PathBuf,
build_targets: BuildTargets,
install_paths: InstallPaths,
static_libs: String,
hasher: DefaultHasher,
}
#[derive(serde::Serialize, serde::Deserialize)]
struct Cache {
hash: String,
static_libs: String,
}
impl FingerPrint {
fn new(
id: &PackageId,
root_output: &Path,
build_targets: &BuildTargets,
install_paths: &InstallPaths,
capi_config: &CApiConfig,
) -> Self {
let mut hasher = DefaultHasher::new();
capi_config.hash(&mut hasher);
Self {
id: id.to_owned(),
root_output: root_output.to_owned(),
build_targets: build_targets.clone(),
install_paths: install_paths.clone(),
static_libs: String::new(),
hasher,
}
}
fn hash(&self) -> anyhow::Result<Option<String>> {
let mut hasher = self.hasher.clone();
self.install_paths.hash(&mut hasher);
let mut paths: Vec<&PathBuf> = Vec::new();
if let Some(include) = &self.build_targets.include {
paths.push(include);
}
paths.extend(&self.build_targets.static_lib);
paths.extend(&self.build_targets.shared_lib);
for path in paths.iter() {
if let Ok(buf) = read_bytes(path) {
hasher.write(&buf);
} else {
return Ok(None);
};
}
let hash = hasher.finish();
// the hash is stored in a toml file which does not support u64 so store
// it as a string to prevent overflows.
Ok(Some(hash.to_string()))
}
fn path(&self) -> PathBuf {
// Use the crate name in the cache file as the same target dir
// may be used to build various libs
self.root_output
.join(format!("cargo-c-{}.cache", self.id.name()))
}
fn load_previous(&self) -> anyhow::Result<Cache> {
let mut f = open(self.path())?;
let mut cache_str = String::new();
f.read_to_string(&mut cache_str)?;
let cache = toml::de::from_str(&cache_str)?;
Ok(cache)
}
fn is_valid(&self) -> bool {
match (self.load_previous(), self.hash()) {
(Ok(prev), Ok(Some(current))) => prev.hash == current,
_ => false,
}
}
fn store(&self) -> anyhow::Result<()> {
if let Some(hash) = self.hash()? {
let cache = Cache {
hash,
static_libs: self.static_libs.to_owned(),
};
let buf = toml::ser::to_string(&cache)?;
write(self.path(), buf)?;
}
Ok(())
}
}
#[derive(Debug, Hash)]
pub struct CApiConfig {
pub header: HeaderCApiConfig,
pub pkg_config: PkgConfigCApiConfig,
pub library: LibraryCApiConfig,
pub install: InstallCApiConfig,
}
#[derive(Debug, Hash)]
pub struct HeaderCApiConfig {
pub name: String,
pub subdirectory: String,
pub generation: bool,
pub enabled: bool,
}
#[derive(Debug, Hash)]
pub struct PkgConfigCApiConfig {
pub name: String,
pub filename: String,
pub description: String,
pub version: String,
pub requires: Option<String>,
pub requires_private: Option<String>,
pub strip_include_path_components: usize,
}
#[derive(Debug, Hash)]
pub enum VersionSuffix {
Major,
MajorMinor,
MajorMinorPatch,
}
#[derive(Debug, Hash)]
pub struct LibraryCApiConfig {
pub name: String,
pub version: Version,
pub install_subdir: Option<String>,
pub versioning: bool,
pub version_suffix_components: Option<VersionSuffix>,
pub import_library: bool,
pub rustflags: Vec<String>,
}
impl LibraryCApiConfig {
pub fn sover(&self) -> String {
let major = self.version.major;
let minor = self.version.minor;
let patch = self.version.patch;
match self.version_suffix_components {
None => match (major, minor, patch) {
(0, 0, patch) => format!("0.0.{patch}"),
(0, minor, _) => format!("0.{minor}"),
(major, _, _) => format!("{major}"),
},
Some(VersionSuffix::Major) => format!("{major}"),
Some(VersionSuffix::MajorMinor) => format!("{major}.{minor}"),
Some(VersionSuffix::MajorMinorPatch) => format!("{major}.{minor}.{patch}"),
}
}
}
#[derive(Debug, Default, Hash)]
pub struct InstallCApiConfig {
pub include: Vec<InstallTarget>,
pub data: Vec<InstallTarget>,
}
#[derive(Debug, Hash)]
pub enum InstallTarget {
Asset(InstallTargetPaths),
Generated(InstallTargetPaths),
}
#[derive(Clone, Debug, Hash)]
pub struct InstallTargetPaths {
/// pattern to feed to glob::glob()
///
/// if the InstallTarget is Asset its root is the the root_path
/// if the InstallTarget is Generated its root is the root_output
pub from: String,
/// The path to be joined to the canonical directory to install the files discovered by the
/// glob, e.g. `{includedir}/{to}` for includes.
pub to: String,
}
impl InstallTargetPaths {
pub fn from_value(value: &toml::value::Value, default_to: &str) -> anyhow::Result<Self> {
let from = value
.get("from")
.and_then(|v| v.as_str())
.ok_or_else(|| anyhow::anyhow!("a from field is required"))?;
let to = value
.get("to")
.and_then(|v| v.as_str())
.unwrap_or(default_to);
Ok(InstallTargetPaths {
from: from.to_string(),
to: to.to_string(),
})
}
pub fn install_paths(
&self,
root: &Path,
) -> anyhow::Result<impl Iterator<Item = (PathBuf, PathBuf)>> {
let pattern = root.join(&self.from);
let base_pattern = if self.from.contains("/**") {
pattern
.iter()
.take_while(|&c| c != std::ffi::OsStr::new("**"))
.collect()
} else {
pattern.parent().unwrap().to_path_buf()
};
let pattern = pattern.to_str().unwrap();
let to = PathBuf::from(&self.to);
let g = glob::glob(pattern)?.filter_map(move |p| {
if let Ok(p) = p {
if p.is_file() {
let from = p;
let to = to.join(from.strip_prefix(&base_pattern).unwrap());
Some((from, to))
} else {
None
}
} else {
None
}
});
Ok(g)
}
}
fn load_manifest_capi_config(
pkg: &Package,
rustc_target: &target::Target,
) -> anyhow::Result<CApiConfig> {
let name = &pkg
.manifest()
.targets()
.iter()
.find(|t| t.is_lib())
.unwrap()
.crate_name();
let root_path = pkg.root().to_path_buf();
let manifest_str = read(&root_path.join("Cargo.toml"))?;
let toml = manifest_str.parse::<toml::Value>()?;
let capi = toml
.get("package")
.and_then(|v| v.get("metadata"))
.and_then(|v| v.get("capi"));
if let Some(min_version) = capi
.as_ref()
.and_then(|capi| capi.get("min_version"))
.and_then(|v| v.as_str())
{
let min_version = Version::parse(min_version)?;
let version = Version::parse(env!("CARGO_PKG_VERSION"))?;
if min_version > version {
anyhow::bail!(
"Minimum required cargo-c version is {} but using cargo-c version {}",
min_version,
version
);
}
}
let header = capi.and_then(|v| v.get("header"));
let subdirectory = header
.as_ref()
.and_then(|h| h.get("subdirectory"))
.map(|v| {
if let Ok(b) = v.clone().try_into::<bool>() {
Ok(if b {
String::from(name)
} else {
String::from("")
})
} else {
v.clone().try_into::<String>()
}
})
.unwrap_or_else(|| Ok(String::from(name)))?;
let header = if let Some(capi) = capi {
HeaderCApiConfig {
name: header
.as_ref()
.and_then(|h| h.get("name"))
.or_else(|| capi.get("header_name"))
.map(|v| v.clone().try_into())
.unwrap_or_else(|| Ok(String::from(name)))?,
subdirectory,
generation: header
.as_ref()
.and_then(|h| h.get("generation"))
.map(|v| v.clone().try_into())
.unwrap_or(Ok(true))?,
enabled: header
.as_ref()
.and_then(|h| h.get("enabled"))
.map(|v| v.clone().try_into())
.unwrap_or(Ok(true))?,
}
} else {
HeaderCApiConfig {
name: String::from(name),
subdirectory: String::from(name),
generation: true,
enabled: true,
}
};
let pc = capi.and_then(|v| v.get("pkg_config"));
let mut pc_name = String::from(name);
let mut pc_filename = String::from(name);
let mut description = String::from(
pkg.manifest()
.metadata()
.description
.as_deref()
.unwrap_or(""),
);
let mut version = pkg.version().to_string();
let mut requires = None;
let mut requires_private = None;
let mut strip_include_path_components = 0;
if let Some(pc) = pc {
if let Some(override_name) = pc.get("name").and_then(|v| v.as_str()) {
pc_name = String::from(override_name);
}
if let Some(override_filename) = pc.get("filename").and_then(|v| v.as_str()) {
pc_filename = String::from(override_filename);
}
if let Some(override_description) = pc.get("description").and_then(|v| v.as_str()) {
description = String::from(override_description);
}
if let Some(override_version) = pc.get("version").and_then(|v| v.as_str()) {
version = String::from(override_version);
}
if let Some(req) = pc.get("requires").and_then(|v| v.as_str()) {
requires = Some(String::from(req));
}
if let Some(req) = pc.get("requires_private").and_then(|v| v.as_str()) {
requires_private = Some(String::from(req));
}
strip_include_path_components = pc
.get("strip_include_path_components")
.map(|v| v.clone().try_into())
.unwrap_or_else(|| Ok(0))?
}
let pkg_config = PkgConfigCApiConfig {
name: pc_name,
filename: pc_filename,
description,
version,
requires,
requires_private,
strip_include_path_components,
};
let library = capi.and_then(|v| v.get("library"));
let mut lib_name = String::from(name);
let mut version = pkg.version().clone();
let mut install_subdir = None;
let mut versioning = true;
let mut version_suffix_components = None;
let mut import_library = true;
let mut rustflags = Vec::new();
if let Some(library) = library {
if let Some(override_name) = library.get("name").and_then(|v| v.as_str()) {
lib_name = String::from(override_name);
}
if let Some(override_version) = library.get("version").and_then(|v| v.as_str()) {
version = Version::parse(override_version)?;
}
if let Some(subdir) = library.get("install_subdir").and_then(|v| v.as_str()) {
install_subdir = Some(String::from(subdir));
}
versioning = library
.get("versioning")
.and_then(|v| v.as_bool())
.unwrap_or(true);
if let Some(value) = library.get("version_suffix_components") {
let value = value.as_integer().with_context(|| {
format!("Value for `version_suffix_components` is not an integer: {value:?}")
})?;
version_suffix_components = Some(match value {
1 => VersionSuffix::Major,
2 => VersionSuffix::MajorMinor,
3 => VersionSuffix::MajorMinorPatch,
_ => anyhow::bail!("Out of range value for version suffix components: {value}"),
});
}
import_library = library
.get("import_library")
.and_then(|v| v.as_bool())
.unwrap_or(true);
if let Some(args) = library.get("rustflags").and_then(|v| v.as_str()) {
let args = args
.split(' ')
.map(str::trim)
.filter(|s| !s.is_empty())
.map(str::to_string);
rustflags.extend(args);
}
}
if rustc_target.os == "android" {
versioning = false;
}
let library = LibraryCApiConfig {
name: lib_name,
version,
install_subdir,
versioning,
version_suffix_components,
import_library,
rustflags,
};
let default_assets_include = InstallTargetPaths {
from: "assets/capi/include/**/*".to_string(),
to: header.subdirectory.clone(),
};
let header_name = if header.name.ends_with(".h") {
format!("assets/{}", header.name)
} else {
format!("assets/{}.h", header.name)
};
let default_legacy_asset_include = InstallTargetPaths {
from: header_name,
to: header.subdirectory.clone(),
};
let default_generated_include = InstallTargetPaths {
from: "capi/include/**/*".to_string(),
to: header.subdirectory.clone(),
};
let mut include_targets = vec![
InstallTarget::Asset(default_assets_include),
InstallTarget::Asset(default_legacy_asset_include),
InstallTarget::Generated(default_generated_include),
];
let mut data_targets = Vec::new();
let mut data_subdirectory = name.clone();
fn custom_install_target_paths(
root: &toml::Value,
subdirectory: &str,
targets: &mut Vec<InstallTarget>,
) -> anyhow::Result<()> {
if let Some(assets) = root.get("asset").and_then(|v| v.as_array()) {
for asset in assets {
let target_paths = InstallTargetPaths::from_value(asset, subdirectory)?;
targets.push(InstallTarget::Asset(target_paths));
}
}
if let Some(generated) = root.get("generated").and_then(|v| v.as_array()) {
for gen in generated {
let target_paths = InstallTargetPaths::from_value(gen, subdirectory)?;
targets.push(InstallTarget::Generated(target_paths));
}
}
Ok(())
}
let install = capi.and_then(|v| v.get("install"));
if let Some(install) = install {
if let Some(includes) = install.get("include") {
custom_install_target_paths(includes, &header.subdirectory, &mut include_targets)?;
}
if let Some(data) = install.get("data") {
if let Some(subdir) = data.get("subdirectory").and_then(|v| v.as_str()) {
data_subdirectory = String::from(subdir);
}
custom_install_target_paths(data, &data_subdirectory, &mut data_targets)?;
}
}
let default_assets_data = InstallTargetPaths {
from: "assets/capi/share/**/*".to_string(),
to: data_subdirectory.clone(),
};
let default_generated_data = InstallTargetPaths {
from: "capi/share/**/*".to_string(),
to: data_subdirectory,
};
data_targets.extend([
InstallTarget::Asset(default_assets_data),
InstallTarget::Generated(default_generated_data),
]);
let install = InstallCApiConfig {
include: include_targets,
data: data_targets,
};
Ok(CApiConfig {
header,
pkg_config,
library,
install,
})
}
fn compile_options(
ws: &Workspace,
gctx: &GlobalContext,
args: &ArgMatches,
profile: InternedString,
compile_mode: CompileMode,
) -> anyhow::Result<CompileOptions> {
use cargo::core::compiler::CompileKind;
let mut compile_opts =
args.compile_options(gctx, compile_mode, Some(ws), ProfileChecking::Custom)?;
compile_opts.build_config.requested_profile = profile;
std::rc::Rc::get_mut(&mut compile_opts.cli_features.features)
.unwrap()
.insert(FeatureValue::new("capi".into()));
compile_opts.filter = CompileFilter::new(
LibRule::True,
FilterRule::none(),
FilterRule::none(),
FilterRule::none(),
FilterRule::none(),
);
compile_opts.build_config.unit_graph = false;
let rustc = gctx.load_global_rustc(Some(ws))?;
// Always set the target, requested_kinds is a vec of a single element.
if compile_opts.build_config.requested_kinds[0].is_host() {
compile_opts.build_config.requested_kinds =
CompileKind::from_requested_targets(gctx, &[rustc.host.to_string()])?
}
Ok(compile_opts)
}
#[derive(Default)]
struct Exec {
ran: AtomicBool,
link_line: Mutex<HashMap<PackageId, String>>,
}
use cargo::CargoResult;
use cargo_util::ProcessBuilder;
impl Executor for Exec {
fn exec(
&self,
cmd: &ProcessBuilder,
id: PackageId,
_target: &Target,
_mode: CompileMode,
on_stdout_line: &mut dyn FnMut(&str) -> CargoResult<()>,
on_stderr_line: &mut dyn FnMut(&str) -> CargoResult<()>,
) -> CargoResult<()> {
self.ran.store(true, Ordering::Relaxed);
cmd.exec_with_streaming(
on_stdout_line,
&mut |s| {
#[derive(serde::Deserialize, Debug)]
struct Message {
message: String,
level: String,
}
if let Ok(msg) = serde_json::from_str::<Message>(s) {
// suppress the native-static-libs messages
if msg.level == "note" {
if msg.message.starts_with("Link against the following native artifacts when linking against this static library") {
Ok(())
} else if let Some(link_line) = msg.message.strip_prefix("native-static-libs:") {
self.link_line.lock().unwrap().insert(id, link_line.to_string());
Ok(())
} else {
on_stderr_line(s)
}
} else {
on_stderr_line(s)
}
} else {
on_stderr_line(s)
}
},
false,
)
.map(drop)
}
}
use cargo::core::compiler::{unit_graph, UnitInterner};
use cargo::ops::create_bcx;
fn set_deps_args(
dep: &UnitDep,
graph: &UnitGraph,
extra_compiler_args: &mut HashMap<Unit, Vec<String>>,
global_args: &[String],
) {
if !dep.unit_for.is_for_host() {
for dep in graph[&dep.unit].iter() {
set_deps_args(dep, graph, extra_compiler_args, global_args);
}
extra_compiler_args
.entry(dep.unit.clone())
.or_insert_with(|| global_args.to_owned());
}
}
fn compile_with_exec(
ws: &Workspace<'_>,
options: &CompileOptions,
exec: &Arc<dyn Executor>,
rustc_target: &target::Target,
root_output: &Path,
args: &ArgMatches,
) -> CargoResult<HashMap<PackageId, PathBuf>> {
ws.emit_warnings()?;
let interner = UnitInterner::new();
let mut bcx = create_bcx(ws, options, &interner)?;
let unit_graph = &bcx.unit_graph;
let extra_compiler_args = &mut bcx.extra_compiler_args;
for unit in bcx.roots.iter() {
let pkg = &unit.pkg;
let capi_config = load_manifest_capi_config(pkg, rustc_target)?;
let name = &capi_config.library.name;
let install_paths = InstallPaths::new(name, rustc_target, args, &capi_config);
let pkg_rustflags = &capi_config.library.rustflags;
let mut leaf_args: Vec<String> = rustc_target
.shared_object_link_args(&capi_config, &install_paths.libdir, root_output)
.into_iter()
.flat_map(|l| ["-C".to_string(), format!("link-arg={l}")])
.collect();
leaf_args.extend(pkg_rustflags.clone());
leaf_args.push("--cfg".into());
leaf_args.push("cargo_c".into());
leaf_args.push("--print".into());
leaf_args.push("native-static-libs".into());
if args.flag("crt-static") {
leaf_args.push("-C".into());
leaf_args.push("target-feature=+crt-static".into());
}
extra_compiler_args.insert(unit.clone(), leaf_args.to_owned());
for dep in unit_graph[unit].iter() {
set_deps_args(dep, unit_graph, extra_compiler_args, pkg_rustflags);
}
}
if options.build_config.unit_graph {
unit_graph::emit_serialized_unit_graph(&bcx.roots, &bcx.unit_graph, ws.gctx())?;
return Ok(HashMap::new());
}
let cx = cargo::core::compiler::BuildRunner::new(&bcx)?;
let r = cx.compile(exec)?;
let out_dirs = r
.cdylibs
.iter()
.filter_map(|l| {
let id = l.unit.pkg.package_id();
if let Some(ref m) = l.script_meta {
if let Some(env) = r.extra_env.get(m) {
env.iter().find_map(|e| {
if e.0 == "OUT_DIR" {
Some((id, PathBuf::from(&e.1)))
} else {
None
}
})
} else {
None
}
} else {
None
}
})
.collect();
Ok(out_dirs)
}
#[derive(Debug)]
pub struct CPackage {
pub version: Version,
pub root_path: PathBuf,
pub capi_config: CApiConfig,
pub build_targets: BuildTargets,
pub install_paths: InstallPaths,
finger_print: FingerPrint,
}
impl CPackage {
fn from_package(
pkg: &mut Package,
args: &ArgMatches,
library_types: LibraryTypes,
rustc_target: &target::Target,
root_output: &Path,
) -> anyhow::Result<CPackage> {
let id = pkg.package_id();
let version = pkg.version().clone();
let root_path = pkg.root().to_path_buf();
let capi_config = load_manifest_capi_config(pkg, rustc_target)?;
patch_target(pkg, library_types, &capi_config)?;
let name = &capi_config.library.name;
let install_paths = InstallPaths::new(name, rustc_target, args, &capi_config);
let build_targets = BuildTargets::new(
name,
rustc_target,
root_output,
library_types,
&capi_config,
args.get_flag("meson"),
)?;
let finger_print = FingerPrint::new(
&id,
root_output,
&build_targets,
&install_paths,
&capi_config,
);
Ok(CPackage {
version,
root_path,
capi_config,
build_targets,