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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL;
using Tango.BL.Builders;
using Tango.BL.DTO;
using Tango.BL.Entities;
using Tango.Core.Threading;
using Tango.FSE.BL.CacheEntities;
using Z.EntityFramework.Plus;
using Z.EntityFramework.Extensions;
using Tango.BL.Enumerations;
using Tango.Settings;
using Tango.FSE.Web.Messages;
namespace Tango.FSE.BL.Services
{
/// <summary>
/// Represents the machines CRUD API for retrieving and updating machines.
/// </summary>
/// <seealso cref="Tango.FSE.BL.FSEServiceBase" />
public class MachinesService : FSEServiceBase
{
private const string MACHINES_COLLECTION = "Machines";
private const string FULL_MACHINES_COLLECTION = "Machines_Full";
private bool _fullMachinesCachePerformed;
private MemoryCacheDictionary<String, CachedMachine> _machinesCache;
private MemoryCacheDictionary<String, CachedMachine> _machinesCacheFull;
/// <summary>
/// Initializes a new instance of the <see cref="MachinesService"/> class.
/// </summary>
public MachinesService()
{
_machinesCache = MemoryCache.GetOrCreateCache<String, CachedMachine>(MACHINES_COLLECTION);
_machinesCacheFull = MemoryCache.GetOrCreateCache<String, CachedMachine>(FULL_MACHINES_COLLECTION);
}
/// <summary>
/// Gets a machine by the specified serial number.
/// A machine that exists outside of the current user organization will not be retrieved.
/// The machine will be retrieved along with it's organization only.
/// Once a machine retrieved successfully, it will be cached on disk and on memory.
/// The resolver behavior is In-Memory first, then Online, then Disk.
/// </summary>
/// <param name="serialNumber">The serial number.</param>
/// <returns></returns>
public Task<Machine> GetMachine(String serialNumber)
{
bool allowAll = CurrentUser.HasPermission(Permissions.FSE_ConnectAnyMachine);
return DataResolver<Machine>.Builder.New()
.ConfigureCascade(DataResolverNode.InMemoryCache, DataResolverNode.Web, DataResolverNode.Online, DataResolverNode.DiskCache)
.InMemoryCache((context) =>
{
return _machinesCache.Get(serialNumber).ToObservable();
})
.Web((context) =>
{
var response = WebClient.GetMachine(new GetMachineRequest()
{
AllowAllMachines = allowAll,
OrganizationGuid = CurrentUser.OrganizationGuid,
SerialNumber = serialNumber
}).GetAwaiter().GetResult();
if (response.Machine != null)
{
var machine = response.Machine.ToObservable();
LogManager.Log("Machine retrieved successfully. Caching machine...");
var cachedMachine = CachedMachine.FromObservable<CachedMachine>(machine);
//Store in memory cache.
_machinesCache.Put(serialNumber, cachedMachine);
//Store disk cache.
try
{
using (var cache = DiskCache.CreateContext())
{
cache.Database.GetCollection<CachedMachine>(MACHINES_COLLECTION).Upsert(cachedMachine);
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error caching machine on disk.");
}
return machine;
}
throw new ArgumentOutOfRangeException($"Could not locate machine with serial number '{serialNumber}' using the remote server.");
})
.Online((context) =>
{
using (ObservablesContext db = ObservablesContext.CreateDefault())
{
var machine = new MachineBuilder(db)
.Set(x => (allowAll || x.OrganizationGuid == CurrentUser.OrganizationGuid) && x.SerialNumber == serialNumber)
.WithOrganization()
.Build();
if (machine != null)
{
LogManager.Log("Machine retrieved successfully. Caching machine...");
var cachedMachine = CachedMachine.FromObservable<CachedMachine>(machine);
//Store in memory cache.
_machinesCache.Put(serialNumber, cachedMachine);
//Store disk cache.
try
{
using (var cache = DiskCache.CreateContext())
{
cache.Database.GetCollection<CachedMachine>(MACHINES_COLLECTION).Upsert(cachedMachine);
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error caching machine on disk.");
}
return machine;
}
throw new ArgumentOutOfRangeException($"Could not locate machine with serial number '{serialNumber}' on the remote database.");
}
})
.DiskCache((context) =>
{
using (var cache = DiskCache.CreateContext())
{
var cachedMachine = cache.Database.GetCollection<CachedMachine>(MACHINES_COLLECTION).FindOne(x => x.SerialNumber == serialNumber && (allowAll || x.OrganizationGuid == CurrentUser.OrganizationGuid));
//Store in memory cache.
_machinesCache.Put(serialNumber, cachedMachine);
return cachedMachine.ToObservable();
}
})
.BuildExecuteAsync();
}
/// <summary>
/// Gets a machine by the specified serial number along with all it's associated entities like
/// Organization, configuration, hardware version, machine version, spools calibration and color calibration.
/// Once a machine is retrieved it will be cached on disk and in memory.
/// If the specified machine does not exists within the current user organization it will not be retrieved.
/// The resolver behavior is In-Memory first, then Online, then Disk.
/// On the first call to this method, a process of fully caching all the current user organization machines starts in the background.
/// </summary>
/// <param name="serialNumber">The serial number.</param>
/// <returns></returns>
public Task<Machine> GetMachineFull(String serialNumber)
{
return GetMachineFull(serialNumber, true);
}
private Task<Machine> GetMachineFull(String serialNumber, bool enableLogs)
{
bool allowAll = CurrentUser.HasPermission(Permissions.FSE_ConnectAnyMachine);
return DataResolver<Machine>.Builder.New()
.EnableLogs(enableLogs)
.ConfigureCascade(DataResolverNode.InMemoryCache, DataResolverNode.Web, DataResolverNode.Online, DataResolverNode.DiskCache)
.InMemoryCache((context) =>
{
return _machinesCacheFull.Get(serialNumber).ToObservable();
})
.Web((context) =>
{
var response = WebClient.GetMachine(new GetMachineRequest()
{
AllowAllMachines = allowAll,
OrganizationGuid = CurrentUser.OrganizationGuid,
SerialNumber = serialNumber,
GetExtendedInfo = true
}).GetAwaiter().GetResult();
if (response.Machine != null)
{
var machine = response.Machine.ToObservable();
if (enableLogs) LogManager.Log("Machine retrieved successfully. Caching machine on disk and in memory...");
var cachedMachine = CachedMachine.FromObservable<CachedMachine>(machine);
//Store in memory cache.
_machinesCacheFull.Put(serialNumber, cachedMachine);
//Store disk cache.
try
{
using (var cache = DiskCache.CreateContext())
{
cache.Database.GetCollection<CachedMachine>(FULL_MACHINES_COLLECTION).Upsert(cachedMachine);
}
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error caching machine '{serialNumber}' on disk.");
}
return machine;
}
else
{
throw new ArgumentOutOfRangeException($"Could not locate machine with serial number '{serialNumber}' on the remote database.");
}
})
.Online((context) =>
{
using (ObservablesContext db = ObservablesContext.CreateDefault())
{
var machine = new MachineBuilder(db)
.Set(x => (allowAll || x.OrganizationGuid == CurrentUser.OrganizationGuid) && x.SerialNumber == serialNumber)
.WithOrganization()
.WithVersion()
.WithSpools()
.WithCats()
.WithConfiguration().Build();
if (machine != null)
{
if (enableLogs) LogManager.Log("Machine retrieved successfully. Caching machine on disk and in memory...");
var cachedMachine = CachedMachine.FromObservable<CachedMachine>(machine);
//Store in memory cache.
_machinesCacheFull.Put(serialNumber, cachedMachine);
//Store disk cache.
try
{
using (var cache = DiskCache.CreateContext())
{
cache.Database.GetCollection<CachedMachine>(FULL_MACHINES_COLLECTION).Upsert(cachedMachine);
}
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error caching machine '{serialNumber}' on disk.");
}
if (SettingsManager.Default.GetOrCreate<ServicesSettings>().PerformFullOrganizationMachinesCaching)
{
if (!_fullMachinesCachePerformed)
{
_fullMachinesCachePerformed = true;
//Continue loading the rest of the machines on a separate thread...
ThreadFactory.StartNew(() =>
{
LogManager.Log("Starting caching entire organization machines on disk and in memory...");
var serials = new List<String>();
using (ObservablesContext d = ObservablesContext.CreateDefault())
{
serials = d.Machines.Where(x => x.OrganizationGuid == CurrentUser.OrganizationGuid).Select(x => x.SerialNumber).ToList();
}
foreach (var serial in serials)
{
try
{
var fm = GetMachineFull(serial, false).Result;
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error occurred while trying to cache machine '{serial}' in the background. Skipping...");
}
}
LogManager.Log("Full organization machines cache completed.");
});
}
}
return machine;
}
else
{
throw new ArgumentOutOfRangeException($"Could not locate machine with serial number '{serialNumber}' on the remote database.");
}
}
})
.DiskCache((context) =>
{
using (var cache = DiskCache.CreateContext())
{
var cachedMachine = cache.Database.GetCollection<CachedMachine>(FULL_MACHINES_COLLECTION).FindOne(x => x.SerialNumber == serialNumber && x.OrganizationGuid == CurrentUser.OrganizationGuid);
if (cachedMachine == null)
{
throw new KeyNotFoundException("The machine entity could not be found on the remote server or local cache.\nPlease check your Internet connection and try again.");
}
//Store in memory cache.
_machinesCacheFull.Put(serialNumber, cachedMachine);
return cachedMachine.ToObservable();
}
})
.BuildExecuteAsync();
}
/// <summary>
/// Gets the current user organization's machines.
/// Once this method is called, all machines will be cached.
/// The resolver behavior is In-Memory first, then Online, then Disk.
/// </summary>
/// <returns></returns>
public Task<List<Machine>> GetAllMachines()
{
bool allowAll = CurrentUser.HasPermission(Permissions.FSE_ConnectAnyMachine);
return DataResolver<List<Machine>>.Builder.New()
.ConfigureCascade(DataResolverNode.InMemoryCache, DataResolverNode.Web, DataResolverNode.Online, DataResolverNode.DiskCache)
.InMemoryCache((context) =>
{
var machines = _machinesCache
.ToList()
.Where(x => allowAll || x.OrganizationGuid == CurrentUser.OrganizationGuid)
.Select(x => x.ToObservable())
.ToList();
if (machines.Count == 0)
{
throw new IndexOutOfRangeException("The memory cache did contain any machines.");
}
return machines;
})
.Web((context) =>
{
var response = WebClient.GetAllMachines(new GetAllMachinesRequest()
{
AllowAllMachines = allowAll,
OrganizationGuid = CurrentUser.OrganizationGuid,
}).GetAwaiter().GetResult();
var machines = response.Machines.Select(x => x.ToObservable()).ToList();
List<CachedMachine> cachedMachines = new List<CachedMachine>();
foreach (var machine in machines)
{
try
{
var cachedMachine = CachedMachine.FromObservable<CachedMachine>(machine);
cachedMachines.Add(cachedMachine);
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error creating cached machine (partial) '{machine.SerialNumber}'.");
}
}
try
{
foreach (var cachedMachine in cachedMachines)
{
_machinesCache.Put(cachedMachine.SerialNumber, cachedMachine);
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error caching machines (partial) to memory.");
}
try
{
using (var cache = DiskCache.CreateContext())
{
var collection = cache.Database.GetCollection<CachedMachine>(MACHINES_COLLECTION);
foreach (var cachedMachine in cachedMachines)
{
try
{
collection.Upsert(cachedMachine);
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error caching machine '{cachedMachine.SerialNumber}' (partial) to disk.");
}
}
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error caching machines (partial) to disk.");
}
return machines;
})
.Online((context) =>
{
using (ObservablesContext db = ObservablesContext.CreateDefault())
{
var machines = db.Machines.Where(x => allowAll || x.OrganizationGuid == CurrentUser.OrganizationGuid).Include(x => x.Organization).ToList();
List<CachedMachine> cachedMachines = new List<CachedMachine>();
foreach (var machine in machines)
{
try
{
var cachedMachine = CachedMachine.FromObservable<CachedMachine>(machine);
cachedMachines.Add(cachedMachine);
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error creating cached machine (partial) '{machine.SerialNumber}'.");
}
}
try
{
foreach (var cachedMachine in cachedMachines)
{
_machinesCache.Put(cachedMachine.SerialNumber, cachedMachine);
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error caching machines (partial) to memory.");
}
try
{
using (var cache = DiskCache.CreateContext())
{
var collection = cache.Database.GetCollection<CachedMachine>(MACHINES_COLLECTION);
foreach (var cachedMachine in cachedMachines)
{
try
{
collection.Upsert(cachedMachine);
}
catch (Exception ex)
{
LogManager.Log(ex, $"Error caching machine '{cachedMachine.SerialNumber}' (partial) to disk.");
}
}
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error caching machines (partial) to disk.");
}
return machines;
}
})
.DiskCache((context) =>
{
using (var cache = DiskCache.CreateContext())
{
var collection = cache.Database.GetCollection<CachedMachine>(MACHINES_COLLECTION);
var cachedMachines = collection
.Find(x => allowAll || x.OrganizationGuid == CurrentUser.OrganizationGuid)
.ToList();
foreach (var cachedMachine in cachedMachines)
{
_machinesCache.Put(cachedMachine.SerialNumber, cachedMachine);
}
return cachedMachines.Select(x => x.ToObservable()).ToList();
}
})
.BuildExecuteAsync();
}
/// <summary>
/// Updates the specified machine.
/// </summary>
/// <param name="machine">The machine.</param>
/// <returns></returns>
/// <exception cref="InternetConnectionException"></exception>
public async Task<Machine> UpdateMachine(Machine machine)
{
throw new NotImplementedException();
if (ConnectivityProvider.IsOnline)
{
using (var db = ObservablesContext.CreateDefault())
{
await db.SingleUpdateAsync(machine); //Update using Z EF Extensions (no problem with out of context entity!)...
return machine;
}
}
else
{
throw new InternetConnectionException();
}
}
}
}
|