Minor refactor.

pull/34/head
Ben Johnson 2014-02-28 15:13:00 -07:00
parent 9abced434f
commit 956453b69f
6 changed files with 26 additions and 32 deletions

View File

@ -1,12 +0,0 @@
package bolt
import "fmt"
// TODO(benbjohnson): Remove assertions before release.
// _assert will panic with a given formatted message if the given condition is false.
func _assert(condition bool, msg string, v ...interface{}) {
if !condition {
panic(fmt.Sprintf("assertion failed: "+msg, v...))
}
}

16
bolt.go
View File

@ -1,6 +1,7 @@
package bolt
import (
"fmt"
"os"
)
@ -13,3 +14,18 @@ func Open(path string, mode os.FileMode) (*DB, error) {
}
return db, nil
}
// _assert will panic with a given formatted message if the given condition is false.
func _assert(condition bool, msg string, v ...interface{}) {
if !condition {
panic(fmt.Sprintf("assertion failed: "+msg, v...))
}
}
func warn(v ...interface{}) {
fmt.Fprintln(os.Stderr, v...)
}
func warnf(msg string, v ...interface{}) {
fmt.Fprintf(os.Stderr, msg+"\n", v...)
}

View File

@ -16,9 +16,7 @@ type Cursor struct {
// First moves the cursor to the first item in the bucket and returns its key and value.
// If the bucket is empty then a nil key and value are returned.
func (c *Cursor) First() (key []byte, value []byte) {
if len(c.stack) > 0 {
c.stack = c.stack[:0]
}
c.stack = c.stack[:0]
p := c.transaction.page(c.root)
c.stack = append(c.stack, pageElementRef{page: p, index: 0})
c.first()
@ -28,9 +26,7 @@ func (c *Cursor) First() (key []byte, value []byte) {
// Last moves the cursor to the last item in the bucket and returns its key and value.
// If the bucket is empty then a nil key and value are returned.
func (c *Cursor) Last() (key []byte, value []byte) {
if len(c.stack) > 0 {
c.stack = c.stack[:0]
}
c.stack = c.stack[:0]
p := c.transaction.page(c.root)
c.stack = append(c.stack, pageElementRef{page: p, index: p.count - 1})
c.last()

View File

@ -334,6 +334,13 @@ func TestDBMmapSize(t *testing.T) {
assert.Equal(t, db.mmapSize(1<<30), 1<<31)
}
// Ensure that a database can return a string representation of itself.
func TestDBString(t *testing.T) {
db := &DB{path: "/tmp/foo"}
assert.Equal(t, db.String(), `DB<"/tmp/foo">`)
assert.Equal(t, db.GoString(), `bolt.DB{path:"/tmp/foo"}`)
}
// withDB executes a function with a database reference.
func withDB(fn func(*DB, string)) {
f, _ := ioutil.TempFile("", "bolt-")

View File

@ -29,6 +29,7 @@ func init() {
flag.IntVar(&qmaxvsize, "quick.maxvsize", 1024, "")
flag.Parse()
warn("seed:", qseed)
warnf("quick settings: count=%v, items=%v, ksize=%v, vsize=%v", qcount, qmaxitems, qmaxksize, qmaxvsize)
}
func qconfig() *quick.Config {

14
warn.go
View File

@ -1,14 +0,0 @@
package bolt
import (
"fmt"
"os"
)
func warn(v ...interface{}) {
fmt.Fprintln(os.Stderr, v...)
}
func warnf(msg string, v ...interface{}) {
fmt.Fprintf(os.Stderr, msg+"\n", v...)
}