rework generic backend

This commit is contained in:
timeshifter
2023-01-06 12:46:10 +01:00
parent 0dcf3822eb
commit 9d5241afa5
4 changed files with 93 additions and 45 deletions
+22 -3
View File
@@ -1,12 +1,13 @@
use std::{collections::HashSet, process::Command};
use super::{Backend, Binary, Switches};
use super::{Backend, Switches, Text};
use crate::Package;
pub struct Rust;
pub struct Rust(HashSet<Package>);
impl Backend for Rust {
const BINARY: Binary = "cargo";
const BINARY: Text = "cargo";
const SECTION: Text = "rust";
const SWITCHES_INSTALL: Switches = &["install"];
const SWITCHES_REMOVE: Switches = &["uninstall"];
@@ -19,6 +20,12 @@ impl Backend for Rust {
fn get_explicitly_installed_packages() -> HashSet<Package> {
Self::get_all_installed_packages()
}
fn add_packages(&mut self, packages: HashSet<Package>) {
for p in packages {
self.0.insert(p);
}
}
}
fn run_cargo_install_list() -> String {
@@ -37,6 +44,18 @@ fn extract_packages_names(output: &str) -> impl Iterator<Item = String> + '_ {
.map(|line| line.split_whitespace().next().unwrap().to_owned())
}
impl Rust {
pub fn new() -> Self {
Self(HashSet::new())
}
}
impl Default for Rust {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod tests {
use super::extract_packages_names;