-
Notifications
You must be signed in to change notification settings - Fork 93
/
WriteApi.cs
676 lines (586 loc) · 32.1 KB
/
WriteApi.cs
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reactive;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using System.Reactive.Threading.Tasks;
using System.Text;
using System.Threading;
using InfluxDB.Client.Api.Domain;
using InfluxDB.Client.Api.Service;
using InfluxDB.Client.Core;
using InfluxDB.Client.Core.Exceptions;
using InfluxDB.Client.Core.Internal;
using InfluxDB.Client.Internal;
using InfluxDB.Client.Writes;
using Microsoft.Extensions.ObjectPool;
using RestSharp;
namespace InfluxDB.Client
{
public interface IWriteApi : IDisposable
{
/// <summary>
/// Write Line Protocol record into specified bucket.
/// </summary>
/// <param name="record">
/// specifies the record in InfluxDB Line Protocol.
/// The <see cref="record" /> is considered as one batch unit.
/// </param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
void WriteRecord(string record, WritePrecision precision = WritePrecision.Ns, string bucket = null,
string org = null);
/// <summary>
/// Write Line Protocol records into specified bucket.
/// </summary>
/// <param name="records">specifies the record in InfluxDB Line Protocol</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
void WriteRecords(List<string> records, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null);
/// <summary>
/// Write Line Protocol records into specified bucket.
/// </summary>
/// <param name="records">specifies the record in InfluxDB Line Protocol</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
void WriteRecords(string[] records, WritePrecision precision = WritePrecision.Ns, string bucket = null,
string org = null);
/// <summary>
/// Write a Data point into specified bucket.
/// </summary>
/// <param name="point">specifies the Data point to write into bucket</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
void WritePoint(PointData point, string bucket = null, string org = null);
/// <summary>
/// Write Data points into specified bucket.
/// </summary>
/// <param name="points">specifies the Data points to write into bucket</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
void WritePoints(List<PointData> points, string bucket = null, string org = null);
/// <summary>
/// Write Data points into specified bucket.
/// </summary>
/// <param name="points">specifies the Data points to write into bucket</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
void WritePoints(PointData[] points, string bucket = null, string org = null);
/// <summary>
/// Write a Measurement into specified bucket.
/// </summary>
/// <param name="measurement">specifies the Measurement to write into bucket</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// <typeparam name="TM">measurement type</typeparam>
void WriteMeasurement<TM>(TM measurement, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null);
/// <summary>
/// Write Measurements into specified bucket.
/// </summary>
/// <param name="measurements">specifies Measurements to write into bucket</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// <typeparam name="TM">measurement type</typeparam>
void WriteMeasurements<TM>(List<TM> measurements, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null);
/// <summary>
/// Write Measurements into specified bucket.
/// </summary>
/// <param name="measurements">specifies Measurements to write into bucket</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// <typeparam name="TM">measurement type</typeparam>
void WriteMeasurements<TM>(TM[] measurements, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null);
/// <summary>
/// Forces the client to flush all pending writes from the buffer to the InfluxDB via HTTP.
/// </summary>
void Flush();
}
public class WriteApi : IWriteApi
{
private readonly Subject<IObservable<BatchWriteData>> _flush = new Subject<IObservable<BatchWriteData>>();
private readonly InfluxDBClient _influxDbClient;
private readonly IDomainObjectMapper _mapper;
private readonly InfluxDBClientOptions _options;
private readonly Subject<BatchWriteData> _subject = new Subject<BatchWriteData>();
private static readonly ObjectPoolProvider ObjectPoolProvider = new DefaultObjectPoolProvider();
private static readonly ObjectPool<StringBuilder> StringBuilderPool =
ObjectPoolProvider.CreateStringBuilderPool();
private readonly IDisposable _unsubscribeDisposeCommand;
private bool _disposed;
protected internal WriteApi(
InfluxDBClientOptions options,
WriteService service,
WriteOptions writeOptions,
IDomainObjectMapper mapper,
InfluxDBClient influxDbClient,
IObservable<Unit> disposeCommand)
{
Arguments.CheckNotNull(service, nameof(service));
Arguments.CheckNotNull(writeOptions, nameof(writeOptions));
Arguments.CheckNotNull(mapper, nameof(mapper));
Arguments.CheckNotNull(influxDbClient, nameof(_influxDbClient));
Arguments.CheckNotNull(disposeCommand, nameof(disposeCommand));
_options = options;
_mapper = mapper;
_influxDbClient = influxDbClient;
_unsubscribeDisposeCommand = disposeCommand.Subscribe(_ => Dispose());
// backpreasure - is not implemented in C#
//
// => use unbound buffer
//
// https://github.com/dotnet/reactive/issues/19
var batches = _subject
//
// Batching
//
.Publish(connectedSource =>
{
var trigger = Observable.Merge(
// triggered by time & count
connectedSource.Window(TimeSpan.FromMilliseconds(
writeOptions.FlushInterval),
writeOptions.BatchSize,
writeOptions.WriteScheduler),
// flush trigger
_flush
);
return connectedSource
.Window(trigger);
})
//
// Group by key - same bucket, same org
//
.SelectMany(it => it.GroupBy(batchWrite => batchWrite.Options))
//
// Create Write Point = bucket, org, ... + data
//
.SelectMany(grouped =>
{
var aggregate = grouped
.Aggregate(StringBuilderPool.Get(), (builder, batchWrite) =>
{
var data = batchWrite.ToLineProtocol();
if (string.IsNullOrEmpty(data))
{
return builder;
}
if (builder.Length > 0)
{
builder.Append("\n");
}
return builder.Append(data);
}).Select(builder =>
{
var result = builder.ToString();
builder.Clear();
StringBuilderPool.Return(builder);
return result;
});
return aggregate.Select(records => new BatchWriteRecord(grouped.Key, records))
.Where(batchWriteItem => !string.IsNullOrEmpty(batchWriteItem.ToLineProtocol()));
});
var unused = batches
//
// Map to Async request
//
.Select(batchWriteItem =>
{
var org = batchWriteItem.Options.OrganizationId;
var bucket = batchWriteItem.Options.Bucket;
var lineProtocol = batchWriteItem.ToLineProtocol();
var precision = batchWriteItem.Options.Precision;
return Observable
.Defer(() =>
{
var observable = service.PostWriteAsyncWithIRestResponse(org, bucket,
Encoding.UTF8.GetBytes(lineProtocol), null,
"identity", "text/plain; charset=utf-8", null, "application/json", null, precision)
.ToObservable();
if (writeOptions.JitterInterval > 0)
{
observable = observable
.Delay(_ => Observable.Timer(
TimeSpan.FromMilliseconds(RetryAttempt.JitterDelay(writeOptions)),
writeOptions.WriteScheduler));
}
return observable;
})
.RetryWhen(f => f
.Zip(Observable.Range(1, writeOptions.MaxRetries + 1), (exception, count)
=> new RetryAttempt(exception, count, writeOptions))
.SelectMany(attempt =>
{
if (attempt.IsRetry())
{
var retryInterval = attempt.GetRetryInterval();
var retryable = new WriteRetriableErrorEvent(org, bucket, precision, lineProtocol,
attempt.Error, retryInterval);
Publish(retryable);
return Observable.Timer(TimeSpan.FromMilliseconds(retryInterval),
writeOptions.WriteScheduler);
}
throw attempt.Error;
}))
.Select(result =>
{
// ReSharper disable once ConvertIfStatementToReturnStatement
if (result.IsSuccessful)
{
return Notification.CreateOnNext(result);
}
return Notification.CreateOnError<RestResponse>(
HttpException.Create(result, result.Content));
})
.Catch<Notification<RestResponse>, Exception>(ex =>
{
var error = new WriteErrorEvent(org, bucket, precision, lineProtocol, ex);
Publish(error);
return Observable.Return(Notification.CreateOnError<RestResponse>(ex));
}).Do(res =>
{
if (res.Kind == NotificationKind.OnNext)
{
var success = new WriteSuccessEvent(org, bucket, precision, lineProtocol);
Publish(success);
}
});
})
.Concat()
.Subscribe(
notification =>
{
switch (notification.Kind)
{
case NotificationKind.OnNext:
Trace.WriteLine($"The batch item: {notification} was processed successfully."
, InfluxDBTraceFilter.CategoryInfluxWrite);
break;
case NotificationKind.OnError:
Trace.WriteLine(
$"The batch item wasn't processed successfully because: {notification.Exception}"
, InfluxDBTraceFilter.CategoryInfluxWriteError);
break;
default:
Trace.WriteLine($"The batch item: {notification} was processed"
, InfluxDBTraceFilter.CategoryInfluxWrite);
break;
}
},
exception =>
{
Publish(new WriteRuntimeExceptionEvent(exception));
_disposed = true;
Trace.WriteLine($"The unhandled exception occurs: {exception}"
, InfluxDBTraceFilter.CategoryInfluxWriteError);
},
() =>
{
_disposed = true;
Trace.WriteLine("The WriteApi was disposed."
, InfluxDBTraceFilter.CategoryInfluxWrite);
});
}
public void Dispose()
{
ReleaseAndClose();
}
/// <summary>
/// Release all resources and flush remaining data into database.
/// </summary>
/// <param name="millis">How much milliseconds wait to flush data.</param>
internal void ReleaseAndClose(int millis = 30000)
{
_unsubscribeDisposeCommand.Dispose(); // avoid duplicate call to dispose
Trace.WriteLine("Flushing batches before shutdown.", InfluxDBTraceFilter.CategoryInfluxWrite);
if (!_subject.IsDisposed)
{
_subject.OnCompleted();
}
if (!_flush.IsDisposed)
{
_flush.OnCompleted();
}
_subject.Dispose();
_flush.Dispose();
WaitToCondition(() => _disposed, millis);
}
public bool Disposed => _disposed;
public event EventHandler EventHandler;
/// <summary>
/// Write Line Protocol record into specified bucket.
/// </summary>
/// <param name="record">
/// specifies the record in InfluxDB Line Protocol.
/// The <see cref="record" /> is considered as one batch unit.
/// </param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
public void WriteRecord(string record, WritePrecision precision = WritePrecision.Ns, string bucket = null,
string org = null)
{
var options = new BatchWriteOptions(bucket ?? _options.Bucket, org ?? _options.Org, precision);
_subject.OnNext(new BatchWriteRecord(options, record));
}
/// <summary>
/// Write Line Protocol records into specified bucket.
/// </summary>
/// <param name="records">specifies the record in InfluxDB Line Protocol</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
public void WriteRecords(List<string> records, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null)
{
records.ForEach(record => WriteRecord(record, precision, bucket, org));
}
/// <summary>
/// Write Line Protocol records into specified bucket.
/// </summary>
/// <param name="records">specifies the record in InfluxDB Line Protocol</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
public void WriteRecords(string[] records, WritePrecision precision = WritePrecision.Ns, string bucket = null,
string org = null)
{
foreach (var record in records) WriteRecord(record, precision, bucket, org);
}
/// <summary>
/// Write a Data point into specified bucket.
/// </summary>
/// <param name="point">specifies the Data point to write into bucket</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
public void WritePoint(PointData point, string bucket = null, string org = null)
{
if (point == null)
{
return;
}
var options = new BatchWriteOptions(bucket ?? _options.Bucket, org ?? _options.Org, point.Precision);
_subject.OnNext(new BatchWritePoint(options, _options, point));
}
/// <summary>
/// Write Data points into specified bucket.
/// </summary>
/// <param name="points">specifies the Data points to write into bucket</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
public void WritePoints(List<PointData> points, string bucket = null, string org = null)
{
foreach (var point in points) WritePoint(point, bucket, org);
}
/// <summary>
/// Write Data points into specified bucket.
/// </summary>
/// <param name="points">specifies the Data points to write into bucket</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
public void WritePoints(PointData[] points, string bucket = null, string org = null)
{
WritePoints(points.ToList(), bucket, org);
}
/// <summary>
/// Write a Measurement into specified bucket.
/// </summary>
/// <param name="measurement">specifies the Measurement to write into bucket</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// <typeparam name="TM">measurement type</typeparam>
public void WriteMeasurement<TM>(TM measurement, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null)
{
if (measurement == null)
{
return;
}
var options = new BatchWriteOptions(bucket ?? _options.Bucket, org ?? _options.Org, precision);
_subject.OnNext(new BatchWriteMeasurement<TM>(options, _options, measurement, _mapper));
}
/// <summary>
/// Write Measurements into specified bucket.
/// </summary>
/// <param name="measurements">specifies Measurements to write into bucket</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// <typeparam name="TM">measurement type</typeparam>
public void WriteMeasurements<TM>(List<TM> measurements, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null)
{
foreach (var measurement in measurements) WriteMeasurement(measurement, precision, bucket, org);
}
/// <summary>
/// Write Measurements into specified bucket.
/// </summary>
/// <param name="measurements">specifies Measurements to write into bucket</param>
/// <param name="precision">specifies the precision for the unix timestamps within the body line-protocol; default Nanoseconds</param>
/// <param name="bucket">specifies the destination bucket for writes. If the bucket is not specified then is used config from <see cref="InfluxDBClientOptions.Bucket" />.</param>
/// <param name="org">specifies the destination organization for writes. If the org is not specified then is used config from <see cref="InfluxDBClientOptions.Org" />.</param>
/// <typeparam name="TM">measurement type</typeparam>
public void WriteMeasurements<TM>(TM[] measurements, WritePrecision precision = WritePrecision.Ns,
string bucket = null, string org = null)
{
WriteMeasurements(measurements.ToList(), precision, bucket, org);
}
/// <summary>
/// Forces the client to flush all pending writes from the buffer to the InfluxDB via HTTP.
/// </summary>
public void Flush()
{
if (!_flush.IsDisposed)
{
_flush.OnNext(Observable.Empty<BatchWriteData>());
}
}
internal static void WaitToCondition(Func<bool> condition, int millis)
{
var start = DateTimeOffset.Now.ToUnixTimeMilliseconds();
while (!condition())
{
Thread.Sleep(25);
if (DateTimeOffset.Now.ToUnixTimeMilliseconds() - start > millis)
{
Trace.TraceError($"The WriteApi can't be gracefully dispose! - {millis}ms elapsed.");
break;
}
}
}
private void Publish(InfluxDBEventArgs eventArgs)
{
eventArgs.LogEvent();
EventHandler?.Invoke(this, eventArgs);
}
}
internal abstract class BatchWriteData
{
internal readonly BatchWriteOptions Options;
protected BatchWriteData(BatchWriteOptions options)
{
Arguments.CheckNotNull(options, "options");
Options = options;
}
internal abstract string ToLineProtocol();
}
internal class BatchWriteRecord : BatchWriteData
{
private readonly string _record;
internal BatchWriteRecord(BatchWriteOptions options, string record) : base(options)
{
Arguments.CheckNotNull(record, nameof(record));
_record = record;
}
internal override string ToLineProtocol()
{
return _record;
}
}
internal class BatchWritePoint : BatchWriteData
{
private readonly PointData _point;
private readonly InfluxDBClientOptions _clientOptions;
internal BatchWritePoint(BatchWriteOptions options, InfluxDBClientOptions clientOptions, PointData point) :
base(options)
{
Arguments.CheckNotNull(point, nameof(point));
_point = point;
_clientOptions = clientOptions;
}
internal override string ToLineProtocol()
{
if (!_point.HasFields())
{
Trace.WriteLine($"The point: ${_point} doesn't contains any fields, skipping",
InfluxDBTraceFilter.CategoryInfluxWrite);
return null;
}
return _point.ToLineProtocol(_clientOptions.PointSettings);
}
}
internal class BatchWriteMeasurement<TM> : BatchWriteData
{
private readonly TM _measurement;
private readonly IDomainObjectMapper _converter;
private readonly InfluxDBClientOptions _clientOptions;
internal BatchWriteMeasurement(BatchWriteOptions options, InfluxDBClientOptions clientOptions, TM measurement,
IDomainObjectMapper converter) :
base(options)
{
Arguments.CheckNotNull(measurement, nameof(measurement));
_clientOptions = clientOptions;
_measurement = measurement;
_converter = converter;
}
internal override string ToLineProtocol()
{
var point = _converter.ConvertToPointData(_measurement, Options.Precision);
if (!point.HasFields())
{
Trace.WriteLine($"The point: ${point} doesn't contains any fields, skipping",
InfluxDBTraceFilter.CategoryInfluxWrite);
return null;
}
return point.ToLineProtocol(_clientOptions.PointSettings);
}
}
internal class BatchWriteOptions
{
internal readonly string Bucket;
internal readonly string OrganizationId;
internal readonly WritePrecision Precision;
internal BatchWriteOptions(string bucket, string org, WritePrecision precision)
{
Arguments.CheckNonEmptyString(bucket, AbstractRestClient.BucketArgumentValidation);
Arguments.CheckNonEmptyString(org, AbstractRestClient.OrgArgumentValidation);
Arguments.CheckNotNull(precision, nameof(precision));
Bucket = bucket;
OrganizationId = org;
Precision = precision;
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj))
{
return false;
}
if (ReferenceEquals(this, obj))
{
return true;
}
if (obj.GetType() != GetType())
{
return false;
}
return Equals((BatchWriteOptions)obj);
}
public override int GetHashCode()
{
unchecked
{
var hashCode = Bucket != null ? Bucket.GetHashCode() : 0;
hashCode = (hashCode * 397) ^ (OrganizationId != null ? OrganizationId.GetHashCode() : 0);
hashCode = (hashCode * 397) ^ (int)Precision;
return hashCode;
}
}
private bool Equals(BatchWriteOptions other)
{
return string.Equals(Bucket, other.Bucket) && string.Equals(OrganizationId, other.OrganizationId) &&
Precision == other.Precision;
}
}
}