mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
274 lines
5.1 KiB
Go
274 lines
5.1 KiB
Go
// Package csv provides a CSV virtual table.
|
|
//
|
|
// The CSV virtual table reads RFC 4180 formatted comma-separated values,
|
|
// and returns that content as if it were rows and columns of an SQL table.
|
|
//
|
|
// https://sqlite.org/csv.html
|
|
package csv
|
|
|
|
import (
|
|
"bufio"
|
|
"encoding/csv"
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/ncruces/go-sqlite3"
|
|
"github.com/ncruces/go-sqlite3/internal/util"
|
|
"github.com/ncruces/go-sqlite3/util/osutil"
|
|
"github.com/ncruces/go-sqlite3/util/sql3util"
|
|
)
|
|
|
|
// Register registers the CSV virtual table.
|
|
// If a filename is specified, [os.Open] is used to open the file.
|
|
func Register(db *sqlite3.Conn) error {
|
|
return RegisterFS(db, osutil.FS{})
|
|
}
|
|
|
|
// RegisterFS registers the CSV virtual table.
|
|
// If a filename is specified, fsys is used to open the file.
|
|
func RegisterFS(db *sqlite3.Conn, fsys fs.FS) error {
|
|
declare := func(db *sqlite3.Conn, _, _, _ string, arg ...string) (_ *table, err error) {
|
|
var (
|
|
filename string
|
|
data string
|
|
schema string
|
|
header bool
|
|
columns int = -1
|
|
comma rune = ','
|
|
comment rune
|
|
|
|
done = util.Set[string]{}
|
|
)
|
|
|
|
for _, arg := range arg {
|
|
key, val := sql3util.NamedArg(arg)
|
|
if done.Contains(key) {
|
|
return nil, fmt.Errorf("csv: more than one %q parameter", key)
|
|
}
|
|
switch key {
|
|
case "filename":
|
|
filename = sql3util.Unquote(val)
|
|
case "data":
|
|
data = sql3util.Unquote(val)
|
|
case "schema":
|
|
schema = sql3util.Unquote(val)
|
|
case "header":
|
|
header, err = boolArg(key, val)
|
|
case "columns":
|
|
columns, err = uintArg(key, val)
|
|
case "comma":
|
|
comma, err = runeArg(key, val)
|
|
case "comment":
|
|
comment, err = runeArg(key, val)
|
|
default:
|
|
return nil, fmt.Errorf("csv: unknown %q parameter", key)
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
done.Add(key)
|
|
}
|
|
|
|
if (filename == "") == (data == "") {
|
|
return nil, util.ErrorString(`csv: must specify either "filename" or "data" but not both`)
|
|
}
|
|
|
|
t := &table{
|
|
fsys: fsys,
|
|
name: filename,
|
|
data: data,
|
|
comma: comma,
|
|
comment: comment,
|
|
header: header,
|
|
}
|
|
|
|
if schema == "" {
|
|
var row []string
|
|
if header || columns < 0 {
|
|
csv, c, err := t.newReader()
|
|
defer c.Close()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
row, err = csv.Read()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
schema = getSchema(header, columns, row)
|
|
} else {
|
|
t.typs, err = getColumnAffinities(schema)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
err = db.DeclareVTab(schema)
|
|
if err == nil {
|
|
err = db.VTabConfig(sqlite3.VTAB_DIRECTONLY)
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return t, nil
|
|
}
|
|
|
|
return sqlite3.CreateModule(db, "csv", declare, declare)
|
|
}
|
|
|
|
type table struct {
|
|
fsys fs.FS
|
|
name string
|
|
data string
|
|
typs []affinity
|
|
comma rune
|
|
comment rune
|
|
header bool
|
|
}
|
|
|
|
func (t *table) BestIndex(idx *sqlite3.IndexInfo) error {
|
|
idx.EstimatedCost = 1e6
|
|
return nil
|
|
}
|
|
|
|
func (t *table) Open() (sqlite3.VTabCursor, error) {
|
|
return &cursor{table: t}, nil
|
|
}
|
|
|
|
func (t *table) Rename(new string) error {
|
|
return nil
|
|
}
|
|
|
|
func (t *table) Integrity(schema, table string, flags int) error {
|
|
if flags&1 != 0 {
|
|
return nil
|
|
}
|
|
csv, c, err := t.newReader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer c.Close()
|
|
_, err = csv.ReadAll()
|
|
return err
|
|
}
|
|
|
|
func (t *table) newReader() (*csv.Reader, io.Closer, error) {
|
|
var r io.Reader
|
|
var c io.Closer
|
|
if t.name != "" {
|
|
f, err := t.fsys.Open(t.name)
|
|
if err != nil {
|
|
return nil, f, err
|
|
}
|
|
|
|
buf := bufio.NewReader(f)
|
|
bom, err := buf.Peek(3)
|
|
if err != nil {
|
|
return nil, f, err
|
|
}
|
|
if string(bom) == "\xEF\xBB\xBF" {
|
|
buf.Discard(3)
|
|
}
|
|
|
|
r = buf
|
|
c = f
|
|
} else {
|
|
r = strings.NewReader(t.data)
|
|
c = io.NopCloser(r)
|
|
}
|
|
|
|
csv := csv.NewReader(r)
|
|
csv.ReuseRecord = true
|
|
csv.Comma = t.comma
|
|
csv.Comment = t.comment
|
|
return csv, c, nil
|
|
}
|
|
|
|
type cursor struct {
|
|
table *table
|
|
closer io.Closer
|
|
csv *csv.Reader
|
|
row []string
|
|
rowID int64
|
|
}
|
|
|
|
func (c *cursor) Close() (err error) {
|
|
if c.closer != nil {
|
|
err = c.closer.Close()
|
|
c.closer = nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (c *cursor) Filter(idxNum int, idxStr string, arg ...sqlite3.Value) error {
|
|
err := c.Close()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
c.csv, c.closer, err = c.table.newReader()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if c.table.header {
|
|
err = c.Next() // skip header
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
c.rowID = 0
|
|
return c.Next()
|
|
}
|
|
|
|
func (c *cursor) Next() (err error) {
|
|
c.rowID++
|
|
c.row, err = c.csv.Read()
|
|
if err != io.EOF {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *cursor) EOF() bool {
|
|
return c.row == nil
|
|
}
|
|
|
|
func (c *cursor) RowID() (int64, error) {
|
|
return c.rowID, nil
|
|
}
|
|
|
|
func (c *cursor) Column(ctx sqlite3.Context, col int) error {
|
|
if col < len(c.row) {
|
|
typ := text
|
|
if col < len(c.table.typs) {
|
|
typ = c.table.typs[col]
|
|
}
|
|
|
|
txt := c.row[col]
|
|
if txt == "" && typ != text {
|
|
return nil
|
|
}
|
|
|
|
switch typ {
|
|
case numeric, integer:
|
|
if i, err := strconv.ParseInt(txt, 10, 64); err == nil {
|
|
ctx.ResultInt64(i)
|
|
return nil
|
|
}
|
|
fallthrough
|
|
case real:
|
|
if f, ok := sql3util.ParseFloat(txt); ok {
|
|
ctx.ResultFloat(f)
|
|
return nil
|
|
}
|
|
fallthrough
|
|
default:
|
|
}
|
|
ctx.ResultText(txt)
|
|
}
|
|
return nil
|
|
}
|