Set experimental option ExistDir
This commit is contained in:
parent
94c595be43
commit
9be99d20fb
10
scribble.go
10
scribble.go
@ -35,8 +35,11 @@ type (
|
||||
}
|
||||
)
|
||||
|
||||
// Options uses for specification of working golang-scribble
|
||||
type Options struct {
|
||||
Logger
|
||||
// ExistDir not creates new directory before start
|
||||
ExistDir bool
|
||||
}
|
||||
|
||||
// New creates a new scribble database at the desired directory location, and
|
||||
@ -53,7 +56,8 @@ func New(dir string, opt *Options) (driver *Driver, err error) {
|
||||
|
||||
// ensure the database location doesn't already exist (we don't want to overwrite
|
||||
// any existing files/database)
|
||||
if _, err := os.Stat(dir); err == nil {
|
||||
_, err = os.Stat(dir)
|
||||
if err == nil && !options.ExistDir {
|
||||
fmt.Printf("Unable to create database, '%s' already exists. Please specify a different location.\n", dir)
|
||||
os.Exit(1)
|
||||
}
|
||||
@ -72,6 +76,10 @@ func New(dir string, opt *Options) (driver *Driver, err error) {
|
||||
|
||||
options.Logger.Info("Creating scribble database at '%v'...\n", dir)
|
||||
|
||||
//
|
||||
if options.ExistDir && err == nil {
|
||||
return driver, nil
|
||||
}
|
||||
// create database
|
||||
return driver, os.MkdirAll(dir, 0755)
|
||||
}
|
||||
|
@ -48,6 +48,14 @@ func TestNew(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
// Checking opening exist dir
|
||||
func TestNewExist(t *testing.T) {
|
||||
var err error
|
||||
if db, err = New(database, &Options{ExistDir: true}); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func TestWriteAndRead(t *testing.T) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user