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
|
#pragma once
///@file
#include "lix/libutil/error.hh"
#include "lix/libutil/result.hh"
#include <kj/async.h>
namespace nix {
template<typename T>
struct Cycle
{
T path;
T parent;
};
template<typename T>
using TopoSortResult = std::variant<std::vector<T>, Cycle<T>>;
template<typename T>
TopoSortResult<T> topoSort(std::set<T> items, std::function<std::set<T>(const T &)> getChildren)
{
std::vector<T> sorted;
std::set<T> visited, parents;
std::function<std::optional<Cycle<T>>(const T & path, const T * parent)> dfsVisit;
dfsVisit = [&](const T & path, const T * parent) -> std::optional<Cycle<T>> {
if (parents.count(path)) {
return Cycle{path, *parent};
}
if (!visited.insert(path).second) {
return std::nullopt;
}
parents.insert(path);
std::set<T> references = getChildren(path);
for (auto & i : references)
/* Don't traverse into items that don't exist in our starting set. */
if (i != path && items.count(i)) {
auto result = dfsVisit(i, &path);
if (result.has_value()) {
return result;
}
}
sorted.push_back(path);
parents.erase(path);
return std::nullopt;
};
for (auto & i : items) {
auto cycle = dfsVisit(i, nullptr);
if (cycle.has_value()) {
return *cycle;
}
}
std::reverse(sorted.begin(), sorted.end());
return sorted;
}
template<typename T>
kj::Promise<Result<std::vector<T>>> topoSortAsync(std::set<T> items,
std::function<kj::Promise<Result<std::set<T>>>(const T &)> getChildren,
std::function<Error(const T &, const T &)> makeCycleError)
try {
std::vector<T> sorted;
std::set<T> visited, parents;
std::function<kj::Promise<Result<void>>(const T & path, const T * parent)> dfsVisit;
// NOLINTNEXTLINE(cppcoreguidelines-avoid-capturing-lambda-coroutines)
dfsVisit = [&](const T & path, const T * parent) -> kj::Promise<Result<void>> {
try {
if (parents.count(path)) {
// NOLINTNEXTLINE(lix-foreign-exceptions): type dependent
throw makeCycleError(path, *parent);
}
if (!visited.insert(path).second) co_return result::success();
parents.insert(path);
std::set<T> references = TRY_AWAIT(getChildren(path));
for (auto & i : references)
/* Don't traverse into items that don't exist in our starting set. */
if (i != path && items.count(i))
TRY_AWAIT(dfsVisit(i, &path));
sorted.push_back(path);
parents.erase(path);
co_return result::success();
} catch (...) {
co_return result::current_exception();
}
};
for (auto & i : items)
TRY_AWAIT(dfsVisit(i, nullptr));
std::reverse(sorted.begin(), sorted.end());
co_return sorted;
} catch (...) {
co_return result::current_exception();
}
}
|