DocSpace-client/common/ASC.Common/Threading/DistributedTaskQueue.cs

253 lines
8.5 KiB
C#
Raw Normal View History

2019-05-15 14:56:09 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
2020-03-04 07:42:43 +00:00
using System.Linq;
2019-05-15 14:56:09 +00:00
using System.Threading;
2019-08-15 12:04:42 +00:00
using System.Threading.Tasks;
2020-02-07 11:34:25 +00:00
2020-07-13 15:26:21 +00:00
using ASC.Common.Caching;
using Microsoft.Extensions.Options;
2019-05-15 14:56:09 +00:00
namespace ASC.Common.Threading
2019-10-14 08:23:45 +00:00
{
public class DistributedTaskCacheNotify
{
public ConcurrentDictionary<string, CancellationTokenSource> Cancelations { get; }
public ICache Cache { get; }
private readonly ICacheNotify<DistributedTaskCancelation> notify;
private readonly ICacheNotify<DistributedTaskCache> notifyCache;
public DistributedTaskCacheNotify(ICacheNotify<DistributedTaskCancelation> notify, ICacheNotify<DistributedTaskCache> notifyCache)
{
Cancelations = new ConcurrentDictionary<string, CancellationTokenSource>();
2020-03-04 07:42:43 +00:00
Cache = AscCache.Memory;
2019-10-14 08:23:45 +00:00
this.notify = notify;
notify.Subscribe((c) =>
{
if (Cancelations.TryGetValue(c.Id, out var s))
{
s.Cancel();
}
}, CacheNotifyAction.Remove);
this.notifyCache = notifyCache;
notifyCache.Subscribe((c) =>
{
Cache.HashSet(c.Key, c.Id, (DistributedTaskCache)null);
}, CacheNotifyAction.Remove);
notifyCache.Subscribe((c) =>
{
Cache.HashSet(c.Key, c.Id, c);
}, CacheNotifyAction.InsertOrUpdate);
}
public void CancelTask(string id)
{
notify.Publish(new DistributedTaskCancelation() { Id = id }, CacheNotifyAction.Remove);
}
public void SetTask(DistributedTask task)
{
notifyCache.Publish(task.DistributedTaskCache, CacheNotifyAction.InsertOrUpdate);
}
public void RemoveTask(string id, string key)
{
notifyCache.Publish(new DistributedTaskCache() { Id = id, Key = key }, CacheNotifyAction.Remove);
}
}
2020-07-13 15:26:21 +00:00
public class DistributedTaskQueueOptionsManager : OptionsManager<DistributedTaskQueue>
{
public DistributedTaskQueueOptionsManager(IOptionsFactory<DistributedTaskQueue> factory) : base(factory)
{
}
}
public class ConfigureDistributedTaskQueue : IConfigureNamedOptions<DistributedTaskQueue>
{
public DistributedTaskCacheNotify DistributedTaskCacheNotify { get; }
public ConfigureDistributedTaskQueue(DistributedTaskCacheNotify distributedTaskCacheNotify)
{
DistributedTaskCacheNotify = distributedTaskCacheNotify;
}
public void Configure(DistributedTaskQueue queue)
{
queue.DistributedTaskCacheNotify = DistributedTaskCacheNotify;
}
public void Configure(string name, DistributedTaskQueue options)
{
Configure(options);
options.Name = name;
}
}
2019-10-14 08:23:45 +00:00
2019-05-15 14:56:09 +00:00
public class DistributedTaskQueue
{
public static readonly string InstanceId;
2019-05-15 14:56:09 +00:00
2020-07-13 15:26:21 +00:00
private string key;
private TaskScheduler Scheduler { get; set; } = TaskScheduler.Default;
public string Name { set { key = value + GetType().Name; } }
private ICache Cache { get => DistributedTaskCacheNotify.Cache; }
private ConcurrentDictionary<string, CancellationTokenSource> Cancelations { get => DistributedTaskCacheNotify.Cancelations; }
public int MaxThreadsCount
{
set
{
Scheduler = value <= 0
? TaskScheduler.Default
: new ConcurrentExclusiveSchedulerPair(TaskScheduler.Default, 4).ConcurrentScheduler;
}
}
2019-10-14 08:23:45 +00:00
2020-07-13 15:26:21 +00:00
public DistributedTaskCacheNotify DistributedTaskCacheNotify { get; set; }
2019-05-15 14:56:09 +00:00
static DistributedTaskQueue()
{
InstanceId = Process.GetCurrentProcess().Id.ToString();
2019-05-15 14:56:09 +00:00
}
public void QueueTask(Action<DistributedTask, CancellationToken> action, DistributedTask distributedTask = null)
{
if (distributedTask == null)
{
distributedTask = new DistributedTask();
}
distributedTask.InstanceId = InstanceId;
2019-05-15 14:56:09 +00:00
var cancelation = new CancellationTokenSource();
var token = cancelation.Token;
2020-07-13 15:26:21 +00:00
Cancelations[distributedTask.Id] = cancelation;
2019-05-15 14:56:09 +00:00
var task = new Task(() => action(distributedTask, token), token, TaskCreationOptions.LongRunning);
task
.ConfigureAwait(false)
.GetAwaiter()
.OnCompleted(() => OnCompleted(task, distributedTask.Id));
distributedTask.Status = DistributedTaskStatus.Running;
if (distributedTask.Publication == null)
{
distributedTask.Publication = GetPublication();
}
distributedTask.PublishChanges();
2020-07-13 15:26:21 +00:00
task.Start(Scheduler);
2019-05-15 14:56:09 +00:00
}
public IEnumerable<DistributedTask> GetTasks()
2020-03-04 07:42:43 +00:00
{
2020-07-13 15:26:21 +00:00
var tasks = Cache.HashGetAll<DistributedTaskCache>(key).Values.Select(r => new DistributedTask(r)).ToList();
2019-05-15 14:56:09 +00:00
tasks.ForEach(t =>
{
if (t.Publication == null)
{
t.Publication = GetPublication();
}
});
return tasks;
}
public DistributedTask GetTask(string id)
{
2020-07-13 15:26:21 +00:00
var task = new DistributedTask(Cache.HashGet<DistributedTaskCache>(key, id));
2019-05-15 14:56:09 +00:00
if (task != null && task.Publication == null)
{
task.Publication = GetPublication();
}
return task;
2020-02-07 11:34:25 +00:00
}
public void SetTask(DistributedTask task)
{
DistributedTaskCacheNotify.SetTask(task);
2019-05-15 14:56:09 +00:00
}
2020-02-07 11:34:25 +00:00
public void RemoveTask(string id)
{
DistributedTaskCacheNotify.RemoveTask(id, key);
}
public void CancelTask(string id)
{
DistributedTaskCacheNotify.CancelTask(id);
}
2019-05-15 14:56:09 +00:00
private void OnCompleted(Task task, string id)
{
var distributedTask = GetTask(id);
if (distributedTask != null)
{
distributedTask.Status = DistributedTaskStatus.Completed;
distributedTask.Exception = task.Exception;
if (task.IsFaulted)
{
distributedTask.Status = DistributedTaskStatus.Failted;
}
if (task.IsCanceled)
{
distributedTask.Status = DistributedTaskStatus.Canceled;
}
2019-08-16 08:44:03 +00:00
2020-07-13 15:26:21 +00:00
Cancelations.TryRemove(id, out _);
2019-05-15 14:56:09 +00:00
distributedTask.PublishChanges();
}
}
private Action<DistributedTask> GetPublication()
{
2019-10-14 08:23:45 +00:00
return (t) =>
{
if (t.DistributedTaskCache != null)
{
t.DistributedTaskCache.Key = key;
}
DistributedTaskCacheNotify.SetTask(t);
};
2019-05-15 14:56:09 +00:00
}
}
}