-
Notifications
You must be signed in to change notification settings - Fork 821
Expand file tree
/
Copy pathDnf.cs
More file actions
303 lines (269 loc) · 11.1 KB
/
Dnf.cs
File metadata and controls
303 lines (269 loc) · 11.1 KB
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
using System.Diagnostics;
using UniGetUI.Core.Tools;
using UniGetUI.Interface.Enums;
using UniGetUI.PackageEngine.Classes.Manager;
using UniGetUI.PackageEngine.Classes.Manager.ManagerHelpers;
using UniGetUI.PackageEngine.Enums;
using UniGetUI.PackageEngine.Interfaces;
using UniGetUI.PackageEngine.ManagerClasses.Classes;
using UniGetUI.PackageEngine.ManagerClasses.Manager;
using UniGetUI.PackageEngine.PackageClasses;
using UniGetUI.PackageEngine.Structs;
namespace UniGetUI.PackageEngine.Managers.DnfManager;
public class Dnf : PackageManager
{
// Known RPM architectures — used to strip the trailing .<arch> from package names.
private static readonly HashSet<string> _knownArches =
["x86_64", "aarch64", "noarch", "i686", "i386", "ppc64le", "s390x", "src"];
public Dnf()
{
Dependencies = [];
Capabilities = new ManagerCapabilities
{
CanRunAsAdmin = true,
CanSkipIntegrityChecks = true,
SupportsCustomSources = false,
SupportsProxy = ProxySupport.No,
SupportsProxyAuth = false,
KnowsPackageReleaseDate = PackageReleaseDateSupport.Yes,
};
Properties = new ManagerProperties
{
Id = "dnf",
Name = "Dnf",
Description = CoreTools.Translate(
"The default package manager for RHEL/Fedora-based Linux distributions.<br>Contains: <b>RPM packages</b>"
),
IconId = IconType.Dnf,
ColorIconId = "dnf",
ExecutableFriendlyName = "dnf",
InstallVerb = "install",
UpdateVerb = "upgrade",
UninstallVerb = "remove",
DefaultSource = new ManagerSource(this, "dnf", new Uri("https://fedoraproject.org/wiki/DNF")),
KnownSources = [new ManagerSource(this, "dnf", new Uri("https://fedoraproject.org/wiki/DNF"))],
};
DetailsHelper = new DnfPkgDetailsHelper(this);
OperationHelper = new DnfPkgOperationHelper(this);
}
// ── Executable discovery ───────────────────────────────────────────────
public override IReadOnlyList<string> FindCandidateExecutableFiles()
{
var candidates = new List<string>(CoreTools.WhichMultiple("dnf5"));
foreach (var path in CoreTools.WhichMultiple("dnf"))
{
if (!candidates.Contains(path))
candidates.Add(path);
}
foreach (var path in new[] { "/usr/bin/dnf5", "/usr/bin/dnf", "/usr/local/bin/dnf" })
{
if (File.Exists(path) && !candidates.Contains(path))
candidates.Add(path);
}
return candidates;
}
protected override void _loadManagerExecutableFile(
out bool found,
out string path,
out string callArguments)
{
(found, path) = GetExecutableFile();
callArguments = "";
}
protected override void _loadManagerVersion(out string version)
{
using var p = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Status.ExecutablePath,
Arguments = "--version",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
p.Start();
// First line is the version number: "X.Y.Z"
version = p.StandardOutput.ReadLine()?.Trim() ?? "";
p.StandardOutput.ReadToEnd();
p.StandardError.ReadToEnd();
p.WaitForExit();
}
// ── Index refresh ──────────────────────────────────────────────────────
public override void RefreshPackageIndexes()
{
using var p = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Status.ExecutablePath,
Arguments = "makecache",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.RefreshIndexes, p);
p.Start();
logger.AddToStdOut(p.StandardOutput.ReadToEnd());
logger.AddToStdErr(p.StandardError.ReadToEnd());
p.WaitForExit();
logger.Close(p.ExitCode);
}
// ── Package listing ────────────────────────────────────────────────────
protected override IReadOnlyList<Package> FindPackages_UnSafe(string query)
{
var packages = new List<Package>();
using var p = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Status.ExecutablePath,
Arguments = $"search --quiet {query}",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.FindPackages, p);
p.Start();
// Output: "<name>.<arch> : <description>"
// Section headers look like "===== Name Matched: <q> =====" — skip them.
var seen = new HashSet<string>(StringComparer.Ordinal);
string? line;
while ((line = p.StandardOutput.ReadLine()) is not null)
{
logger.AddToStdOut(line);
if (line.StartsWith('=') || line.Length == 0) continue;
var colonIdx = line.IndexOf(" : ", StringComparison.Ordinal);
if (colonIdx <= 0) continue;
var nameArch = line[..colonIdx].Trim();
var id = StripArch(nameArch);
if (id.Length == 0 || !seen.Add(id)) continue;
packages.Add(new Package(
CoreTools.FormatAsName(id),
id,
CoreTools.Translate("Latest"),
Properties.DefaultSource!,
this));
}
logger.AddToStdErr(p.StandardError.ReadToEnd());
p.WaitForExit();
// dnf search exits 1 when no packages match the query — not an error
logger.Close(p.ExitCode == 1 && packages.Count == 0 ? 0 : p.ExitCode);
return packages;
}
protected override IReadOnlyList<Package> GetInstalledPackages_UnSafe()
{
var packages = new List<Package>();
using var p = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Status.ExecutablePath,
Arguments = "list --installed",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.ListInstalledPackages, p);
p.Start();
// Output: "<name>.<arch> <version>-<release> <@repo>"
// Skip header/metadata lines (e.g. "Installed Packages",
// "Last metadata expiration check: ...") by requiring a known arch suffix.
string? line;
while ((line = p.StandardOutput.ReadLine()) is not null)
{
logger.AddToStdOut(line);
var parts = line.Split((char[]?)null, StringSplitOptions.RemoveEmptyEntries);
if (parts.Length < 2 || !IsPackageLine(parts[0])) continue;
var id = StripArch(parts[0]);
var version = parts[1];
packages.Add(new Package(
CoreTools.FormatAsName(id),
id,
version,
Properties.DefaultSource!,
this));
}
logger.AddToStdErr(p.StandardError.ReadToEnd());
p.WaitForExit();
logger.Close(p.ExitCode);
return packages;
}
protected override IReadOnlyList<Package> GetAvailableUpdates_UnSafe()
{
var packages = new List<Package>();
using var p = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Status.ExecutablePath,
Arguments = "list --upgrades",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
// Build lookup before starting the process — reading from its pipe
// while a second process runs risks filling the pipe buffer and deadlocking.
Dictionary<string, string> installed = [];
foreach (var pkg in GetInstalledPackages_UnSafe())
installed.TryAdd(pkg.Id, pkg.VersionString);
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.ListUpdates, p);
p.Start();
// Output: "<name>.<arch> <version>-<release> <repo>"
// Skip header/metadata lines (e.g. "Available Upgrades",
// "Last metadata expiration check: ...") by requiring a known arch suffix.
string? line;
while ((line = p.StandardOutput.ReadLine()) is not null)
{
logger.AddToStdOut(line);
var parts = line.Split((char[]?)null, StringSplitOptions.RemoveEmptyEntries);
if (parts.Length < 2 || !IsPackageLine(parts[0])) continue;
var id = StripArch(parts[0]);
var newVersion = parts[1];
installed.TryGetValue(id, out var oldVersion);
packages.Add(new Package(
CoreTools.FormatAsName(id),
id,
oldVersion ?? "",
newVersion,
Properties.DefaultSource!,
this));
}
logger.AddToStdErr(p.StandardError.ReadToEnd());
p.WaitForExit();
logger.Close(p.ExitCode);
return packages;
}
// ── Helpers ────────────────────────────────────────────────────────────
/// <summary>
/// Strips the trailing .<arch> from a DNF package token (e.g. "vim.x86_64" → "vim").
/// Package names that do not end in a known arch are returned unchanged.
/// </summary>
internal static string StripArch(string nameArch)
{
var dot = nameArch.LastIndexOf('.');
if (dot > 0 && _knownArches.Contains(nameArch[(dot + 1)..]))
return nameArch[..dot];
return nameArch;
}
/// <summary>
/// Returns true when <paramref name="token"/> looks like a DNF package entry
/// (i.e. ends in a known architecture suffix such as ".x86_64" or ".noarch").
/// Used to skip header/metadata lines in dnf list output.
/// </summary>
private static bool IsPackageLine(string token)
{
var dot = token.LastIndexOf('.');
return dot > 0 && _knownArches.Contains(token[(dot + 1)..]);
}
}