DocSpace-buildtools/common/ASC.Common/Caching/KafkaCache.cs
2019-07-19 16:10:15 +03:00

170 lines
5.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using ASC.Common.Logging;
using ASC.Common.Utils;
using Confluent.Kafka;
using Google.Protobuf;
namespace ASC.Common.Caching
{
public class KafkaCache<T> : ICacheNotify<T> where T : IMessage<T>, new()
{
private ClientConfig ClientConfig { get; set; }
private ILog Log { get; set; }
private Dictionary<CacheNotifyAction, CancellationTokenSource> Cts { get; set; }
private MemoryCacheNotify<T> MemoryCacheNotify { get; set; }
public KafkaCache()
{
Log = LogManager.GetLogger("ASC");
Cts = new Dictionary<CacheNotifyAction, CancellationTokenSource>();
var settings = ConfigurationManager.GetSetting<KafkaSettings>("kafka");
if (settings != null && !string.IsNullOrEmpty(settings.BootstrapServers))
{
ClientConfig = new ClientConfig { BootstrapServers = settings.BootstrapServers };
}
else
{
MemoryCacheNotify = new MemoryCacheNotify<T>();
}
}
public async void Publish(T obj, CacheNotifyAction cacheNotifyAction)
{
if(ClientConfig == null)
{
MemoryCacheNotify.Publish(obj, cacheNotifyAction);
return;
}
var config = new ProducerConfig(ClientConfig);
using var p = new ProducerBuilder<Null, T>(config)
.SetErrorHandler((_, e) => Log.Error(e))
.SetValueSerializer(new ProtobufSerializer<T>())
.Build();
try
{
var dr = await p.ProduceAsync(GetChannelName(cacheNotifyAction), new Message<Null, T>() { Value = obj });
}
catch (ProduceException<Null, string> e)
{
Log.Error(e);
}
catch (Exception e)
{
Log.Error(e);
}
}
public void Subscribe(Action<T> onchange, CacheNotifyAction cacheNotifyAction)
{
if (ClientConfig == null)
{
MemoryCacheNotify.Subscribe(onchange, cacheNotifyAction);
return;
}
void action()
{
var conf = new ConsumerConfig(ClientConfig)
{
GroupId = new Guid().ToString(),
EnableAutoCommit = true
};
using var c = new ConsumerBuilder<Ignore, T>(conf)
.SetErrorHandler((_, e) => Log.Error(e))
.SetValueDeserializer(new ProtobufDeserializer<T>())
.Build();
c.Subscribe(GetChannelName(cacheNotifyAction));
Cts[cacheNotifyAction] = new CancellationTokenSource();
try
{
while (true)
{
try
{
var cr = c.Consume(Cts[cacheNotifyAction].Token);
if (cr != null && cr.Value != null)
{
onchange(cr.Value);
}
}
catch (ConsumeException e)
{
Log.Error(e);
}
}
}
catch (OperationCanceledException)
{
c.Close();
}
}
var task = new Task(action, TaskCreationOptions.LongRunning);
task.Start();
}
private string GetChannelName(CacheNotifyAction cacheNotifyAction)
{
return $"ascchannel{typeof(T).Name}{cacheNotifyAction}";
}
public void Unsubscribe(CacheNotifyAction action)
{
Cts[action].Cancel();
}
}
public class KafkaSettings
{
public string BootstrapServers { get; set; }
}
public class MemoryCacheNotify<T> : ICacheNotify<T> where T : IMessage<T>, new()
{
private readonly Dictionary<string, List<Action<T>>> actions = new Dictionary<string, List<Action<T>>>();
public void Publish(T obj, CacheNotifyAction action)
{
if (actions.TryGetValue(GetKey(action), out var onchange) && onchange != null)
{
foreach(var a in onchange)
{
a(obj);
}
}
}
public void Subscribe(Action<T> onchange, CacheNotifyAction notifyAction)
{
if (onchange != null)
{
var key = GetKey(notifyAction);
actions.TryAdd(key, new List<Action<T>>());
actions[key].Add(onchange);
}
}
public void Unsubscribe(CacheNotifyAction action)
{
actions.Remove(GetKey(action));
}
private string GetKey(CacheNotifyAction cacheNotifyAction)
{
return $"{typeof(T).Name}{cacheNotifyAction}";
}
}
}