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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
#![allow(clippy::needless_doctest_main)]
#![allow(clippy::result_large_err)]
//!`system-deps` lets you write system dependencies in `Cargo.toml` metadata,
//! rather than programmatically in `build.rs`. This makes those dependencies
//! declarative, so other tools can read them as well.
//!
//! # Usage
//! In your `Cargo.toml`:
//!
//! ```toml
//! [build-dependencies]
//! system-deps = "2.0"
//! ```
//!
//! Then, to declare a dependency on `testlib >= 1.2`
//! add the following section:
//!
//! ```toml
//! [package.metadata.system-deps]
//! testlib = "1.2"
//! ```
//!
//! Finally, in your `build.rs`, add:
//!
//! ```should_panic
//! fn main() {
//! system_deps::Config::new().probe().unwrap();
//! }
//! ```
//!
//! # Version format
//!
//! Versions can be expressed in the following formats
//!
//! * "1.2" or ">= 1.2": At least version 1.2
//! * ">= 1.2, < 2.0": At least version 1.2 but less than version 2.0
//!
//! In the future more complicated version expressions might be supported.
//!
//! Note that these versions are not interpreted according to the semver rules, but based on the
//! rules defined by pkg-config.
//!
//! # Feature-specific dependency
//! You can easily declare an optional system dependency by associating it with a feature:
//!
//! ```toml
//! [package.metadata.system-deps]
//! testdata = { version = "4.5", feature = "use-testdata" }
//! ```
//!
//! `system-deps` will check for `testdata` only if the `use-testdata` feature has been enabled.
//!
//! # Optional dependency
//!
//! Another option is to use the `optional` setting, which can also be used using [features versions](#feature-versions):
//!
//! ```toml
//! [package.metadata.system-deps]
//! test-data = { version = "4.5", optional = true }
//! testmore = { version = "2", v3 = { version = "3.0", optional = true }}
//! ```
//!
//! `system-deps` will automatically export for each dependency a feature `system_deps_have_$DEP` where `$DEP`
//! is the `toml` key defining the dependency in [snake_case](https://en.wikipedia.org/wiki/Snake_case).
//! This can be used to check if an optional dependency has been found or not:
//!
//! ```
//! #[cfg(system_deps_have_testdata)]
//! println!("found test-data");
//! ```
//!
//! # Overriding library name
//! `toml` keys cannot contain dot characters so if your library name does, you can define it using the `name` field:
//!
//! ```toml
//! [package.metadata.system-deps]
//! glib = { name = "glib-2.0", version = "2.64" }
//! ```
//!
//! # Fallback library names
//! Some libraries may be available under different names on different platforms or distributions.
//! To allow for this, you can define fallback names to search for if the main library name does not work.
//!
//! ```toml
//! [package.metadata.system-deps]
//! aravis = { fallback-names = ["aravis-0.8"] }
//! ```
//!
//! You may also specify different fallback names for different versions:
//!
//! [package.metadata.system-deps.libfoo]
//! version = "0.1"
//! fallback-names = ["libfoo-0.1"]
//! v1 = { version = "1.0", fallback-names = ["libfoo1"] }
//! v2 = { version = "2.0", fallback-names = ["libfoo2"] }
//!
//! # Feature versions
//! `-sys` crates willing to support various versions of their underlying system libraries
//! can use features to control the version of the dependency required.
//! `system-deps` will pick the highest version among enabled features.
//! Such version features must use the pattern `v1_0`, `v1_2`, etc.
//!
//! ```toml
//! [features]
//! v1_2 = []
//! v1_4 = ["v1_2"]
//! v1_6 = ["v1_4"]
//!
//! [package.metadata.system-deps.gstreamer_1_0]
//! name = "gstreamer-1.0"
//! version = "1.0"
//! v1_2 = { version = "1.2" }
//! v1_4 = { version = "1.4" }
//! v1_6 = { version = "1.6" }
//! ```
//!
//! The same mechanism can be used to require a different library name depending on the version:
//!
//! ```toml
//! [package.metadata.system-deps.gst_gl]
//! name = "gstreamer-gl-1.0"
//! version = "1.14"
//! v1_18 = { version = "1.18", name = "gstreamer-gl-egl-1.0" }
//! ```
//!
//! # Target specific dependencies
//!
//! You can define target specific dependencies:
//!
//! ```toml
//! [package.metadata.system-deps.'cfg(target_os = "linux")']
//! testdata = "1"
//! [package.metadata.system-deps.'cfg(not(target_os = "macos"))']
//! testlib = "1"
//! [package.metadata.system-deps.'cfg(unix)']
//! testanotherlib = { version = "1", optional = true }
//! ```
//!
//! See [the Rust documentation](https://doc.rust-lang.org/reference/conditional-compilation.html)
//! for the exact syntax.
//! Currently, those keys are supported:
//! - `target_arch`
//! - `target_endian`
//! - `target_env`
//! - `target_family`
//! - `target_os`
//! - `target_pointer_width`
//! - `target_vendor`
//! - `unix` and `windows`
//!
//! # Overriding build flags
//! By default `system-deps` automatically defines the required build flags for each dependency using the information fetched from `pkg-config`.
//! These flags can be overridden using environment variables if needed:
//! - `SYSTEM_DEPS_$NAME_SEARCH_NATIVE` to override the [`cargo:rustc-link-search=native`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-searchkindpath) flag;
//! - `SYSTEM_DEPS_$NAME_SEARCH_FRAMEWORK` to override the [`cargo:rustc-link-search=framework`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-searchkindpath) flag;
//! - `SYSTEM_DEPS_$NAME_LIB` to override the [`cargo:rustc-link-lib`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-link-lib) flag;
//! - `SYSTEM_DEPS_$NAME_LIB_FRAMEWORK` to override the [`cargo:rustc-link-lib=framework`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-link-lib) flag;
//! - `SYSTEM_DEPS_$NAME_INCLUDE` to override the [`cargo:include`](https://kornel.ski/rust-sys-crate#headers) flag.
//!
//! With `$NAME` being the upper case name of the key defining the dependency in `Cargo.toml`.
//! For example `SYSTEM_DEPS_TESTLIB_SEARCH_NATIVE=/opt/lib` could be used to override a dependency named `testlib`.
//!
//! One can also define the environment variable `SYSTEM_DEPS_$NAME_NO_PKG_CONFIG` to fully disable `pkg-config` lookup
//! for the given dependency. In this case at least SYSTEM_DEPS_$NAME_LIB or SYSTEM_DEPS_$NAME_LIB_FRAMEWORK should be defined as well.
//!
//! # Internally build system libraries
//!
//! `-sys` crates can provide support for building and statically link their underlying system library as part of their build process.
//! Here is how to do this in your `build.rs`:
//! ```should_panic
//! fn main() {
//! system_deps::Config::new()
//! .add_build_internal("testlib", |lib, version| {
//! // Actually build the library here that fulfills the passed in version requirements
//! system_deps::Library::from_internal_pkg_config("build/path-to-pc-file", lib, "1.2.4")
//! })
//! .probe()
//! .unwrap();
//! }
//! ```
//!
//! This feature can be controlled using the `SYSTEM_DEPS_$NAME_BUILD_INTERNAL` environment variable
//! which can have the following values:
//! - `auto`: build the dependency only if the required version has not been found by `pkg-config`;
//! - `always`: always build the dependency, ignoring any version which may be installed on the system;
//! - `never`: (default) never build the dependency, `system-deps` will fail if the required version is not found on the system.
//!
//! You can also use the `SYSTEM_DEPS_BUILD_INTERNAL` environment variable with the same values
//! defining the behavior for all the dependencies which don't have `SYSTEM_DEPS_$NAME_BUILD_INTERNAL` defined.
//!
//! # Static linking
//!
//! By default all libraries are dynamically linked, except when build internally as [described above](#internally-build-system-libraries).
//! Libraries can be statically linked by defining the environment variable `SYSTEM_DEPS_$NAME_LINK=static`.
//! You can also use `SYSTEM_DEPS_LINK=static` to statically link all the libraries.
#![deny(missing_docs)]
#[cfg(test)]
#[macro_use]
extern crate lazy_static;
#[cfg(test)]
mod test;
use heck::{ToShoutySnakeCase, ToSnakeCase};
use std::collections::HashMap;
use std::env;
use std::fmt;
use std::ops::RangeBounds;
use std::path::{Path, PathBuf};
use std::str::FromStr;
mod metadata;
use metadata::MetaData;
/// system-deps errors
#[derive(Debug)]
pub enum Error {
/// pkg-config error
PkgConfig(pkg_config::Error),
/// One of the `Config::add_build_internal` closures failed
BuildInternalClosureError(String, BuildInternalClosureError),
/// Failed to read `Cargo.toml`
FailToRead(String, std::io::Error),
/// Raised when an error is detected in the metadata defined in `Cargo.toml`
InvalidMetadata(String),
/// Raised when dependency defined manually using `SYSTEM_DEPS_$NAME_NO_PKG_CONFIG`
/// did not define at least one lib using `SYSTEM_DEPS_$NAME_LIB` or
/// `SYSTEM_DEPS_$NAME_LIB_FRAMEWORK`
MissingLib(String),
/// An environment variable in the form of `SYSTEM_DEPS_$NAME_BUILD_INTERNAL`
/// contained an invalid value (allowed: `auto`, `always`, `never`)
BuildInternalInvalid(String),
/// system-deps has been asked to internally build a lib, through
/// `SYSTEM_DEPS_$NAME_BUILD_INTERNAL=always' or `SYSTEM_DEPS_$NAME_BUILD_INTERNAL=auto',
/// but not closure has been defined using `Config::add_build_internal` to build
/// this lib
BuildInternalNoClosure(String, String),
/// The library which has been build internally does not match the
/// required version defined in `Cargo.toml`
BuildInternalWrongVersion(String, String, String),
/// The `cfg()` expression used in `Cargo.toml` is currently not supported
UnsupportedCfg(String),
}
impl From<pkg_config::Error> for Error {
fn from(err: pkg_config::Error) -> Self {
Self::PkgConfig(err)
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::PkgConfig(e) => Some(e),
Self::BuildInternalClosureError(_, e) => Some(e),
Self::FailToRead(_, e) => Some(e),
_ => None,
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::PkgConfig(e) => write!(f, "{}", e),
Self::BuildInternalClosureError(s, e) => write!(f, "Failed to build {}: {}", s, e),
Self::FailToRead(s, _) => write!(f, "{}", s),
Self::InvalidMetadata(s) => write!(f, "{}", s),
Self::MissingLib(s) => write!(
f,
"You should define at least one lib using {} or {}",
EnvVariable::new_lib(s),
EnvVariable::new_lib_framework(s),
),
Self::BuildInternalInvalid(s) => write!(f, "{}", s),
Self::BuildInternalNoClosure(s1, s2) => write!(
f,
"Missing build internal closure for {} (version {})",
s1, s2
),
Self::BuildInternalWrongVersion(s1, s2, s3) => write!(
f,
"Internally built {} {} but minimum required version is {}",
s1, s2, s3
),
Self::UnsupportedCfg(s) => write!(f, "Unsupported cfg() expression: {}", s),
}
}
}
#[derive(Debug, Default)]
/// All the system dependencies retrieved by [Config::probe].
pub struct Dependencies {
libs: HashMap<String, Library>,
}
impl Dependencies {
/// Retrieve details about a system dependency.
///
/// # Arguments
///
/// * `name`: the name of the `toml` key defining the dependency in `Cargo.toml`
pub fn get_by_name(&self, name: &str) -> Option<&Library> {
self.libs.get(name)
}
/// A vector listing all system dependencies in sorted (for build reproducibility) order.
/// The first element of the tuple is the name of the `toml` key defining the
/// dependency in `Cargo.toml`.
pub fn iter(&self) -> Vec<(&str, &Library)> {
let mut v = self
.libs
.iter()
.map(|(k, v)| (k.as_str(), v))
.collect::<Vec<_>>();
v.sort_by_key(|x| x.0);
v
}
fn aggregate_str<F: Fn(&Library) -> &Vec<String>>(&self, getter: F) -> Vec<&str> {
let mut v = self
.libs
.values()
.flat_map(getter)
.map(|s| s.as_str())
.collect::<Vec<_>>();
v.sort_unstable();
v.dedup();
v
}
fn aggregate_path_buf<F: Fn(&Library) -> &Vec<PathBuf>>(&self, getter: F) -> Vec<&PathBuf> {
let mut v = self.libs.values().flat_map(getter).collect::<Vec<_>>();
v.sort();
v.dedup();
v
}
/// Returns a vector of [Library::libs] of each library, removing duplicates.
pub fn all_libs(&self) -> Vec<&str> {
let mut v = self
.libs
.values()
.flat_map(|l| l.libs.iter().map(|lib| lib.name.as_str()))
.collect::<Vec<_>>();
v.sort_unstable();
v.dedup();
v
}
/// Returns a vector of [Library::link_paths] of each library, removing duplicates.
pub fn all_link_paths(&self) -> Vec<&PathBuf> {
self.aggregate_path_buf(|l| &l.link_paths)
}
/// Returns a vector of [Library::frameworks] of each library, removing duplicates.
pub fn all_frameworks(&self) -> Vec<&str> {
self.aggregate_str(|l| &l.frameworks)
}
/// Returns a vector of [Library::framework_paths] of each library, removing duplicates.
pub fn all_framework_paths(&self) -> Vec<&PathBuf> {
self.aggregate_path_buf(|l| &l.framework_paths)
}
/// Returns a vector of [Library::include_paths] of each library, removing duplicates.
pub fn all_include_paths(&self) -> Vec<&PathBuf> {
self.aggregate_path_buf(|l| &l.include_paths)
}
/// Returns a vector of [Library::defines] of each library, removing duplicates.
pub fn all_defines(&self) -> Vec<(&str, &Option<String>)> {
let mut v = self
.libs
.values()
.flat_map(|l| l.defines.iter())
.map(|(k, v)| (k.as_str(), v))
.collect::<Vec<_>>();
v.sort();
v.dedup();
v
}
fn add(&mut self, name: &str, lib: Library) {
self.libs.insert(name.to_string(), lib);
}
fn override_from_flags(&mut self, env: &EnvVariables) {
for (name, lib) in self.libs.iter_mut() {
if let Some(value) = env.get(&EnvVariable::new_search_native(name)) {
lib.link_paths = split_paths(&value);
}
if let Some(value) = env.get(&EnvVariable::new_search_framework(name)) {
lib.framework_paths = split_paths(&value);
}
if let Some(value) = env.get(&EnvVariable::new_lib(name)) {
let should_be_linked_statically = env
.has_value(&EnvVariable::new_link(Some(name)), "static")
|| env.has_value(&EnvVariable::new_link(None), "static");
// If somebody manually mandates static linking, that is a
// clear intent. Let's just assume that a static lib is
// available and let the linking fail if the user is wrong.
let is_static_lib_available = should_be_linked_statically;
lib.libs = split_string(&value)
.into_iter()
.map(|l| InternalLib::new(l, is_static_lib_available))
.collect();
}
if let Some(value) = env.get(&EnvVariable::new_lib_framework(name)) {
lib.frameworks = split_string(&value);
}
if let Some(value) = env.get(&EnvVariable::new_include(name)) {
lib.include_paths = split_paths(&value);
}
}
}
fn gen_flags(&self) -> Result<BuildFlags, Error> {
let mut flags = BuildFlags::new();
let mut include_paths = Vec::new();
for (name, lib) in self.iter() {
include_paths.extend(lib.include_paths.clone());
if lib.source == Source::EnvVariables
&& lib.libs.is_empty()
&& lib.frameworks.is_empty()
{
return Err(Error::MissingLib(name.to_string()));
}
lib.link_paths
.iter()
.for_each(|l| flags.add(BuildFlag::SearchNative(l.to_string_lossy().to_string())));
lib.framework_paths.iter().for_each(|f| {
flags.add(BuildFlag::SearchFramework(f.to_string_lossy().to_string()))
});
lib.libs.iter().for_each(|l| {
flags.add(BuildFlag::Lib(
l.name.clone(),
lib.statik && l.is_static_available,
))
});
lib.frameworks
.iter()
.for_each(|f| flags.add(BuildFlag::LibFramework(f.clone())));
}
// Export DEP_$CRATE_INCLUDE env variable with the headers paths,
// see https://kornel.ski/rust-sys-crate#headers
if !include_paths.is_empty() {
if let Ok(paths) = std::env::join_paths(include_paths) {
flags.add(BuildFlag::Include(paths.to_string_lossy().to_string()));
}
}
// Export cargo:rerun-if-env-changed instructions for all env variables affecting system-deps behaviour
flags.add(BuildFlag::RerunIfEnvChanged(
EnvVariable::new_build_internal(None),
));
flags.add(BuildFlag::RerunIfEnvChanged(EnvVariable::new_link(None)));
for (name, _lib) in self.libs.iter() {
EnvVariable::set_rerun_if_changed_for_all_variants(&mut flags, name);
}
Ok(flags)
}
}
#[derive(Debug)]
/// Error used in return value of `Config::add_build_internal` closures
pub enum BuildInternalClosureError {
/// `pkg-config` error
PkgConfig(pkg_config::Error),
/// General failure
Failed(String),
}
impl From<pkg_config::Error> for BuildInternalClosureError {
fn from(err: pkg_config::Error) -> Self {
Self::PkgConfig(err)
}
}
impl BuildInternalClosureError {
/// Create a new `BuildInternalClosureError::Failed` representing a general
/// failure.
///
/// # Arguments
///
/// * `details`: human-readable details about the failure
pub fn failed(details: &str) -> Self {
Self::Failed(details.to_string())
}
}
impl std::error::Error for BuildInternalClosureError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::PkgConfig(e) => Some(e),
_ => None,
}
}
}
impl fmt::Display for BuildInternalClosureError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::PkgConfig(e) => write!(f, "{}", e),
Self::Failed(s) => write!(f, "{}", s),
}
}
}
// Enum representing the environment variables user can define to tune system-deps.
#[derive(Debug, PartialEq)]
enum EnvVariable {
Lib(String),
LibFramework(String),
SearchNative(String),
SearchFramework(String),
Include(String),
NoPkgConfig(String),
BuildInternal(Option<String>),
Link(Option<String>),
}
impl EnvVariable {
fn new_lib(lib: &str) -> Self {
Self::Lib(lib.to_string())
}
fn new_lib_framework(lib: &str) -> Self {
Self::LibFramework(lib.to_string())
}
fn new_search_native(lib: &str) -> Self {
Self::SearchNative(lib.to_string())
}
fn new_search_framework(lib: &str) -> Self {
Self::SearchFramework(lib.to_string())
}
fn new_include(lib: &str) -> Self {
Self::Include(lib.to_string())
}
fn new_no_pkg_config(lib: &str) -> Self {
Self::NoPkgConfig(lib.to_string())
}
fn new_build_internal(lib: Option<&str>) -> Self {
Self::BuildInternal(lib.map(|l| l.to_string()))
}
fn new_link(lib: Option<&str>) -> Self {
Self::Link(lib.map(|l| l.to_string()))
}
fn suffix(&self) -> &'static str {
match self {
EnvVariable::Lib(_) => "LIB",
EnvVariable::LibFramework(_) => "LIB_FRAMEWORK",
EnvVariable::SearchNative(_) => "SEARCH_NATIVE",
EnvVariable::SearchFramework(_) => "SEARCH_FRAMEWORK",
EnvVariable::Include(_) => "INCLUDE",
EnvVariable::NoPkgConfig(_) => "NO_PKG_CONFIG",
EnvVariable::BuildInternal(_) => "BUILD_INTERNAL",
EnvVariable::Link(_) => "LINK",
}
}
fn set_rerun_if_changed_for_all_variants(flags: &mut BuildFlags, name: &str) {
#[inline]
fn add_to_flags(flags: &mut BuildFlags, var: EnvVariable) {
flags.add(BuildFlag::RerunIfEnvChanged(var));
}
add_to_flags(flags, EnvVariable::new_lib(name));
add_to_flags(flags, EnvVariable::new_lib_framework(name));
add_to_flags(flags, EnvVariable::new_search_native(name));
add_to_flags(flags, EnvVariable::new_search_framework(name));
add_to_flags(flags, EnvVariable::new_include(name));
add_to_flags(flags, EnvVariable::new_no_pkg_config(name));
add_to_flags(flags, EnvVariable::new_build_internal(Some(name)));
add_to_flags(flags, EnvVariable::new_link(Some(name)));
}
}
impl fmt::Display for EnvVariable {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let suffix = match self {
EnvVariable::Lib(lib)
| EnvVariable::LibFramework(lib)
| EnvVariable::SearchNative(lib)
| EnvVariable::SearchFramework(lib)
| EnvVariable::Include(lib)
| EnvVariable::NoPkgConfig(lib)
| EnvVariable::BuildInternal(Some(lib))
| EnvVariable::Link(Some(lib)) => {
format!("{}_{}", lib.to_shouty_snake_case(), self.suffix())
}
EnvVariable::BuildInternal(None) | EnvVariable::Link(None) => self.suffix().to_string(),
};
write!(f, "SYSTEM_DEPS_{}", suffix)
}
}
type FnBuildInternal =
dyn FnOnce(&str, &str) -> std::result::Result<Library, BuildInternalClosureError>;
/// Structure used to configure `metadata` before starting to probe for dependencies
pub struct Config {
env: EnvVariables,
build_internals: HashMap<String, Box<FnBuildInternal>>,
}
impl Default for Config {
fn default() -> Self {
Self::new_with_env(EnvVariables::Environment)
}
}
impl Config {
/// Create a new set of configuration
pub fn new() -> Self {
Self::default()
}
fn new_with_env(env: EnvVariables) -> Self {
Self {
env,
build_internals: HashMap::new(),
}
}
/// Probe all libraries configured in the Cargo.toml
/// `[package.metadata.system-deps]` section.
///
/// The returned hash is using the `toml` key defining the dependency as key.
pub fn probe(self) -> Result<Dependencies, Error> {
let libraries = self.probe_full()?;
let flags = libraries.gen_flags()?;
// Output cargo flags
println!("{}", flags);
for (name, _) in libraries.iter() {
println!("cargo:rustc-cfg=system_deps_have_{}", name.to_snake_case());
}
Ok(libraries)
}
/// Add hook so system-deps can internally build library `name` if requested by user.
///
/// It will only be triggered if the environment variable
/// `SYSTEM_DEPS_$NAME_BUILD_INTERNAL` is defined with either `always` or
/// `auto` as value. In the latter case, `func` is called only if the requested
/// version of the library was not found on the system.
///
/// # Arguments
/// * `name`: the name of the library, as defined in `Cargo.toml`
/// * `func`: closure called when internally building the library.
/// It receives as argument the library name, and the minimum version required.
pub fn add_build_internal<F>(self, name: &str, func: F) -> Self
where
F: 'static + FnOnce(&str, &str) -> std::result::Result<Library, BuildInternalClosureError>,
{
let mut build_internals = self.build_internals;
build_internals.insert(name.to_string(), Box::new(func));
Self {
env: self.env,
build_internals,
}
}
fn probe_full(mut self) -> Result<Dependencies, Error> {
let mut libraries = self.probe_pkg_config()?;
libraries.override_from_flags(&self.env);
Ok(libraries)
}
fn probe_pkg_config(&mut self) -> Result<Dependencies, Error> {
let dir = self
.env
.get("CARGO_MANIFEST_DIR")
.ok_or_else(|| Error::InvalidMetadata("$CARGO_MANIFEST_DIR not set".into()))?;
let mut path = PathBuf::from(dir);
path.push("Cargo.toml");
let metadata = MetaData::from_file(&path)?;
let mut libraries = Dependencies::default();
for dep in metadata.deps.iter() {
if let Some(cfg) = &dep.cfg {
// Check if `cfg()` expression matches the target settings
if !self.check_cfg(cfg)? {
continue;
}
}
let mut enabled_feature_overrides = Vec::new();
for o in dep.version_overrides.iter() {
if self.has_feature(&o.key) {
enabled_feature_overrides.push(o);
}
}
if let Some(feature) = dep.feature.as_ref() {
if !self.has_feature(feature) {
continue;
}
}
// Pick the highest feature enabled version
let version;
let lib_name;
let fallback_lib_names;
let optional;
if enabled_feature_overrides.is_empty() {
version = dep.version.as_deref();
lib_name = dep.lib_name();
fallback_lib_names = dep.fallback_names.as_deref().unwrap_or(&[]);
optional = dep.optional;
} else {
enabled_feature_overrides.sort_by(|a, b| {
fn min_version(r: metadata::VersionRange) -> &str {
match r.start_bound() {
std::ops::Bound::Unbounded => unreachable!(),
std::ops::Bound::Excluded(_) => unreachable!(),
std::ops::Bound::Included(b) => b,
}
}
let a = min_version(metadata::parse_version(&a.version));
let b = min_version(metadata::parse_version(&b.version));
version_compare::compare(a, b)
.expect("failed to compare versions")
.ord()
.expect("invalid version")
});
let highest = enabled_feature_overrides.into_iter().last().unwrap();
version = Some(highest.version.as_str());
lib_name = highest.name.as_deref().unwrap_or(dep.lib_name());
fallback_lib_names = highest
.fallback_names
.as_deref()
.or(dep.fallback_names.as_deref())
.unwrap_or(&[]);
optional = highest.optional.unwrap_or(dep.optional);
};
let version = version.ok_or_else(|| {
Error::InvalidMetadata(format!("No version defined for {}", dep.key))
})?;
let name = &dep.key;
let build_internal = self.get_build_internal_status(name)?;
// should the lib be statically linked?
let statik = self
.env
.has_value(&EnvVariable::new_link(Some(name)), "static")
|| self.env.has_value(&EnvVariable::new_link(None), "static");
let mut library = if self.env.contains(&EnvVariable::new_no_pkg_config(name)) {
Library::from_env_variables(name)
} else if build_internal == BuildInternal::Always {
self.call_build_internal(lib_name, version)?
} else {
let mut config = pkg_config::Config::new();
config
.print_system_libs(false)
.cargo_metadata(false)
.range_version(metadata::parse_version(version))
.statik(statik);
match Self::probe_with_fallback(config, lib_name, fallback_lib_names) {
Ok((lib_name, lib)) => Library::from_pkg_config(lib_name, lib),
Err(e) => {
if build_internal == BuildInternal::Auto {
// Try building the lib internally as a fallback
self.call_build_internal(name, version)?
} else if optional {
// If the dep is optional just skip it
continue;
} else {
return Err(e.into());
}
}
}
};
library.statik = statik;
libraries.add(name, library);
}
Ok(libraries)
}
fn probe_with_fallback<'a>(
config: pkg_config::Config,
name: &'a str,
fallback_names: &'a [String],
) -> Result<(&'a str, pkg_config::Library), pkg_config::Error> {
let error = match config.probe(name) {
Ok(x) => return Ok((name, x)),
Err(e) => e,
};
for name in fallback_names {
if let Ok(library) = config.probe(name) {
return Ok((name, library));
}
}
Err(error)
}
fn get_build_internal_env_var(&self, var: EnvVariable) -> Result<Option<BuildInternal>, Error> {
match self.env.get(&var).as_deref() {
Some(s) => {
let b = BuildInternal::from_str(s).map_err(|_| {
Error::BuildInternalInvalid(format!(
"Invalid value in {}: {} (allowed: 'auto', 'always', 'never')",
var, s
))
})?;
Ok(Some(b))
}
None => Ok(None),
}
}
fn get_build_internal_status(&self, name: &str) -> Result<BuildInternal, Error> {
match self.get_build_internal_env_var(EnvVariable::new_build_internal(Some(name)))? {
Some(b) => Ok(b),
None => Ok(self
.get_build_internal_env_var(EnvVariable::new_build_internal(None))?
.unwrap_or_default()),
}
}
fn call_build_internal(&mut self, name: &str, version_str: &str) -> Result<Library, Error> {
let lib = match self.build_internals.remove(name) {
Some(f) => f(name, version_str)
.map_err(|e| Error::BuildInternalClosureError(name.into(), e))?,
None => {
return Err(Error::BuildInternalNoClosure(
name.into(),
version_str.into(),
))
}
};
// Check that the lib built internally matches the required version
let version = metadata::parse_version(version_str);
fn min_version(r: metadata::VersionRange) -> &str {
match r.start_bound() {
std::ops::Bound::Unbounded => unreachable!(),
std::ops::Bound::Excluded(_) => unreachable!(),
std::ops::Bound::Included(b) => b,
}
}
fn max_version(r: metadata::VersionRange) -> Option<&str> {
match r.end_bound() {
std::ops::Bound::Included(_) => unreachable!(),
std::ops::Bound::Unbounded => None,
std::ops::Bound::Excluded(b) => Some(*b),
}
}
let min = min_version(version.clone());
if version_compare::compare(&lib.version, min) == Ok(version_compare::Cmp::Lt) {
return Err(Error::BuildInternalWrongVersion(
name.into(),
lib.version,
version_str.into(),
));
}
if let Some(max) = max_version(version) {
if version_compare::compare(&lib.version, max) == Ok(version_compare::Cmp::Ge) {
return Err(Error::BuildInternalWrongVersion(
name.into(),
lib.version,
version_str.into(),
));
}
}
Ok(lib)
}
fn has_feature(&self, feature: &str) -> bool {
let var: &str = &format!("CARGO_FEATURE_{}", feature.to_uppercase().replace('-', "_"));
self.env.contains(var)
}
fn check_cfg(&self, cfg: &cfg_expr::Expression) -> Result<bool, Error> {
use cfg_expr::{targets::get_builtin_target_by_triple, Predicate};
let target = self
.env
.get("TARGET")
.expect("no TARGET env variable defined");
let res = if let Some(target) = get_builtin_target_by_triple(&target) {
cfg.eval(|pred| match pred {
Predicate::Target(tp) => Some(tp.matches(target)),
_ => None,
})
} else {
// Attempt to parse the triple, the target is not an official builtin
let triple: cfg_expr::target_lexicon::Triple = target.parse().unwrap_or_else(|e| panic!("TARGET {} is not a builtin target, and it could not be parsed as a valid triplet: {}", target, e));
cfg.eval(|pred| match pred {
Predicate::Target(tp) => Some(tp.matches(&triple)),
_ => None,
})
};
res.ok_or_else(|| Error::UnsupportedCfg(cfg.original().to_string()))
}
}
#[derive(Debug, PartialEq, Eq)]
/// From where the library settings have been retrieved
pub enum Source {
/// Settings have been retrieved from `pkg-config`
PkgConfig,
/// Settings have been defined using user defined environment variables
EnvVariables,
}
#[derive(Debug, PartialEq, Eq)]
/// Internal library name and if a static library is available on the system
pub struct InternalLib {
/// Name of the library
pub name: String,
/// Indicates if a static library is available on the system
pub is_static_available: bool,
}
impl InternalLib {
fn new(name: String, is_static_available: bool) -> Self {
InternalLib {
name,
is_static_available,
}
}
}
#[derive(Debug)]
/// A system dependency
pub struct Library {
/// Name of the library
pub name: String,
/// From where the library settings have been retrieved
pub source: Source,
/// libraries the linker should link on
pub libs: Vec<InternalLib>,
/// directories where the compiler should look for libraries
pub link_paths: Vec<PathBuf>,
/// frameworks the linker should link on
pub frameworks: Vec<String>,
/// directories where the compiler should look for frameworks
pub framework_paths: Vec<PathBuf>,
/// directories where the compiler should look for header files
pub include_paths: Vec<PathBuf>,
/// macros that should be defined by the compiler
pub defines: HashMap<String, Option<String>>,
/// library version
pub version: String,
/// library is statically linked
pub statik: bool,
}
impl Library {
fn from_pkg_config(name: &str, l: pkg_config::Library) -> Self {
// taken from: https://github.com/rust-lang/pkg-config-rs/blob/54325785816695df031cef3b26b6a9a203bbc01b/src/lib.rs#L502
let system_roots = if cfg!(target_os = "macos") {
vec![PathBuf::from("/Library"), PathBuf::from("/System")]
} else {
let sysroot = env::var_os("PKG_CONFIG_SYSROOT_DIR")
.or_else(|| env::var_os("SYSROOT"))
.map(PathBuf::from);
if cfg!(target_os = "windows") {
if let Some(sysroot) = sysroot {
vec![sysroot]
} else {
vec![]
}
} else {
vec![sysroot.unwrap_or_else(|| PathBuf::from("/usr"))]
}
};
let is_static_available = |name: &String| -> bool {
let libnames = {
let mut names = vec![format!("lib{}.a", name)];
if cfg!(target_os = "windows") {
names.push(format!("{}.lib", name));
}
names
};
l.link_paths.iter().any(|dir| {
let library_exists = libnames.iter().any(|libname| dir.join(libname).exists());
library_exists && !system_roots.iter().any(|sys| dir.starts_with(sys))
})
};
Self {
name: name.to_string(),
source: Source::PkgConfig,
libs: l
.libs
.iter()
.map(|lib| InternalLib::new(lib.to_owned(), is_static_available(lib)))
.collect(),
link_paths: l.link_paths,
include_paths: l.include_paths,
frameworks: l.frameworks,
framework_paths: l.framework_paths,
defines: l.defines,
version: l.version,
statik: false,
}
}
fn from_env_variables(name: &str) -> Self {
Self {
name: name.to_string(),
source: Source::EnvVariables,
libs: Vec::new(),
link_paths: Vec::new(),
include_paths: Vec::new(),
frameworks: Vec::new(),
framework_paths: Vec::new(),
defines: HashMap::new(),
version: String::new(),
statik: false,
}
}
/// Create a `Library` by probing `pkg-config` on an internal directory.
/// This helper is meant to be used by `Config::add_build_internal` closures
/// after having built the lib to return the library information to system-deps.
///
/// This library will be statically linked.
///
/// # Arguments
///
/// * `pkg_config_dir`: the directory where the library `.pc` file is located
/// * `lib`: the name of the library to look for
/// * `version`: the minimum version of `lib` required
///
/// # Examples
///
/// ```
/// let mut config = system_deps::Config::new();
/// config.add_build_internal("mylib", |lib, version| {
/// // Actually build the library here that fulfills the passed in version requirements
/// system_deps::Library::from_internal_pkg_config("build-dir",
/// lib, "1.2.4")
/// });
/// ```
pub fn from_internal_pkg_config<P>(
pkg_config_dir: P,
lib: &str,
version: &str,
) -> Result<Self, BuildInternalClosureError>
where
P: AsRef<Path>,
{
// save current PKG_CONFIG_PATH, so we can restore it
let old = env::var("PKG_CONFIG_PATH");
match old {
Ok(ref s) => {
let mut paths = env::split_paths(s).collect::<Vec<_>>();
paths.push(PathBuf::from(pkg_config_dir.as_ref()));
let paths = env::join_paths(paths).unwrap();
env::set_var("PKG_CONFIG_PATH", paths)
}
Err(_) => env::set_var("PKG_CONFIG_PATH", pkg_config_dir.as_ref()),
}
let pkg_lib = pkg_config::Config::new()
.atleast_version(version)
.print_system_libs(false)
.cargo_metadata(false)
.statik(true)
.probe(lib);
env::set_var("PKG_CONFIG_PATH", old.unwrap_or_else(|_| "".into()));
match pkg_lib {
Ok(pkg_lib) => {
let mut lib = Self::from_pkg_config(lib, pkg_lib);
lib.statik = true;
Ok(lib)
}
Err(e) => Err(e.into()),
}
}
}
#[derive(Debug)]
enum EnvVariables {
Environment,
#[cfg(test)]
Mock(HashMap<&'static str, String>),
}
trait EnvVariablesExt<T> {
fn contains(&self, var: T) -> bool {
self.get(var).is_some()
}
fn get(&self, var: T) -> Option<String>;
fn has_value(&self, var: T, val: &str) -> bool {
match self.get(var) {
Some(v) => v == val,
None => false,
}
}
}
impl EnvVariablesExt<&str> for EnvVariables {
fn get(&self, var: &str) -> Option<String> {
match self {
EnvVariables::Environment => env::var(var).ok(),
#[cfg(test)]
EnvVariables::Mock(vars) => vars.get(var).cloned(),
}
}
}
impl EnvVariablesExt<&EnvVariable> for EnvVariables {
fn get(&self, var: &EnvVariable) -> Option<String> {
let s = var.to_string();
let var: &str = s.as_ref();
self.get(var)
}
}
#[derive(Debug, PartialEq)]
enum BuildFlag {
Include(String),
SearchNative(String),
SearchFramework(String),
Lib(String, bool), // true if static
LibFramework(String),
RerunIfEnvChanged(EnvVariable),
}
impl fmt::Display for BuildFlag {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
BuildFlag::Include(paths) => write!(f, "include={}", paths),
BuildFlag::SearchNative(lib) => write!(f, "rustc-link-search=native={}", lib),
BuildFlag::SearchFramework(lib) => write!(f, "rustc-link-search=framework={}", lib),
BuildFlag::Lib(lib, statik) => {
if *statik {
write!(f, "rustc-link-lib=static={}", lib)
} else {
write!(f, "rustc-link-lib={}", lib)
}
}
BuildFlag::LibFramework(lib) => write!(f, "rustc-link-lib=framework={}", lib),
BuildFlag::RerunIfEnvChanged(env) => write!(f, "rerun-if-env-changed={}", env),
}
}
}
#[derive(Debug, PartialEq)]
struct BuildFlags(Vec<BuildFlag>);
impl BuildFlags {
fn new() -> Self {
Self(Vec::new())
}
fn add(&mut self, flag: BuildFlag) {
self.0.push(flag);
}
}
impl fmt::Display for BuildFlags {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for flag in self.0.iter() {
writeln!(f, "cargo:{}", flag)?;
}
Ok(())
}
}
fn split_paths(value: &str) -> Vec<PathBuf> {
if !value.is_empty() {
let paths = env::split_paths(&value);
paths.map(|p| Path::new(&p).into()).collect()
} else {
Vec::new()
}
}
fn split_string(value: &str) -> Vec<String> {
if !value.is_empty() {
value.split(' ').map(|s| s.to_string()).collect()
} else {
Vec::new()
}
}
#[derive(Debug, PartialEq)]
enum BuildInternal {
Auto,
Always,
Never,
}
impl Default for BuildInternal {
fn default() -> Self {
Self::Never
}
}
impl FromStr for BuildInternal {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"auto" => Ok(Self::Auto),
"always" => Ok(Self::Always),
"never" => Ok(Self::Never),
v => Err(ParseError::VariantNotFound(v.to_owned())),
}
}
}
#[derive(Debug, PartialEq)]
enum ParseError {
VariantNotFound(String),
}
impl std::error::Error for ParseError {}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::VariantNotFound(v) => write!(f, "Unknown variant: `{}`", v),
}
}
}