-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstorage.go
71 lines (56 loc) · 1.2 KB
/
storage.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package bitcoinwalletwatcher
import (
"encoding/json"
"io/ioutil"
"os"
)
// InfoFile is the information file
type InfoFile struct {
CurrentBlock int `json:"current_block"`
}
const (
// DefaultInfoFilePath represents the information file path
DefaultInfoFilePath = ".info"
// DefaultCurrentBlock represents the genesis block of bitcoin network
DefaultCurrentBlock = 0
)
var filepath = DefaultInfoFilePath
// NewInfoStorage creates new info storage
func NewInfoStorage(path string) (*InfoFile, error) {
if path != "" {
filepath = path
}
var info *InfoFile
b, _ := ioutil.ReadFile(path)
if len(b) > 0 {
if err := json.Unmarshal(b, &info); err != nil {
return nil, err
}
}
if info == nil {
info = &InfoFile{
CurrentBlock: DefaultCurrentBlock,
}
}
return info, nil
}
// Update updates details
func (i *InfoFile) Update(block int) error {
i.CurrentBlock = block
return nil
}
// Save saves the info file to the storage
func (i *InfoFile) Save() error {
f, err := os.OpenFile(filepath, os.O_CREATE|os.O_WRONLY, os.ModePerm)
if err != nil {
return err
}
b, _ := json.Marshal(i)
if err != nil {
return err
}
if _, err = f.Write(b); err != nil {
return err
}
return nil
}