-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolver.rs
1371 lines (1255 loc) · 54.9 KB
/
solver.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
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) Sony Pictures Imageworks, et al.
// SPDX-License-Identifier: Apache-2.0
// https://github.com/imageworks/spk
use std::borrow::Cow;
use std::collections::{HashMap, HashSet};
use std::mem::take;
use std::sync::atomic::{AtomicU64, Ordering};
use std::sync::Arc;
use std::time::Instant;
use async_stream::stream;
use futures::stream::{FuturesUnordered, StreamExt};
use futures::{Stream, TryStreamExt};
use priority_queue::priority_queue::PriorityQueue;
use spk_schema::foundation::ident_build::Build;
use spk_schema::foundation::ident_component::Component;
use spk_schema::foundation::name::{PkgName, PkgNameBuf};
use spk_schema::foundation::version::Compatibility;
use spk_schema::ident::{
PkgRequest,
Request,
RequestedBy,
Satisfy,
VarRequest,
VersionIterationOrder,
};
use spk_schema::ident_build::EmbeddedSource;
use spk_schema::version::IncompatibleReason;
use spk_schema::{try_recipe, BuildIdent, Deprecate, Package, Recipe, Spec, SpecRecipe};
use spk_solve_graph::{
Change,
Decision,
Graph,
Node,
Note,
RequestPackage,
RequestVar,
SetOptions,
SkipPackageNote,
State,
StepBack,
DEAD_STATE,
};
use spk_solve_package_iterator::{
BuildIterator,
EmptyBuildIterator,
PackageIterator,
RepositoryPackageIterator,
SortedBuildIterator,
};
use spk_solve_solution::{PackageSource, Solution};
use spk_solve_validation::validators::BinaryOnlyValidator;
use spk_solve_validation::{
default_validators,
ImpossibleRequestsChecker,
ValidatorT,
Validators,
IMPOSSIBLE_CHECKS_TARGET,
};
use spk_storage::RepositoryHandle;
use super::error;
use crate::error::OutOfOptions;
use crate::option_map::OptionMap;
use crate::{Error, Result};
// Public to allow other tests to use its macros
#[cfg(test)]
#[path = "./solver_test.rs"]
mod solver_test;
/// Structure to hold whether the three kinds of impossible checks are
/// enabled or disabled in a solver.
#[derive(Clone)]
struct ImpossibleChecksSettings {
pub check_initial_requests: bool,
pub check_before_resolving: bool,
pub use_in_build_keys: bool,
}
impl Default for ImpossibleChecksSettings {
fn default() -> Self {
if let Ok(config) = spk_config::get_config() {
Self {
check_before_resolving: config.solver.check_impossible_validation,
check_initial_requests: config.solver.check_impossible_initial,
use_in_build_keys: config.solver.check_impossible_builds,
}
} else {
Self {
check_before_resolving: false,
check_initial_requests: false,
use_in_build_keys: false,
}
}
}
}
#[derive(Clone)]
pub struct Solver {
repos: Vec<Arc<RepositoryHandle>>,
initial_state_builders: Vec<Change>,
validators: Cow<'static, [Validators]>,
// For validating candidate requests and builds by checking the
// merged requests they will create against the builds available
// in the repos to see if any are impossible to satisfy.
request_validator: Arc<ImpossibleRequestsChecker>,
// For holding the settings that say which impossible checks are enabled
impossible_checks: ImpossibleChecksSettings,
// For counting the number of steps (forward) taken in a solve
number_of_steps: usize,
// For counting number of builds skipped for some reason
number_builds_skipped: usize,
// For counting the number of incompatible versions
number_incompat_versions: usize,
// For counting the number of incompatible builds
number_incompat_builds: usize,
// For counting the total number of builds expanded so far in
// the solve
number_total_builds: usize,
// For counting the number of StepBacks applied during the solve
number_of_steps_back: Arc<AtomicU64>,
// For accumulating the frequency of error messages generated
// during the solver. Used in end-of-solve stats or if the solve
// is interrupted by the user or timeout.
error_frequency: HashMap<String, ErrorFreq>,
// For counting the number of times packages are involved in
// blocked requests for other packages during the search. Used to
// highlight problem areas in a solve and help user home in on
// what might be causing issues.
problem_packages: HashMap<String, u64>,
}
impl Default for Solver {
fn default() -> Self {
Self {
repos: Vec::default(),
initial_state_builders: Vec::default(),
validators: Cow::from(default_validators()),
request_validator: Arc::new(ImpossibleRequestsChecker::default()),
impossible_checks: ImpossibleChecksSettings::default(),
number_of_steps: 0,
number_builds_skipped: 0,
number_incompat_versions: 0,
number_incompat_builds: 0,
number_total_builds: 0,
number_of_steps_back: Arc::new(AtomicU64::new(0)),
error_frequency: HashMap::new(),
problem_packages: HashMap::new(),
}
}
}
/// The kinds of internal error encountered during a solve that are tracked for frequency
#[derive(Debug, Clone)]
pub(crate) enum ErrorDetails {
Message(String),
CouldNotSatisfy(String, Vec<RequestedBy>),
}
/// The details of a 'could not satisfy' error
#[derive(Debug, Clone)]
pub struct CouldNotSatisfyRecord {
/// The unique set of requesters involved in all instances of the error
pub requesters: HashSet<RequestedBy>,
/// The requesters from the first occurrence of the error
pub first_example: Vec<RequestedBy>,
}
/// Frequency counter for solver internal errors
#[derive(Debug, Clone)]
pub struct ErrorFreq {
pub counter: u64,
/// Extra data for 'could not satisfy' error messages
pub record: Option<CouldNotSatisfyRecord>,
}
impl ErrorFreq {
/// Given the key under which the this error is stored in the
/// solver, generate a combined message for original error.
pub fn get_message(&self, error_key: String) -> String {
match &self.record {
Some(r) => {
// The requesters from the first_example data help
// reconstruct the first occurrence of the error to use
// as a base for the combined message
let mut message = format!(
"could not satisfy '{error_key}' as required by: {}",
r.first_example
.iter()
.map(ToString::to_string)
.collect::<Vec<String>>()
.join(", ")
);
// A count of any other requesters involved in later
// occurrences needs to be added to the combined
// message to show the volume of requesters involved
// in this particular "could not satisfy" error.
let num_others = r
.requesters
.iter()
.filter(|&reqby| !r.first_example.contains(reqby))
.count();
if num_others > 0 {
let plural = if num_others > 1 { "others" } else { "other" };
message = format!("{message} and {num_others} {plural}");
}
message
}
// Errors stored with no additional data use their full
// error message as their error_key, so that can be
// returned as the "combined" message.
None => error_key,
}
}
}
impl Solver {
/// Add a request to this solver.
pub fn add_request(&mut self, request: Request) {
let request = match request {
Request::Pkg(mut request) => {
if request.pkg.components.is_empty() {
if request.pkg.is_source() {
request.pkg.components.insert(Component::Source);
} else {
request.pkg.components.insert(Component::default_for_run());
}
}
Change::RequestPackage(RequestPackage::new(request))
}
Request::Var(request) => Change::RequestVar(RequestVar::new(request)),
};
self.initial_state_builders.push(request);
}
/// Add a repository where the solver can get packages.
pub fn add_repository<R>(&mut self, repo: R)
where
R: Into<Arc<RepositoryHandle>>,
{
self.repos.push(repo.into());
}
/// Return a reference to the solver's list of repositories.
pub fn repositories(&self) -> &Vec<Arc<RepositoryHandle>> {
&self.repos
}
pub fn get_initial_state(&self) -> Arc<State> {
let mut state = None;
let base = State::default_state();
for change in self.initial_state_builders.iter() {
state = Some(change.apply(&base, state.as_ref().unwrap_or(&base)));
}
state.unwrap_or(base)
}
/// Increment the number of occurrences of the given error message
pub(crate) fn increment_error_count(&mut self, error_message: ErrorDetails) {
match error_message {
ErrorDetails::Message(message) => {
// Store errors that are just a message as a count
// only, using the full message as the key because
// there are no other distinguishing details.
let counter = self.error_frequency.entry(message).or_insert(ErrorFreq {
counter: 0,
record: None,
});
counter.counter += 1;
}
ErrorDetails::CouldNotSatisfy(request_string, requesters) => {
// Store counts of "could not satisfy" errors keyed by
// their request_strings, and keep information on each
// request_string to summarize these errors later: the
// requesters from the first occurring example of the
// request_string error, and a set of all the requesters
// so they can be examined once the solve has finished.
let counter = self
.error_frequency
.entry(request_string)
.or_insert(ErrorFreq {
counter: 0,
record: Some(CouldNotSatisfyRecord {
requesters: HashSet::new(),
first_example: requesters.clone(),
}),
});
counter.counter += 1;
for requester in requesters {
counter
.record
.as_mut()
.unwrap()
.requesters
.insert(requester);
}
}
}
}
/// Get the error to frequency mapping
pub fn error_frequency(&self) -> &HashMap<String, ErrorFreq> {
&self.error_frequency
}
/// Increment the number of occurrences of the given error message
pub fn increment_problem_package_count(&mut self, problem_package: String) {
let counter = self.problem_packages.entry(problem_package).or_insert(0);
*counter += 1;
}
/// Get the problem packages frequency mapping
pub fn problem_packages(&self) -> &HashMap<String, u64> {
&self.problem_packages
}
/// Get the impossible requests checker
pub fn request_validator(&self) -> &ImpossibleRequestsChecker {
&self.request_validator
}
async fn get_iterator(
&self,
node: &mut Arc<Node>,
package_name: &PkgName,
version_iteration_order: VersionIterationOrder,
) -> Arc<tokio::sync::Mutex<Box<dyn PackageIterator + Send>>> {
if let Some(iterator) = node.get_iterator(package_name, version_iteration_order) {
return iterator;
}
let iterator = self.make_iterator(package_name.to_owned(), version_iteration_order);
Arc::make_mut(node)
.set_iterator(package_name.to_owned(), version_iteration_order, &iterator)
.await;
iterator
}
fn make_iterator(
&self,
package_name: PkgNameBuf,
version_iteration_order: VersionIterationOrder,
) -> Arc<tokio::sync::Mutex<Box<dyn PackageIterator + Send>>> {
debug_assert!(!self.repos.is_empty());
Arc::new(tokio::sync::Mutex::new(Box::new(
RepositoryPackageIterator::new(
package_name,
version_iteration_order,
self.repos.clone(),
),
)))
}
/// Resolve the build environment, and generate a build for
/// the given recipe and state.
///
/// The returned spec describes the package that should be built
/// in order to satisfy the set of requests in the provided state.
/// The build environment for the package is resolved in order to
/// validate that a build is possible and to generate the resulting
/// spec.
#[async_recursion::async_recursion]
async fn resolve_new_build(&self, recipe: &SpecRecipe, state: &State) -> Result<Arc<Spec>> {
let mut opts = state.get_option_map().clone();
for pkg_request in state.get_pkg_requests() {
if !opts.contains_key(pkg_request.pkg.name.as_opt_name()) {
opts.insert(
pkg_request.pkg.name.as_opt_name().to_owned(),
pkg_request.pkg.version.to_string(),
);
}
}
for var_request in state.get_var_requests() {
if !opts.contains_key(&var_request.var) {
opts.insert(
var_request.var.clone(),
var_request
.value
.as_pinned()
.unwrap_or_default()
.to_string(),
);
}
}
let mut solver = Solver {
repos: self.repos.clone(),
..Default::default()
};
solver.update_options(opts.clone());
let solution = solver.solve_build_environment(recipe).await?;
recipe
.generate_binary_build(&opts, &solution)
.map_err(|err| err.into())
.map(Arc::new)
}
/// Check all the builds to see which ones would generate an
/// impossible request when combined with the unresolved
/// requests. Returns a map of builds that do generate impossible
/// requests and the reasons they are impossible.
async fn check_builds_for_impossible_requests(
&self,
unresolved: &HashMap<PkgNameBuf, PkgRequest>,
builds: Arc<tokio::sync::Mutex<dyn BuildIterator + Send>>,
) -> Result<HashMap<BuildIdent, Compatibility>> {
let mut builds_with_impossible_requests: HashMap<BuildIdent, Compatibility> =
HashMap::new();
let builds_lock = builds.lock().await;
let mut builds_copy = dyn_clone::clone_box(&*builds_lock);
drop(builds_lock);
let mut tasks = FuturesUnordered::new();
while let Some(repos_builds) = builds_copy.next().await? {
for (_key, data) in repos_builds.iter() {
let task_build_spec = data.0.clone();
let task_checker = self.request_validator.clone();
let task_repos = self.repos.clone();
let task_unresolved = unresolved.clone();
let task = async move {
match task_checker
.validate_pkg_requests(&task_build_spec, &task_unresolved, &task_repos)
.await
{
Ok(compat) => Ok((task_build_spec.ident().clone(), compat)),
Err(err) => Err(err),
}
};
// Launch the new task in another thread
tasks.push(tokio::spawn(task));
}
}
// This doesn't set up any task message channels because the
// results of all tasks are needed before this function can
// return (does each build make an impossible request or not).
while let Some(task_result) = tasks.next().await {
let result = match task_result {
Ok(r) => r,
Err(err) => {
return Err(crate::Error::String(err.to_string()));
}
};
let (build_id, compat) = match result {
Ok((b, c)) => (b, c),
Err(err) => {
return Err(crate::Error::String(err.to_string()));
}
};
// Only builds that generate any impossible requests are
// recorded and returned
if !compat.is_ok() {
builds_with_impossible_requests.insert(build_id, compat);
}
}
Ok(builds_with_impossible_requests)
}
/// Check the given builds install requirements for requests that
/// would be impossible when combined with the given unresolved
/// requests.
async fn check_requirements_for_impossible_requests(
&self,
spec: &Spec,
unresolved: &HashMap<PkgNameBuf, PkgRequest>,
) -> Result<Compatibility> {
self.request_validator
.validate_pkg_requests(spec, unresolved, &self.repos)
.await
.map_err(Error::ValidationError)
}
async fn step_state(
&mut self,
graph: &Arc<tokio::sync::RwLock<Graph>>,
node: &mut Arc<Node>,
) -> Result<Option<Decision>> {
let mut notes = Vec::<Note>::new();
let request = if let Some(request) = node.state.get_next_request()? {
request
} else {
// May have a valid solution, but verify that all embedded packages
// that are part of the solve also have their source packages
// present in the solve.
let mut non_embeds = HashSet::new();
let mut embeds = HashMap::new();
for (spec, _, _) in node.state.get_resolved_packages().values() {
match spec.ident().build() {
Build::Embedded(EmbeddedSource::Package(package)) => {
let ident: BuildIdent = (&package.ident).try_into()?;
embeds.insert(ident, spec.ident().clone());
}
_ => {
non_embeds.insert(spec.ident().clone());
}
}
}
let embeds_set: HashSet<BuildIdent> = embeds.keys().cloned().collect();
let mut difference = embeds_set.difference(&non_embeds);
if let Some(missing_embed_provider) = difference.next() {
// This is an invalid solve!
// Safety: All members of `difference` must also exist in `embeds`.
let unprovided_embedded =
unsafe { embeds.get(missing_embed_provider).unwrap_unchecked() };
notes.push(Note::Other(format!("Embedded package {unprovided_embedded} missing its provider {missing_embed_provider}")));
return Err(Error::OutOfOptions(OutOfOptions {
request: PkgRequest::new(
missing_embed_provider.clone().into(),
RequestedBy::PackageBuild(unprovided_embedded.clone()),
),
notes,
}));
}
return Ok(None);
};
// This is a step forward in the solve
self.number_of_steps += 1;
let iterator = self
.get_iterator(
node,
&request.pkg.name,
request.version_iteration_order.unwrap_or_default(),
)
.await;
let mut iterator_lock = iterator.lock().await;
loop {
let (pkg, builds) = match iterator_lock.next().await {
Ok(Some((pkg, builds))) => (pkg, builds),
Ok(None) => break,
Err(spk_solve_package_iterator::Error::SpkStorageError(
spk_storage::Error::PackageNotFound(_),
)) => {
// Intercept this error in this situation to
// capture the request for the package that turned
// out to be missing.
return Err(spk_solve_graph::Error::PackageNotFoundDuringSolve(
request.clone(),
)
.into());
}
Err(e) => return Err(e.into()),
};
let mut compat = request.is_version_applicable(pkg.version());
if !&compat {
// Count this version and its builds as incompatible
self.number_incompat_versions += 1;
self.number_incompat_builds += builds.lock().await.len();
// Skip this version and move on the to next one
iterator_lock.set_builds(
pkg.version(),
Arc::new(tokio::sync::Mutex::new(EmptyBuildIterator::new())),
);
notes.push(Note::SkipPackageNote(SkipPackageNote::new(
pkg.clone(),
compat,
)));
continue;
}
let builds = if !builds.lock().await.is_sorted_build_iterator() {
// TODO: this could be a HashSet if build key generation
// only looks at the idents in the hashmap.
let builds_with_impossible_requests = if self.impossible_checks.use_in_build_keys {
let impossible_check_start = Instant::now();
let start_number = self.request_validator.num_build_specs_read();
let unresolved = node.state.get_unresolved_requests();
let problematic_builds = self
.check_builds_for_impossible_requests(unresolved, builds.clone())
.await?;
tracing::debug!(
target: IMPOSSIBLE_CHECKS_TARGET,
"Impossible request checks for build sorting took: {} secs ({} specs read)",
impossible_check_start.elapsed().as_secs_f64(),
self.request_validator.num_build_specs_read() - start_number,
);
problematic_builds
} else {
// An empty map means none of the builds should be
// treated as if they generate an impossible request.
HashMap::new()
};
let builds = Arc::new(tokio::sync::Mutex::new(
SortedBuildIterator::new(
node.state.get_option_map().clone(),
builds.clone(),
builds_with_impossible_requests,
)
.await?,
));
iterator_lock.set_builds(pkg.version(), builds.clone());
builds
} else {
builds
};
while let Some(hm) = builds.lock().await.next().await? {
// Now add this build to the total considered during
// this overall step
self.number_total_builds += 1;
// Try all the hash map values to check all repos.
for (spec, source) in hm.values() {
let spec = Arc::clone(spec);
let build_from_source =
spec.ident().is_source() && request.pkg.build != Some(Build::Source);
let mut decision = if !build_from_source {
match self.validate_package(&node.state, &spec, source)? {
Compatibility::Compatible => {
if self.impossible_checks.check_before_resolving {
// The unresolved requests from the state
// are used to check the new requests this
// build would add, if it was used to
// resolve the current request.
let unresolved = node.state.get_unresolved_requests();
let compat = self
.check_requirements_for_impossible_requests(
&spec, unresolved,
)
.await?;
if !compat.is_ok() {
// This build would add an impossible request,
// which is a bad choice for any solve, so
// discard this build and try another.
notes.push(Note::SkipPackageNote(SkipPackageNote::new(
spec.ident().to_any(),
compat,
)));
self.number_builds_skipped += 1;
continue;
};
}
// This build has passed all the checks and
// can be used to resolve the current request
Decision::builder(&node.state)
.with_components(&request.pkg.components)
.resolve_package(&spec, source.clone())
}
Compatibility::Incompatible(
IncompatibleReason::ConflictingEmbeddedPackage(
conflicting_package_name,
),
) => {
// This build couldn't be used because it
// conflicts with an existing package in the
// solve. Jump back to before the conflicting
// package was added and try adding this
// build again.
let (_, _, state_id) = node
.state
.get_current_resolve(&conflicting_package_name)
.map_err(|_| {
Error::String("package not found in resolve".into())
})?;
let graph_lock = graph.read().await;
let target_state_node = graph_lock
.nodes
.get(&state_id.id())
.ok_or_else(|| Error::String("state not found".into()))?
.read()
.await;
Decision::builder(&target_state_node.state).reconsider_package(
request.clone(),
conflicting_package_name.as_ref(),
Arc::clone(&self.number_of_steps_back),
)
}
compat @ Compatibility::Incompatible(_) => {
notes.push(Note::SkipPackageNote(SkipPackageNote::new(
spec.ident().to_any(),
compat.clone(),
)));
self.number_builds_skipped += 1;
continue;
}
}
} else {
if let PackageSource::Embedded { .. } = source {
notes.push(Note::SkipPackageNote(SkipPackageNote::new_from_message(
spec.ident().to_any(),
&compat,
)));
self.number_builds_skipped += 1;
continue;
}
let recipe = match source.read_recipe(spec.ident().base()).await {
Ok(r) if r.is_deprecated() => {
notes.push(Note::SkipPackageNote(
SkipPackageNote::new_from_message(
pkg.clone(),
"cannot build from source, version is deprecated",
),
));
continue;
}
Ok(r) => r,
Err(spk_solve_solution::Error::SpkStorageError(
spk_storage::Error::PackageNotFound(pkg),
)) => {
notes.push(Note::SkipPackageNote(
SkipPackageNote::new_from_message(
pkg,
"cannot build from source, recipe not available",
),
));
continue;
}
Err(err) => return Err(err.into()),
};
compat = self.validate_recipe(&node.state, &recipe)?;
if !&compat {
notes.push(Note::SkipPackageNote(SkipPackageNote::new_from_message(
spec.ident().to_any(),
format!("recipe is not valid: {compat}"),
)));
self.number_builds_skipped += 1;
continue;
}
let new_spec = match self.resolve_new_build(&recipe, &node.state).await {
Err(err) => {
notes.push(Note::SkipPackageNote(
SkipPackageNote::new_from_message(
spec.ident().to_any(),
format!("cannot resolve build env: {err}"),
),
));
self.number_builds_skipped += 1;
continue;
}
res => res?,
};
let new_source = PackageSource::BuildFromSource {
recipe: Arc::clone(&recipe),
};
compat = self.validate_package(&node.state, &new_spec, &new_source)?;
if !&compat {
notes.push(Note::SkipPackageNote(SkipPackageNote::new_from_message(
spec.ident().to_any(),
format!("built package would still be invalid: {compat}"),
)));
self.number_builds_skipped += 1;
continue;
}
match Decision::builder(&node.state)
.with_components(&request.pkg.components)
.build_package(&recipe, &new_spec)
{
Ok(decision) => decision,
Err(err) => {
notes.push(Note::SkipPackageNote(
SkipPackageNote::new_from_message(
spec.ident().to_any(),
format!("cannot build package: {err}"),
),
));
self.number_builds_skipped += 1;
continue;
}
}
};
decision.add_notes(notes.iter().cloned());
return Ok(Some(decision));
}
}
}
Err(error::Error::OutOfOptions(error::OutOfOptions {
request,
notes,
}))
}
fn validate_recipe<R: Recipe>(&self, state: &State, recipe: &R) -> Result<Compatibility> {
for validator in self.validators.as_ref() {
let compat = validator.validate_recipe(state, recipe)?;
if !&compat {
return Ok(compat);
}
}
Ok(Compatibility::Compatible)
}
fn validate_package<P: Package>(
&self,
state: &State,
spec: &P,
source: &PackageSource,
) -> Result<Compatibility>
where
P: Package + Satisfy<PkgRequest> + Satisfy<VarRequest>,
{
for validator in self.validators.as_ref() {
let compat = validator.validate_package(state, spec, source)?;
if !&compat {
return Ok(compat);
}
}
Ok(Compatibility::Compatible)
}
/// Checks the initial requests for impossible requests, warning
/// the user about each one that is impossible, and error if any
/// of them are impossible.
async fn check_initial_requests_for_impossible_requests(
&mut self,
initial_state: &State,
) -> Result<()> {
let mut impossible_request_count = 0;
let tasks = FuturesUnordered::new();
let initial_requests = initial_state.get_unresolved_requests();
for (count, req) in initial_requests.values().enumerate() {
// Have to make a dummy spec for an "initialrequest"
// package to interact with the request_validator's
// interface. It expects a package with install
// requirements (i.e. the 'req' being checked here).
//
// The count is used as a fake version number to
// distinguish which initial request is being checked in
// each dummy package.
let recipe = try_recipe!({"pkg": format!("initialrequest/{}", count + 1),
"install": {
"requirements": [
req,
]
}
})
.map_err(|err| {
Error::String(format!(
"Unable to generate dummy spec for initial checks: {err}"
))
})?;
let solution = Solution::new(OptionMap::default());
let mut build_opts = OptionMap::default();
let mut resolved_opts = recipe.resolve_options(&build_opts).unwrap().into_iter();
build_opts.extend(&mut resolved_opts);
let dummy_spec = recipe.generate_binary_build(&build_opts, &solution)?;
// All the initial_requests are passed in as well to
// handle situations when same package is requested
// multiple times in the initial requests.
let task_checker = self.request_validator.clone();
let task_repos = self.repos.clone();
let task_req = req.pkg.clone();
let task = async move {
let result = task_checker
.validate_pkg_requests(&dummy_spec, initial_requests, &task_repos)
.await;
(task_req, result)
};
// The tasks are run concurrently via async, in the same thread.
tasks.push(task);
}
// Only once all the tasks are finished, the user is warned
// about the impossible initial request, if there are any.
for (checked_req, result) in tasks.collect::<Vec<_>>().await {
let compat = match result {
Ok(c) => c,
Err(err) => {
return Err(crate::Error::String(err.to_string()));
}
};
if !compat.is_ok() {
tracing::warn!(
"Impossible initial request, no builds in the repos [{}] satisfy: {}",
self.repos
.iter()
.map(|r| format!("{}", r.name()))
.collect::<Vec<String>>()
.join(", "),
checked_req
);
impossible_request_count += 1;
}
}
// Error if any initial request is impossible
if impossible_request_count > 0 {
return Err(Error::InitialRequestsContainImpossibleError(
impossible_request_count,
));
}
Ok(())
}
/// Put this solver back into its default state
pub fn reset(&mut self) {
self.repos.truncate(0);
self.initial_state_builders.truncate(0);
self.validators = Cow::from(default_validators());
(*self.request_validator).reset();
self.number_of_steps = 0;
self.number_builds_skipped = 0;
self.number_incompat_versions = 0;
self.number_incompat_builds = 0;
self.number_total_builds = 0;
self.number_of_steps_back.store(0, Ordering::SeqCst);
self.error_frequency.clear();
self.problem_packages.clear();
}
/// Run this solver
pub fn run(&self) -> SolverRuntime {
SolverRuntime::new(self.clone())
}
/// If true, only solve pre-built binary packages.
///
/// When false, the solver may return packages where the build is not set.
/// These packages are known to have a source package available, and the requested
/// options are valid for a new build of that source package.
/// These packages are not actually built as part of the solver process but their
/// build environments are fully resolved and dependencies included
pub fn set_binary_only(&mut self, binary_only: bool) {
self.request_validator.set_binary_only(binary_only);
let has_binary_only = self
.validators
.iter()
.find_map(|v| match v {
Validators::BinaryOnly(_) => Some(true),
_ => None,
})
.unwrap_or(false);
if !(has_binary_only ^ binary_only) {
return;
}
if binary_only {
// Add BinaryOnly validator because it was missing.
self.validators
.to_mut()
.insert(0, Validators::BinaryOnly(BinaryOnlyValidator {}))
} else {
// Remove all BinaryOnly validators because one was found.
self.validators = take(self.validators.to_mut())
.into_iter()
.filter(|v| !matches!(v, Validators::BinaryOnly(_)))
.collect();
}
}
/// Enable or disable running impossible checks on the initial requests
/// before the solve starts
pub fn set_initial_request_impossible_checks(&mut self, enabled: bool) {
self.impossible_checks.check_initial_requests = enabled;
}
/// Enable or disable running impossible checks before using a build to
/// resolve a request
pub fn set_resolve_validation_impossible_checks(&mut self, enabled: bool) {
self.impossible_checks.check_before_resolving = enabled;
}
/// Enable or disable running impossible checks for build key generation
/// when ordering builds for selection
pub fn set_build_key_impossible_checks(&mut self, enabled: bool) {
self.impossible_checks.use_in_build_keys = enabled;
}
/// Return true is any of the impossible request checks are
/// enabled for this solver, otherwise false
pub fn any_impossible_checks_enabled(&self) -> bool {
self.impossible_checks.check_initial_requests
|| self.impossible_checks.check_before_resolving
|| self.impossible_checks.use_in_build_keys
}
pub async fn solve(&mut self) -> Result<Solution> {
let mut runtime = self.run();
{