using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; namespace ZeroLevel.Services.PartitionStorage { public class Store : IStore { private readonly IStoreOptions _options; public Store(IStoreOptions options) { if (options == null) throw new ArgumentNullException(nameof(options)); _options = options; if (Directory.Exists(_options.RootFolder) == false) { Directory.CreateDirectory(_options.RootFolder); } } public IStorePartitionAccessor CreateAccessor(TMeta info) { return new StorePartitionAccessor(_options, info); } public async Task> Search(StoreSearchRequest searchRequest) { var result = new StoreSearchResult(); var results = new ConcurrentDictionary>>(); 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; } } }