Skip to content

Commit d4aafa7

Browse files
committed
correctly handle shutdown with a cancellation token
1 parent c40adfe commit d4aafa7

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

GPUPrefSwitcher/Switcher.cs

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using Microsoft.Win32;
1+
using Microsoft.Extensions.Hosting;
2+
using Microsoft.Win32;
23
using System;
34
using System.Collections.Generic;
45
using System.Diagnostics;
@@ -41,7 +42,7 @@ public static class Switcher
4142
/// <summary>
4243
/// Call once upon service start. Initializes necessary components and starts the timer.
4344
/// </summary>
44-
internal static void Start(CancellationToken cancellationToken)
45+
internal static async void Start(CancellationToken stoppingToken)
4546
{
4647
appOptions = new AppOptions();
4748
Logger.inst.EnableRealtimeStandardLogWrites = appOptions.CurrentOptions.EnableRealtimeLogging;
@@ -70,7 +71,7 @@ internal static void Start(CancellationToken cancellationToken)
7071

7172
File.Delete(CRASHED_FILE_PATH);//"successful" initialization yippee
7273

73-
Task forever = BeginTimerForever(cancellationToken);
74+
Task forever = BeginTimerForever(stoppingToken);
7475

7576
/*
7677
forever.ContinueWith(
@@ -86,6 +87,8 @@ internal static void Start(CancellationToken cancellationToken)
8687
//doesn't actually serve a purpose for now
8788
Logger.inst.Log("Detected that service stop was not completed on the last run.");
8889
}
90+
91+
await forever;
8992
}
9093
private static int updateInterval;
9194

@@ -119,11 +122,11 @@ internal static void Stop()
119122
/// <summary>
120123
/// There should be only one of this running at any time.
121124
/// </summary>
122-
private static Task BeginTimerForever(CancellationToken cancellationToken)
125+
private static async Task BeginTimerForever(CancellationToken stoppingToken)
123126
{
124127
if (timerRunning) { throw new InvalidOperationException("This function cannot be called more than once"); }
125128
timerRunning = true;
126-
while (!cancellationToken.IsCancellationRequested)
129+
while (!stoppingToken.IsCancellationRequested)
127130
{
128131

129132
for (int i = runningUpdateTasks.Count - 1; i >= 0; i--)
@@ -144,12 +147,10 @@ private static Task BeginTimerForever(CancellationToken cancellationToken)
144147

145148
}
146149

147-
runningUpdateTasks.Add(RunUpdateLogic());
150+
runningUpdateTasks.Add(RunUpdateLogic()); //no identified need to handle cancelling the update logic
148151

149-
Task.Delay(updateInterval).Wait(); //move this to the beginning to make debugging easier
152+
await Task.Delay(updateInterval, stoppingToken); //move this to the beginning of the loop to make attaching a debugger easier
150153
}
151-
152-
return Task.CompletedTask;
153154
}
154155

155156
private static async Task RunUpdateLogic()

0 commit comments

Comments
 (0)