mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-10-31 21:05:38 +01:00
87 lines
2.6 KiB
C#
87 lines
2.6 KiB
C#
namespace Giants.Services
|
|
{
|
|
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Threading.Tasks;
|
|
|
|
public class InMemoryServerRegistryStore : IServerRegistryStore
|
|
{
|
|
private ConcurrentDictionary<string, ServerInfo> servers = new ConcurrentDictionary<string, ServerInfo>();
|
|
|
|
public Task<ServerInfo> GetServerInfo(string ipAddress)
|
|
{
|
|
if (this.servers.ContainsKey(ipAddress))
|
|
{
|
|
return Task.FromResult(this.servers[ipAddress]);
|
|
}
|
|
|
|
return Task.FromResult((ServerInfo)null);
|
|
}
|
|
|
|
public Task Initialize()
|
|
{
|
|
this.servers.Clear();
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task UpsertServerInfo(ServerInfo serverInfo)
|
|
{
|
|
this.servers.TryAdd(serverInfo.HostIpAddress, serverInfo);
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task<IEnumerable<ServerInfo>> GetServerInfos(
|
|
Expression<Func<ServerInfo, bool>> whereExpression = null,
|
|
bool includeExpired = false,
|
|
string partitionKey = null)
|
|
{
|
|
IQueryable<ServerInfo> serverInfoQuery = this.servers.Values.AsQueryable();
|
|
|
|
if (whereExpression != null)
|
|
{
|
|
serverInfoQuery = serverInfoQuery.Where(whereExpression);
|
|
}
|
|
|
|
return Task.FromResult(serverInfoQuery.AsEnumerable());
|
|
}
|
|
|
|
public Task<IEnumerable<TSelect>> GetServerInfos<TSelect>(
|
|
Expression<Func<ServerInfo, TSelect>> selectExpression,
|
|
bool includeExpired = false,
|
|
Expression <Func<ServerInfo, bool>> whereExpression = null,
|
|
string partitionKey = null)
|
|
{
|
|
IQueryable<ServerInfo> serverInfoQuery = this.servers.Values.AsQueryable();
|
|
|
|
if (whereExpression != null)
|
|
{
|
|
serverInfoQuery = serverInfoQuery.Where(whereExpression);
|
|
}
|
|
|
|
return Task.FromResult(serverInfoQuery.Select(selectExpression).AsEnumerable());
|
|
}
|
|
|
|
public Task DeleteServers(IEnumerable<string> ids, string partitionKey = null)
|
|
{
|
|
foreach (string id in ids)
|
|
{
|
|
this.servers.TryRemove(id, out _);
|
|
}
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task DeleteServer(string id, string partitionKey = null)
|
|
{
|
|
this.servers.TryRemove(id, out ServerInfo _);
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|