aur_depends/actions.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
use crate::{satisfies::Satisfies, Base};
use std::collections::{HashMap, HashSet};
use alpm::{Alpm, Dep, DepMod, Depend};
use raur::ArcPackage;
type ConflictMap = HashMap<String, Conflict>;
/// The response from resolving dependencies.
///
/// Note that just because resolving returned Ok() does not mean it is safe to bindly start
/// installing these packages.
#[derive(Debug)]
pub struct Actions<'a> {
pub(crate) alpm: &'a Alpm,
/// Some of the targets or dependencies could not be satisfied. This should be treated as
/// a hard error.
pub missing: Vec<Missing>,
/// Targets that are up to date.
pub unneeded: Vec<Unneeded>,
/// Aur packages to build.
pub build: Vec<Base>,
/// Repo packages to install.
pub install: Vec<RepoPackage<'a>>,
}
impl<'a> Actions<'a> {
/// An iterator over each AUR package in self.build.
pub fn iter_aur_pkgs(&self) -> impl Iterator<Item = &AurPackage> {
self.build
.iter()
.filter_map(|b| match b {
Base::Aur(pkg) => Some(&pkg.pkgs),
Base::Pkgbuild(_) => None,
})
.flatten()
}
/// An iterator over each pkgbuild in self.build.
pub fn iter_pkgbuilds(&self) -> impl Iterator<Item = (&srcinfo::Srcinfo, &Pkgbuild)> {
self.build
.iter()
.filter_map(|b| match b {
Base::Aur(_) => None,
Base::Pkgbuild(base) => Some((&base.srcinfo, &base.pkgs)),
})
.flat_map(|(base, pkgs)| pkgs.iter().map(move |p| (base.as_ref(), p)))
}
}
/// Information about an up to date package
#[derive(Debug, Eq, Clone, PartialEq, Ord, PartialOrd, Hash)]
pub struct Unneeded {
/// Package name
pub name: String,
/// Package version
pub version: String,
}
impl Unneeded {
/// Create a new Unneeded
pub fn new<S: Into<String>>(name: S, version: S) -> Self {
Unneeded {
name: name.into(),
version: version.into(),
}
}
}
/// Wrapper around a package for extra metadata.
#[derive(Debug, Eq, Clone, PartialEq, Ord, PartialOrd, Hash)]
pub struct Package<T> {
/// The underlying package
pub pkg: T,
/// If the package is only needed to build the targets.
pub make: bool,
/// If the package is a target.
pub target: bool,
}
/// Wrapper around ArcPackage for extra metadata.
pub type AurPackage = Package<ArcPackage>;
/// Wrapper around Srcinfo for extra metadata.
pub type Pkgbuild = Package<srcinfo::Package>;
/// Wrapper around alpm::Package for extra metadata.
pub type RepoPackage<'a> = Package<&'a alpm::Package>;
/// A conflict
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone)]
pub struct Conflict {
/// The name of the package.
pub pkg: String,
/// The packages conflicting with it.
pub conflicting: Vec<Conflicting>,
}
/// A package that has conflicted with something
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone)]
pub struct Conflicting {
/// The name of the package.
pub pkg: String,
/// The conflict that cause the confliction if it is different from the pkgname.
pub conflict: Option<String>,
}
impl Conflict {
/// Crate a new conflict.
pub fn new(pkg: String) -> Self {
Conflict {
pkg,
conflicting: Vec::with_capacity(1),
}
}
/// Push a new conflicting to the conflict.
pub fn push(&mut self, pkg: String, conflict: &Dep) {
let conflict = if pkg != conflict.name() || conflict.depmod() != DepMod::Any {
Some(conflict.to_string())
} else {
None
};
self.conflicting.push(Conflicting { pkg, conflict });
}
}
/// Describes a package in the package stack.
#[derive(Debug, Clone, Default)]
pub struct DepMissing {
/// The name of the package
pub pkg: String,
/// The dep string that pulled in the package. If it was different
/// from the package name.
pub dep: Option<String>,
}
impl DepMissing {
pub(crate) fn new(pkg: String, dep: String) -> DepMissing {
DepMissing {
dep: (pkg != dep).then_some(dep),
pkg,
}
}
}
/// A package that could not be resolved.
#[derive(Debug, Clone, Default)]
pub struct Missing {
/// The Dependency we failed to satisfy.
pub dep: String,
/// The dependency path leadsing to pkg.
pub stack: Vec<DepMissing>,
}
impl<'a> Actions<'a> {
fn has_pkg<S: AsRef<str>>(&self, name: S) -> bool {
let name = name.as_ref();
let install = &self.install;
self.iter_aur_pkgs().any(|pkg| pkg.pkg.name == name)
|| self.iter_pkgbuilds().any(|pkg| pkg.1.pkg.pkgname == name)
|| install.iter().any(|pkg| pkg.pkg.name() == name)
}
// check a conflict from locally installed pkgs, against install+build
fn check_reverse_conflict<S: AsRef<str>>(
&self,
name: S,
runtime: bool,
conflict: &Dep,
conflicts: &mut ConflictMap,
) {
let name = name.as_ref();
self.install
.iter()
.filter(|pkg| !runtime || !pkg.make)
.map(|pkg| &pkg.pkg)
.filter(|pkg| pkg.name() != name)
.filter(|pkg| pkg.satisfies_dep(conflict, false))
.for_each(|pkg| {
conflicts
.entry(pkg.name().to_string())
.or_insert_with(|| Conflict::new(pkg.name().to_string()))
.push(name.to_string(), conflict);
});
self.iter_aur_pkgs()
.filter(|pkg| !runtime || !pkg.make)
.map(|pkg| &pkg.pkg)
.filter(|pkg| pkg.name != name)
.filter(|pkg| pkg.satisfies_dep(conflict, false))
.for_each(|pkg| {
conflicts
.entry(pkg.name.to_string())
.or_insert_with(|| Conflict::new(pkg.name.to_string()))
.push(name.to_string(), conflict);
});
self.iter_pkgbuilds()
.filter(|(_, pkg)| !runtime || !pkg.make)
.filter(|(_, pkg)| pkg.pkg.pkgname != name)
.filter(|(base, pkg)| (*base, &pkg.pkg).satisfies_dep(conflict, false))
.map(|pkg| &pkg.1.pkg)
.for_each(|pkg| {
conflicts
.entry(pkg.pkgname.clone())
.or_insert_with(|| Conflict::new(pkg.pkgname.to_string()))
.push(name.to_string(), conflict);
});
}
// check a conflict from install+build against all locally installed pkgs
fn check_forward_conflict<S: AsRef<str>>(
&self,
name: S,
conflict: &Dep,
conflicts: &mut ConflictMap,
) {
let name = name.as_ref();
self.alpm
.localdb()
.pkgs()
.iter()
.filter(|pkg| !self.has_pkg(pkg.name()))
.filter(|pkg| pkg.name() != name)
.filter(|pkg| pkg.satisfies_dep(conflict, false))
.for_each(|pkg| {
conflicts
.entry(name.to_string())
.or_insert_with(|| Conflict::new(name.to_string()))
.push(pkg.name().to_string(), conflict);
});
}
fn check_forward_conflicts(&self, runtime: bool, conflicts: &mut ConflictMap) {
for pkg in self.install.iter() {
if runtime && pkg.make {
continue;
}
for conflict in pkg.pkg.conflicts() {
self.check_forward_conflict(pkg.pkg.name(), &conflict, conflicts);
}
}
for pkg in self.iter_aur_pkgs() {
if runtime && pkg.make {
continue;
}
for conflict in &pkg.pkg.conflicts {
self.check_forward_conflict(
&pkg.pkg.name,
&Depend::new(conflict.to_string()),
conflicts,
);
}
}
for (_, pkg) in self.iter_pkgbuilds() {
if runtime && pkg.make {
continue;
}
for conflict in pkg
.pkg
.conflicts
.iter()
.filter(|c| {
c.arch.is_none() || c.arch.as_deref() == self.alpm.architectures().first()
})
.flat_map(|c| &c.vec)
{
self.check_forward_conflict(
&pkg.pkg.pkgname,
&Depend::new(conflict.clone()),
conflicts,
);
}
}
}
fn check_inner_conflicts(&self, runtime: bool, conflicts: &mut ConflictMap) {
for pkg in self.install.iter() {
if runtime && pkg.make {
continue;
}
for conflict in pkg.pkg.conflicts() {
self.check_reverse_conflict(pkg.pkg.name(), runtime, &conflict, conflicts)
}
}
for pkg in self.iter_aur_pkgs() {
if runtime && pkg.make {
continue;
}
for conflict in pkg.pkg.conflicts.iter() {
self.check_reverse_conflict(
&pkg.pkg.name,
runtime,
&Depend::new(conflict.to_string()),
conflicts,
)
}
}
for (_, pkg) in self.iter_pkgbuilds() {
if runtime && pkg.make {
continue;
}
for conflict in pkg
.pkg
.conflicts
.iter()
.filter(|c| {
c.arch.is_none() || c.arch.as_deref() == self.alpm.architectures().first()
})
.flat_map(|c| &c.vec)
{
self.check_reverse_conflict(
&pkg.pkg.pkgname,
runtime,
&Depend::new(conflict.to_string()),
conflicts,
)
}
}
}
fn check_reverse_conflicts(&self, runtime: bool, conflicts: &mut ConflictMap) {
self.alpm
.localdb()
.pkgs()
.iter()
.filter(|pkg| !self.has_pkg(pkg.name()))
.for_each(|pkg| {
pkg.conflicts().iter().for_each(|conflict| {
self.check_reverse_conflict(pkg.name(), runtime, &conflict, conflicts)
})
});
}
/// Calculate conflicts. Do note that even with conflicts it can still be possible to continue and
/// install the packages. Although that is not checked here.
///
/// For example installing pacman-git will conflict with pacman. But the install will still
/// succeed as long as the user hits yes to pacman's prompt to remove pacman.
///
/// However other cases are more complex and can not be automatically resolved. So it is up to
/// the user to decide how to handle these.
///
/// makedeps: if true, include make dependencies in the conflict calculation.
pub fn calculate_conflicts(&self, makedeps: bool) -> Vec<Conflict> {
let mut conflicts = ConflictMap::new();
self.check_reverse_conflicts(!makedeps, &mut conflicts);
self.check_forward_conflicts(!makedeps, &mut conflicts);
let mut conflicts = conflicts.into_values().collect::<Vec<Conflict>>();
conflicts.sort();
conflicts
}
/// Calculate inner conflicts. Do note that even with conflicts it can still be possible to continue and
/// install the packages. Although that is not checked here.
///
/// For example installing pacman-git will conflict with pacman. But the install will still
/// succeed as long as the user hits yes to pacman's prompt to remove pacman.
///
/// However other cases are more complex and can not be automatically resolved. So it is up to
/// the user to decide how to handle these.
///
/// makedeps: if true, include make dependencies in the conflict calculation.
pub fn calculate_inner_conflicts(&self, makedeps: bool) -> Vec<Conflict> {
let mut inner_conflicts = ConflictMap::new();
self.check_inner_conflicts(!makedeps, &mut inner_conflicts);
let mut inner_conflicts = inner_conflicts.into_values().collect::<Vec<Conflict>>();
inner_conflicts.sort();
inner_conflicts
}
/// Find duplicate targets. It is possible to have duplicate targets if packages with the same
/// name exist across repos.
pub fn duplicate_targets(&self) -> Vec<String> {
let mut names = HashSet::new();
let build = self.iter_aur_pkgs().map(|pkg| pkg.pkg.name.as_str());
let pkgbuilds = self.iter_pkgbuilds().map(|pkg| pkg.1.pkg.pkgname.as_str());
let duplicates = self
.install
.iter()
.map(|pkg| pkg.pkg.name())
.chain(build)
.chain(pkgbuilds)
.filter(|&name| !names.insert(name))
.map(Into::into)
.collect::<Vec<_>>();
duplicates
}
}