-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
261 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using Cysharp.Diagnostics; | ||
using Microsoft.Extensions.Hosting; | ||
|
||
namespace VdLabel; | ||
|
||
class NameCommandService(IConfigStore configStore, IVirualDesktopService virualDesktopService) : BackgroundService | ||
{ | ||
private readonly IConfigStore configStore = configStore; | ||
private readonly IVirualDesktopService virualDesktopService = virualDesktopService; | ||
|
||
protected override async Task ExecuteAsync(CancellationToken stoppingToken) | ||
{ | ||
PeriodicTimer? timer = null; | ||
while (!stoppingToken.IsCancellationRequested) | ||
{ | ||
var config = await this.configStore.Load(); | ||
stoppingToken.ThrowIfCancellationRequested(); | ||
var span = TimeSpan.FromSeconds(config.CommandInterval); | ||
timer ??= new PeriodicTimer(span); | ||
if (timer.Period != span) | ||
{ | ||
timer.Period = span; | ||
} | ||
foreach (var desktopConfig in config.DesktopConfigs) | ||
{ | ||
if (desktopConfig.Command is not { Length: > 0 }) | ||
{ | ||
continue; | ||
} | ||
var lines = await ProcessX.StartAsync(desktopConfig.Command).ToTask(stoppingToken); | ||
stoppingToken.ThrowIfCancellationRequested(); | ||
this.virualDesktopService.SetName(desktopConfig.Id, string.Join(Environment.NewLine, lines)); | ||
} | ||
await timer.WaitForNextTickAsync(stoppingToken); | ||
} | ||
timer?.Dispose(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters