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
|
package tblfmt_test
import (
"fmt"
"log"
"os"
"github.com/xo/tblfmt"
)
// result is a simple type providing a tblfmt.ResultSet.
type result struct {
pos int
cols []string
vals [][]any
}
// Columns satisfies the tblfmt.ResultSet interface.
func (res *result) Columns() ([]string, error) {
return res.cols, nil
}
// Next satisfies the tblfmt.ResultSet interface.
func (res *result) Next() bool {
return res.pos < len(res.vals)
}
// Scan satisfies the tblfmt.ResultSet interface.
func (res *result) Scan(vals ...any) error {
for i := range vals {
x, ok := vals[i].(*any)
if !ok {
return fmt.Errorf("scan for col %d expected *interface{}, got: %T", i, vals[i])
}
*x = res.vals[res.pos][i]
}
res.pos++
return nil
}
// Err satisfies the tblfmt.ResultSet interface.
func (res *result) Err() error {
return nil
}
// Close satisfies the tblfmt.ResultSet interface.
func (res *result) Close() error {
return nil
}
// NextResultSet satisfies the tblfmt.ResultSet interface.
func (res *result) NextResultSet() bool {
return false
}
// getDatabaseResults returns a tblfmt.ResultSet, which is an interface that is
// compatible with Go's standard
func getDatabaseResults() tblfmt.ResultSet {
return &result{
cols: []string{"author_id", "name", "z"},
vals: [][]any{
{14, "a\tb\tc\td", nil},
{15, "aoeu\ntest\n", nil},
{2, "袈\t袈\t\t袈", nil},
},
}
}
func ExampleEncodeAll() {
res := getDatabaseResults()
if err := tblfmt.EncodeAll(os.Stdout, res, map[string]string{
"format": "csv",
"fieldsep": "|",
"null": "<nil>",
}); err != nil {
log.Fatal(err)
}
// Output:
// author_id,name,z
// 14,"a b c d",<nil>
// 15,"aoeu
// test
// ",<nil>
// 2,"袈 袈 袈",<nil>
}
func ExampleNewTableEncoder() {
res := getDatabaseResults()
enc, err := tblfmt.NewTableEncoder(
res,
tblfmt.WithBorder(2),
tblfmt.WithLineStyle(tblfmt.UnicodeDoubleLineStyle()),
tblfmt.WithWidths(20, 20),
tblfmt.WithSummary(tblfmt.DefaultTableSummary()),
)
if err != nil {
log.Fatal(err)
}
if err := enc.EncodeAll(os.Stdout); err != nil {
log.Fatal(err)
}
// Output:
// ╔══════════════════════╦═══════════════════════════╦═══╗
// ║ author_id ║ name ║ z ║
// ╠══════════════════════╬═══════════════════════════╬═══╣
// ║ 14 ║ a b c d ║ ║
// ║ 15 ║ aoeu ↵║ ║
// ║ ║ test ↵║ ║
// ║ ║ ║ ║
// ║ 2 ║ 袈 袈 袈 ║ ║
// ╚══════════════════════╩═══════════════════════════╩═══╝
// (3 rows)
}
func ExampleEncodeTemplateAll() {
res := getDatabaseResults()
if err := tblfmt.EncodeTemplateAll(os.Stdout, res, tblfmt.WithTemplate("html")); err != nil {
log.Fatal(err)
}
// Output:
// <table>
// <caption></caption>
// <thead>
// <tr>
// <th align="left">author_id</th>
// <th align="left">name</th>
// <th align="left">z</th>
// </tr>
// </thead>
// <tbody>
// <tr>
// <td align="right">14</td>
// <td align="left">a b c d</td>
// <td align="left"></td>
// </tr>
// <tr>
// <td align="right">15</td>
// <td align="left">aoeu
// test
// </td>
// <td align="left"></td>
// </tr>
// <tr>
// <td align="right">2</td>
// <td align="left">袈 袈 袈</td>
// <td align="left"></td>
// </tr>
// </tbody>
// </table>
}
|