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
#![deny(missing_docs)]
//! A library to detect Conda virtual packages present on a system.
//!
//! A virtual package represents a package that is injected into the solver to provide system
//! information to packages. This allows packages to add dependencies on specific system features,
//! like the platform version, the machines architecture, or the availability of a Cuda driver
//! with a specific version.
//!
//! This library provides both a low- and high level API to detect versions of virtual packages for
//! the host system.
//!
//! To detect all virtual packages for the host system use the [`VirtualPackage::current`] method
//! which will return a memoized slice of all detected virtual packages. The `VirtualPackage` enum
//! represents all available virtual package types. Using it provides some flexibility to the
//! user to not care about which exact virtual packages exist but still allows users to override
//! specific virtual package behavior. Say for instance you just want to detect the capabilities of
//! the host system but you still want to restrict the targeted linux version. You can convert an
//! instance of `VirtualPackage` to `GenericVirtualPackage` which erases any typing for specific
//! virtual packages.
//!
//! Each virtual package is also represented by a struct which can be used to detect the specifics
//! of one virtual package. For instance the [`Linux::current`] method returns an instance of
//! `Linux` which contains the current Linux version. It also provides conversions to the higher
//! level API.
//!
//! Finally at the core of the library are detection functions to perform specific capability
//! detections that are not tied to anything related to virtual packages. See
//! [`cuda::detect_cuda_version_via_libcuda`] as an example.
pub mod cuda;
pub mod libc;
pub mod linux;
pub mod osx;
use archspec::cpu::Microarchitecture;
use once_cell::sync::OnceCell;
use rattler_conda_types::{GenericVirtualPackage, PackageName, Platform, Version};
use std::hash::{Hash, Hasher};
use std::sync::Arc;
use crate::osx::ParseOsxVersionError;
use libc::DetectLibCError;
use linux::ParseLinuxVersionError;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
/// An enum that represents all virtual package types provided by this library.
#[derive(Clone, Eq, PartialEq, Hash, Debug)]
pub enum VirtualPackage {
/// Available on windows
Win,
/// Available on unix based platforms
Unix,
/// Available when running on Linux
Linux(Linux),
/// Available when running on OSX
Osx(Osx),
/// Available LibC family and version
LibC(LibC),
/// Available Cuda version
Cuda(Cuda),
/// The CPU architecture
Archspec(Archspec),
}
impl From<VirtualPackage> for GenericVirtualPackage {
fn from(package: VirtualPackage) -> Self {
match package {
VirtualPackage::Win => GenericVirtualPackage {
name: PackageName::new_unchecked("__win"),
version: Version::major(0),
build_string: "0".into(),
},
VirtualPackage::Unix => GenericVirtualPackage {
name: PackageName::new_unchecked("__unix"),
version: Version::major(0),
build_string: "0".into(),
},
VirtualPackage::Linux(linux) => linux.into(),
VirtualPackage::Osx(osx) => osx.into(),
VirtualPackage::LibC(libc) => libc.into(),
VirtualPackage::Cuda(cuda) => cuda.into(),
VirtualPackage::Archspec(spec) => spec.into(),
}
}
}
impl VirtualPackage {
/// Returns virtual packages detected for the current system or an error if the versions could
/// not be properly detected.
pub fn current() -> Result<&'static [Self], DetectVirtualPackageError> {
static DETECED_VIRTUAL_PACKAGES: OnceCell<Vec<VirtualPackage>> = OnceCell::new();
DETECED_VIRTUAL_PACKAGES
.get_or_try_init(try_detect_virtual_packages)
.map(Vec::as_slice)
}
}
/// An error that might be returned by [`VirtualPackage::current`].
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum DetectVirtualPackageError {
#[error(transparent)]
ParseLinuxVersion(#[from] ParseLinuxVersionError),
#[error(transparent)]
ParseMacOsVersion(#[from] ParseOsxVersionError),
#[error(transparent)]
DetectLibC(#[from] DetectLibCError),
}
// Detect the available virtual packages on the system
fn try_detect_virtual_packages() -> Result<Vec<VirtualPackage>, DetectVirtualPackageError> {
let mut result = Vec::new();
let platform = Platform::current();
if platform.is_unix() {
result.push(VirtualPackage::Unix);
}
if platform.is_windows() {
result.push(VirtualPackage::Win);
}
if platform.is_linux() {
if let Some(linux_version) = Linux::current()? {
result.push(linux_version.into());
}
if let Some(libc) = LibC::current()? {
result.push(libc.into());
}
}
if platform.is_osx() {
if let Some(osx) = Osx::current()? {
result.push(osx.into());
}
}
if let Some(cuda) = Cuda::current() {
result.push(cuda.into());
}
if let Some(archspec) = Archspec::current() {
result.push(archspec.into());
}
Ok(result)
}
/// Linux virtual package description
#[derive(Clone, Eq, PartialEq, Hash, Debug, Deserialize)]
pub struct Linux {
/// The version of linux
pub version: Version,
}
impl Linux {
/// Returns the Linux version of the current platform.
///
/// Returns an error if determining the Linux version resulted in an error. Returns `None` if
/// the current platform is not a Linux based platform.
pub fn current() -> Result<Option<Self>, ParseLinuxVersionError> {
Ok(linux::linux_version()?.map(|version| Self { version }))
}
}
impl From<Linux> for GenericVirtualPackage {
fn from(linux: Linux) -> Self {
GenericVirtualPackage {
name: PackageName::new_unchecked("__linux"),
version: linux.version,
build_string: "0".into(),
}
}
}
impl From<Linux> for VirtualPackage {
fn from(linux: Linux) -> Self {
VirtualPackage::Linux(linux)
}
}
/// `LibC` virtual package description
#[derive(Clone, Eq, PartialEq, Hash, Debug, Deserialize)]
pub struct LibC {
/// The family of LibC. This could be glibc for instance.
pub family: String,
/// The version of the libc distribution.
pub version: Version,
}
impl LibC {
/// Returns the `LibC` family and version of the current platform.
///
/// Returns an error if determining the `LibC` family and version resulted in an error. Returns
/// `None` if the current platform does not have an available version of `LibC`.
pub fn current() -> Result<Option<Self>, DetectLibCError> {
Ok(libc::libc_family_and_version()?.map(|(family, version)| Self { family, version }))
}
}
#[allow(clippy::fallible_impl_from)]
impl From<LibC> for GenericVirtualPackage {
fn from(libc: LibC) -> Self {
GenericVirtualPackage {
// TODO: Convert the family to a valid package name. We can simply replace invalid
// characters.
name: format!("__{}", libc.family.to_lowercase())
.try_into()
.unwrap(),
version: libc.version,
build_string: "0".into(),
}
}
}
impl From<LibC> for VirtualPackage {
fn from(libc: LibC) -> Self {
VirtualPackage::LibC(libc)
}
}
/// Cuda virtual package description
#[derive(Clone, Eq, PartialEq, Hash, Debug, Deserialize)]
pub struct Cuda {
/// The maximum supported Cuda version.
pub version: Version,
}
impl Cuda {
/// Returns the maximum Cuda version available on the current platform.
pub fn current() -> Option<Self> {
cuda::cuda_version().map(|version| Self { version })
}
}
impl From<Cuda> for GenericVirtualPackage {
fn from(cuda: Cuda) -> Self {
GenericVirtualPackage {
name: PackageName::new_unchecked("__cuda"),
version: cuda.version,
build_string: "0".into(),
}
}
}
impl From<Cuda> for VirtualPackage {
fn from(cuda: Cuda) -> Self {
VirtualPackage::Cuda(cuda)
}
}
/// Archspec describes the CPU architecture
#[derive(Clone, Debug)]
pub struct Archspec {
/// The associated microarchitecture
pub spec: Arc<Microarchitecture>,
}
impl Serialize for Archspec {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
self.spec.name().serialize(serializer)
}
}
impl<'de> Deserialize<'de> for Archspec {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let name = String::deserialize(deserializer)?;
let spec = archspec::cpu::Microarchitecture::known_targets()
.get(&name)
.cloned()
.unwrap_or_else(|| Arc::new(archspec::cpu::Microarchitecture::generic(&name)));
Ok(Self { spec })
}
}
impl Hash for Archspec {
fn hash<H: Hasher>(&self, state: &mut H) {
self.spec.name().hash(state);
}
}
impl PartialEq<Self> for Archspec {
fn eq(&self, other: &Self) -> bool {
self.spec.name() == other.spec.name()
}
}
impl Eq for Archspec {}
impl From<Arc<Microarchitecture>> for Archspec {
fn from(arch: Arc<Microarchitecture>) -> Self {
Self { spec: arch }
}
}
impl Archspec {
/// Returns the current CPU architecture
pub fn current() -> Option<Self> {
archspec::cpu::host().ok().map(Into::into)
}
/// Returns the minimal supported archspec architecture for the given
/// platform.
#[allow(clippy::match_same_arms)]
pub fn from_platform(platform: Platform) -> Option<Self> {
// The values are taken from the archspec-json library.
// See: https://github.com/archspec/archspec-json/blob/master/cpu/microarchitectures.json
let archspec_name = match platform {
Platform::NoArch | Platform::Unknown => return None,
Platform::EmscriptenWasm32 | Platform::WasiWasm32 => return None,
Platform::Win32 | Platform::Linux32 => "x86",
Platform::Win64 | Platform::Osx64 | Platform::Linux64 => "x86_64",
Platform::LinuxAarch64 | Platform::LinuxArmV6l | Platform::LinuxArmV7l => "aarch64",
Platform::LinuxPpc64le => "ppc64le",
Platform::LinuxPpc64 => "ppc64",
Platform::LinuxS390X => "s390x",
Platform::LinuxRiscv32 => "riscv32",
Platform::LinuxRiscv64 => "riscv64",
// TODO: There must be a minimal aarch64 version that windows supports.
Platform::WinArm64 => "aarch64",
// The first every Apple Silicon Macs are based on m1.
Platform::OsxArm64 => "m1",
};
Some(
archspec::cpu::Microarchitecture::known_targets()
.get(archspec_name)
.cloned()
.unwrap_or_else(|| {
Arc::new(archspec::cpu::Microarchitecture::generic(archspec_name))
})
.into(),
)
}
}
impl From<Archspec> for GenericVirtualPackage {
fn from(archspec: Archspec) -> Self {
GenericVirtualPackage {
name: PackageName::new_unchecked("__archspec"),
version: Version::major(1),
build_string: archspec.spec.name().to_string(),
}
}
}
impl From<Archspec> for VirtualPackage {
fn from(archspec: Archspec) -> Self {
VirtualPackage::Archspec(archspec)
}
}
/// OSX virtual package description
#[derive(Clone, Eq, PartialEq, Hash, Debug, Deserialize)]
pub struct Osx {
/// The OSX version
pub version: Version,
}
impl Osx {
/// Returns the OSX version of the current platform.
///
/// Returns an error if determining the OSX version resulted in an error. Returns `None` if
/// the current platform is not an OSX based platform.
pub fn current() -> Result<Option<Self>, ParseOsxVersionError> {
Ok(osx::osx_version()?.map(|version| Self { version }))
}
}
impl From<Osx> for GenericVirtualPackage {
fn from(osx: Osx) -> Self {
GenericVirtualPackage {
name: PackageName::new_unchecked("__osx"),
version: osx.version,
build_string: "0".into(),
}
}
}
impl From<Osx> for VirtualPackage {
fn from(osx: Osx) -> Self {
VirtualPackage::Osx(osx)
}
}
#[cfg(test)]
mod test {
use crate::VirtualPackage;
#[test]
fn doesnt_crash() {
let virtual_packages = VirtualPackage::current().unwrap();
println!("{virtual_packages:?}");
}
}