DocSpace-client/common/services/ASC.ElasticSearch/Engine/BaseIndexer.cs

722 lines
26 KiB
C#
Raw Normal View History

2020-01-24 13:07:51 +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;
2020-02-17 08:58:14 +00:00
using System.Collections.Concurrent;
2020-01-24 13:07:51 +00:00
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
2020-04-23 09:38:50 +00:00
using System.Threading.Tasks;
2020-01-24 13:07:51 +00:00
2020-02-17 08:58:14 +00:00
using ASC.Common;
2020-01-24 13:07:51 +00:00
using ASC.Common.Caching;
using ASC.Common.Logging;
2020-02-17 08:58:14 +00:00
using ASC.Core;
using ASC.Core.Common.EF;
using ASC.Core.Common.EF.Context;
2020-04-27 16:59:52 +00:00
using ASC.Core.Common.EF.Model;
2020-01-24 13:07:51 +00:00
using ASC.ElasticSearch.Service;
2020-02-17 08:58:14 +00:00
2021-05-23 16:11:25 +00:00
using Autofac;
using Elasticsearch.Net;
2020-02-17 08:58:14 +00:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
2020-01-24 13:07:51 +00:00
using Nest;
namespace ASC.ElasticSearch
2020-10-19 15:53:15 +00:00
{
[Singletone]
2020-02-17 08:58:14 +00:00
public class BaseIndexerHelper
{
2020-01-24 13:07:51 +00:00
public ConcurrentDictionary<string, bool> IsExist { get; set; }
2020-05-05 17:40:24 +00:00
private readonly ICacheNotify<ClearIndexAction> Notify;
2020-02-17 08:58:14 +00:00
2020-05-05 17:40:24 +00:00
public BaseIndexerHelper(ICacheNotify<ClearIndexAction> cacheNotify)
2020-02-17 08:58:14 +00:00
{
IsExist = new ConcurrentDictionary<string, bool>();
2020-01-24 13:07:51 +00:00
Notify = cacheNotify;
Notify.Subscribe((a) =>
2020-05-05 17:40:24 +00:00
{
2020-10-12 19:39:23 +00:00
IsExist.AddOrUpdate(a.Id, false, (q, w) => false);
2020-02-17 08:58:14 +00:00
}, CacheNotifyAction.Any);
}
public void Clear<T>(T t) where T : class, ISearchItem
2020-02-17 08:58:14 +00:00
{
2020-05-05 17:40:24 +00:00
Notify.Publish(new ClearIndexAction() { Id = t.IndexName }, CacheNotifyAction.Any);
2020-02-17 08:58:14 +00:00
}
}
2020-10-19 15:53:15 +00:00
[Scope]
2020-04-27 16:59:52 +00:00
public class BaseIndexer<T> where T : class, ISearchItem
2020-01-24 13:07:51 +00:00
{
private static readonly object Locker = new object();
2020-02-18 08:39:28 +00:00
protected internal T Wrapper { get { return ServiceProvider.GetService<T>(); } }
2020-01-24 13:07:51 +00:00
2021-05-23 16:11:25 +00:00
internal string IndexName { get { return Wrapper.IndexName; } }
2020-04-27 16:59:52 +00:00
2021-05-23 16:11:25 +00:00
public const int QueryLimit = 10000;
2020-02-17 08:58:14 +00:00
2021-05-23 16:11:25 +00:00
private bool IsExist { get; set; }
2020-08-12 09:58:08 +00:00
private Client Client { get; }
2021-05-23 16:11:25 +00:00
private ILog Log { get; }
2020-08-12 09:58:08 +00:00
private TenantManager TenantManager { get; }
private BaseIndexerHelper BaseIndexerHelper { get; }
private Settings Settings { get; }
2021-07-15 10:07:47 +00:00
private IServiceProvider ServiceProvider { get; }
private Lazy<WebstudioDbContext> LazyWebstudioDbContext { get; }
private WebstudioDbContext WebstudioDbContext { get => LazyWebstudioDbContext.Value; }
2020-02-17 08:58:14 +00:00
public BaseIndexer(
Client client,
IOptionsMonitor<ILog> log,
DbContextManager<WebstudioDbContext> dbContextManager,
TenantManager tenantManager,
2020-05-03 15:50:40 +00:00
BaseIndexerHelper baseIndexerHelper,
2021-12-08 10:14:44 +00:00
SettingsHelper settingsHelper,
2020-02-11 15:10:30 +00:00
IServiceProvider serviceProvider)
2020-01-24 13:07:51 +00:00
{
2020-02-17 08:58:14 +00:00
Client = client;
Log = log.CurrentValue;
TenantManager = tenantManager;
2020-05-03 15:50:40 +00:00
BaseIndexerHelper = baseIndexerHelper;
2021-12-08 10:14:44 +00:00
Settings = settingsHelper.Settings;
2020-02-17 08:58:14 +00:00
ServiceProvider = serviceProvider;
2021-07-15 10:07:47 +00:00
LazyWebstudioDbContext = new Lazy<WebstudioDbContext>(() => dbContextManager.Value);
2020-01-24 13:07:51 +00:00
}
internal void Index(T data, bool immediately = true)
2020-05-14 14:03:24 +00:00
{
CreateIfNotExist(data);
2020-10-12 19:39:23 +00:00
Client.Instance.Index(data, idx => GetMeta(idx, data, immediately));
2020-01-24 13:07:51 +00:00
}
internal void Index(List<T> data, bool immediately = true)
2020-02-17 08:58:14 +00:00
{
2022-01-19 09:51:30 +00:00
if (data.Count == 0) return;
2020-05-14 14:03:24 +00:00
2021-05-23 16:11:25 +00:00
CreateIfNotExist(data[0]);
2020-04-28 15:11:10 +00:00
if (data[0] is ISearchItemDocument)
2020-01-24 13:07:51 +00:00
{
var currentLength = 0L;
var portion = new List<T>();
var portionStart = 0;
for (var i = 0; i < data.Count; i++)
{
var t = data[i];
var runBulk = i == data.Count - 1;
if (!(t is ISearchItemDocument wwd) || wwd.Document == null || string.IsNullOrEmpty(wwd.Document.Data))
2020-01-24 13:07:51 +00:00
{
2020-02-17 08:58:14 +00:00
portion.Add(t);
2020-01-24 13:07:51 +00:00
}
else
{
2020-02-17 08:58:14 +00:00
var dLength = wwd.Document.Data.Length;
2021-05-23 16:11:25 +00:00
if (dLength >= Settings.MaxContentLength)
2020-02-17 08:58:14 +00:00
{
try
{
Index(t, immediately);
2021-05-23 16:11:25 +00:00
}
catch (ElasticsearchClientException e)
{
if (e.Response.HttpStatusCode == 429)
{
throw;
}
Log.Error(e);
2020-02-17 08:58:14 +00:00
}
catch (Exception e)
{
Log.Error(e);
}
2021-05-23 16:11:25 +00:00
finally
{
wwd.Document.Data = null;
wwd.Document = null;
wwd = null;
GC.Collect();
}
2020-01-24 13:07:51 +00:00
continue;
}
2021-05-23 16:11:25 +00:00
if (currentLength + dLength < Settings.MaxContentLength)
2020-01-24 13:07:51 +00:00
{
2020-02-17 08:58:14 +00:00
portion.Add(t);
currentLength += dLength;
2020-01-24 13:07:51 +00:00
}
2020-02-17 08:58:14 +00:00
else
{
2020-01-24 13:07:51 +00:00
runBulk = true;
i--;
}
}
if (runBulk)
{
2020-12-28 13:22:08 +00:00
var portion1 = portion.ToList();
2021-05-23 16:11:25 +00:00
Client.Instance.Bulk(r => r.IndexMany(portion1, GetMeta).SourceExcludes("attachments"));
2020-01-24 13:07:51 +00:00
for (var j = portionStart; j < i; j++)
{
2020-04-28 15:11:10 +00:00
if (data[j] is ISearchItemDocument doc && doc.Document != null)
2020-01-24 13:07:51 +00:00
{
doc.Document.Data = null;
doc.Document = null;
2021-05-23 16:11:25 +00:00
}
doc = null;
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
portionStart = i;
portion = new List<T>();
currentLength = 0L;
GC.Collect();
}
}
}
else
{
2020-10-12 19:39:23 +00:00
Client.Instance.Bulk(r => r.IndexMany(data, GetMeta));
2020-02-17 08:58:14 +00:00
}
2021-05-23 16:11:25 +00:00
}
internal async Task IndexAsync(List<T> data, bool immediately = true)
{
CreateIfNotExist(data[0]);
if (data is ISearchItemDocument)
{
var currentLength = 0L;
var portion = new List<T>();
var portionStart = 0;
for (var i = 0; i < data.Count; i++)
{
var t = data[i];
var runBulk = i == data.Count - 1;
var wwd = t as ISearchItemDocument;
if (wwd == null || wwd.Document == null || string.IsNullOrEmpty(wwd.Document.Data))
{
portion.Add(t);
}
else
{
var dLength = wwd.Document.Data.Length;
if (dLength >= Settings.MaxContentLength)
{
try
{
Index(t, immediately);
}
catch (ElasticsearchClientException e)
{
if (e.Response.HttpStatusCode == 429)
{
throw;
}
Log.Error(e);
}
catch (Exception e)
{
Log.Error(e);
}
finally
{
wwd.Document.Data = null;
wwd.Document = null;
GC.Collect();
}
continue;
}
if (currentLength + dLength < Settings.MaxContentLength)
{
portion.Add(t);
currentLength += dLength;
}
else
{
runBulk = true;
i--;
}
}
if (runBulk)
{
var portion1 = portion.ToList();
await Client.Instance.BulkAsync(r => r.IndexMany(portion1, GetMeta).SourceExcludes("attachments"));
for (var j = portionStart; j < i; j++)
{
var doc = data[j] as ISearchItemDocument;
if (doc != null && doc.Document != null)
{
doc.Document.Data = null;
doc.Document = null;
}
}
portionStart = i;
portion = new List<T>();
currentLength = 0L;
GC.Collect();
}
}
}
else
{
await Client.Instance.BulkAsync(r => r.IndexMany(data, GetMeta));
}
2020-01-24 13:07:51 +00:00
}
internal void Update(T data, bool immediately = true, params Expression<Func<T, object>>[] fields)
2020-05-14 14:03:24 +00:00
{
CreateIfNotExist(data);
2020-10-12 19:39:23 +00:00
Client.Instance.Update(DocumentPath<T>.Id(data), r => GetMetaForUpdate(r, data, immediately, fields));
2020-01-24 13:07:51 +00:00
}
internal void Update(T data, UpdateAction action, Expression<Func<T, IList>> fields, bool immediately = true)
2020-05-14 14:03:24 +00:00
{
CreateIfNotExist(data);
2020-10-12 19:39:23 +00:00
Client.Instance.Update(DocumentPath<T>.Id(data), r => GetMetaForUpdate(r, data, action, fields, immediately));
2020-01-24 13:07:51 +00:00
}
internal void Update(T data, Expression<Func<Selector<T>, Selector<T>>> expression, int tenantId, bool immediately = true, params Expression<Func<T, object>>[] fields)
{
2020-09-30 11:50:39 +00:00
CreateIfNotExist(data);
2020-10-12 19:39:23 +00:00
Client.Instance.UpdateByQuery(GetDescriptorForUpdate(data, expression, tenantId, immediately, fields));
2020-01-24 13:07:51 +00:00
}
internal void Update(T data, Expression<Func<Selector<T>, Selector<T>>> expression, int tenantId, UpdateAction action, Expression<Func<T, IList>> fields, bool immediately = true)
2020-05-14 14:03:24 +00:00
{
CreateIfNotExist(data);
2020-10-12 19:39:23 +00:00
Client.Instance.UpdateByQuery(GetDescriptorForUpdate(data, expression, tenantId, action, fields, immediately));
2020-01-24 13:07:51 +00:00
}
internal void Delete(T data, bool immediately = true)
{
2020-10-12 19:39:23 +00:00
Client.Instance.Delete<T>(data, r => GetMetaForDelete(r, immediately));
2020-01-24 13:07:51 +00:00
}
internal void Delete(Expression<Func<Selector<T>, Selector<T>>> expression, int tenantId, bool immediately = true)
{
2020-10-12 19:39:23 +00:00
Client.Instance.DeleteByQuery(GetDescriptorForDelete(expression, tenantId, immediately));
2020-01-24 13:07:51 +00:00
}
public void Flush()
{
2020-10-12 19:39:23 +00:00
Client.Instance.Indices.Flush(new FlushRequest(IndexName));
2020-01-24 13:07:51 +00:00
}
public void Refresh()
{
2020-10-12 19:39:23 +00:00
Client.Instance.Indices.Refresh(new RefreshRequest(IndexName));
2020-01-24 13:07:51 +00:00
}
internal bool CheckExist(T data)
{
try
2020-02-17 08:58:14 +00:00
{
2020-04-23 17:24:56 +00:00
var isExist = BaseIndexerHelper.IsExist.GetOrAdd(data.IndexName, (k) => Client.Instance.Indices.Exists(k).Exists);
2020-02-17 08:58:14 +00:00
if (isExist) return true;
lock (Locker)
{
2020-04-23 17:24:56 +00:00
isExist = Client.Instance.Indices.Exists(data.IndexName).Exists;
2020-02-17 08:58:14 +00:00
2020-10-12 19:39:23 +00:00
BaseIndexerHelper.IsExist.TryUpdate(data.IndexName, IsExist, false);
2020-02-17 08:58:14 +00:00
if (isExist) return true;
2020-01-24 13:07:51 +00:00
}
}
catch (Exception e)
{
Log.Error("CheckExist " + data.IndexName, e);
}
return false;
}
2021-06-16 15:00:27 +00:00
public Task ReIndex()
2020-01-24 13:07:51 +00:00
{
2020-10-12 13:52:31 +00:00
Clear();
2021-06-16 15:00:27 +00:00
return Task.CompletedTask;
2020-01-24 13:07:51 +00:00
//((IIndexer) this).IndexAll();
}
private void Clear()
2020-02-17 08:58:14 +00:00
{
var index = WebstudioDbContext.WebstudioIndex.Where(r => r.IndexName == Wrapper.IndexName).FirstOrDefault();
if (index != null)
{
2020-10-12 19:39:23 +00:00
WebstudioDbContext.WebstudioIndex.Remove(index);
2020-02-17 08:58:14 +00:00
}
2020-10-12 19:39:23 +00:00
WebstudioDbContext.SaveChanges();
2020-01-24 13:07:51 +00:00
2020-09-30 11:50:39 +00:00
Log.DebugFormat("Delete {0}", Wrapper.IndexName);
2020-10-12 19:39:23 +00:00
Client.Instance.Indices.Delete(Wrapper.IndexName);
2020-05-14 14:03:24 +00:00
BaseIndexerHelper.Clear(Wrapper);
CreateIfNotExist(Wrapper);
2020-01-24 13:07:51 +00:00
}
internal IReadOnlyCollection<T> Select(Expression<Func<Selector<T>, Selector<T>>> expression, bool onlyId = false)
{
var func = expression.Compile();
2020-10-22 17:57:18 +00:00
var selector = new Selector<T>(ServiceProvider);
2020-01-24 13:07:51 +00:00
var descriptor = func(selector).Where(r => r.TenantId, TenantManager.GetCurrentTenant().TenantId);
return Client.Instance.Search(descriptor.GetDescriptor(this, onlyId)).Documents;
}
internal IReadOnlyCollection<T> Select(Expression<Func<Selector<T>, Selector<T>>> expression, bool onlyId, out long total)
{
var func = expression.Compile();
2020-10-22 17:57:18 +00:00
var selector = new Selector<T>(ServiceProvider);
2020-01-24 13:07:51 +00:00
var descriptor = func(selector).Where(r => r.TenantId, TenantManager.GetCurrentTenant().TenantId);
var result = Client.Instance.Search(descriptor.GetDescriptor(this, onlyId));
total = result.Total;
return result.Documents;
}
public void CreateIfNotExist(T data)
{
try
{
if (CheckExist(data)) return;
lock (Locker)
{
IPromise<IAnalyzers> analyzers(AnalyzersDescriptor b)
{
foreach (var c in Enum.GetNames(typeof(Analyzer)))
{
var c1 = c;
2022-01-17 08:22:52 +00:00
b.Custom(c1 + "custom", ca => ca.Tokenizer(c1).Filters(nameof(Filter.lowercase)).CharFilters(nameof(CharFilter.io)));
}
foreach (var c in Enum.GetNames(typeof(CharFilter)))
{
2022-01-17 08:22:52 +00:00
if (c == nameof(CharFilter.io)) continue;
2022-01-17 08:22:52 +00:00
var charFilters = new List<string>() { nameof(CharFilter.io), c };
var c1 = c;
2022-01-17 08:22:52 +00:00
b.Custom(c1 + "custom", ca => ca.Tokenizer(nameof(Analyzer.whitespace)).Filters(nameof(Filter.lowercase)).CharFilters(charFilters));
}
if (data is ISearchItemDocument)
{
2022-01-17 08:22:52 +00:00
b.Custom("document", ca => ca.Tokenizer(nameof(Analyzer.whitespace)).Filters(nameof(Filter.lowercase)).CharFilters(nameof(CharFilter.io)));
}
return b;
}
IsExist = true;
}
}
catch (Exception e)
{
Log.Error("CreateIfNotExist", e);
}
}
2020-01-24 13:07:51 +00:00
private IIndexRequest<T> GetMeta(IndexDescriptor<T> request, T data, bool immediately = true)
{
2020-02-19 08:37:52 +00:00
var result = request.Index(data.IndexName).Id(data.Id);
2020-01-24 13:07:51 +00:00
if (immediately)
{
2020-10-12 19:39:23 +00:00
result.Refresh(Elasticsearch.Net.Refresh.True);
2020-01-24 13:07:51 +00:00
}
if (data is ISearchItemDocument)
2020-01-24 13:07:51 +00:00
{
2020-10-12 19:39:23 +00:00
result.Pipeline("attachments");
2020-01-24 13:07:51 +00:00
}
return result;
}
private IBulkIndexOperation<T> GetMeta(BulkIndexDescriptor<T> desc, T data)
{
var result = desc.Index(IndexName).Id(data.Id);
if (data is ISearchItemDocument)
2020-01-24 13:07:51 +00:00
{
2020-10-12 19:39:23 +00:00
result.Pipeline("attachments");
2020-01-24 13:07:51 +00:00
}
return result;
}
private IUpdateRequest<T, T> GetMetaForUpdate(UpdateDescriptor<T, T> request, T data, bool immediately = true, params Expression<Func<T, object>>[] fields)
{
var result = request.Index(IndexName);
2022-01-19 09:51:30 +00:00
if (fields.Length > 0)
2020-01-24 13:07:51 +00:00
{
2020-10-12 19:39:23 +00:00
result.Script(GetScriptUpdateByQuery(data, fields));
2020-01-24 13:07:51 +00:00
}
else
{
2020-10-12 19:39:23 +00:00
result.Doc(data);
2020-01-24 13:07:51 +00:00
}
if (immediately)
{
2020-10-12 19:39:23 +00:00
result.Refresh(Elasticsearch.Net.Refresh.True);
2020-01-24 13:07:51 +00:00
}
return result;
}
private Func<ScriptDescriptor, IScript> GetScriptUpdateByQuery(T data, params Expression<Func<T, object>>[] fields)
{
var source = new StringBuilder();
var parameters = new Dictionary<string, object>();
for (var i = 0; i < fields.Length; i++)
2022-01-12 10:27:06 +00:00
{
var field = fields[i];
var func = field.Compile();
2020-01-24 13:07:51 +00:00
var newValue = func(data);
string name;
2022-01-12 10:27:06 +00:00
var expression = field.Body;
2020-01-24 13:07:51 +00:00
var isList = expression.Type.IsGenericType && expression.Type.GetGenericTypeDefinition() == typeof(List<>);
var sourceExprText = "";
2022-01-21 11:02:17 +00:00
name = TryGetName(expression, out var member);
while (!string.IsNullOrEmpty(name))
2020-01-24 13:07:51 +00:00
{
sourceExprText = "." + name + sourceExprText;
}
if (isList)
{
UpdateByAction(UpdateAction.Add, (IList)newValue, sourceExprText, parameters, source);
}
else
{
if (newValue == default(T))
{
2022-01-14 13:12:37 +00:00
source.Append($"ctx._source.remove('{sourceExprText.Substring(1)}');");
2020-01-24 13:07:51 +00:00
}
else
{
var pkey = "p" + sourceExprText.Replace(".", "");
2022-01-14 13:12:37 +00:00
source.Append($"ctx._source{sourceExprText} = params.{pkey};");
2020-01-24 13:07:51 +00:00
parameters.Add(pkey, newValue);
}
}
}
var sourceData = source.ToString();
return r => r.Source(sourceData).Params(parameters);
}
private IUpdateRequest<T, T> GetMetaForUpdate(UpdateDescriptor<T, T> request, T data, UpdateAction action, Expression<Func<T, IList>> fields, bool immediately = true)
{
var result = request.Index(IndexName).Script(GetScriptForUpdate(data, action, fields));
if (immediately)
{
2020-10-12 19:39:23 +00:00
result.Refresh(Elasticsearch.Net.Refresh.True);
2020-01-24 13:07:51 +00:00
}
return result;
}
private Func<ScriptDescriptor, IScript> GetScriptForUpdate(T data, UpdateAction action, Expression<Func<T, IList>> fields)
{
var source = new StringBuilder();
var func = fields.Compile();
var newValue = func(data);
string name;
var expression = fields.Body;
var sourceExprText = "";
2022-01-21 11:02:17 +00:00
name = TryGetName(expression, out var member);
while (!string.IsNullOrEmpty(name))
2020-01-24 13:07:51 +00:00
{
sourceExprText = "." + name + sourceExprText;
}
var parameters = new Dictionary<string, object>();
UpdateByAction(action, newValue, sourceExprText, parameters, source);
return r => r.Source(source.ToString()).Params(parameters);
}
private void UpdateByAction(UpdateAction action, IList newValue, string key, Dictionary<string, object> parameters, StringBuilder source)
{
var paramKey = "p" + key.Replace(".", "");
switch (action)
{
case UpdateAction.Add:
for (var i = 0; i < newValue.Count; i++)
{
parameters.Add(paramKey + i, newValue[i]);
2022-01-14 13:12:37 +00:00
source.Append($"if (!ctx._source{key}.contains(params.{paramKey + i})){{ctx._source{key}.add(params.{paramKey + i})}}");
2020-01-24 13:07:51 +00:00
}
break;
case UpdateAction.Replace:
parameters.Add(paramKey, newValue);
2022-01-14 13:12:37 +00:00
source.Append($"ctx._source{key} = params.{paramKey};");
2020-01-24 13:07:51 +00:00
break;
case UpdateAction.Remove:
for (var i = 0; i < newValue.Count; i++)
{
parameters.Add(paramKey + i, newValue[i]);
2022-01-14 13:12:37 +00:00
source.Append($"ctx._source{key}.removeIf(item -> item.id == params.{paramKey + i}.id)");
2020-01-24 13:07:51 +00:00
}
break;
default:
throw new ArgumentOutOfRangeException("action", action, null);
}
}
private string TryGetName(Expression expr, out MemberExpression member)
{
member = expr as MemberExpression;
if (member == null)
{
2020-09-28 14:39:13 +00:00
if (expr is UnaryExpression unary)
2020-01-24 13:07:51 +00:00
{
member = unary.Operand as MemberExpression;
}
}
return member == null ? "" : member.Member.Name.ToLowerCamelCase();
}
private IDeleteRequest GetMetaForDelete(DeleteDescriptor<T> request, bool immediately = true)
{
var result = request.Index(IndexName);
if (immediately)
{
2020-10-12 19:39:23 +00:00
result.Refresh(Elasticsearch.Net.Refresh.True);
2020-01-24 13:07:51 +00:00
}
return result;
}
private Func<DeleteByQueryDescriptor<T>, IDeleteByQueryRequest> GetDescriptorForDelete(Expression<Func<Selector<T>, Selector<T>>> expression, int tenantId, bool immediately = true)
{
var func = expression.Compile();
2020-10-22 17:57:18 +00:00
var selector = new Selector<T>(ServiceProvider);
2020-01-24 13:07:51 +00:00
var descriptor = func(selector).Where(r => r.TenantId, tenantId);
return descriptor.GetDescriptorForDelete(this, immediately);
}
private Func<UpdateByQueryDescriptor<T>, IUpdateByQueryRequest> GetDescriptorForUpdate(T data, Expression<Func<Selector<T>, Selector<T>>> expression, int tenantId, bool immediately = true, params Expression<Func<T, object>>[] fields)
{
var func = expression.Compile();
2020-10-22 17:57:18 +00:00
var selector = new Selector<T>(ServiceProvider);
2020-01-24 13:07:51 +00:00
var descriptor = func(selector).Where(r => r.TenantId, tenantId);
return descriptor.GetDescriptorForUpdate(this, GetScriptUpdateByQuery(data, fields), immediately);
}
private Func<UpdateByQueryDescriptor<T>, IUpdateByQueryRequest> GetDescriptorForUpdate(T data, Expression<Func<Selector<T>, Selector<T>>> expression, int tenantId, UpdateAction action, Expression<Func<T, IList>> fields, bool immediately = true)
{
var func = expression.Compile();
2020-10-22 17:57:18 +00:00
var selector = new Selector<T>(ServiceProvider);
2020-01-24 13:07:51 +00:00
var descriptor = func(selector).Where(r => r.TenantId, tenantId);
return descriptor.GetDescriptorForUpdate(this, GetScriptForUpdate(data, action, fields), immediately);
2020-04-23 09:38:50 +00:00
}
2021-05-23 16:11:25 +00:00
public IEnumerable<List<T>> IndexAll(
Func<DateTime, (int, int, int)> getCount,
Func<DateTime, List<int>> getIds,
Func<long, long, DateTime, List<T>> getData)
{
2020-12-28 13:22:08 +00:00
var now = DateTime.UtcNow;
2020-04-27 16:59:52 +00:00
var lastIndexed = WebstudioDbContext.WebstudioIndex
.Where(r => r.IndexName == Wrapper.IndexName)
.Select(r => r.LastModified)
.FirstOrDefault();
2021-05-23 16:11:25 +00:00
if (lastIndexed.Equals(DateTime.MinValue))
2020-04-27 16:59:52 +00:00
{
2021-05-23 16:11:25 +00:00
CreateIfNotExist(ServiceProvider.GetService<T>());
}
2020-04-27 16:59:52 +00:00
2021-05-23 16:11:25 +00:00
var (count, max, min) = getCount(lastIndexed);
Log.Debug($"Index: {IndexName}, Count {count}, Max: {max}, Min: {min}");
2020-04-27 16:59:52 +00:00
2021-05-23 16:11:25 +00:00
var ids = new List<int>() { min };
ids.AddRange(getIds(lastIndexed));
ids.Add(max);
2020-04-27 16:59:52 +00:00
2021-05-23 16:11:25 +00:00
for (var i = 0; i < ids.Count - 1; i++)
{
yield return getData(ids[i], ids[i + 1], lastIndexed);
2020-04-27 16:59:52 +00:00
}
2020-10-12 19:39:23 +00:00
WebstudioDbContext.AddOrUpdate(r => r.WebstudioIndex, new DbWebstudioIndex()
2020-04-27 16:59:52 +00:00
{
2020-04-29 14:11:31 +00:00
IndexName = Wrapper.IndexName,
2020-12-28 13:22:08 +00:00
LastModified = now
2020-04-27 16:59:52 +00:00
});
2020-10-12 19:39:23 +00:00
WebstudioDbContext.SaveChanges();
2020-04-27 16:59:52 +00:00
Log.Debug($"index completed {Wrapper.IndexName}");
}
2020-01-24 13:07:51 +00:00
}
static class CamelCaseExtension
{
internal static string ToLowerCamelCase(this string str)
{
return str.ToLowerInvariant()[0] + str.Substring(1);
}
}
public enum UpdateAction
{
Add,
Replace,
Remove
2020-02-17 08:58:14 +00:00
}
2020-01-24 13:07:51 +00:00
}