mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
using System; |
|
using System.Collections.Concurrent; |
|
using ErsatzTV.Core.Interfaces.Locking; |
|
|
|
namespace ErsatzTV.Infrastructure.Locking |
|
{ |
|
public class EntityLocker : IEntityLocker |
|
{ |
|
private readonly ConcurrentDictionary<int, byte> _lockedMediaSources; |
|
|
|
public EntityLocker() => _lockedMediaSources = new ConcurrentDictionary<int, byte>(); |
|
|
|
public event EventHandler OnMediaSourceChanged; |
|
|
|
public bool LockMediaSource(int mediaSourceId) |
|
{ |
|
if (!_lockedMediaSources.ContainsKey(mediaSourceId) && _lockedMediaSources.TryAdd(mediaSourceId, 0)) |
|
{ |
|
OnMediaSourceChanged?.Invoke(this, EventArgs.Empty); |
|
return true; |
|
} |
|
|
|
return false; |
|
} |
|
|
|
public bool UnlockMediaSource(int mediaSourceId) |
|
{ |
|
if (_lockedMediaSources.TryRemove(mediaSourceId, out byte _)) |
|
{ |
|
OnMediaSourceChanged?.Invoke(this, EventArgs.Empty); |
|
return true; |
|
} |
|
|
|
return false; |
|
} |
|
|
|
public bool IsMediaSourceLocked(int mediaSourceId) => |
|
_lockedMediaSources.ContainsKey(mediaSourceId); |
|
} |
|
}
|
|
|