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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// Package memstore implements in-memory storage for atlas.
package memstore
import (
"bytes"
"compress/gzip"
"crypto/sha256"
"io"
"strings"
"sync"
"github.com/pg9182/atlas/pkg/api/api0"
)
// AccountStore stores accounts in-memory.
type AccountStore struct {
accounts sync.Map
}
// NewPdataStore creates a new MemoryPdataStore.
func NewAccountStore() *AccountStore {
return &AccountStore{}
}
func (m *AccountStore) GetUIDsByUsername(username string) ([]uint64, error) {
var uids []uint64
if username != "" {
m.accounts.Range(func(_, v any) bool {
if u := v.(api0.Account); strings.EqualFold(u.Username, username) {
uids = append(uids, u.UID)
}
return true
})
}
return uids, nil
}
func (m *AccountStore) GetAccount(uid uint64) (*api0.Account, error) {
v, ok := m.accounts.Load(uid)
if !ok {
return nil, nil
}
a := v.(api0.Account)
return &a, nil
}
func (m *AccountStore) SaveAccount(a *api0.Account) error {
if a != nil {
m.accounts.Store(a.UID, *a)
}
return nil
}
// PdataStore stores pdata in-memory, with optional compression.
type PdataStore struct {
gzip bool
pdata sync.Map
}
type pdataStoreEntry struct {
Hash [sha256.Size]byte
Data []byte
}
// NewPdataStore creates a new MemoryPdataStore.
func NewPdataStore(compress bool) *PdataStore {
return &PdataStore{
gzip: compress,
}
}
func (m *PdataStore) GetPdataHash(uid uint64) ([sha256.Size]byte, bool, error) {
v, ok := m.pdata.Load(uid)
if !ok {
return [sha256.Size]byte{}, ok, nil
}
return v.(pdataStoreEntry).Hash, ok, nil
}
func (m *PdataStore) GetPdataCached(uid uint64, sha [sha256.Size]byte) ([]byte, bool, error) {
v, ok := m.pdata.Load(uid)
if !ok {
return nil, ok, nil
}
e := v.(pdataStoreEntry)
if sha != [sha256.Size]byte{} && sha == e.Hash {
return nil, ok, nil
}
var b []byte
if m.gzip {
r, err := gzip.NewReader(bytes.NewReader(e.Data))
if err != nil {
return nil, ok, err
}
b, err = io.ReadAll(r)
if err != nil {
return nil, ok, err
}
} else {
b = make([]byte, len(e.Data))
copy(b, e.Data)
}
return b, ok, nil
}
func (m *PdataStore) SetPdata(uid uint64, buf []byte) error {
var b []byte
if m.gzip {
var f bytes.Buffer
w := gzip.NewWriter(&f)
if _, err := w.Write(buf); err != nil {
return err
}
if err := w.Close(); err != nil {
return err
}
b = f.Bytes()
} else {
b = make([]byte, len(buf))
copy(b, buf)
}
m.pdata.Store(uid, pdataStoreEntry{
Hash: sha256.Sum256(buf),
Data: b,
})
return nil
}
|