-
Notifications
You must be signed in to change notification settings - Fork 346
Expand file tree
/
Copy pathFileHelperAsyncEngine.cs
More file actions
850 lines (687 loc) · 27.7 KB
/
FileHelperAsyncEngine.cs
File metadata and controls
850 lines (687 loc) · 27.7 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
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
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using FileHelpers.Events;
namespace FileHelpers
{
/// <summary>
/// Async engine, reads records from file in background,
/// returns them record by record in foreground
/// </summary>
public sealed class FileHelperAsyncEngine :
FileHelperAsyncEngine<object>
{
#region " Constructor "
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngineCtr/*'/>
public FileHelperAsyncEngine(Type recordType)
: base(recordType)
{
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngineCtr/*'/>
/// <param name="encoding">The encoding used by the Engine.</param>
public FileHelperAsyncEngine(Type recordType, Encoding encoding)
: base(recordType, encoding)
{
}
#endregion
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngine/*'/>
/// <include file='Examples.xml' path='doc/examples/FileHelperAsyncEngine/*'/>
/// <typeparam name="T">The record type.</typeparam>
[DebuggerDisplay("FileHelperAsyncEngine for type: {RecordType.Name}. ErrorMode: {ErrorManager.ErrorMode.ToString()}. Encoding: {Encoding.EncodingName}")]
public class FileHelperAsyncEngine<T> :
EventEngineBase<T>,
IFileHelperAsyncEngine<T>
where T: class
{
#region " Constructor "
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngineCtr/*'/>
public FileHelperAsyncEngine()
: base(typeof(T))
{
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngineCtr/*'/>
/// <param name="recordType">Type of object to be handled</param>
protected FileHelperAsyncEngine(Type recordType)
: base(recordType)
{
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngineCtr/*'/>
/// <param name="encoding">The encoding used by the Engine.</param>
public FileHelperAsyncEngine(Encoding encoding)
: base(typeof(T), encoding)
{
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/FileHelperAsyncEngineCtr/*'/>
/// <param name="encoding">The encoding used by the Engine.</param>
/// <param name="recordType">Type of record to read</param>
protected FileHelperAsyncEngine(Type recordType, Encoding encoding)
: base(recordType, encoding)
{
}
#endregion
#region " Readers and Writters "
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
ForwardReader mAsyncReader;
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
TextWriter mAsyncWriter;
public bool mEof = false;
/// <summary>
/// Indicates if End of File was reached.
/// </summary>
/// <value>The EOF flag.</value>
public bool Eof
{
get { return mEof; }
}
#endregion
#region " LastRecord "
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private T mLastRecord;
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/LastRecord/*'/>
public T LastRecord
{
get { return mLastRecord; }
}
private object[] mLastRecordValues;
/// <summary>
/// An array with the values of each field of the current record
/// </summary>
public object[] LastRecordValues
{
get { return mLastRecordValues; }
}
/// <summary>
/// Get a field value of the current records.
/// </summary>
/// <param name="fieldIndex" >The index of the field.</param>
public object this[int fieldIndex]
{
get
{
if (mLastRecordValues == null)
throw new BadUsageException("You must be reading something to access this property. Try calling BeginReadFile first.");
return mLastRecordValues[fieldIndex];
}
set
{
if (mAsyncWriter == null)
throw new BadUsageException("You must be writting something to set a record value. Try calling BeginWriteFile first.");
if (mLastRecordValues == null)
mLastRecordValues = new object[RecordInfo.FieldCount];
if (value == null)
{
if (RecordInfo.Fields[fieldIndex].FieldType.IsValueType)
throw new BadUsageException("You can't assing null to a value type.");
mLastRecordValues[fieldIndex] = null;
}
else
{
if (!RecordInfo.Fields[fieldIndex].FieldType.IsInstanceOfType(value))
throw new BadUsageException(string.Format("Invalid type: {0}. Expected: {1}", value.GetType().Name, RecordInfo.Fields[fieldIndex].FieldType.Name));
mLastRecordValues[fieldIndex] = value;
}
}
}
/// <summary>
/// Get a field value of the current records.
/// </summary>
/// <param name="fieldName" >The name of the field (case sensitive)</param>
public object this[string fieldName]
{
get
{
if (mLastRecordValues == null)
throw new BadUsageException("You must be reading something to access this property. Try calling BeginReadFile first.");
int index = RecordInfo.GetFieldIndex(fieldName);
return mLastRecordValues[index];
}
set
{
int index = RecordInfo.GetFieldIndex(fieldName);
this[index] = value;
}
}
#endregion
#region " BeginReadStream"
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginReadStream/*'/>
public IDisposable BeginReadStream(TextReader reader)
{
if (reader == null)
throw new ArgumentNullException("reader", "The TextReader can´t be null.");
if (mAsyncWriter != null)
throw new BadUsageException("You can't start to read while you are writing.");
var recordReader = new NewLineDelimitedRecordReader(reader);
ResetFields();
mHeaderText = String.Empty;
mFooterText = String.Empty;
if (RecordInfo.IgnoreFirst > 0)
{
for (int i = 0; i < RecordInfo.IgnoreFirst; i++)
{
string temp = recordReader.ReadRecordString();
mLineNumber++;
if (temp != null)
mHeaderText += temp + StringHelper.NewLine;
else
break;
}
}
mAsyncReader = new ForwardReader(recordReader, RecordInfo.IgnoreLast, mLineNumber)
{
DiscardForward = true
};
mState = EngineState.Reading;
mStreamInfo = new StreamInfoProvider(reader);
mCurrentRecord = 0;
#if ! MINI
if (MustNotifyProgress) // Avoid object creation
OnProgress(new ProgressEventArgs(0, -1, mStreamInfo.Position, mStreamInfo.TotalBytes));
#endif
return this;
}
#endregion
#region " BeginReadFile "
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginReadFile/*'/>
public IDisposable BeginReadFile(string fileName)
{
BeginReadFile(fileName, DefaultReadBufferSize);
return this;
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginReadFile/*'/>
/// <param name="bufferSize">Buffer size to read</param>
public IDisposable BeginReadFile(string fileName, int bufferSize)
{
BeginReadStream(new InternalStreamReader(fileName, mEncoding, true, bufferSize));
return this;
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginReadString/*'/>
public IDisposable BeginReadString(string sourceData)
{
if (sourceData == null)
sourceData = String.Empty;
BeginReadStream(new InternalStringReader(sourceData));
return this;
}
#endregion
#region " ReadNext "
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/ReadNext/*'/>
public T ReadNext()
{
if (mAsyncReader == null)
throw new BadUsageException("Before call ReadNext you must call BeginReadFile or BeginReadStream.");
ReadNextRecord();
return mLastRecord;
}
private int mCurrentRecord = 0;
private void ReadNextRecord()
{
string currentLine = mAsyncReader.ReadNextLine();
mLineNumber++;
bool byPass = false;
mLastRecord = default(T);
var line = new LineInfo(string.Empty)
{
mReader = mAsyncReader
};
if (mLastRecordValues == null)
mLastRecordValues = new object[RecordInfo.FieldCount];
while (true)
{
if (currentLine != null)
{
try
{
mTotalRecords++;
mCurrentRecord++;
line.ReLoad(currentLine);
bool skip = false;
mLastRecord = (T) RecordInfo.Operations.CreateRecordHandler();
#if ! MINI
if (MustNotifyProgress) // Avoid object creation
OnProgress(new ProgressEventArgs(mCurrentRecord, -1, mStreamInfo.Position, mStreamInfo.TotalBytes));
BeforeReadEventArgs<T> e = null;
if (MustNotifyRead) // Avoid object creation
{
e = new BeforeReadEventArgs<T>(this, mLastRecord, currentLine, LineNumber);
skip = OnBeforeReadRecord(e);
if (e.RecordLineChanged)
line.ReLoad(e.RecordLine);
}
#endif
if (skip == false)
{
if (RecordInfo.Operations.StringToRecord(mLastRecord, line, mLastRecordValues))
{
#if ! MINI
if (MustNotifyRead) // Avoid object creation
skip = OnAfterReadRecord(currentLine, mLastRecord, e.RecordLineChanged, LineNumber);
#endif
if (skip == false)
{
byPass = true;
return;
}
}
}
}
catch (Exception ex)
{
switch (mErrorManager.ErrorMode)
{
case ErrorMode.ThrowException:
byPass = true;
throw;
case ErrorMode.IgnoreAndContinue:
break;
case ErrorMode.SaveAndContinue:
var err = new ErrorInfo
{
mLineNumber = mAsyncReader.LineNumber,
mExceptionInfo = ex,
mRecordString = currentLine
};
// err.mColumnNumber = mColumnNum;
mErrorManager.AddError(err);
break;
}
}
finally
{
if (byPass == false)
{
currentLine = mAsyncReader.ReadNextLine();
mLineNumber = mAsyncReader.LineNumber;
}
}
}
else
{
// mark end of file
mEof = true;
mLastRecordValues = null;
mLastRecord = default(T);
if (RecordInfo.IgnoreLast > 0)
mFooterText = mAsyncReader.RemainingText;
try
{
mAsyncReader.Close();
//mAsyncReader = null;
}
catch
{
}
return;
}
}
}
/// <summary>
/// Return array of object for all data to end of the file
/// </summary>
/// <returns>Array of objects created from data on file</returns>
public T[] ReadToEnd()
{
return ReadNexts(int.MaxValue);
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/ReadNexts/*'/>
public T[] ReadNexts(int numberOfRecords)
{
if (mAsyncReader == null)
throw new BadUsageException("Before call ReadNext you must call BeginReadFile or BeginReadStream.");
var arr = new List<T>(numberOfRecords);
for (int i = 0; i < numberOfRecords; i++)
{
ReadNextRecord();
if (mLastRecord != null)
{
arr.Add(mLastRecord);
}
else
{
// mark end of file
mEof = true;
break;
}
}
return arr.ToArray();
}
#endregion
#region " Close "
/// <summary>
/// Save all the buffered data for write to the disk.
/// Useful to opened async engines that wants to save pending values to
/// disk or for engines used for logging.
/// </summary>
public void Flush()
{
if (mAsyncWriter != null)
mAsyncWriter.Flush();
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/Close/*'/>
public void Close()
{
lock (this)
{
mState = EngineState.Closed;
try
{
mLastRecordValues = null;
mLastRecord = default(T);
var reader = mAsyncReader;
if (reader != null)
{
reader.Close();
mAsyncReader = null;
}
}
catch
{
}
try
{
using (var writer = mAsyncWriter)
{
mAsyncWriter = null;
if (writer != null)
{
if (!string.IsNullOrEmpty (mFooterText))
if (mFooterText.EndsWith (StringHelper.NewLine, StringComparison.Ordinal))
writer.Write (mFooterText);
else
writer.WriteLine (mFooterText);
writer.Close ();
}
}
}
catch
{
}
}
}
#endregion
#region " BeginWriteStream"
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginWriteStream/*'/>
public IDisposable BeginWriteStream(TextWriter writer)
{
if (writer == null)
throw new ArgumentException("writer", "The TextWriter can´t be null.");
if (mAsyncReader != null)
throw new BadUsageException("You can't start to write while you are reading.");
mState = EngineState.Writing;
ResetFields();
mAsyncWriter = writer;
WriteHeader();
mStreamInfo = new StreamInfoProvider(mAsyncWriter);
mCurrentRecord = 0;
#if ! MINI
if (MustNotifyProgress) // Avoid object creation
OnProgress(new ProgressEventArgs(0, -1, mStreamInfo.Position, mStreamInfo.TotalBytes));
#endif
return this;
}
private void WriteHeader()
{
if (!string.IsNullOrEmpty(mHeaderText))
if (mHeaderText.EndsWith (StringHelper.NewLine, StringComparison.Ordinal))
mAsyncWriter.Write(mHeaderText);
else
mAsyncWriter.WriteLine(mHeaderText);
}
#endregion
#region " BeginWriteFile "
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginWriteFile/*'/>
public IDisposable BeginWriteFile(string fileName)
{
return BeginWriteFile(fileName, DefaultWriteBufferSize);
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginWriteFile/*'/>
/// <param name="bufferSize">Size of the write buffer</param>
public IDisposable BeginWriteFile(string fileName, int bufferSize)
{
BeginWriteStream(new StreamWriter(fileName, false, mEncoding, bufferSize));
return this;
}
#endregion
#region " BeginAppendToFile "
/// <summary>
/// Begin the append to an existing file
/// </summary>
/// <param name="fileName">Filename to append to</param>
/// <returns>Object to append TODO: ???</returns>
public IDisposable BeginAppendToFile(string fileName)
{
return BeginAppendToFile(fileName, DefaultWriteBufferSize);
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/BeginAppendToFile/*'/>
/// <param name="bufferSize">Size of the buffer for writing</param>
public IDisposable BeginAppendToFile(string fileName, int bufferSize)
{
if (mAsyncReader != null)
throw new BadUsageException("You can't start to write while you are reading.");
mAsyncWriter = StreamHelper.CreateFileAppender(fileName, mEncoding, false, true, bufferSize);
mHeaderText = String.Empty;
mFooterText = String.Empty;
mState = EngineState.Writing;
mStreamInfo = new StreamInfoProvider(mAsyncWriter);
mCurrentRecord = 0;
#if ! MINI
if (MustNotifyProgress) // Avoid object creation
OnProgress(new ProgressEventArgs(0, -1, mStreamInfo.Position, mStreamInfo.TotalBytes));
#endif
return this;
}
#endregion
#region " WriteNext "
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/WriteNext/*'/>
public void WriteNext(T record)
{
if (mAsyncWriter == null)
throw new BadUsageException("Before call WriteNext you must call BeginWriteFile or BeginWriteStream.");
if (record == null)
throw new BadUsageException("The record to write can´t be null.");
if (RecordType.IsAssignableFrom(record.GetType()) == false)
throw new BadUsageException("The record must be of type: " + RecordType.Name);
WriteRecord(record);
}
private void WriteRecord(T record)
{
string currentLine = null;
try
{
mLineNumber++;
mTotalRecords++;
mCurrentRecord++;
bool skip = false;
#if !MINI
if (MustNotifyProgress) // Avoid object creation
OnProgress(new ProgressEventArgs(mCurrentRecord, -1, mStreamInfo.Position, mStreamInfo.TotalBytes));
if (MustNotifyWrite)
skip = OnBeforeWriteRecord(record, LineNumber);
#endif
if (skip == false)
{
currentLine = RecordInfo.Operations.RecordToString(record);
#if !MINI
if (MustNotifyWrite)
currentLine = OnAfterWriteRecord(currentLine, record);
#endif
mAsyncWriter.WriteLine(currentLine);
}
}
catch (Exception ex)
{
switch (mErrorManager.ErrorMode)
{
case ErrorMode.ThrowException:
throw;
case ErrorMode.IgnoreAndContinue:
break;
case ErrorMode.SaveAndContinue:
var err = new ErrorInfo
{
mLineNumber = mLineNumber,
mExceptionInfo = ex,
mRecordString = currentLine
};
// err.mColumnNumber = mColumnNum;
mErrorManager.AddError(err);
break;
}
}
}
/// <include file='FileHelperAsyncEngine.docs.xml' path='doc/WriteNexts/*'/>
public void WriteNexts(IEnumerable<T> records)
{
if (mAsyncWriter == null)
throw new BadUsageException("Before call WriteNext you must call BeginWriteFile or BeginWriteStream.");
if (records == null)
throw new ArgumentNullException("records", "The record to write can´t be null.");
bool first = true;
foreach (var rec in records)
{
if (first)
{
if (RecordType.IsAssignableFrom(rec.GetType()) == false)
throw new BadUsageException("The record must be of type: " + RecordType.Name);
first = false;
}
WriteRecord(rec);
}
}
#endregion
#region " WriteNext for LastRecordValues "
/// <summary>
/// Write the current record values in the buffer. You can use
/// engine[0] or engine["YourField"] to set the values.
/// </summary>
public void WriteNextValues()
{
if (mAsyncWriter == null)
throw new BadUsageException("Before call WriteNext you must call BeginWriteFile or BeginWriteStream.");
if (mLastRecordValues == null)
throw new BadUsageException("You must set some values of the record before call this method, or use the overload that has a record as argument.");
string currentLine = null;
try
{
mLineNumber++;
mTotalRecords++;
currentLine = RecordInfo.Operations.RecordValuesToString(this.mLastRecordValues);
mAsyncWriter.WriteLine(currentLine);
}
catch (Exception ex)
{
switch (mErrorManager.ErrorMode)
{
case ErrorMode.ThrowException:
throw;
case ErrorMode.IgnoreAndContinue:
break;
case ErrorMode.SaveAndContinue:
var err = new ErrorInfo
{
mLineNumber = mLineNumber,
mExceptionInfo = ex,
mRecordString = currentLine
};
// err.mColumnNumber = mColumnNum;
mErrorManager.AddError(err);
break;
}
}
finally
{
mLastRecordValues = null;
}
}
#endregion
#region " IEnumerable implementation "
/// <summary>Allows to loop record by record in the engine</summary>
/// <returns>The enumerator</returns>
IEnumerator<T> IEnumerable<T>.GetEnumerator()
{
if (mAsyncReader == null)
throw new FileHelpersException("You must call BeginRead before use the engine in a for each loop.");
return new AsyncEnumerator(this);
}
///<summary>
///Returns an enumerator that iterates through a collection.
///</summary>
///
///<returns>
///An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.
///</returns>
///<filterpriority>2</filterpriority>
IEnumerator IEnumerable.GetEnumerator()
{
if (mAsyncReader == null)
throw new FileHelpersException("You must call BeginRead before use the engine in a for each loop.");
return new AsyncEnumerator(this);
}
private class AsyncEnumerator : IEnumerator<T>
{
T IEnumerator<T>.Current
{
get { return mEngine.mLastRecord; }
}
void IDisposable.Dispose()
{
mEngine.Close();
}
readonly FileHelperAsyncEngine<T> mEngine;
public AsyncEnumerator(FileHelperAsyncEngine<T> engine)
{
mEngine = engine;
}
public bool MoveNext()
{
object res = mEngine.ReadNext();
if (res == null)
{
mEngine.Close();
return false;
}
return true;
}
public object Current
{
get
{
return mEngine.mLastRecord;
}
}
public void Reset()
{
// No needed
}
}
#endregion
#region " IDisposable implementation "
/// <summary>Release Resources</summary>
void IDisposable.Dispose()
{
Close();
GC.SuppressFinalize(this);
}
/// <summary>Destructor</summary>
~FileHelperAsyncEngine()
{
Close();
}
#endregion
#region " State "
private EngineState mState = EngineState.Closed;
private StreamInfoProvider mStreamInfo;
/// <summary>
/// Indicates the current state of the engine.
/// </summary>
public EngineState State
{
get { return mState; }
set { mState = value; }
}
#endregion
}
}