-
Notifications
You must be signed in to change notification settings - Fork 821
Expand file tree
/
Copy pathPacman.cs
More file actions
257 lines (228 loc) · 8.88 KB
/
Pacman.cs
File metadata and controls
257 lines (228 loc) · 8.88 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
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.PacmanManager;
public class Pacman : PackageManager
{
public Pacman()
{
Dependencies = [];
Capabilities = new ManagerCapabilities
{
CanRunAsAdmin = true,
CanSkipIntegrityChecks = false,
SupportsCustomSources = false,
SupportsProxy = ProxySupport.No,
SupportsProxyAuth = false,
KnowsPackageReleaseDate = PackageReleaseDateSupport.Yes,
};
Properties = new ManagerProperties
{
Id = "pacman",
Name = "Pacman",
Description = CoreTools.Translate(
"The default package manager for Arch Linux and its derivatives.<br>Contains: <b>Arch Linux packages</b>"
),
IconId = IconType.Pacman,
ColorIconId = "pacman",
ExecutableFriendlyName = "pacman",
InstallVerb = "-S",
UpdateVerb = "-S",
UninstallVerb = "-Rs",
DefaultSource = new ManagerSource(this, "arch", new Uri("https://archlinux.org/packages/")),
KnownSources = [new ManagerSource(this, "arch", new Uri("https://archlinux.org/packages/"))],
};
DetailsHelper = new PacmanPkgDetailsHelper(this);
OperationHelper = new PacmanPkgOperationHelper(this);
}
// ── Executable discovery ───────────────────────────────────────────────
public override IReadOnlyList<string> FindCandidateExecutableFiles()
{
var candidates = new List<string>(CoreTools.WhichMultiple("pacman"));
foreach (var path in new[] { "/usr/bin/pacman", "/usr/local/bin/pacman" })
{
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 = "-Q pacman",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
p.Start();
// First line: "pacman X.Y.Z-N"
var line = p.StandardOutput.ReadLine()?.Trim() ?? "";
var parts = line.Split(' ');
version = parts.Length >= 2 ? parts[1] : line;
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 = "-Sy",
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 = $"-Ss {query}",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.FindPackages, p);
p.Start();
// Output format: "<repo>/<name> <version> [groups]\n <description>"
// Name lines start at column 0; description lines are indented.
string? line;
while ((line = p.StandardOutput.ReadLine()) is not null)
{
logger.AddToStdOut(line);
if (line.Length == 0 || line.StartsWith(' ')) continue;
var slashIdx = line.IndexOf('/');
if (slashIdx < 0) continue;
var afterSlash = line[(slashIdx + 1)..];
var spaceIdx = afterSlash.IndexOf(' ');
if (spaceIdx <= 0) continue;
var id = afterSlash[..spaceIdx];
packages.Add(new Package(
CoreTools.FormatAsName(id),
id,
CoreTools.Translate("Latest"),
Properties.DefaultSource!,
this));
}
logger.AddToStdErr(p.StandardError.ReadToEnd());
p.WaitForExit();
// pacman -Ss 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 = "-Q",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.ListInstalledPackages, p);
p.Start();
// Output format: "<name> <version>"
string? line;
while ((line = p.StandardOutput.ReadLine()) is not null)
{
logger.AddToStdOut(line);
var parts = line.Split(' ', StringSplitOptions.RemoveEmptyEntries);
if (parts.Length < 2) continue;
packages.Add(new Package(
CoreTools.FormatAsName(parts[0]),
parts[0],
parts[1],
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 = "-Qu",
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
},
};
IProcessTaskLogger logger = TaskLogger.CreateNew(LoggableTaskType.ListUpdates, p);
p.Start();
// Output format: "<name> <old-version> -> <new-version>"
string? line;
while ((line = p.StandardOutput.ReadLine()) is not null)
{
logger.AddToStdOut(line);
var parts = line.Split(' ', StringSplitOptions.RemoveEmptyEntries);
if (parts.Length < 4 || parts[2] != "->") continue;
packages.Add(new Package(
CoreTools.FormatAsName(parts[0]),
parts[0],
parts[1],
parts[3],
Properties.DefaultSource!,
this));
}
logger.AddToStdErr(p.StandardError.ReadToEnd());
p.WaitForExit();
// pacman -Qu exits 1 when there are no upgradable packages — not an error
logger.Close(p.ExitCode == 1 && packages.Count == 0 ? 0 : p.ExitCode);
return packages;
}
}