boltbrowser/boltbrowser.go

54 lines
886 B
Go
Raw Normal View History

2015-05-18 14:47:08 +00:00
package main
import (
"fmt"
"os"
2015-09-17 16:49:57 +00:00
"github.com/boltdb/bolt"
"github.com/nsf/termbox-go"
2015-05-18 14:47:08 +00:00
)
2015-09-17 16:49:57 +00:00
/*
ProgramName is the name of the program
*/
var ProgramName = "boltbrowser"
2015-05-18 14:47:08 +00:00
var databaseFiles []string
2015-05-18 14:47:08 +00:00
var db *bolt.DB
var memBolt *BoltDB
2017-04-04 21:41:15 +00:00
var currentFilename string
2015-05-18 14:47:08 +00:00
func main() {
var err error
if len(os.Args) < 2 {
fmt.Printf("Usage: %s <filename(s)>\n", ProgramName)
2015-05-18 14:47:08 +00:00
os.Exit(1)
}
err = termbox.Init()
if err != nil {
panic(err)
}
defer termbox.Close()
style := defaultStyle()
termbox.SetOutputMode(termbox.Output256)
databaseFiles := os.Args[1:]
for _, databaseFile := range databaseFiles {
2017-04-04 21:41:15 +00:00
currentFilename = databaseFile
db, err = bolt.Open(databaseFile, 0600, nil)
if err != nil {
mainLoop(nil, style)
continue
}
// First things first, load the database into memory
memBolt.refreshDatabase()
mainLoop(memBolt, style)
defer db.Close()
}
}