-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersistenceSvc.go
69 lines (61 loc) · 1.66 KB
/
persistenceSvc.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
package cleantone
import (
"errors"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strconv"
"strings"
)
type PersistenceSvc interface {
WriteData(key string, value string) error
BuildIndex() (map[string]string, error)
Prune(index map[string]string) error
RotateFile() error
Flush() error
Close() error
}
func newPersistenceSvc(format DataFormatImpl, dataPath string, rotateThreshold int) (PersistenceSvc, error) {
if format == DataFormat.CSV {
impl, err := newCsvImpl(format, dataPath, rotateThreshold)
if err != nil {
return nil, err
}
return impl, err
} else if format == DataFormat.JSON {
}
errMsg := fmt.Sprintf("Format %s not supported", format)
return nil, errors.New(errMsg)
}
type baseImpl struct {
File *os.File
FileID int
FileSize int64
DataPath string
Format DataFormatImpl
RotateThreshold int
}
func initDataFile(dataPath string, extension string) (*os.File, int, error) {
files, _ := ioutil.ReadDir(dataPath)
fileID := 0
var currDbFile *os.File
var err error
if len(files) == 0 {
filePath := fmt.Sprintf("%s/data_%d.%s", dataPath, fileID, extension)
currDbFile, err = os.OpenFile(filePath, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0644)
} else {
latestFileName := files[len(files)-1].Name()
fileID, _ = strconv.Atoi(strings.Split(latestFileName, "_")[1])
filePath := filepath.Join(dataPath, latestFileName)
currDbFile, err = os.OpenFile(filePath, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0644)
}
if err != nil {
return nil, 0, err
}
return currDbFile, fileID, nil
}
func (c *baseImpl) generateDataFileName(id int) string {
name := fmt.Sprintf("data_%d.%s", id, c.Format)
return name
}