forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessLock.cs
35 lines (28 loc) · 937 Bytes
/
ProcessLock.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
namespace Templates.Test.Helpers;
public class ProcessLock
{
public static readonly ProcessLock DotNetNewLock = new ProcessLock("dotnet-new");
public static readonly ProcessLock NodeLock = new ProcessLock("node");
public ProcessLock(string name)
{
Name = name;
Semaphore = new SemaphoreSlim(1);
}
public string Name { get; }
private SemaphoreSlim Semaphore { get; }
public async Task WaitAsync(TimeSpan? timeout = null)
{
timeout ??= TimeSpan.FromMinutes(20);
Assert.True(await Semaphore.WaitAsync(timeout.Value), $"Unable to acquire process lock for process {Name}");
}
public void Release()
{
Semaphore.Release();
}
}