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
// PACKAGE.rs
// by Lut99
//
// Created:
// 01 Mar 2023, 09:45:11
// Last edited:
// 01 Mar 2023, 09:45:26
// Auto updated?
// Yes
//
// Description:
//! Defines the `package.yml` file and related structs.
//
use std::fs::{self, File};
use std::io::{BufReader, Read, Write};
use std::path::{Path, PathBuf};
use std::str::FromStr;
use anyhow::Result;
use chrono::{DateTime, Utc};
use enum_debug::EnumDebug;
// use semver::Version;
use serde::{Deserialize, Serialize};
use serde_json::Value as JValue;
use serde_with::skip_serializing_none;
use strum::IntoEnumIterator;
use strum_macros::EnumIter;
use uuid::Uuid;
use crate::common::{Function, Type};
use crate::container::ContainerInfo;
use crate::version::Version;
/***** CUSTOM TYPES *****/
/// Shorthand for a map with String keys.
type Map<T> = std::collections::HashMap<String, T>;
/***** ERRORS *****/
/// Lists the errors that can occur for the PackageKind enum
#[derive(Debug)]
pub enum PackageKindError {
/// We tried to convert a string to a PackageKind but failed
IllegalKind { skind: String },
}
impl PackageKindError {
/// Static helper that collects a list of possible package kinds.
///
/// **Returns**
/// A string list of the possible package kinds to enter.
fn get_package_kinds() -> String {
let mut kinds = String::new();
for kind in PackageKind::iter() {
if !kinds.is_empty() {
kinds += ", ";
}
kinds += &format!("'{kind}'");
}
kinds
}
}
impl std::fmt::Display for PackageKindError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
PackageKindError::IllegalKind { skind } => {
write!(f, "'{}' is not a valid package type; possible types are {}", skind, Self::get_package_kinds())
},
}
}
}
impl std::error::Error for PackageKindError {}
/// Lists the error for parsing a Capability from a string.
#[derive(Debug)]
pub enum CapabilityParseError {
/// An unknown capability was given.
UnknownCapability { raw: String },
}
impl std::fmt::Display for CapabilityParseError {
#[inline]
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
use CapabilityParseError::*;
match self {
UnknownCapability { raw } => write!(f, "Unknown capability '{raw}'"),
}
}
}
impl std::error::Error for CapabilityParseError {}
/// Lists the errors that can occur for the PackageInfo struct
#[derive(Debug)]
pub enum PackageInfoError {
/// We could not parse a given yaml string as a PackageInfo
IllegalString { err: serde_yaml::Error },
/// We could not parse a given yaml file as a PackageInfo
IllegalFile { path: PathBuf, err: serde_yaml::Error },
/// We could not parse a given set of JSON-encoded PackageInfos
IllegalJsonValue { err: serde_json::Error },
/// Could not open the file we wanted to load
IOError { path: PathBuf, err: std::io::Error },
/// Could not create the target file
FileCreateError { path: PathBuf, err: std::io::Error },
/// Could not write to the given writer
FileWriteError { err: serde_yaml::Error },
}
impl std::fmt::Display for PackageInfoError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
PackageInfoError::IllegalString { err } => write!(f, "Cannot construct PackageInfo object from YAML string: {err}"),
PackageInfoError::IllegalFile { path, err } => {
write!(f, "Cannot construct PackageInfo object from YAML file '{}': {}", path.display(), err)
},
PackageInfoError::IllegalJsonValue { err } => write!(f, "Cannot construct PackageInfo object from JSON value: {err}"),
PackageInfoError::IOError { path, err } => write!(f, "Error while trying to read PackageInfo file '{}': {}", path.display(), err),
PackageInfoError::FileCreateError { path, err } => write!(f, "Could not create package info file '{}': {}", path.display(), err),
PackageInfoError::FileWriteError { err } => write!(f, "Could not serialize & write package info file: {err}"),
}
}
}
impl std::error::Error for PackageInfoError {}
/// Lists the errors that can occur for the PackageIndex struct
#[derive(Debug)]
pub enum PackageIndexError {
/// A package/version combination has already been loaded into the PackageIndex
DuplicatePackage { name: String, version: String },
/// Could not parse a version string as one
IllegalVersion { package: String, raw: String, err: semver::Error },
/// We could not do a request to some server to get a JSON file
RequestFailed { url: String, err: reqwest::Error },
/// A HTTP request returned a non-200 status code
ResponseNot200 { url: String, status: reqwest::StatusCode },
/// Coult not parse a given remote JSON file as a PackageIndex
IllegalJsonFile { url: String, err: reqwest::Error },
/// Could not parse a given reader with JSON data as a PackageIndex
IllegalJsonReader { err: serde_json::Error },
/// Could not correct parse the JSON as a list of PackageInfo structs
IllegalPackageInfos { err: PackageInfoError },
/// Could not open the file we wanted to load
IOError { path: PathBuf, err: std::io::Error },
}
impl std::fmt::Display for PackageIndexError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
PackageIndexError::DuplicatePackage { name, version } => write!(f, "Encountered duplicate version {version} of package '{name}'"),
PackageIndexError::IllegalVersion { package, raw, err } => {
write!(f, "Could not parse version string '{raw}' in package.yml of package '{package}' to a Version: {err}")
},
PackageIndexError::RequestFailed { url, err } => write!(f, "Could not send a request to '{url}': {err}"),
PackageIndexError::ResponseNot200 { url, status } => write!(f, "Request sent to '{url}' returned status {status}"),
PackageIndexError::IllegalJsonFile { url, err } => write!(f, "Cannot construct PackageIndex object from JSON file at '{url}': {err}"),
PackageIndexError::IllegalJsonReader { err } => write!(f, "Cannot construct PackageIndex object from JSON reader: {err}"),
PackageIndexError::IllegalPackageInfos { err } => write!(f, "Cannot parse list of PackageInfos: {err}"),
PackageIndexError::IOError { path, err } => write!(f, "Error while trying to read PackageIndex file '{}': {}", path.display(), err),
}
}
}
impl std::error::Error for PackageIndexError {}
/***** AUXILLARY *****/
/// Enum that lists possible package types
#[derive(Debug, Deserialize, Clone, Copy, EnumIter, Eq, PartialEq, Serialize)]
pub enum PackageKind {
/// The package is an executable package (wrapping some other language or code)
#[serde(rename = "ecu")]
Ecu,
/// The package is an external DSL function
#[serde(rename = "dsl")]
Dsl,
/// The package is an CWL job(?)
#[serde(rename = "cwl")]
Cwl,
}
impl PackageKind {
/// Returns a more understandable name for the PackageKinds.
pub fn pretty(&self) -> &str {
match self {
PackageKind::Ecu => "code package",
PackageKind::Dsl => "BraneScript/Bakery package",
PackageKind::Cwl => "CWL package",
}
}
}
impl std::str::FromStr for PackageKind {
type Err = PackageKindError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
// Convert to lowercase
let ls = s.to_lowercase();
// Match
match ls.as_str() {
"ecu" => Ok(PackageKind::Ecu),
"dsl" => Ok(PackageKind::Dsl),
"cwl" => Ok(PackageKind::Cwl),
_ => Err(PackageKindError::IllegalKind { skind: ls }),
}
}
}
impl std::convert::From<PackageKind> for String {
fn from(value: PackageKind) -> String { String::from(&value) }
}
impl std::convert::From<&PackageKind> for String {
fn from(value: &PackageKind) -> String {
match value {
PackageKind::Ecu => String::from("ecu"),
PackageKind::Dsl => String::from("dsl"),
PackageKind::Cwl => String::from("cwl"),
}
}
}
impl std::fmt::Display for PackageKind {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "{}", String::from(self)) }
}
/// Defines if the package has any additional requirements on the system it will run.
#[derive(Clone, Copy, Deserialize, EnumDebug, Eq, Hash, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum Capability {
/// The package requires access to a CUDA GPU
CudaGpu,
}
impl std::fmt::Debug for Capability {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
use Capability::*;
match self {
CudaGpu => write!(f, "cuda_gpu"),
}
}
}
impl AsRef<Capability> for Capability {
#[inline]
fn as_ref(&self) -> &Self { self }
}
impl FromStr for Capability {
type Err = CapabilityParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"cuda_gpu" => Ok(Self::CudaGpu),
_ => Err(CapabilityParseError::UnknownCapability { raw: s.into() }),
}
}
}
/***** LIBRARY *****/
/// The PackageInfo struct, which might be used alongside a Docker container to define its metadata.
#[skip_serializing_none]
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct PackageInfo {
/// The created timestamp of the package.
pub created: DateTime<Utc>,
/// The identifier of this package, as an Uuid.
pub id: Uuid,
/// The digest of the resulting image. As long as the image has not been generated, is None.
pub digest: Option<String>,
/// The name/programming ID of this package.
pub name: String,
/// The version of this package.
pub version: Version,
/// The kind of this package.
pub kind: PackageKind,
/// The list of owners of this package.
pub owners: Vec<String>,
/// A short description of the package.
pub description: String,
/// Whether or not the functions in this package run detached (i.e., asynchronous).
pub detached: bool,
/// The functions that this package supports.
pub functions: Map<Function>,
/// The types that this package adds.
pub types: Map<Type>,
}
#[allow(unused)]
impl PackageInfo {
/// Constructor for the PackageInfo.
///
/// **Arguments**
/// * `name`: The name/programming ID of this package.
/// * `version`: The version of this package.
/// * `kind`: The kind of this package.
/// * `owners`: The list of owners of this package.
/// * `description`: A short description of the package.
/// * `detached`: Whether or not the functions in this package run detached (i.e., asynchronous).
/// * `functions`: The functions that this package supports.
/// * `types`: The types that this package adds.
#[allow(clippy::too_many_arguments)]
pub fn new(
name: String,
version: Version,
kind: PackageKind,
owners: Vec<String>,
description: String,
detached: bool,
functions: Map<Function>,
types: Map<Type>,
) -> PackageInfo {
// Generate new ID & note the time
let id = Uuid::new_v4();
let created = Utc::now();
// Return the package
PackageInfo { created, id, digest: None, name, version, kind, owners, description, detached, functions, types }
}
/// **Edited: changed to return appropriate errors. Also added docstring.**
///
/// Constructor for the PackageInfo that tries to construct it from the file at the given location.
///
/// **Arguments**
/// * `path`: The path to load.
///
/// **Returns**
/// The new PackageInfo upon success, or a PackageInfoError detailling why if it failed.
pub fn from_path(path: PathBuf) -> Result<PackageInfo, PackageInfoError> {
// Read the file first
let contents = match fs::read_to_string(&path) {
Ok(values) => values,
Err(reason) => {
return Err(PackageInfoError::IOError { path, err: reason });
},
};
// Next, delegate actual reading to from_string
match PackageInfo::from_string(contents) {
Ok(result) => Ok(result),
Err(PackageInfoError::IllegalString { err }) => Err(PackageInfoError::IllegalFile { path, err }),
Err(reason) => Err(reason),
}
}
/// **Edited: changed to return appropriate errors. Also added docstring.**
///
/// Constructor for the PackageInfo that tries to deserialize it.
///
/// **Arguments**
/// * `contents`: The string that contains the contents for the PackageInfo.
///
/// **Returns**
/// The new PackageInfo upon success, or a PackageInfoError detailling why if it failed.
pub fn from_string(contents: String) -> Result<PackageInfo, PackageInfoError> {
// Try to parse using serde
match serde_yaml::from_str(&contents) {
Ok(result) => Ok(result),
Err(reason) => Err(PackageInfoError::IllegalString { err: reason }),
}
}
/// Writes the PackageInfo to the given location.
///
/// **Generic types**
/// * `P`: The Path-like type of the given target location.
///
/// **Arguments**
/// * `path`: The target location to write to the LocalContainerInfo to.
///
/// **Returns**
/// Nothing on success, or a PackageInfoError otherwise.
pub fn to_path<P: AsRef<Path>>(&self, path: P) -> Result<(), PackageInfoError> {
// Convert the path-like to a path
let path = path.as_ref();
// Open a file
let handle = match File::create(path) {
Ok(handle) => handle,
Err(err) => {
return Err(PackageInfoError::FileCreateError { path: path.to_path_buf(), err });
},
};
// Use ::to_write() to deal with the actual writing
self.to_writer(handle)
}
/// Writes the PackageInfo to the given writer.
///
/// **Generic types**
/// * `W`: The type of the writer, which implements Write.
///
/// **Arguments**
/// * `writer`: The writer to write to. Will be consumed.
///
/// **Returns**
/// Nothing on success, or a PackageInfoError otherwise.
pub fn to_writer<W: Write>(&self, writer: W) -> Result<(), PackageInfoError> {
// Simply write with serde
match serde_yaml::to_writer(writer, self) {
Ok(()) => Ok(()),
Err(err) => Err(PackageInfoError::FileWriteError { err }),
}
}
}
impl From<ContainerInfo> for PackageInfo {
fn from(container: ContainerInfo) -> Self {
// Construct Function descriptions from the Actions
let mut functions = Map::<Function>::with_capacity(container.actions.len());
for (action_name, action) in container.actions {
// Get the return values of the function
let function_output = action.output.unwrap_or_default();
// Wrap that in the three parameters needed for a function
let arguments = action.input.unwrap_or_default();
let pattern = action.pattern;
let return_type = match function_output.first() {
Some(output) => output.data_type.to_string(),
None => String::from("unit"),
};
// Save the function under the original name
let function = Function::new(arguments, pattern, return_type, action.requirements);
functions.insert(action_name, function);
}
// Put it an other values in the new instance
PackageInfo::new(
container.name,
container.version,
container.kind,
container.owners.unwrap_or_default(),
container.description.unwrap_or_default(),
container.entrypoint.kind == *"service",
functions,
container.types.unwrap_or_default(),
)
}
}
impl From<&ContainerInfo> for PackageInfo {
fn from(container: &ContainerInfo) -> Self {
// Construct Function descriptions from the Actions
let mut functions = Map::<Function>::with_capacity(container.actions.len());
for (action_name, action) in &container.actions {
// Get the return values of the function
let function_output = action.output.clone().unwrap_or_default();
// Wrap that in the three parameters needed for a function
let arguments = action.input.clone().unwrap_or_default();
let pattern = action.pattern.clone();
let return_type = match function_output.first() {
Some(output) => output.data_type.to_string(),
None => String::from("unit"),
};
// Save the function under the original name
let function = Function::new(arguments, pattern, return_type, action.requirements.clone());
functions.insert(action_name.clone(), function);
}
// Put it and other clones in the new instance
PackageInfo::new(
container.name.clone(),
container.version,
container.kind,
match container.owners.as_ref() {
Some(owners) => owners.clone(),
None => Vec::new(),
},
match container.description.as_ref() {
Some(description) => description.clone(),
None => String::new(),
},
container.entrypoint.kind == *"service",
functions,
match container.types.as_ref() {
Some(types) => types.clone(),
None => Map::new(),
},
)
}
}
/// Collects multiple PackageInfos into one database, called the package index.
#[derive(Debug, Clone, Default)]
pub struct PackageIndex {
/// The list of packages stored in the index.
pub packages: Map<PackageInfo>,
/// Cache of the standard 'latest' packages so we won't have to search every time.
pub latest: Map<(Version, String)>,
}
impl PackageIndex {
/// Constructor for the PackageIndex that initializes it to having no packages.
#[inline]
pub fn empty() -> Self { PackageIndex::new(Map::<PackageInfo>::new()) }
/// Constructor for the PackageIndex.
///
/// **Arguments**
/// * `packages`: The map of packages to base this index on. Each key should be `<name>-<version>` (i.e., every package version is a separate entry).
pub fn new(packages: Map<PackageInfo>) -> Self {
// Compute the latest versions for each package
let mut latest: Map<(Version, String)> = Map::with_capacity(packages.len());
for (key, package) in packages.iter() {
// Check if the package name has already been added
if !latest.contains_key(&package.name) {
latest.insert(package.name.clone(), (package.version, key.clone()));
continue;
}
// Check if the existing version is later or not
let latest_package: &mut (Version, String) = latest.get_mut(&package.name).unwrap();
if package.version >= latest_package.0 {
// It is; update the version to point to the latest version of this package
latest_package.0 = package.version;
latest_package.1.clone_from(key);
}
}
// Create the index with the packages and the latest version cache
PackageIndex { packages, latest }
}
/// **Edited: Returns PackageIndexErrors now.**
///
/// Tries to construct a new PackageIndex from the application file at the given path.
///
/// **Arguments**
/// * `path`: Path to the application file.
///
/// **Returns**
/// The new PackageIndex if it all went fine, or a PackageIndexError if it didn't.
pub fn from_path(path: &Path) -> Result<Self, PackageIndexError> {
// Try to open the referenced file
let file = match File::open(path) {
Ok(handle) => handle,
Err(reason) => {
return Err(PackageIndexError::IOError { path: PathBuf::from(path), err: reason });
},
};
// Wrap it in a bufreader and go to from_reader
let buf_reader = BufReader::new(file);
PackageIndex::from_reader(buf_reader)
}
/// **Edited: Returns PackageIndexErrors now.**
///
/// Tries to construct a new PackageIndex from the given reader.
///
/// **Arguments**
/// * `r`: The reader that contains the data to construct the PackageIndex from.
///
/// **Returns**
/// The new PackageIndex if it all went fine, or a PackageIndexError if it didn't.
pub fn from_reader<R: Read>(r: R) -> Result<Self, PackageIndexError> {
// Try to parse using serde
let v = match serde_json::from_reader(r) {
Ok(value) => value,
Err(reason) => {
return Err(PackageIndexError::IllegalJsonReader { err: reason });
},
};
// Delegate the parsed JSON struct to the from_value one
PackageIndex::from_value(v)
}
/// **Edited: Returns PackageIndexErrors now.**
///
/// Tries to construct a new PackageIndex from a JSON file at the given URL.
///
/// **Arguments**
/// * `url`: The location of the JSON file to parse.
///
/// **Returns**
/// The new PackageIndex if it all went fine, or a PackageIndexError if it didn't.
pub async fn from_url(url: &str) -> Result<Self, PackageIndexError> {
// try to get the file
let json = match reqwest::get(url).await {
Ok(response) => {
if response.status() == reqwest::StatusCode::OK {
// We have the request; now try to get it as json
match response.json().await {
Ok(value) => value,
Err(reason) => {
return Err(PackageIndexError::IllegalJsonFile { url: url.to_string(), err: reason });
},
}
} else {
return Err(PackageIndexError::ResponseNot200 { url: url.to_string(), status: response.status() });
}
},
Err(reason) => {
return Err(PackageIndexError::RequestFailed { url: url.to_string(), err: reason });
},
};
// Done; pass the rest to the from_value() function
PackageIndex::from_value(json)
}
/// **Edited: Returns PackageIndexErrors now.**
///
/// Tries to construct a new PackageIndex from the given JSON-parsed value.
///
/// **Arguments**
/// * `v`: The JSON root value of the tree to parse.
///
/// **Returns**
/// The new PackageIndex if it all went fine, or a PackageIndexError if it didn't.
pub fn from_value(v: JValue) -> Result<Self, PackageIndexError> {
// Parse the known packages from the list of json values
let known_packages: Vec<PackageInfo> = match serde_json::from_value(v) {
Ok(pkgs) => pkgs,
Err(reason) => {
return Err(PackageIndexError::IllegalPackageInfos { err: PackageInfoError::IllegalJsonValue { err: reason } });
},
};
// Construct the package index from the list of packages
PackageIndex::from_packages(known_packages)
}
/// **Edited: Returns PackageIndexErrors now.**
///
/// Tries to construct a new PackageIndex from a list of PackageInfos.
///
/// **Arguments**
/// * `known_packages`: List of PackageInfos to incorporate in the PackageIndex.
///
/// **Returns**
/// The new PackageIndex if it all went fine, or a PackageIndexError if it didn't.
pub fn from_packages(known_packages: Vec<PackageInfo>) -> Result<Self, PackageIndexError> {
// Construct the list of packages and of versions
let mut packages = Map::<PackageInfo>::new();
for package in known_packages {
// Compute the key for this package
let key = format!("{}-{}", package.name, package.version);
if packages.contains_key(&key) {
return Err(PackageIndexError::DuplicatePackage { name: package.name.clone(), version: package.version.to_string() });
}
packages.insert(key, package.clone());
}
// We have collected the list so we're done!
Ok(PackageIndex::new(packages))
}
/// Returns the package with the given name and (optional) version.
///
/// **Arguments**
/// * `name`: The name of the package.
/// * `version`: The version of the package to get. If omitted, uses the latest version known to the PackageIndex.
///
/// **Returns**
/// An (immuteable) reference to the package if it exists, or else None.
pub fn get(&self, name: &str, version: Option<&Version>) -> Option<&PackageInfo> {
// Resolve the package version
let version = match version {
Some(version) => {
if version.is_latest() {
match self.get_latest_version(name) {
Some(version) => version,
None => {
return None;
},
}
} else {
version
}
},
None => match self.get_latest_version(name) {
Some(version) => version,
None => {
return None;
},
},
};
// Try to return the package info matching to this name/version pair
self.packages.get(&format!("{name}-{version}"))
}
/// Returns the latest version of the given package.
///
/// **Arguments**
/// * `name`: The name of the package.
///
/// **Returns**
/// An (immuteable) reference to the version if this package if known, or else None.
#[inline]
fn get_latest_version(&self, name: &str) -> Option<&Version> { self.latest.get(name).map(|(version, _)| version) }
}