File: table.go

package info (click to toggle)
golang-github-buger-goterm 0.0%2Bgit20181115.c206103-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: makefile: 3
file content (34 lines) | stat: -rw-r--r-- 769 bytes parent folder | download | duplicates (2)
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
package goterm

import (
	"bytes"
	"text/tabwriter"
)

// Tabwriter with own buffer:
//
//     	totals := tm.NewTable(0, 10, 5, ' ', 0)
// 		fmt.Fprintf(totals, "Time\tStarted\tActive\tFinished\n")
//		fmt.Fprintf(totals, "%s\t%d\t%d\t%d\n", "All", started, started-finished, finished)
//		tm.Println(totals)
//
//  Based on http://golang.org/pkg/text/tabwriter
type Table struct {
	tabwriter.Writer

	Buf *bytes.Buffer
}

// Same as here http://golang.org/pkg/text/tabwriter/#Writer.Init
func NewTable(minwidth, tabwidth, padding int, padchar byte, flags uint) *Table {
	tbl := new(Table)
	tbl.Buf = new(bytes.Buffer)
	tbl.Init(tbl.Buf, minwidth, tabwidth, padding, padchar, flags)

	return tbl
}

func (t *Table) String() string {
	t.Flush()
	return t.Buf.String()
}