summaryrefslogtreecommitdiff
path: root/vendor/github.com/buger/goterm/table.go
blob: d8dae55ceec6bf6b5a458b280dbe4ed09dcad079 (plain)
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()
}