forked from Morganamilo/paru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevel.rs
591 lines (494 loc) · 16.3 KB
/
devel.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
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
use crate::config::{Config, LocalRepos};
use crate::download::{self, cache_info_with_warnings, Bases};
use crate::print_error;
use crate::repo;
use crate::util::{pkg_base_or_name, split_repo_aur_pkgs};
use std::cmp::Ordering;
use std::collections::hash_map::Entry;
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
use std::fs::{create_dir_all, read_to_string, OpenOptions};
use std::hash::{Hash, Hasher};
use std::io::Write;
use std::iter::FromIterator;
use std::time::Duration;
use alpm_utils::{DbListExt, Target};
use ansiterm::Style;
use anyhow::{anyhow, bail, Context, Result};
use aur_depends::Base;
use futures::future::{join_all, select_ok, FutureExt};
use log::debug;
use raur::{Cache, Raur};
use serde::{Deserialize, Serialize, Serializer};
use srcinfo::Srcinfo;
use tokio::process::Command as AsyncCommand;
use tokio::time::timeout;
use tr::tr;
#[derive(Serialize, Deserialize, Default, Debug, Clone)]
pub struct _PkgInfo {
pub repos: HashSet<RepoInfo>,
}
#[derive(Serialize, Deserialize, SmartDefault, Debug, Eq, Clone)]
pub struct RepoInfo {
pub url: String,
pub branch: Option<String>,
pub commit: String,
}
impl Hash for RepoInfo {
fn hash<H: Hasher>(&self, state: &mut H) {
self.branch.hash(state);
self.url.hash(state);
}
}
impl PartialOrd for RepoInfo {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(std::cmp::Ord::cmp(self, other))
}
}
impl Ord for RepoInfo {
fn cmp(&self, other: &Self) -> Ordering {
self.url
.cmp(&other.url)
.then(self.branch.cmp(&other.branch))
}
}
impl std::cmp::PartialEq for RepoInfo {
fn eq(&self, other: &Self) -> bool {
self.url == other.url && self.branch == other.branch
}
}
#[derive(Serialize, Deserialize, Default, Debug, Clone)]
#[serde(transparent)]
pub struct PkgInfo {
#[serde(serialize_with = "ordered_set")]
pub repos: HashSet<RepoInfo>,
}
impl std::borrow::Borrow<str> for RepoInfo {
fn borrow(&self) -> &str {
self.url.as_str()
}
}
#[derive(Serialize, Deserialize, Default, Debug, Clone)]
pub struct DevelInfo {
#[serde(rename = "info")]
#[serde(default)]
#[serde(skip_serializing)]
_info: HashMap<String, _PkgInfo>,
#[serde(flatten)]
#[serde(serialize_with = "ordered_map")]
pub info: HashMap<String, PkgInfo>,
}
fn ordered_map<S, T>(value: &HashMap<String, T>, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
T: Serialize,
{
let ordered: BTreeMap<_, _> = value.iter().collect();
ordered.serialize(serializer)
}
fn ordered_set<S, T>(value: &HashSet<T>, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
T: Serialize + Ord,
{
let ordered: BTreeSet<_> = value.iter().collect();
ordered.serialize(serializer)
}
pub async fn gendb(config: &mut Config) -> Result<()> {
let action = config.color.action;
let bold = config.color.bold;
let db = config.alpm.localdb();
let pkgs = db.pkgs().iter().map(|p| p.name()).collect::<Vec<_>>();
let ignore = &config.ignore;
let (_, mut aur) = split_repo_aur_pkgs(config, &pkgs);
let mut devel_info = load_devel_info(config)?.unwrap_or_default();
aur.retain(|pkg| {
let pkg = db.pkg(*pkg).unwrap();
let pkg = pkg.base().unwrap_or_else(|| pkg.name());
!devel_info.info.contains_key(pkg)
});
let (_pkgbuilds, aur): (Vec<_>, Vec<_>) = aur
.into_iter()
.partition(|aur| config.pkgbuild_repos.pkg(config, aur).is_some());
if !aur.is_empty() {
println!(
"{} {}",
action.paint("::"),
bold.paint(tr!("Querying AUR..."))
);
}
let warnings = cache_info_with_warnings(
&config.raur,
&mut config.cache,
&aur,
ignore,
&config.no_warn,
)
.await?;
warnings.all(config.color, config.cols);
let bases = Bases::from_iter(warnings.pkgs);
let mut srcinfos = HashMap::new();
let mut failed = HashSet::new();
for base in &bases.bases {
let path = config.build_dir.join(base.package_base()).join(".SRCINFO");
if path.exists() {
let srcinfo = Srcinfo::parse_file(path)
.with_context(|| tr!("failed to parse srcinfo for '{}'", base));
match srcinfo {
Ok(srcinfo) => {
srcinfos.insert(srcinfo.base.pkgbase.to_string(), srcinfo);
}
Err(err) => {
print_error(config.color.error, err);
failed.insert(base.package_base());
}
};
}
}
download::new_aur_pkgbuilds(config, &bases, &srcinfos).await?;
for base in &bases.bases {
if failed.contains(base.package_base()) || srcinfos.contains_key(base.package_base()) {
continue;
}
let path = config.build_dir.join(base.package_base()).join(".SRCINFO");
if path.exists() {
if let Entry::Vacant(vacant) = srcinfos.entry(base.package_base().to_string()) {
let srcinfo = Srcinfo::parse_file(path)
.with_context(|| tr!("failed to parse srcinfo for '{}'", base));
match srcinfo {
Ok(srcinfo) => {
vacant.insert(srcinfo);
}
Err(err) => {
print_error(config.color.error, err);
continue;
}
}
}
}
}
let bases = bases.bases.into_iter().map(Base::Aur).collect::<Vec<_>>();
println!(
"{} {}",
action.paint("::"),
bold.paint(tr!("Looking for devel repos..."))
);
let new_devel_info = fetch_devel_info(config, &bases, &srcinfos).await?;
for (k, v) in new_devel_info.info {
devel_info.info.entry(k).or_insert(v);
}
save_devel_info(config, &devel_info).context(tr!("failed to save devel info"))?;
Ok(())
}
pub fn save_devel_info(config: &Config, devel_info: &DevelInfo) -> Result<()> {
create_dir_all(&config.state_dir).with_context(|| {
tr!(
"failed to create state directory: {}",
config.state_dir.display()
)
})?;
let mut temp = config.devel_path.to_owned();
temp.set_extension("toml.tmp");
let file = OpenOptions::new()
.create(true)
.write(true)
.truncate(true)
.open(&temp);
let mut file =
file.with_context(|| tr!("failed to create temporary file: {}", temp.display()))?;
let toml = toml::to_string(&devel_info).unwrap();
file.write_all(toml.as_bytes())
.with_context(|| tr!("failed to write to temporary file: {}", temp.display()))?;
drop(file);
std::fs::rename(&temp, &config.devel_path).with_context(|| {
tr!(
"failed to rename '{temp}' to '{devel_toml}",
temp = temp.display(),
devel_toml = config.devel_path.display()
)
})?;
Ok(())
}
async fn ls_remote_internal(
git: &str,
flags: &[String],
remote: &str,
branch: Option<&str>,
) -> Result<String> {
#[cfg(feature = "mock")]
let _ = git;
#[cfg(feature = "mock")]
let git = "git";
let mut command = AsyncCommand::new(git);
command
.args(flags)
.env("GIT_TERMINAL_PROMPT", "0")
.arg("ls-remote")
.arg(remote)
.arg(branch.unwrap_or("HEAD"));
debug!("git ls-remote {} {}", remote, branch.unwrap_or("HEAD"));
let output = command.output().await?;
if !output.status.success() {
bail!("{}", String::from_utf8_lossy(&output.stderr));
}
let sha = String::from_utf8_lossy(&output.stdout)
.split('\t')
.next()
.unwrap()
.to_string();
Ok(sha)
}
async fn ls_remote(
style: Style,
git: &str,
flags: &[String],
remote: String,
branch: Option<&str>,
) -> Result<String> {
let remote = &remote;
let time = Duration::from_secs(15);
let future = ls_remote_internal(git, flags, remote, branch);
let future = timeout(time, future);
if let Ok(v) = future.await {
v
} else {
print_error(
style,
anyhow!("timed out looking for devel update: {}", remote),
);
bail!("")
}
}
fn parse_url(source: &str) -> Option<(String, &'_ str, Option<&'_ str>)> {
let url = source.splitn(2, "::").last().unwrap();
if !url.starts_with("git") || !url.contains("://") {
return None;
}
let mut split = url.splitn(2, "://");
let protocol = split.next().unwrap();
let protocol = protocol.rsplit('+').next().unwrap();
let rest = split.next().unwrap();
let mut split = rest.splitn(2, '#');
let remote = split.next().unwrap();
let remote = remote.split_once('?').map_or(remote, |(x, _)| x);
let remote = format!("{}://{}", protocol, remote);
let branch = if let Some(fragment) = split.next() {
let fragment = fragment.split_once('?').map_or(fragment, |(x, _)| x);
let mut split = fragment.splitn(2, '=');
let frag_type = split.next().unwrap();
match frag_type {
"commit" | "tag" => return None,
"branch" => split.next(),
_ => None,
}
} else {
None
};
Some((remote, protocol, branch))
}
pub async fn possible_devel_updates(config: &Config) -> Result<Vec<String>> {
let devel_info = load_devel_info(config)?.unwrap_or_default();
let db = config.alpm.localdb();
let mut futures = Vec::new();
let mut pkgbases: HashMap<&str, Vec<&alpm::Package>> = HashMap::new();
for pkg in db.pkgs().iter() {
let name = pkg_base_or_name(pkg);
pkgbases.entry(name).or_default().push(pkg);
}
'outer: for (pkg, repos) in &devel_info.info {
if let Some(pkgs) = pkgbases.get(pkg.as_str()) {
if pkgs.iter().all(|p| p.should_ignore()) {
continue;
}
if pkgs.iter().all(|p| config.ignore_devel.is_match(p.name())) {
continue;
}
}
if config.repos != LocalRepos::None {
let (_, dbs) = repo::repo_aur_dbs(config);
for db in dbs {
if db.pkg(pkg.as_str()).is_ok() {
futures.push(pkg_has_update(config, pkg, &repos.repos));
continue 'outer;
}
}
} else if config.alpm.syncdbs().pkg(pkg.as_str()).is_err() {
futures.push(pkg_has_update(config, pkg, &repos.repos));
}
}
let updates = join_all(futures).await;
let mut updates = updates
.into_iter()
.flatten()
.map(|s| s.to_string())
.collect::<Vec<_>>();
updates.sort_unstable();
updates.dedup();
Ok(updates)
}
pub async fn filter_devel_updates(
config: &Config,
cache: &mut Cache,
updates: &[String],
) -> Result<Vec<Target>> {
let mut pkgbases: HashMap<&str, Vec<&alpm::Package>> = HashMap::new();
let mut aur = Vec::new();
let mut custom = Vec::new();
let db = config.alpm.localdb();
'pkg: for update in updates {
if let Some((base, pkg)) = config.pkgbuild_repos.pkg(config, update) {
custom.push(Target::new(Some(base.repo.clone()), pkg.pkgname.clone()));
continue 'pkg;
}
aur.push(update);
}
let (_, dbs) = repo::repo_aur_dbs(config);
for pkg in dbs.iter().flat_map(|d| d.pkgs()) {
let name = pkg_base_or_name(pkg);
pkgbases.entry(name).or_default().push(pkg);
}
for pkg in db.pkgs().iter() {
let name = pkg_base_or_name(pkg);
pkgbases.entry(name).or_default().push(pkg);
}
config.raur.cache_info(cache, &aur).await?;
let aur = aur
.iter()
.map(|u| pkgbases.remove(u.as_str()).unwrap())
.collect::<Vec<_>>();
let mut updates = Vec::new();
if config.mode.aur() {
let aur = aur
.iter()
.flatten()
.filter(|p| !p.should_ignore())
.filter(|p| !config.ignore_devel.is_match(p.name()))
.map(|p| p.name().to_string())
.filter(|p| cache.contains(p.as_str()))
.map(|p| Target::new(Some(config.aur_namespace().to_string()), p));
updates.extend(aur);
}
if config.mode.pkgbuild() {
updates.extend(custom);
}
Ok(updates)
}
pub async fn pkg_has_update<'pkg, 'info, 'cfg>(
config: &'cfg Config,
pkg: &'pkg str,
info: &'info HashSet<RepoInfo>,
) -> Option<&'pkg str> {
if info.is_empty() {
return None;
}
let mut futures = Vec::with_capacity(info.len());
for info in info {
if config.ignore_devel_source.iter().any(|u| u == &info.url) {
continue;
}
futures
.push(has_update(config.color.error, &config.git_bin, &config.git_flags, info).boxed());
}
if !futures.is_empty() && select_ok(futures).await.is_ok() {
Some(pkg)
} else {
None
}
}
async fn has_update(style: Style, git: &str, flags: &[String], url: &RepoInfo) -> Result<()> {
let sha = ls_remote(style, git, flags, url.url.clone(), url.branch.as_deref()).await?;
debug!(
"devel check {}: '{}' == '{}' different: {}",
url.url,
url.commit,
sha,
url.commit != sha
);
if sha != *url.commit {
return Ok(());
}
bail!(tr!("package does not have an update"))
}
pub async fn fetch_devel_info(
config: &Config,
bases: &[Base],
srcinfos: &HashMap<String, Srcinfo>,
) -> Result<DevelInfo> {
let mut devel_info = DevelInfo::default();
let mut parsed = Vec::new();
let mut futures = Vec::new();
for base in bases {
let srcinfo = match base {
Base::Aur(_) => srcinfos.get(base.package_base()),
Base::Pkgbuild(c) => Some(c.srcinfo.as_ref()),
};
let srcinfo = match srcinfo {
Some(v) => v,
None => continue,
};
for url in srcinfo.base.source.iter().flat_map(|v| &v.vec) {
if let Some((remote, _, branch)) = parse_url(url) {
let future = ls_remote(
config.color.error,
&config.git_bin,
&config.git_flags,
remote.clone(),
branch,
);
futures.push(future);
parsed.push((remote, base.package_base().to_string(), branch));
}
}
}
let commits = join_all(futures).await;
for ((remote, pkgbase, branch), commit) in parsed.into_iter().zip(commits) {
match commit {
Err(e) => print_error(
config.color.error,
e.context(tr!("failed to lookup: {}", pkgbase)),
),
Ok(commit) => {
let url_info = RepoInfo {
url: remote,
branch: branch.map(|s| s.to_string()),
commit,
};
devel_info
.info
.entry(pkgbase)
.or_default()
.repos
.insert(url_info);
}
}
}
Ok(devel_info)
}
pub fn load_devel_info(config: &Config) -> Result<Option<DevelInfo>> {
let file = match read_to_string(&config.devel_path) {
Ok(file) => file,
_ => return Ok(None),
};
let devel_info = DevelInfo::deserialize(toml::Deserializer::new(&file))
.with_context(|| tr!("invalid toml: {}", config.devel_path.display()))?;
let mut pkgbases: HashMap<&str, Vec<&alpm::Package>> = HashMap::new();
let mut devel_info: DevelInfo = devel_info;
if !devel_info._info.is_empty() {
for (pkg, info) in devel_info._info.drain() {
devel_info.info.insert(pkg, PkgInfo { repos: info.repos });
}
}
for pkg in config.alpm.localdb().pkgs().iter() {
let name = pkg_base_or_name(pkg);
pkgbases.entry(name).or_default().push(pkg);
}
let (_, dbs) = repo::repo_aur_dbs(config);
for pkg in dbs.iter().flat_map(|d| d.pkgs()) {
let name = pkg_base_or_name(pkg);
pkgbases.entry(name).or_default().push(pkg);
}
devel_info
.info
.retain(|pkg, _| pkgbases.contains_key(pkg.as_str()));
save_devel_info(config, &devel_info)?;
Ok(Some(devel_info))
}