-
Notifications
You must be signed in to change notification settings - Fork 0
/
errpreflinelengthcalc.go
1008 lines (811 loc) · 27.1 KB
/
errpreflinelengthcalc.go
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
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package errpref
import (
"fmt"
"sync"
)
// EPrefixLineLenCalc - Error Prefix Line Length Calculator
// This type is used to perform calculations on the line length of
// error prefix text output strings. Among the calculations
// performed, these associated methods determine how many error
// prefix and error context strings can be accommodated on the same
// line of text give a maximum line length limit.
//
type EPrefixLineLenCalc struct {
ePrefDelimiters ErrPrefixDelimiters
errorPrefixInfo ErrorPrefixInfo
currentLineStr string
maxErrStringLength uint
lock *sync.Mutex
}
// CurrLineLenExceedsMaxLineLen - If the length of the Current Line
// String (EPrefixLineLenCalc.currentLineStr) is greater than the
// Maximum Error String Length (EPrefixLineLenCalc.maxErrStringLength),
// this method returns 'true'.
//
// currentLineStrLen > maxErrStringLength == true
// currentLineStrLen <= maxErrStringLength == false
//
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) CurrLineLenExceedsMaxLineLen() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
if uint(len(ePrefixLineLenCalc.currentLineStr)) >
ePrefixLineLenCalc.maxErrStringLength {
return true
}
return false
}
// CopyIn - Receives an instance of type EPrefixLineLenCalc and
// proceeds to copy the internal member data variable values to the
// current EPrefixLineLenCalc instance.
//
//
// ----------------------------------------------------------------
//
// Input Parameters
//
//
// incomingLineLenCalc *EPrefixLineLenCalc
// - A pointer to an instance of EPrefixLineLenCalc. This method
// will NOT change the values of internal member variables
// contained in this instance.
//
// All data values in this EPrefixLineLenCalc instance will
// be copied to current EPrefixLineLenCalc instance
// ('ePrefixLineLenCalc').
//
// If this EPrefixLineLenCalc instance proves to be invalid,
// an error will be returned.
//
//
// ePrefix string
// - This is an error prefix which is included in all returned
// error messages. Usually, it contains the names of the calling
// method or methods. Note: Be sure to leave a space at the end
// of 'ePrefix'.
//
//
// ------------------------------------------------------------------------
//
// Return Values
//
// err error
// - If this method completes successfully, the returned error Type
// is set to 'nil'. If errors are encountered during processing,
// the returned error Type will encapsulate an error message.
// Note that this error message will incorporate the method
// chain and text passed by input parameter, 'ePrefix'.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) CopyIn(
incomingLineLenCalc *EPrefixLineLenCalc,
ePrefix string) error {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefix += "EPrefixLineLenCalc.CopyIn() "
ePrefLineLenCalcElectron := ePrefixLineLenCalcElectron{}
return ePrefLineLenCalcElectron.copyIn(
ePrefixLineLenCalc,
incomingLineLenCalc,
ePrefix)
}
// CopyOut - Creates and returns a deep copy of the current
// EPrefixLineLenCalc. After completion of this operation, the
// returned copy and the current EPrefixLineLenCalc instance are
// identical in all respects.
//
//
// ------------------------------------------------------------------------
//
// Input Parameters
//
// ePrefix string
// - This is an error prefix which is included in all returned
// error messages. Usually, it contains the names of the calling
// method or methods. Note: Be sure to leave a space at the end
// of 'ePrefix'.
//
//
// ------------------------------------------------------------------------
//
// Return Values
//
// EPrefixLineLenCalc
// - If this method completes successfully, a deep copy of the
// current EPrefixLineLenCalc instance will be returned through
// this parameter as a completely new instance of
// EPrefixLineLenCalc.
//
//
// error
// - If this method completes successfully, the returned error Type
// is set to 'nil'. If errors are encountered during processing,
// the returned error Type will encapsulate an error message.
// Note that this error message will incorporate the method
// chain and text passed by input parameter, 'ePrefix'. The
// 'ePrefix' text will be prefixed to the beginning of the returned
// error message.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) CopyOut(
ePrefix string) (
EPrefixLineLenCalc,
error) {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefix += "EPrefixLineLenCalc.CopyOut() "
ePrefLineLenCalcElectron := ePrefixLineLenCalcElectron{}
return ePrefLineLenCalcElectron.copyOut(
ePrefixLineLenCalc,
ePrefix)
}
// Empty - Sets all internal variables to their zero or
// uninitialized values.
//
// IMPORTANT
// This method will DELETE ALL VALID DATA contained in this
// instance of EPrefixLineLenCalc.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) Empty() {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefixLineLenCalc.ePrefDelimiters = ErrPrefixDelimiters{}
ePrefixLineLenCalc.errorPrefixInfo.Empty()
ePrefixLineLenCalc.currentLineStr = ""
ePrefixLineLenCalc.maxErrStringLength = 0
}
// Equal - Returns a boolean flag signaling whether the data values
// contained in the current EPrefixLineLenCalc instance are equal
// to those contained in input parameter, 'lineLenCalcTwo'.
//
//
// ------------------------------------------------------------------------
//
// Input Parameters
//
// lineLenCalcTwo *EPrefixLineLenCalc
// - A pointer to an instance of EPrefixLineLenCalc. The data
// values contained in this instance will be compared to
// those contained in the current EPrefixLineLenCalc instance
// (ePrefixLineLenCalc) to determine equality.
//
//
// ------------------------------------------------------------------------
//
// Return Values
//
// bool
// - A boolean flag signaling whether the data values contained
// in the current EPrefixLineLenCalc instance are equal to
// those contained in input parameter 'lineLenCalcTwo'. If
// the data values are equal in all respects, this returned
// boolean value will be set to 'true'.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) Equal(
lineLenCalcTwo *EPrefixLineLenCalc) bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
areEqual,
_ := ePrefixLineLenCalcElectron{}.ptr().equal(
ePrefixLineLenCalc,
lineLenCalcTwo,
"")
return areEqual
}
// EPrefWithoutContextExceedsRemainLineLen - Returns 'true' if the
// length of the in-line of in-line error prefix delimiter plus the
// length of the error prefix string exceeds the remaining unused
// line length.
//
// in-line error prefix delimiter +
// error prefix > Remaining line Length
// This method returns 'true'.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) EPrefWithoutContextExceedsRemainLineLen() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
var errPrefixLen uint
errPrefixLen =
ePrefixLineLenCalc.ePrefDelimiters.GetLengthInLinePrefixDelimiter() +
ePrefixLineLenCalc.errorPrefixInfo.GetLengthErrPrefixStr()
currLineLen :=
uint(len(ePrefixLineLenCalc.currentLineStr))
if currLineLen > ePrefixLineLenCalc.maxErrStringLength {
return true
}
remainingLineLen :=
ePrefixLineLenCalc.maxErrStringLength -
currLineLen
if errPrefixLen > remainingLineLen {
return true
}
return false
}
// EPrefixWithContextExceedsRemainLineLen - Returns 'true' if the
// combination of in-line error prefix delimiter plus error prefix
// plus in-line error context delimiter plus error context string
// exceeds the remaining unused line length.
//
// in-line error prefix delimiter +
// error prefix +
// in-line error context delimiter +
// error context > Remaining line Length
// This method returns 'true'.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) EPrefixWithContextExceedsRemainLineLen() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
var prefixWithContextLen uint
prefixWithContextLen =
ePrefixLineLenCalc.ePrefDelimiters.GetLengthInLinePrefixDelimiter() +
ePrefixLineLenCalc.errorPrefixInfo.GetLengthErrPrefixStr()
if ePrefixLineLenCalc.errorPrefixInfo.GetErrPrefixHasContextStr() {
prefixWithContextLen +=
ePrefixLineLenCalc.ePrefDelimiters.
GetLengthInLineContextDelimiter() +
ePrefixLineLenCalc.errorPrefixInfo.
GetLengthErrContextStr()
}
currLineLen :=
uint(len(ePrefixLineLenCalc.currentLineStr))
if currLineLen > ePrefixLineLenCalc.maxErrStringLength {
return true
}
remainingLineLen :=
ePrefixLineLenCalc.maxErrStringLength -
currLineLen
if prefixWithContextLen > remainingLineLen {
return true
}
return false
}
// ErrPrefixHasContext - Returns a boolean flag signaling whether
// the error prefix has an associated error context.
//
// If this method returns 'true', it means that the encapsulated
// error prefix DOES HAVE an associated error context string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) ErrPrefixHasContext() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.
errorPrefixInfo.
GetErrPrefixHasContextStr()
}
// ErrorContextIsEmpty - Returns a boolean flag signalling whether
// the Error Context String is an empty string.
//
// If this method returns 'true', it means that the Error Context
// String is empty and has a zero string length.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) ErrorContextIsEmpty() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
if ePrefixLineLenCalc.
errorPrefixInfo.GetLengthErrContextStr() == 0 {
return true
}
return false
}
// ErrorPrefixIsEmpty - Returns a boolean flag signalling whether
// the Error Prefix String is an empty string.
//
// If this method returns 'true', it means that the Error Prefix
// String is empty and has a zero string length.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) ErrorPrefixIsEmpty() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
if ePrefixLineLenCalc.
errorPrefixInfo.GetLengthErrPrefixStr() == 0 {
return true
}
return false
}
// GetErrorContextStr - Returns the error context string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetErrorContextStr() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.errorPrefixInfo.GetErrContextStr()
}
// GetCurrLineStr - Return the current line string. This string
// includes the characters which have been formatted and included
// in a single text line but which have not yet been written out
// text display. As soon as the current line string fills up with
// characters to the maximum allowed line length, the text line
// will be written out to the display device.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetCurrLineStr() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.currentLineStr
}
// GetCurrLineStrLength - Returns an unsigned integer value
// representing the number of characters in or string length of
// the Current Line String.
//
// The Current Line String contains the characters which have been
// collected thus far from error prefix and error context
// information. The current line string is used to control maximum
// line length and stores the characters which have not yet been
// written out to the text display.
//
// As soon as the Current Line String fills up with characters to
// the maximum allowed line length, the text line will be written
// out to the display device.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetCurrLineStrLength() uint {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
var lenCurrentLineStr uint
lenCurrentLineStr =
uint(len(ePrefixLineLenCalc.currentLineStr))
return lenCurrentLineStr
}
// GetDelimiterInLineErrContext - Returns the In-Line Error Context
// delimiter as a string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetDelimiterInLineErrContext() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.
ePrefDelimiters.
GetInLineContextDelimiter()
}
// GetDelimiterNewLineErrContext - Returns the New Line Error
// Context delimiter as a string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetDelimiterNewLineErrContext() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.
ePrefDelimiters.
GetNewLineContextDelimiter()
}
// GetDelimiterInLineErrPrefix - Returns the In-Line Error Prefix
// delimiter as a string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetDelimiterInLineErrPrefix() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.
ePrefDelimiters.
GetInLinePrefixDelimiter()
}
// GetDelimiterNewLineErrPrefix - Returns the New Line Error Prefix
// delimiter as a string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetDelimiterNewLineErrPrefix() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.
ePrefDelimiters.
GetNewLinePrefixDelimiter()
}
// GetErrorPrefixStr - Returns the error prefix string.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetErrorPrefixStr() string {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.errorPrefixInfo.GetErrPrefixStr()
}
// GetMaxErrStringLength - Returns the current the value for
// maximum error string length. This limit controls the line length
// for text displays of error prefix strings.
//
// The value of maximum error string length is returned as an
// unsigned integer.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetMaxErrStringLength() uint {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.maxErrStringLength
}
// GetRemainingLineLength - Returns the remaining line length. This is
// the difference between current line length and Maximum Error
// String Length.
//
// remainingLineLen = maxErrStringLen - currentLineStringLen
//
// If currentLineStringLen is greater than Maximum Error String
// Length, the Remaining String Length is zero.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) GetRemainingLineLength() uint {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
var (
lenCurrentLineStr,
remainingLineLength uint
)
lenCurrentLineStr =
uint(len(ePrefixLineLenCalc.currentLineStr))
if lenCurrentLineStr >
ePrefixLineLenCalc.maxErrStringLength {
remainingLineLength = 0
} else {
remainingLineLength =
ePrefixLineLenCalc.maxErrStringLength -
lenCurrentLineStr
}
return remainingLineLength
}
// IsErrPrefixLastIndex - Returns a boolean flag signalling whether
// the encapsulated ErrorPrefixInfo object is the last element in
// an array.
//
// If this method returns 'true', it means that the encapsulated
// ErrorPrefixInfo object is the last element in an array of
// ErrorPrefixInfo objects.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) IsErrPrefixLastIndex() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
return ePrefixLineLenCalc.errorPrefixInfo.GetIsLastIndex()
}
// IsValidInstance - Returns a boolean flag signalling whether the
// current EPrefixLineLenCalc instance is valid, or not.
//
// If this method returns a boolean value of 'false', it signals
// that the current EPrefixLineLenCalc instance is invalid.
//
// If this method returns a boolean value of 'true', it signals
// that the current EPrefixLineLenCalc instance is valid in all
// respects.
//
//
// ----------------------------------------------------------------
//
// Input Parameters
//
// --- NONE ---
//
//
// -----------------------------------------------------------------
//
// Return Values
//
// bool
// - This boolean flag signals whether the current
// EPrefixLineLenCalc instance is valid.
//
// If this method returns a value of 'false', it signals that
// the current EPrefixLineLenCalc instance is invalid.
//
// If this method returns a value of 'true', it signals that
// the current EPrefixLineLenCalc instance is valid in all
// respects.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) IsValidInstance() bool {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
isValid,
_ := ePrefixLineLenCalcQuark{}.ptr().
testValidityOfEPrefixLineLenCalc(
ePrefixLineLenCalc,
"")
return isValid
}
// IsValidInstanceError - Returns an error type signalling whether
// the current EPrefixLineLenCalc instance is valid, or not.
//
// If this method returns an error value NOT equal to 'nil', it
// signals that the current EPrefixLineLenCalc instance is
// invalid.
//
// If this method returns an error value which IS equal to 'nil',
// it signals that the current EPrefixLineLenCalc instance is
// valid in all respects.
//
//
// ----------------------------------------------------------------
//
// Input Parameters
//
// ePrefix string
// - This is an error prefix which is included in all returned
// error messages. Usually, it contains the names of the calling
// method or methods. Note: Be sure to leave a space at the end
// of 'ePrefix'.
//
//
// -----------------------------------------------------------------
//
// Return Values
//
// error
// - If this returned error type is set equal to 'nil', it
// signals that the current EPrefixLineLenCalc is valid in
// all respects.
//
// If this returned error type is NOT equal to 'nil', it
// signals that the current EPrefixLineLenCalc is invalid.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) IsValidInstanceError(
ePrefix string) error {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefix += "EPrefixLineLenCalc.IsValidInstanceError() "
_,
err := ePrefixLineLenCalcQuark{}.ptr().
testValidityOfEPrefixLineLenCalc(
ePrefixLineLenCalc,
ePrefix+
"ePrefixLineLenCalc\n")
return err
}
// New - Returns a new, empty instance of type EPrefixLineLenCalc.
//
func (ePrefixLineLenCalc EPrefixLineLenCalc) New() EPrefixLineLenCalc {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
newEPrefixLineLenCalc := EPrefixLineLenCalc{}
return newEPrefixLineLenCalc
}
// Ptr - Returns a pointer to a new, empty instance of type
// EPrefixLineLenCalc.
//
func (ePrefixLineLenCalc EPrefixLineLenCalc) Ptr() *EPrefixLineLenCalc {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
newEPrefixLineLenCalc := EPrefixLineLenCalc{}
return &newEPrefixLineLenCalc
}
// SetCurrentLineStr - Sets the Current Line String. This string
// represents the characters which have been collected thus far
// from error prefix and error context information. The current
// line string is used to control maximum line length and stores
// the characters which have not yet been written out to the
// text display.
//
// Be sure to set the Maximum Error String Length. Both the Current
// Line String and the Maximum Error String Length are essential
// to line length calculations.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) SetCurrentLineStr(
currentLineStr string) {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefixLineLenCalc.currentLineStr = currentLineStr
return
}
// SetEPrefDelimiters - Sets the Error Prefix Delimiters member
// variable.
//
// The Error Prefix Delimiters object stores string delimiters used
// to terminate error prefix and error context strings.
//
//
// ----------------------------------------------------------------
//
// Input Parameters
//
// ePrefDelimiters ErrPrefixDelimiters
// - An Error Prefix Delimiters object. This delimiters object
// contains information on the delimiter strings used to
// terminate error prefix and error context strings.
//
// type ErrPrefixDelimiters struct {
// inLinePrefixDelimiter string
// lenInLinePrefixDelimiter uint
// newLinePrefixDelimiter string
// lenNewLinePrefixDelimiter uint
// inLineContextDelimiter string
// lenInLineContextDelimiter uint
// newLineContextDelimiter string
// lenNewLineContextDelimiter uint
// maxErrStringLength uint
// }
//
//
// ePrefix string
// - This is an error prefix which is included in all returned
// error messages. Usually, it contains the names of the calling
// method or methods. Note: Be sure to leave a space at the end
// of 'ePrefix'.
//
//
// -----------------------------------------------------------------
//
// Return Values
//
// error
// - If this method completes successfully, the returned error
// Type is set equal to 'nil'. If errors are encountered
// during processing, the returned error Type will
// encapsulate an error message. Note that this error message
// will incorporate the method chain and text passed by input
// parameter, 'ePrefix'. The 'ePrefix' text will be prefixed
// to the beginning of the error message.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) SetEPrefDelimiters(
ePrefDelimiters ErrPrefixDelimiters,
ePrefix string) error {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefix += "EPrefixLineLenCalc.SetEPrefDelimiters() "
err := ePrefDelimiters.IsValidInstanceError(ePrefix)
if err != nil {
return fmt.Errorf("%v\n"+
"Error: Input parameter 'ePrefDelimiters' validity check\n"+
"returned an error message!\n"+
"%v\n",
ePrefix,
err.Error())
}
return ePrefixLineLenCalc.ePrefDelimiters.CopyIn(
&ePrefDelimiters,
ePrefix+
"ePrefDelimiters\n")
}
// SetErrPrefixInfo - Sets the Error Prefix Information Object member
// variable.
//
// The Error Prefix Information Object stores information on the
// error prefix and error context strings.
//
//
// ----------------------------------------------------------------
//
// Input Parameters
//
// errPrefixInfo *ErrorPrefixInfo
// - This Error Prefix Information Object stores information on
// the error prefix and error context strings.
//
// type ErrorPrefixInfo struct {
// isValid bool
// isLastIdx bool // Signals the last index in the array
// errorPrefixStr string
// lenErrorPrefixStr uint
// errPrefixHasContextStr bool
// errorContextStr string
// lenErrorContextStr uint
// }
//
//
// ePrefix string
// - This is an error prefix which is included in all returned
// error messages. Usually, it contains the names of the calling
// method or methods. Note: Be sure to leave a space at the end
// of 'ePrefix'.
//
//
// -----------------------------------------------------------------
//
// Return Values
//
// error
// - If this method completes successfully, the returned error
// Type is set equal to 'nil'. If errors are encountered
// during processing, the returned error Type will
// encapsulate an error message. Note that this error message
// will incorporate the method chain and text passed by input
// parameter, 'ePrefix'. The 'ePrefix' text will be prefixed
// to the beginning of the error message.
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) SetErrPrefixInfo(
errPrefixInfo *ErrorPrefixInfo,
ePrefix string) error {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}
ePrefixLineLenCalc.lock.Lock()
defer ePrefixLineLenCalc.lock.Unlock()
ePrefix += "EPrefixLineLenCalc.SetErrPrefixInfo() "
if errPrefixInfo == nil {
return fmt.Errorf("%v\n"+
"Error: Input parameter 'errPrefixInfo' is a "+
"'nil' pointer\n",
ePrefix)
}
err := errPrefixInfo.IsValidInstanceError(ePrefix)
if err != nil {
return fmt.Errorf("%v\n"+
"Error: Input parameter 'errPrefixInfo' validity check\n"+
"returned an error message!\n"+
"%v\n",
ePrefix,
err.Error())
}
err = ePrefixLineLenCalc.errorPrefixInfo.CopyIn(
errPrefixInfo,
ePrefix)
return err
}
// SetMaxErrStringLength - Sets EPrefixLineLenCalc.maxErrStringLength
//
// This method sets the value for maximum error string length. This
// limit controls the line length for text displays of error prefix
// strings.
//
// Set this value first, before setting Current Line Length
//
func (ePrefixLineLenCalc *EPrefixLineLenCalc) SetMaxErrStringLength(
maxErrStringLength uint) {
if ePrefixLineLenCalc.lock == nil {
ePrefixLineLenCalc.lock = new(sync.Mutex)
}