mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.8 KiB
100 lines
3.8 KiB
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using ZeroLevel.Services.FileSystem;
|
|
using ZeroLevel.Services.PartitionStorage.Interfaces;
|
|
|
|
namespace ZeroLevel.Services.PartitionStorage
|
|
{
|
|
public class Store<TKey, TInput, TValue, TMeta> :
|
|
IStore<TKey, TInput, TValue, TMeta>, IDisposable
|
|
{
|
|
private readonly StoreOptions<TKey, TInput, TValue, TMeta> _options;
|
|
private readonly IStoreSerializer<TKey, TInput, TValue> _serializer;
|
|
private readonly PhisicalFileAccessorCachee _fileAccessorCachee;
|
|
|
|
public Store(StoreOptions<TKey, TInput, TValue, TMeta> options,
|
|
IStoreSerializer<TKey, TInput, TValue> serializer = null)
|
|
{
|
|
if (options == null) throw new ArgumentNullException(nameof(options));
|
|
_options = options;
|
|
if (serializer == null)
|
|
{
|
|
_serializer = new StoreStandartSerializer<TKey, TInput, TValue>();
|
|
}
|
|
else
|
|
{
|
|
_serializer = serializer;
|
|
}
|
|
if (Directory.Exists(_options.RootFolder) == false)
|
|
{
|
|
Directory.CreateDirectory(_options.RootFolder);
|
|
}
|
|
_fileAccessorCachee = new PhisicalFileAccessorCachee(options.PhisicalFileAccessorExpirationPeriod, TimeSpan.FromHours(2));
|
|
}
|
|
|
|
public void RemovePartition(TMeta info)
|
|
{
|
|
var partition = CreateAccessor(info);
|
|
partition.DropData();
|
|
FSUtils.RemoveFolder(partition.GetCatalogPath());
|
|
}
|
|
|
|
public IStorePartitionAccessor<TKey, TInput, TValue> CreateAccessor(TMeta info)
|
|
{
|
|
return new StorePartitionAccessor<TKey, TInput, TValue, TMeta>(_options, info, _serializer, _fileAccessorCachee);
|
|
}
|
|
|
|
public IStorePartitionBuilder<TKey, TInput, TValue> CreateBuilder(TMeta info)
|
|
{
|
|
return new StorePartitionBuilder<TKey, TInput, TValue, TMeta>(_options, info, _serializer, _fileAccessorCachee);
|
|
}
|
|
|
|
public IStorePartitionMergeBuilder<TKey, TInput, TValue> CreateMergeAccessor(TMeta info, Func<TValue, IEnumerable<TInput>> decompressor)
|
|
{
|
|
return new StoreMergePartitionAccessor<TKey, TInput, TValue, TMeta>(_options, info, decompressor, _serializer, _fileAccessorCachee);
|
|
}
|
|
|
|
public void DropCache()
|
|
{
|
|
_fileAccessorCachee.DropAllDataReaders();
|
|
_fileAccessorCachee.DropAllIndexReaders();
|
|
}
|
|
|
|
public async Task<StoreSearchResult<TKey, TValue, TMeta>> Search(StoreSearchRequest<TKey, TMeta> searchRequest)
|
|
{
|
|
var result = new StoreSearchResult<TKey, TValue, TMeta>();
|
|
var results = new ConcurrentDictionary<TMeta, IEnumerable<StorePartitionKeyValueSearchResult<TKey, TValue>>>();
|
|
if (searchRequest.PartitionSearchRequests?.Any() ?? false)
|
|
{
|
|
var partitionsSearchInfo = searchRequest
|
|
.PartitionSearchRequests
|
|
.ToDictionary(r => r.Info, r => r.Keys);
|
|
var options = new ParallelOptions
|
|
{
|
|
MaxDegreeOfParallelism = _options.MaxDegreeOfParallelism
|
|
};
|
|
await Parallel.ForEachAsync(partitionsSearchInfo, options, async (pair, _) =>
|
|
{
|
|
using (var accessor = CreateAccessor(pair.Key))
|
|
{
|
|
results[pair.Key] = accessor
|
|
.Find(pair.Value)
|
|
.ToArray();
|
|
}
|
|
});
|
|
}
|
|
result.Results = results;
|
|
return result;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_fileAccessorCachee.Dispose();
|
|
}
|
|
}
|
|
}
|