Skip to content

Commit 8ac5d7b

Browse files
committed
no longer have to wait for previous task to finish
1 parent c03aed9 commit 8ac5d7b

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

GPUPrefSwitcher/FileSwapper.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static byte[] GetHash(string str)
100100
/// <summary>
101101
/// Represents the file swap data and behavior of an AppEntry for the detailed, mistake-prone file swap system.
102102
/// </summary>
103-
public class FileSwapper : FileSwapperData
103+
public class FileSwapper : FileSwapperData //in the future you could totally refactor to this class to compose a FileSwapperData instead of inheriting
104104
{
105105
public AppEntryLibrarian AppEntryLibrarian { get; init; }
106106

@@ -163,7 +163,7 @@ public async Task InitiateFileSwaps(PowerLineStatus forPowerLineStatus, AppEntry
163163
* The FileSwapPath state (Offline/Online) in the XML file is changed as soon as the respective copy operation
164164
* completes, and a file swap does not occur if it's already in its appropriate respective state.
165165
*
166-
* This means that it at least shouldn't be possible for a race condition to mess up the Online/Offline state <---(unless in the *extremely* unlikely event that the Online/Offline tracker change doesn't go through literally a single line after the file copy)
166+
* This means that it at least shouldn't be possible for a race condition to mess up the Online/Offline state <---(unless in the unlikely event that the Online/Offline tracker change doesn't go through after the file copy)
167167
* and its correspondence to which files are physically in the target path, and in the SettingsBank store.
168168
*
169169
* However, it's still possible for other undesirable behavior to occur.

GPUPrefSwitcher/Switcher.cs

+18-18
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ internal static void Stop()
113113
#endregion Initialization/End
114114

115115
private static bool timerRunning = false;
116-
private static Task runningUpdateTask;
116+
//private static Task runningUpdateTask;
117+
118+
private static List<Task> runningUpdateTasks = new();
117119
/// <summary>
118120
/// There should be only one of this running at any time.
119121
/// </summary>
@@ -124,27 +126,25 @@ private static async Task BeginTimerForever()
124126
while (true)
125127
{
126128

127-
/*
128-
* Only ever run one of this task at once
129-
*/
130-
131-
if (runningUpdateTask != null && runningUpdateTask.IsFaulted)
129+
foreach(Task task in runningUpdateTasks)
132130
{
133-
Logger.inst.ErrorLog(runningUpdateTask.Exception.ToString());
134-
throw runningUpdateTask.Exception;
135-
}
131+
//TODO run a new task even if the previous one is going
132+
if (task != null && task.IsFaulted)
133+
{
134+
Logger.inst.ErrorLog(task.Exception.ToString());
135+
runningUpdateTasks.Remove(task);
136+
throw task.Exception;
137+
}
136138

137-
if (runningUpdateTask == Task.CompletedTask)
138-
{
139-
runningUpdateTask = null;
140-
}
139+
if (task == Task.CompletedTask)
140+
{
141+
runningUpdateTasks.Remove(task);
142+
}
141143

142-
if (runningUpdateTask == null)
143-
{
144-
Task run = RunUpdateLogic();
145-
runningUpdateTask = run;
146144
}
147145

146+
runningUpdateTasks.Add(RunUpdateLogic());
147+
148148
await Task.Delay(updateInterval); //move this to the beginning to make debugging easier
149149
}
150150
}
@@ -233,7 +233,7 @@ private static async Task RunUpdateLogic()
233233

234234
prevPowerLineStatus = currentPowerLineStatus; //THIS MUST GO AT THE END
235235

236-
//await swaps; //we shouldn't, in case there is one that just keeps retrying forever
236+
await swaps; //we shouldn't, in case there is one that just keeps retrying forever
237237

238238
//return Task.CompletedTask;
239239
}

0 commit comments

Comments
 (0)