Skip to content

Commit

Permalink
Source file refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
agrison committed Feb 24, 2016
1 parent 2056ffa commit bbe9ef4
Show file tree
Hide file tree
Showing 12 changed files with 937 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tablib_csv.go
@@ -0,0 +1,37 @@
package tablib

import (
"bytes"
"encoding/csv"
)

// CSV returns a CSV representation of the Dataset as string.
func (d *Dataset) CSV() (string, error) {
records := d.Records()
var b bytes.Buffer

w := csv.NewWriter(&b)
w.WriteAll(records) // calls Flush internally

if err := w.Error(); err != nil {
return "", err
}

return b.String(), nil
}

// TSV returns a TSV representation of the Dataset as string.
func (d *Dataset) TSV() (string, error) {
records := d.Records()
var b bytes.Buffer

w := csv.NewWriter(&b)
w.Comma = '\t'
w.WriteAll(records) // calls Flush internally

if err := w.Error(); err != nil {
return "", err
}

return b.String(), nil
}
54 changes: 54 additions & 0 deletions tablib_databook.go
@@ -0,0 +1,54 @@
package tablib

// Sheet represents a sheet in a Databook, holding a title (if any) and a dataset.
type Sheet struct {
title string
dataset *Dataset
}

// Title return the title of the sheet.
func (s Sheet) Title() string {
return s.title
}

// Dataset returns the dataset of the sheet.
func (s Sheet) Dataset() *Dataset {
return s.dataset
}

// Databook represents a Databook which is an array of sheets.
type Databook struct {
sheets map[string]Sheet
}

// NewDatabook constructs a new Databook.
func NewDatabook() *Databook {
return &Databook{make(map[string]Sheet)}
}

// Sheets returns the sheets in the Databook.
func (d *Databook) Sheets() map[string]Sheet {
return d.sheets
}

// Sheet returns the sheet with a specific title.
func (d *Databook) Sheet(title string) Sheet {
return d.sheets[title]
}

// AddSheet adds a sheet to the Databook.
func (d *Databook) AddSheet(title string, dataset *Dataset) {
d.sheets[title] = Sheet{title, dataset}
}

// Size returns the number of sheets in the Databook.
func (d *Databook) Size() int {
return len(d.sheets)
}

// Wipe removes all Dataset objects from the Databook.
func (d *Databook) Wipe() {
for k := range d.sheets {
delete(d.sheets, k)
}
}

0 comments on commit bbe9ef4

Please sign in to comment.