-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathDocumentCollection.cs
More file actions
469 lines (352 loc) · 13.2 KB
/
DocumentCollection.cs
File metadata and controls
469 lines (352 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace JsonFlatFileDataStore;
public class DocumentCollection<T> : IDocumentCollection<T>
{
private readonly string _path;
private readonly string _idField;
private readonly Lazy<List<T>> _data;
private readonly Func<string, Func<List<T>, bool>, bool, Task<bool>> _commit;
private readonly Func<T, T> _insertConvert;
private readonly Func<T> _createNewInstance;
public DocumentCollection(Func<string, Func<List<T>, bool>, bool, Task<bool>> commit, Lazy<List<T>> data, string path, string idField,
Func<T, T> insertConvert, Func<T> createNewInstance)
{
_path = path;
_idField = idField;
_commit = commit;
_data = data;
_insertConvert = insertConvert;
_createNewInstance = createNewInstance;
}
public int Count => _data.Value.Count;
public IEnumerable<T> AsQueryable() => _data.Value.AsQueryable();
public IEnumerable<T> Find(Predicate<T> query) => _data.Value.Where(t => query(t));
public IEnumerable<T> Find(string text, bool caseSensitive = false) => _data.Value.Where(t => ObjectExtensions.FullTextSearch(t, text, caseSensitive));
public dynamic GetNextIdValue() => GetNextIdValue(_data.Value);
public bool InsertOne(T item)
{
bool UpdateAction(List<T> data)
{
var itemToInsert = GetItemToInsert(GetNextIdValue(data, item), item, _insertConvert);
data.Add(itemToInsert);
return true;
}
ExecuteLocked(UpdateAction, _data.Value);
return _commit(_path, UpdateAction, false).Result;
}
public async Task<bool> InsertOneAsync(T item)
{
bool UpdateAction(List<T> data)
{
var itemToInsert = GetItemToInsert(GetNextIdValue(data, item), item, _insertConvert);
data.Add(itemToInsert);
return true;
}
ExecuteLocked(UpdateAction, _data.Value);
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public bool InsertMany(IEnumerable<T> items)
{
bool UpdateAction(List<T> data)
{
foreach (var item in items)
{
var itemToInsert = GetItemToInsert(GetNextIdValue(data, item), item, _insertConvert);
data.Add(itemToInsert);
}
return true;
}
ExecuteLocked(UpdateAction, _data.Value);
return _commit(_path, UpdateAction, false).Result;
}
public async Task<bool> InsertManyAsync(IEnumerable<T> items)
{
bool UpdateAction(List<T> data)
{
foreach (var item in items)
{
var itemToInsert = GetItemToInsert(GetNextIdValue(data, item), item, _insertConvert);
data.Add(itemToInsert);
}
return true;
}
ExecuteLocked(UpdateAction, _data.Value);
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public bool ReplaceOne(Predicate<T> filter, T item, bool upsert = false)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
{
if (!upsert)
return false;
var newItem = _createNewInstance();
ObjectExtensions.CopyProperties(item, newItem);
data.Add(_insertConvert(newItem));
return true;
}
var index = data.IndexOf(matches.First());
data[index] = item;
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return _commit(_path, UpdateAction, false).Result;
}
public bool ReplaceOne(dynamic id, T item, bool upsert = false) => ReplaceOne(GetFilterPredicate(id), item, upsert);
public bool ReplaceMany(Predicate<T> filter, T item)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
return false;
foreach (var match in matches.ToList())
{
var index = data.IndexOf(match);
data[index] = item;
}
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return _commit(_path, UpdateAction, false).Result;
}
public async Task<bool> ReplaceOneAsync(Predicate<T> filter, T item, bool upsert = false)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
{
if (!upsert)
return false;
var newItem = _createNewInstance();
ObjectExtensions.CopyProperties(item, newItem);
data.Add(_insertConvert(newItem));
return true;
}
var index = data.IndexOf(matches.First());
data[index] = item;
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public Task<bool> ReplaceOneAsync(dynamic id, T item, bool upsert = false) => ReplaceOneAsync(GetFilterPredicate(id), item, upsert);
public async Task<bool> ReplaceManyAsync(Predicate<T> filter, T item)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
return false;
foreach (var match in matches.ToList())
{
var index = data.IndexOf(match);
data[index] = item;
}
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public bool UpdateOne(Predicate<T> filter, dynamic item)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
return false;
var toUpdate = matches.First();
ObjectExtensions.CopyProperties(item, toUpdate);
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return _commit(_path, UpdateAction, false).Result;
}
public bool UpdateOne(dynamic id, dynamic item) => UpdateOne(GetFilterPredicate(id), item);
public async Task<bool> UpdateOneAsync(Predicate<T> filter, dynamic item)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
return false;
var toUpdate = matches.First();
ObjectExtensions.CopyProperties(item, toUpdate);
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public Task<bool> UpdateOneAsync(dynamic id, dynamic item) => UpdateOneAsync(GetFilterPredicate(id), item);
public bool UpdateMany(Predicate<T> filter, dynamic item)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
return false;
foreach (var toUpdate in matches)
{
ObjectExtensions.CopyProperties(item, toUpdate);
}
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return _commit(_path, UpdateAction, false).Result;
}
public async Task<bool> UpdateManyAsync(Predicate<T> filter, dynamic item)
{
bool UpdateAction(List<T> data)
{
var matches = data.Where(e => filter(e));
if (!matches.Any())
return false;
foreach (var toUpdate in matches)
{
ObjectExtensions.CopyProperties(item, toUpdate);
}
return true;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public bool DeleteOne(Predicate<T> filter)
{
bool UpdateAction(List<T> data)
{
var remove = data.FirstOrDefault(e => filter(e));
if (remove == null)
return false;
return data.Remove(remove);
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return _commit(_path, UpdateAction, false).Result;
}
public bool DeleteOne(dynamic id) => DeleteOne(GetFilterPredicate(id));
public async Task<bool> DeleteOneAsync(Predicate<T> filter)
{
bool UpdateAction(List<T> data)
{
var remove = data.FirstOrDefault(e => filter(e));
if (remove == null)
return false;
return data.Remove(remove);
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
public Task<bool> DeleteOneAsync(dynamic id) => DeleteOneAsync(GetFilterPredicate(id));
public bool DeleteMany(Predicate<T> filter)
{
bool UpdateAction(List<T> data)
{
int removed = data.RemoveAll(filter);
return removed > 0;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return _commit(_path, UpdateAction, false).Result;
}
public async Task<bool> DeleteManyAsync(Predicate<T> filter)
{
bool UpdateAction(List<T> data)
{
int removed = data.RemoveAll(filter);
return removed > 0;
}
if (!ExecuteLocked(UpdateAction, _data.Value))
return false;
return await _commit(_path, UpdateAction, true).ConfigureAwait(false);
}
private bool ExecuteLocked(Func<List<T>, bool> func, List<T> data)
{
lock (data)
{
return func(data);
}
}
private dynamic GetNextIdValue(List<T> data, T item = default(T))
{
if (!data.Any())
{
if (item != null)
{
dynamic primaryKeyValue = GetFieldValue(item, _idField);
if (primaryKeyValue != null)
{
// Without casting dynamic will return Int64 for int
if (primaryKeyValue is Int64)
return (int)primaryKeyValue;
return primaryKeyValue;
}
}
return ObjectExtensions.GetDefaultValue<T>(_idField);
}
var lastItem = data.Last();
dynamic keyValue = GetFieldValue(lastItem, _idField);
if (keyValue == null)
return null;
if (keyValue is Int64)
return (int)keyValue + 1;
return ParseNextIntegerToKeyValue(keyValue.ToString());
}
private dynamic GetFieldValue(T item, string fieldName)
{
var expando = JsonConvert.DeserializeObject<ExpandoObject>(JsonConvert.SerializeObject(item), new ExpandoObjectConverter());
// Problem here is if we have typed data with upper camel case properties but lower camel case in JSON, so need to use OrdinalIgnoreCase string comparer
var expandoAsIgnoreCase = new Dictionary<string, dynamic>(expando, StringComparer.OrdinalIgnoreCase);
if (!expandoAsIgnoreCase.ContainsKey(fieldName))
return null;
return expandoAsIgnoreCase[fieldName];
}
private string ParseNextIntegerToKeyValue(string input)
{
int nextInt = 0;
if (input == null)
return $"{nextInt}";
var chars = input.ToArray().Reverse().TakeWhile(char.IsNumber).Reverse().ToArray();
if (chars.Count() == 0)
return $"{input}{nextInt}";
input = input.Substring(0, input.Length - chars.Count());
if (int.TryParse(new string(chars), out nextInt))
nextInt += 1;
return $"{input}{nextInt}";
}
private T GetItemToInsert(dynamic insertId, T item, Func<T, T> insertConvert)
{
if (insertId == null)
return insertConvert(item);
// If item to be inserted is an anonymous type and it is missing the id-field, then add new id-field
// If it has an id-field, then we trust that user know what value he wants to insert
if (ObjectExtensions.IsAnonymousType(item) && ObjectExtensions.HasField(item, _idField) == false)
{
var toReturn = insertConvert(item);
ObjectExtensions.AddDataToField(toReturn, _idField, insertId);
return toReturn;
}
else
{
ObjectExtensions.AddDataToField(item, _idField, insertId);
return insertConvert(item);
}
}
private Predicate<T> GetFilterPredicate(dynamic id) => (e => ObjectExtensions.GetFieldValue(e, _idField) == id);
}