-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtable.go
More file actions
1086 lines (922 loc) · 27.9 KB
/
table.go
File metadata and controls
1086 lines (922 loc) · 27.9 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
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
// Copyright © 2023-2026 Wei Shen <shenwei356@gmail.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package stable
import (
"bytes"
"fmt"
"io"
"math"
"strings"
"sync"
"unicode/utf8"
"github.com/mattn/go-runewidth"
)
// Align is the type of text alignment. Actually, there are only 3 values.
type Align int
const (
AlignLeft Align = iota + 1
AlignCenter
AlignRight
)
func (a Align) String() string {
switch a {
case AlignCenter:
return "center"
case AlignLeft:
return "left"
case AlignRight:
return "right"
default:
return "unknown"
}
}
// DefaultConversionTable preset a table for converting special characters.
var DefaultConversionTable = map[string]string{
"\t": " ",
"\r": "",
"\n": " ",
"\v": " ",
"\f": " ",
"\a": "",
"\b": "",
}
// Column is the configuration of a column.
type Column struct {
Header string // column name
Align Align // text align
MinWidth int // minimum width, it overrides the global MaxWidth of the table
MaxWidth int // maximum width, it overrides the global MaxWidth of the table
HumanizeNumbers bool // add comma to numbers, for example 1000 -> 1,000
}
// Table is the table struct.
type Table struct {
rows [][]string // all rows, or buffered rows of the first bufRows lines when writer is set
convTable map[string]string // a table to convert special characters
columns []Column // configuration of each column
nColumns int // the number of the header or the first row
dataAdded bool // a flag to indicate that some data is added, so calling SetHeader() is not allowed
hasHeader bool // a flag to say the table has a header
// statistics of data in rows
minWidths []int // min width of each column, the value will be updated by the column or global option
maxWidths []int // min width of each column, the value will be updated by the column or global option
widthsChecked bool // a flag to indicate whether the min/max widths of each column is checked
// global options set by users
align Align // text alignment
minWidth int // minimum width
maxWidth int // maximum width
wrapDelimiter rune // delimiter for wrapping cells
wrapDelimiterS string // the string format of wrapDelimiter
clipCell bool // clip cell instead of wrapping
clipMark string // mark for indicating the cell if clipped
humanizeNumbers bool // add comma to numbers, for example 1000 -> 1,000
// some reused datastructures, for avoiding allocate objects repeatedly
slice []string // for joining cells of each row
rotate [][]string // only for wrapping a row
wrappedRow []*[]string // juonlyst for wrapping a row
poolSlice *sync.Pool // objects pool of string slice which size is the number of columns
buf bytes.Buffer // a bytes buffer
workingLine strings.Builder
style *TableStyle // output style
// if the writer is set, the first bufRows rows will be used to determine
// the maximum width for each cell if they are not defined with MaxWidth().
writer io.Writer
hasWriter bool
bufRows int // the number of rows to determine the max/min width of each column
bufAll bool // when bufRows is 0, just buffer all data
bufRowsDumped bool
flushed bool
}
// New creates a new Table object.
func New() *Table {
t := new(Table)
t.style = StylePlain
t.convTable = DefaultConversionTable
return t
}
// --------------------------------------------------------------------------
// Style sets the output style.
// If you decide to add all rows before rendering, there's no need to call this method.
// If you want to stream the output, please call this method before adding any rows.
func (t *Table) Style(style *TableStyle) *Table {
t.style = style
return t
}
// ErrInvalidAlign means a invalid align value is given.
var ErrInvalidAlign = fmt.Errorf("stable: invalid align value")
// AlignLeft sets the global text alignment as Left.
func (t *Table) AlignLeft() *Table {
t.align = AlignLeft
return t
}
// AlignCenter sets the global text alignment as Center.
func (t *Table) AlignCenter() *Table {
t.align = AlignCenter
return t
}
// AlignRight sets the global text alignment as Right.
func (t *Table) AlignRight() *Table {
t.align = AlignRight
return t
}
// Align sets the global text alignment.
// Only three values are allowed: AlignLeft, AlignCenter, AlignRight.
func (t *Table) Align(align Align) (*Table, error) {
switch align {
case AlignLeft:
t.align = AlignLeft
case AlignCenter:
t.align = AlignCenter
case AlignRight:
t.align = AlignRight
default:
return nil, ErrInvalidAlign
}
return t, nil
}
// MinWidth sets the global minimum cell width.
func (t *Table) MinWidth(w int) *Table {
if t.maxWidth > 0 && w > t.maxWidth { // even bigger than t.maxWidth
t.minWidth = t.maxWidth
} else {
t.minWidth = w
}
return t
}
// MaxWidth sets the global maximum cell width.
func (t *Table) MaxWidth(w int) *Table {
if t.minWidth > 0 && w < t.minWidth { // even smaller than t.minWidth
t.maxWidth = t.minWidth
} else {
t.maxWidth = w
}
return t
}
// WrapDelimiter sets the delimiter for wrapping cell text.
// The default value is space.
// Note that in streaming mode (after calling SetWriter())
func (t *Table) WrapDelimiter(d rune) *Table {
if t.hasWriter && t.dataAdded {
return t
}
t.wrapDelimiter = d
t.wrapDelimiterS = string(d)
return t
}
// ClipCell sets the mark to indicate the cell is clipped.
func (t *Table) ClipCell(mark string) *Table {
t.clipCell = true
t.clipMark = mark
return t
}
// HumanizeNumbers makes the numbers more readable by adding commas to numbers. E.g., 1000 -> 1,000.
func (t *Table) HumanizeNumbers() *Table {
t.humanizeNumbers = true
return t
}
// Convert uses a custom map to replace the DefaultConversionTable for converting special characters.
func (t *Table) Convert(m map[string]string) *Table {
t.convTable = m
return t
}
// --------------------------------------------------------------------------
// ErrSetHeaderAfterDataAdded means that setting header is not allowed after some data being added.
var ErrSetHeaderAfterDataAdded = fmt.Errorf("stable: setting header is not allowed after some data being added")
// Header sets column names.
func (t *Table) Header(headers []string) (*Table, error) {
if t.dataAdded {
return nil, ErrSetHeaderAfterDataAdded
}
t.columns = make([]Column, len(headers))
for i, h := range headers {
t.columns[i] = Column{
Header: h,
}
}
t.nColumns = len(headers)
hasNonEmptyHeader := false
for _, header := range headers {
if header != "" {
hasNonEmptyHeader = true
break
}
}
t.hasHeader = hasNonEmptyHeader
return t, nil
}
// HeaderWithFormat sets column names and other configuration of the column.
func (t *Table) HeaderWithFormat(headers []Column) (*Table, error) {
if t.dataAdded {
return nil, ErrSetHeaderAfterDataAdded
}
t.columns = headers
t.nColumns = len(headers)
hasNonEmptyHeader := false
for _, header := range headers {
if header.Header != "" {
hasNonEmptyHeader = true
break
}
}
t.hasHeader = hasNonEmptyHeader
return t, nil
}
// HasHeaders tell whether the table has an available header line.
// It may return false even if you have called Header() or HeaderWithFormat(),
// when all headers are empty strings.
func (t *Table) HasHeaders() bool {
return t.hasHeader
}
// ErrUnmatchedColumnNumber means that the column number
// of the newly added row is not matched with that of previous ones.
var ErrUnmatchedColumnNumber = fmt.Errorf("stable: unmatched column number")
// parseRow convert a list of objects to string slice
func (t *Table) parseRow(row []interface{}) ([]string, error) {
_row := make([]string, len(row))
var err error
var s string
var humanizeNumbers bool
for i, v := range row {
if t.humanizeNumbers {
humanizeNumbers = true
} else {
humanizeNumbers = t.columns[i].HumanizeNumbers
}
s, err = t.convertToString(v, humanizeNumbers)
if err != nil {
return nil, err
}
_row[i] = s
}
return _row, nil
}
// checkRow checks a row.
func (t *Table) checkRow(row []interface{}) ([]string, error) {
if t.hasHeader {
if len(row) != t.nColumns {
return nil, ErrUnmatchedColumnNumber
}
} else if t.columns == nil { // no header and the t.columns is nil
t.columns = make([]Column, len(row))
for i := 0; i < len(row); i++ {
t.columns[i] = Column{}
}
t.nColumns = len(row)
} else { // no header
if len(row) != t.nColumns {
return nil, ErrUnmatchedColumnNumber
}
}
return t.parseRow(row)
}
var ErrAddRowAfterFlush = fmt.Errorf("stable: calling AddRow is not allowed after calling Flush()")
func (t *Table) AddRowStringSlice(row []string) error {
tmp := make([]interface{}, len(row))
for i, v := range row {
tmp[i] = v
}
return t.AddRow(tmp)
}
// AddRow adds a row.
func (t *Table) AddRow(row []interface{}) error {
if t.hasWriter && t.flushed {
return ErrAddRowAfterFlush
}
// just adds it to buffer
if !t.hasWriter || t.bufAll || len(t.rows) < t.bufRows {
_row, err := t.checkRow(row)
if err != nil {
return err
}
t.rows = append(t.rows, _row)
t.dataAdded = true
return nil
}
// ------------------------------------------------
style := t.style
if style == nil { // not defined in the object
style = StyleGrid
}
buf := t.buf
buf.Reset()
if t.slice == nil {
t.slice = make([]string, t.nColumns)
}
slice := t.slice
lenPad2 := len(style.Padding) * 2
var wrapped bool
var row2 *[]string
// ------------------------------------------------
if t.bufRowsDumped {
// ------------------------------------------------
// parse and check row
_row, err := t.checkRow(row)
if err != nil {
return err
}
// ------------------------------------------------
// line between rows
if style.LineBetweenRows.Visible() {
buf.WriteString(style.LineBetweenRows.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineBetweenRows.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineBetweenRows.Sep))
buf.WriteString(style.LineBetweenRows.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
// data row
wrapped = t.formatRow(_row)
if wrapped {
for _, row2 = range t.wrappedRow {
buf.WriteString(style.DataRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell((*row2)[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.DataRow.Sep))
buf.WriteString(style.DataRow.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
t.poolSlice.Put(row2)
}
} else {
buf.WriteString(style.DataRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell(_row[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.DataRow.Sep))
buf.WriteString(style.DataRow.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
return nil
}
// ------------------------------------------------
if len(t.rows) == t.bufRows {
// determine the minWidth and maxWidth
t.checkWidths()
_row, err := t.checkRow(row)
if err != nil {
return err
}
t.rows = append(t.rows, _row)
t.dataAdded = true
// write the top line
if style.LineTop.Visible() {
buf.WriteString(style.LineTop.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineTop.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineTop.Sep))
buf.WriteString(style.LineTop.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
// write the header
if t.hasHeader {
_row := make([]string, t.nColumns)
for i, c := range t.columns {
_row[i] = c.Header
}
wrapped = t.formatRow(_row)
if wrapped {
for _, row2 = range t.wrappedRow {
buf.WriteString(style.HeaderRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell((*row2)[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.HeaderRow.Sep))
buf.WriteString(style.HeaderRow.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
t.poolSlice.Put(row2)
}
} else {
buf.WriteString(style.HeaderRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell(_row[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.HeaderRow.Sep))
buf.WriteString(style.HeaderRow.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
// line belowHeader
if style.LineBelowHeader.Visible() {
buf.WriteString(style.LineBelowHeader.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineBelowHeader.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineBelowHeader.Sep))
buf.WriteString(style.LineBelowHeader.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
}
// write the rows
hasLineBetweenRows := style.LineBetweenRows.Visible()
for j, _row := range t.rows {
// line between rows
if hasLineBetweenRows && j > 0 {
buf.WriteString(style.LineBetweenRows.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineBetweenRows.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineBetweenRows.Sep))
buf.WriteString(style.LineBetweenRows.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
// data row
wrapped = t.formatRow(_row)
if wrapped {
for _, row2 = range t.wrappedRow {
buf.WriteString(style.DataRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell((*row2)[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.DataRow.Sep))
buf.WriteString(style.DataRow.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
t.poolSlice.Put(row2)
}
} else {
buf.WriteString(style.DataRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell(_row[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.DataRow.Sep))
buf.WriteString(style.DataRow.End)
buf.WriteString("\n")
t.writer.Write(buf.Bytes())
buf.Reset()
}
}
t.bufRowsDumped = true
}
return nil
}
// formatRow wraps or clips cells.
// the returned value indicate if any cells are wrapped
func (t *Table) formatRow(row []string) bool {
// -------------------------------------------------------------
// initialize some data structures
if t.rotate == nil {
t.rotate = make([][]string, t.nColumns)
for i := range t.rotate {
t.rotate[i] = make([]string, 0, 8)
}
} else {
for i := range t.rotate {
t.rotate[i] = t.rotate[i][:0]
}
}
if t.wrappedRow == nil {
t.wrappedRow = make([]*[]string, 0, 8)
} else {
t.wrappedRow = t.wrappedRow[:0]
}
if t.poolSlice == nil {
t.poolSlice = &sync.Pool{New: func() interface{} {
tmp := make([]string, t.nColumns)
return &tmp
}}
}
if t.wrapDelimiter == 0 {
t.wrapDelimiter = ' '
t.wrapDelimiterS = " "
}
// -------------------------------------------------------------
var needWrap = false
for i, c := range row {
if len(c) > t.maxWidths[i] {
needWrap = true
}
}
if !needWrap {
return false
}
// -------------------------------------------------------------
var maxWidth int
var w int
var r rune
var i, j int
var cell string
// var workingLine string
workingLine := t.workingLine
var workingLineStr string
var spacePos charPos
var lastPos charPos
lenClipMark := len(t.clipMark)
for i, cell = range row {
maxWidth = t.maxWidths[i]
if maxWidth < t.minWidth {
maxWidth = t.minWidth
}
cell = strings.Trim(cell, t.wrapDelimiterS)
if len(cell) <= maxWidth {
t.rotate[i] = append(t.rotate[i], cell)
continue
}
// ---------------------------------------------------
// clip
if t.clipCell && len(cell) > maxWidth {
if lenClipMark > maxWidth {
t.clipMark = ""
lenClipMark = len(t.clipMark)
}
t.rotate[i] = append(t.rotate[i], runewidth.Truncate(cell, maxWidth, t.clipMark))
continue
}
// ---------------------------------------------------
// wrap
// modify from https://github.com/donatj/wordwrap
// workingLine = ""
workingLine.Reset()
spacePos.pos = 0
spacePos.size = 0
lastPos.pos = 0
lastPos.size = 0
for _, r = range cell {
w = utf8.RuneLen(r)
// workingLine += string(r)
workingLine.WriteRune(r)
if r == t.wrapDelimiter {
// spacePos.pos = len(workingLine)
spacePos.pos = workingLine.Len()
spacePos.size = w
}
// if len(workingLine) >= maxWidth {
workingLineStr = workingLine.String()
if len(workingLineStr) >= maxWidth {
if spacePos.size > 0 {
// t.rotate[i] = append(t.rotate[i], workingLine[0:spacePos.pos])
t.rotate[i] = append(t.rotate[i], workingLineStr[0:spacePos.pos])
// workingLine = workingLine[spacePos.pos:]
workingLine.Reset()
workingLine.WriteString(workingLineStr[spacePos.pos:])
} else {
// f len(workingLine) > maxWidth {
if len(workingLineStr) > maxWidth {
// t.rotate[i] = append(t.rotate[i], workingLine[0:lastPos.pos])
// workingLine = workingLine[lastPos.pos:]
t.rotate[i] = append(t.rotate[i], workingLineStr[0:lastPos.pos])
workingLine.Reset()
workingLine.WriteString(workingLineStr[lastPos.pos:])
} else {
// t.rotate[i] = append(t.rotate[i], workingLine)
t.rotate[i] = append(t.rotate[i], workingLineStr)
// workingLine = ""
workingLine.Reset()
}
}
if len(t.rotate[i][len(t.rotate[i])-1]) > maxWidth {
panic("attempted to cut character, please set a bigger maxWidth")
}
spacePos.pos = 0
spacePos.size = 0
}
// lastPos.pos = len(workingLine)
lastPos.pos = len(workingLine.String())
lastPos.size = w
}
// if workingLine != "" {
if workingLine.Len() > 0 {
// t.rotate[i] = append(t.rotate[i], workingLine)
t.rotate[i] = append(t.rotate[i], workingLine.String())
}
}
var maxRow int
for _, tmp := range t.rotate {
if len(tmp) > maxRow {
maxRow = len(tmp)
}
}
var row2 *[]string
for j = 0; j < maxRow; j++ {
row2 = t.poolSlice.Get().(*[]string)
for i = 0; i < t.nColumns; i++ {
if j+1 > len(t.rotate[i]) {
(*row2)[i] = ""
} else {
(*row2)[i] = t.rotate[i][j]
}
}
t.wrappedRow = append(t.wrappedRow, row2)
}
return true
}
type charPos struct {
pos, size int
}
// formatCell formats a cell with given width and text alignment.
func (t *Table) formatCell(text string, width int, align Align) string {
a := align
if t.align > 0 { // global align
a = t.align
}
lenText := runewidth.StringWidth(text)
// here, width need to be >= len(text)
if lenText > width {
panic("wrapping/clipping method error, please contact the author")
}
var out string
switch a {
case AlignCenter:
n := (width - lenText) / 2
out = strings.Repeat(" ", n) + text + strings.Repeat(" ", width-lenText-n)
case AlignLeft:
out = text + strings.Repeat(" ", width-lenText)
case AlignRight:
out = strings.Repeat(" ", width-lenText) + text
default:
out = text + strings.Repeat(" ", width-lenText)
}
return out
}
// Render render all data with give style.
func (t *Table) Render(style *TableStyle) []byte {
if style == nil { // the argument not given
style = t.style
}
if style == nil { // not defined in the object
style = StyleGrid
}
buf := t.buf
buf.Reset()
if t.slice == nil {
t.slice = make([]string, t.nColumns)
}
slice := t.slice
lenPad2 := len(style.Padding) * 2
var wrapped bool
// determine the minWidth and maxWidth
t.checkWidths()
// write the top line
if style.LineTop.Visible() {
buf.WriteString(style.LineTop.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineTop.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineTop.Sep))
buf.WriteString(style.LineTop.End)
buf.WriteString("\n")
}
// write the header
var row2 *[]string
if t.hasHeader {
_row := make([]string, t.nColumns)
for i, c := range t.columns {
_row[i] = c.Header
}
wrapped = t.formatRow(_row)
if wrapped {
for _, row2 = range t.wrappedRow {
buf.WriteString(style.HeaderRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell((*row2)[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.HeaderRow.Sep))
buf.WriteString(style.HeaderRow.End)
buf.WriteString("\n")
t.poolSlice.Put(row2)
}
} else {
buf.WriteString(style.HeaderRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell(_row[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.HeaderRow.Sep))
buf.WriteString(style.HeaderRow.End)
buf.WriteString("\n")
}
// line belowHeader
if style.LineBelowHeader.Visible() {
buf.WriteString(style.LineBelowHeader.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineBelowHeader.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineBelowHeader.Sep))
buf.WriteString(style.LineBelowHeader.End)
buf.WriteString("\n")
}
}
// write the rows
hasLineBetweenRows := style.LineBetweenRows.Visible()
for j, _row := range t.rows {
// line between rows
if hasLineBetweenRows && j > 0 {
buf.WriteString(style.LineBetweenRows.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineBetweenRows.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineBetweenRows.Sep))
buf.WriteString(style.LineBetweenRows.End)
buf.WriteString("\n")
}
// data row
wrapped = t.formatRow(_row)
if wrapped {
for _, row2 = range t.wrappedRow {
buf.WriteString(style.DataRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell((*row2)[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.DataRow.Sep))
buf.WriteString(style.DataRow.End)
buf.WriteString("\n")
t.poolSlice.Put(row2)
}
} else {
buf.WriteString(style.DataRow.Begin)
for i, M := range t.maxWidths {
slice[i] = style.Padding + t.formatCell(_row[i], M, t.columns[i].Align) + style.Padding
}
buf.WriteString(strings.Join(slice, style.DataRow.Sep))
buf.WriteString(style.DataRow.End)
buf.WriteString("\n")
}
}
// bottom line
if style.LineBottom.Visible() {
buf.WriteString(style.LineBottom.Begin)
for i, M := range t.maxWidths {
slice[i] = strings.Repeat(style.LineBottom.Hline, M+lenPad2)
}
buf.WriteString(strings.Join(slice, style.LineBottom.Sep))
buf.WriteString(style.LineBottom.End)
buf.WriteString("\n")
}
return buf.Bytes()
}
// ErrNoDataAdded means not data is added. Not used.
var ErrNoDataAdded = fmt.Errorf("stable: no data added")
// checkWidths determine the minimum and maximum widths of each column.
func (t *Table) checkWidths() error {
// if t.hasHeader && !t.dataAdded {
// return ErrNoDataAdded
// }
t.minWidths = make([]int, t.nColumns)
for i := range t.minWidths {
t.minWidths[i] = math.MaxInt
}
t.maxWidths = make([]int, t.nColumns)
hasUnicodes := make([]bool, t.nColumns)
var i, l int
var c Column
if t.hasHeader {
for i, c = range t.columns {
l = len(c.Header)
if l > t.maxWidths[i] {
t.maxWidths[i] = l
}
if l < t.minWidths[i] {
t.minWidths[i] = l
}
if !hasUnicodes[i] && hasUnicode(c.Header) {
hasUnicodes[i] = true
}
}
}
var v string
for _, row := range t.rows {
for i, v = range row {
l = len(v)
if l > t.maxWidths[i] {
t.maxWidths[i] = l
}
if l < t.minWidths[i] {
t.minWidths[i] = l
}
if !hasUnicodes[i] && hasUnicode(v) {
hasUnicodes[i] = true
}
}
}
for i, c := range t.columns {
// use user-defined global threshold
// only if it is larger than the length of the shortest text
if t.minWidth > 0 && t.minWidth > t.minWidths[i] {
t.minWidths[i] = t.minWidth
}
// use user-defined column threshold
// only if it is larger than the length of the shortest text or the global threshold
if c.MinWidth > 0 && c.MinWidth > t.minWidths[i] {
t.minWidths[i] = c.MinWidth
}
// use user-defined global threshold
// only if it is smaller than the length of the shortest text
if t.maxWidth > 0 && t.maxWidth < t.maxWidths[i] {
t.maxWidths[i] = t.maxWidth
}
// use user-defined column threshold
// only if it is smaller than the length of the shortest text or the global threshold
if c.MaxWidth > 0 && c.MaxWidth < t.maxWidths[i] {
t.maxWidths[i] = c.MaxWidth
}
// Make sure t.maxWidths[i] is >= t.minWidths[i]
if t.maxWidths[i] < t.minWidths[i] {
// t.maxWidths[i] will be the final column width to format the column
t.maxWidths[i] = t.minWidths[i]
}
if hasUnicodes[i] && t.maxWidths[i] < 3 {
t.maxWidths[i] = 3
}
// fmt.Printf("coloumn %d: min-width: %d, max-width: %d\n",