-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Text Format, which has 1 Column per line.
- Loading branch information
Showing
6 changed files
with
206 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package trdsql | ||
|
||
import ( | ||
"bufio" | ||
"io" | ||
"strings" | ||
) | ||
|
||
// TextReader provides a reader for text format. | ||
type TextReader struct { | ||
reader *bufio.Reader | ||
num int | ||
maxNum int | ||
} | ||
|
||
// NewTextReader returns a new TextReader. | ||
func NewTextReader(reader io.Reader, opts *ReadOpts) (*TextReader, error) { | ||
r := &TextReader{ | ||
reader: bufio.NewReader(reader), | ||
} | ||
|
||
if opts.InSkip > 0 { | ||
skipRead(r, opts.InSkip) | ||
} | ||
|
||
if opts.InLimitRead { | ||
r.maxNum = opts.InPreRead | ||
} | ||
return r, nil | ||
} | ||
|
||
// Names returns column names. | ||
func (r *TextReader) Names() ([]string, error) { | ||
return []string{"text"}, nil | ||
} | ||
|
||
// Types returns column types. | ||
func (r *TextReader) Types() ([]string, error) { | ||
return []string{"text"}, nil | ||
} | ||
|
||
// PreReadRow returns pre-read rows. | ||
func (r *TextReader) PreReadRow() [][]any { | ||
return nil | ||
} | ||
|
||
// ReadRow reads a row. | ||
func (r *TextReader) ReadRow([]any) ([]any, error) { | ||
var builder strings.Builder | ||
for { | ||
if r.maxNum > 0 && r.num >= r.maxNum { | ||
return []any{""}, io.EOF | ||
} | ||
line, isPrefix, err := r.reader.ReadLine() | ||
if err != nil { | ||
return []any{""}, err | ||
} | ||
builder.Write(line) | ||
if isPrefix { | ||
continue | ||
} | ||
r.num++ | ||
return []any{builder.String()}, nil | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
package trdsql | ||
|
||
import ( | ||
"io" | ||
"path/filepath" | ||
"reflect" | ||
"strings" | ||
"testing" | ||
) | ||
|
||
func TestNewTextReader(t *testing.T) { | ||
type args struct { | ||
reader io.Reader | ||
opts *ReadOpts | ||
} | ||
tests := []struct { | ||
name string | ||
args args | ||
}{ | ||
{ | ||
name: "test1", | ||
args: args{ | ||
reader: strings.NewReader("a\nb\nc\n"), | ||
opts: NewReadOpts(), | ||
}, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
got, err := NewTextReader(tt.args.reader, tt.args.opts) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
names, err := got.Names() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if !reflect.DeepEqual(names, []string{"text"}) { | ||
t.Errorf("TextReader.Names() != text %v", names) | ||
} | ||
types, err := got.Types() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if !reflect.DeepEqual(types, []string{"text"}) { | ||
t.Errorf("TextReader.Types() != text %v", types) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestTextReaderFile(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
fileName string | ||
opts *ReadOpts | ||
want []any | ||
wantErr bool | ||
}{ | ||
{ | ||
name: "test.csv", | ||
fileName: "test.csv", | ||
opts: NewReadOpts(), | ||
want: []any{"1,Orange"}, | ||
wantErr: false, | ||
}, | ||
{ | ||
name: "test.csv2", | ||
fileName: "test.csv", | ||
opts: &ReadOpts{InSkip: 1}, | ||
want: []any{"2,Melon"}, | ||
wantErr: false, | ||
}, | ||
{ | ||
name: "test.csv3", | ||
fileName: "test.csv", | ||
opts: &ReadOpts{InLimitRead: true, InPreRead: 1}, | ||
want: []any{"1,Orange"}, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
file, err := singleFileOpen(filepath.Join(dataDir, tt.fileName)) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
r, err := NewTextReader(file, tt.opts) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
got, err := r.ReadRow(nil) | ||
if (err != nil) != tt.wantErr { | ||
t.Errorf("TextReader.ReadRow() error = %v, wantErr %v", err, tt.wantErr) | ||
return | ||
} | ||
if !reflect.DeepEqual(got, tt.want) { | ||
t.Errorf("TextReader.ReadRow() = %v, want %v", got, tt.want) | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters