perkeep/pkg/index/sqlindex/sqlindex.go

251 lines
5.5 KiB
Go

/*
Copyright 2012 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package sqlindex implements the sorted.KeyValue interface using an *sql.DB.
package sqlindex
import (
"database/sql"
"errors"
"fmt"
"log"
"regexp"
"sync"
"camlistore.org/pkg/leak"
"camlistore.org/pkg/sorted"
)
// Storage implements the sorted.KeyValue interface using an *sql.DB.
type Storage struct {
DB *sql.DB
// SetFunc is an optional func to use when REPLACE INTO does not exist
SetFunc func(*sql.DB, string, string) error
BatchSetFunc func(*sql.Tx, string, string) error
// PlaceHolderFunc optionally replaces ? placeholders with the right ones for the rdbms
// in use
PlaceHolderFunc func(string) string
// Serial determines whether a Go-level mutex protects DB from
// concurrent access. This isn't perfect and exists just for
// SQLite, whose driver likes to return "the database is
// locked" (camlistore.org/issue/114), so this keeps some
// pressure off. But we still trust SQLite to deal with
// concurrency in most cases.
Serial bool
mu sync.Mutex // the mutex used, if Serial is set
}
func (s *Storage) sql(v string) string {
if f := s.PlaceHolderFunc; f != nil {
return f(v)
}
return v
}
type batchTx struct {
tx *sql.Tx
err error // sticky
// SetFunc is an optional func to use when REPLACE INTO does not exist
SetFunc func(*sql.Tx, string, string) error
// PlaceHolderFunc optionally replaces ? placeholders with the right ones for the rdbms
// in use
PlaceHolderFunc func(string) string
}
func (b *batchTx) sql(v string) string {
if f := b.PlaceHolderFunc; f != nil {
return f(v)
}
return v
}
func (b *batchTx) Set(key, value string) {
if b.err != nil {
return
}
if b.SetFunc != nil {
b.err = b.SetFunc(b.tx, key, value)
return
}
_, b.err = b.tx.Exec(b.sql("REPLACE INTO rows (k, v) VALUES (?, ?)"), key, value)
}
func (b *batchTx) Delete(key string) {
if b.err != nil {
return
}
_, b.err = b.tx.Exec(b.sql("DELETE FROM rows WHERE k=?"), key)
}
func (s *Storage) BeginBatch() sorted.BatchMutation {
if s.Serial {
s.mu.Lock()
}
tx, err := s.DB.Begin()
return &batchTx{
tx: tx,
err: err,
SetFunc: s.BatchSetFunc,
PlaceHolderFunc: s.PlaceHolderFunc,
}
}
func (s *Storage) CommitBatch(b sorted.BatchMutation) error {
if s.Serial {
defer s.mu.Unlock()
}
bt, ok := b.(*batchTx)
if !ok {
return fmt.Errorf("wrong BatchMutation type %T", b)
}
if bt.err != nil {
return bt.err
}
return bt.tx.Commit()
}
func (s *Storage) Get(key string) (value string, err error) {
if s.Serial {
s.mu.Lock()
defer s.mu.Unlock()
}
err = s.DB.QueryRow(s.sql("SELECT v FROM rows WHERE k=?"), key).Scan(&value)
if err == sql.ErrNoRows {
err = sorted.ErrNotFound
}
return
}
func (s *Storage) Set(key, value string) error {
if s.Serial {
s.mu.Lock()
defer s.mu.Unlock()
}
if s.SetFunc != nil {
return s.SetFunc(s.DB, key, value)
}
_, err := s.DB.Exec(s.sql("REPLACE INTO rows (k, v) VALUES (?, ?)"), key, value)
return err
}
func (s *Storage) Delete(key string) error {
if s.Serial {
s.mu.Lock()
defer s.mu.Unlock()
}
_, err := s.DB.Exec(s.sql("DELETE FROM rows WHERE k=?"), key)
return err
}
func (s *Storage) Close() error { return s.DB.Close() }
func (s *Storage) Find(start, end string) sorted.Iterator {
if s.Serial {
s.mu.Lock()
defer s.mu.Unlock()
}
var rows *sql.Rows
var err error
if end == "" {
rows, err = s.DB.Query(s.sql("SELECT k, v FROM rows WHERE k >= ? ORDER BY k "), start)
} else {
rows, err = s.DB.Query(s.sql("SELECT k, v FROM rows WHERE k >= ? AND k < ? ORDER BY k "), start, end)
}
if err != nil {
log.Printf("unexpected query error: %v", err)
return &iter{err: err}
}
it := &iter{
s: s,
rows: rows,
closeCheck: leak.NewChecker(),
}
return it
}
var wordThenPunct = regexp.MustCompile(`^\w+\W$`)
// iter is a iterator over sorted key/value pairs in rows.
type iter struct {
s *Storage
end string // optional end bound
err error // accumulated error, returned at Close
closeCheck *leak.Checker
rows *sql.Rows // if non-nil, the rows we're reading from
key sql.RawBytes
val sql.RawBytes
skey, sval *string // if non-nil, it's been stringified
}
var errClosed = errors.New("sqlkv: Iterator already closed")
func (t *iter) KeyBytes() []byte { return t.key }
func (t *iter) Key() string {
if t.skey != nil {
return *t.skey
}
str := string(t.key)
t.skey = &str
return str
}
func (t *iter) ValueBytes() []byte { return t.val }
func (t *iter) Value() string {
if t.sval != nil {
return *t.sval
}
str := string(t.val)
t.sval = &str
return str
}
func (t *iter) Close() error {
t.closeCheck.Close()
if t.rows != nil {
t.rows.Close()
t.rows = nil
}
err := t.err
t.err = errClosed
return err
}
func (t *iter) Next() bool {
if t.err != nil {
return false
}
t.skey, t.sval = nil, nil
if !t.rows.Next() {
return false
}
t.err = t.rows.Scan(&t.key, &t.val)
if t.err != nil {
log.Printf("unexpected Scan error: %v", t.err)
return false
}
return true
}