1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Loads current text statically. Faster loading

This commit is contained in:
Zack Scholl
2016-02-08 08:37:22 -05:00
parent d8052bdb7a
commit 182389dbb1
4 changed files with 36 additions and 4 deletions

31
db.go
View File

@@ -77,6 +77,37 @@ func hasPassword(title string) (bool, error) {
return hasPassword, nil
}
func getCurrentText(title string) string {
title = strings.ToLower(title)
currentText := ""
if !open {
return currentText
}
err := db.View(func(tx *bolt.Tx) error {
var err error
b := tx.Bucket([]byte("datas"))
if b == nil {
return fmt.Errorf("db must be opened before loading!")
}
k := []byte(title)
val := b.Get(k)
if val == nil {
return nil
}
var p CowyoData
err = p.decode(val)
if err != nil {
return err
}
currentText = p.CurrentText
return nil
})
if err != nil {
fmt.Printf("Could not get CowyoData: %s", err)
}
return currentText
}
func (p *CowyoData) load(title string) error {
title = strings.ToLower(title)
if !open {