mhf-server/Mhf.Server/Model/ClientLookup.cs
2019-11-24 19:43:35 +08:00

72 lines
1.6 KiB
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
namespace Mhf.Server.Model
{
public class ClientLookup
{
private readonly List<MhfClient> _clients;
private readonly object _lock = new object();
public ClientLookup()
{
_clients = new List<MhfClient>();
}
/// <summary>
/// Returns all Clients.
/// </summary>
public List<MhfClient> GetAll()
{
lock (_lock)
{
return new List<MhfClient>(_clients);
}
}
/// <summary>
/// Adds a Client.
/// </summary>
public void Add(MhfClient client)
{
if (client == null)
{
return;
}
lock (_lock)
{
_clients.Add(client);
}
}
/// <summary>
/// Removes the Client from all lists and lookup tables.
/// </summary>
public void Remove(MhfClient client)
{
lock (_lock)
{
_clients.Remove(client);
}
}
/// <summary>
/// Returns a Client by AccountId if it exists.
/// </summary>
public MhfClient GetByAccountId(int accountId)
{
List<MhfClient> clients = GetAll();
foreach (MhfClient client in clients)
{
if (client.Account.Id == accountId)
{
return client;
}
}
return null;
}
}
}