Skip to content

Commit ab373ca

Browse files
committed
should not dispose and yeild
1 parent 3d3f0cb commit ab373ca

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

src/DiffEngine/Process/LinuxOsxProcess.cs

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ public static bool TryTerminateProcess(int processId)
2424
throw new(message);
2525
}
2626

27-
public static IEnumerable<ProcessCommand> FindAll()
27+
public static List<ProcessCommand> FindAll()
2828
{
2929
if (!TryRunPs(out var processList))
3030
{
31-
yield break;
31+
return [];
3232
}
3333

34+
var commands = new List<ProcessCommand>();
3435
using var reader = new StringReader(processList);
3536
reader.ReadLine();
3637
while (reader.ReadLine() is { } line)
@@ -40,8 +41,10 @@ public static IEnumerable<ProcessCommand> FindAll()
4041
continue;
4142
}
4243

43-
yield return processCommand!.Value;
44+
commands.Add(processCommand!.Value);
4445
}
46+
47+
return commands;
4548
}
4649

4750
public static bool TryParse(string line, out ProcessCommand? processCommand)

src/DiffEngine/Process/ProcessCleanup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public static class ProcessCleanup
44
{
55
static List<ProcessCommand> commands;
6-
static Func<IEnumerable<ProcessCommand>> findAll;
6+
static Func<List<ProcessCommand>> findAll;
77
static Func<int, bool> tryTerminateProcess;
88

99
static ProcessCleanup()

src/DiffEngine/Process/WindowsProcess.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ public static bool TryTerminateProcess(int processId)
2323
return true;
2424
}
2525

26-
public static IEnumerable<ProcessCommand> FindAll()
26+
public static List<ProcessCommand> FindAll()
2727
{
28+
var commands = new List<ProcessCommand>();
2829
var wmiQuery =
2930
"""
3031
select CommandLine, ProcessId
@@ -38,7 +39,9 @@ where CommandLine like '% %.%.%'
3839
var command = (string) process["CommandLine"];
3940
var id = (int) Convert.ChangeType(process["ProcessId"], typeof(int));
4041
process.Dispose();
41-
yield return new(command, id);
42+
commands.Add(new(command, id));
4243
}
44+
45+
return commands;
4346
}
4447
}

0 commit comments

Comments
 (0)