Skip to content

Commit 6e5c509

Browse files
committed
cleanup
1 parent 02061e7 commit 6e5c509

File tree

3 files changed

+38
-50
lines changed

3 files changed

+38
-50
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ go.work.sum
2424
# env file
2525
.env
2626
build/
27+
*.gob

cmd/test/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func main() {
5555
// fmt.Println(card.Name, card.Power, record.CreatedAt, record.ModifiedAt, record.AccessedAt, record.Writes, record.Reads)
5656
// }
5757

58-
for i, r := range db.RecordsModifiedSince(time.Now().Add(7 * -time.Minute)) {
58+
for i, r := range db.ModifiedSince(time.Now().Add(7 * -time.Minute)) {
5959
slog.Info("Modified since", "record", r.ModifiedAt, "index", i)
6060
}
6161

keystore.go

+36-49
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,23 @@ import (
55
"fmt"
66
"log/slog"
77
"os"
8-
"reflect"
98
"time"
109
)
1110

1211
// Collection is a key-value store
1312
type Collection[K comparable, T any] struct {
14-
// Keys is a map of keys to records
15-
Keys map[K]Record[T]
16-
// Description is a human-readable description of the collection
17-
Description string
13+
Keys map[K]Record[T] // Keys is a map of keys to records
14+
Description string // Description is a human-readable description of the collection
1815
}
1916

2017
// Record is a key-value store record
2118
type Record[T any] struct {
22-
// Value is anything worth storing
23-
Value T
24-
25-
// ContentType is string representation of the type of Value
26-
ContentType string
27-
28-
// CreatedAt is the time the record was created
29-
CreatedAt time.Time
30-
// ModifiedAt is the time the record was last modified
31-
ModifiedAt time.Time
32-
// AccessedAt is the time the record was last accessed
33-
AccessedAt time.Time
34-
35-
// Writes is the number of times the record was written
36-
Writes int
37-
// Reads is the number of times the record was read
38-
Reads int
19+
Value T // Value is anything worth storing
20+
CreatedAt time.Time // CreatedAt is the time the record was created
21+
ModifiedAt time.Time // ModifiedAt is the time the record was last modified
22+
AccessedAt time.Time // AccessedAt is the time the record was last accessed
23+
Writes int // Writes is the number of times the record was written
24+
Reads int // Reads is the number of times the record was read
3925
}
4026

4127
// NewRecord creates a new record with a value, content type, and description
@@ -44,13 +30,12 @@ type Record[T any] struct {
4430
func NewRecord[T any](value T) Record[T] {
4531
now := time.Now()
4632
return Record[T]{
47-
Value: value,
48-
ContentType: reflect.TypeOf(value).String(),
49-
CreatedAt: now,
50-
ModifiedAt: now,
51-
AccessedAt: now,
52-
Writes: 0,
53-
Reads: 0,
33+
Value: value,
34+
CreatedAt: now,
35+
ModifiedAt: now,
36+
AccessedAt: now,
37+
Writes: 0,
38+
Reads: 0,
5439
}
5540
}
5641

@@ -125,33 +110,23 @@ func (c *Collection[K, T]) Delete(key K) {
125110
// Clear the collection
126111
//
127112
// ex: db.Clear()
128-
func (c Collection[K, T]) Clear() {
113+
func (c *Collection[K, T]) Clear() {
129114
//slog.Info("Clearing collection")
130115
clear(c.Keys)
131116
}
132117

133118
// Len returns the number of records in the collection
134119
//
135120
// ex: size := db.Len()
136-
func (c Collection[K, T]) Len() int {
121+
func (c *Collection[K, T]) Len() int {
137122
//slog.Info("Getting collection size", "len", len(c.Keys))
138123
return len(c.Keys)
139124
}
140125

141-
// // All returns a sequence of all records in the collection
142-
// //
143-
// // ex: for record := range db.All() { ... }
144-
// func (c Collection[K, T]) All() iter.Seq[T] {
145-
// return func(yield func(T) bool) {
146-
// for _, record := range c.Keys {
147-
// if !yield(record) {
148-
// return
149-
// }
150-
// }
151-
// }
152-
// }
153-
154-
func (c Collection[K, T]) Save(fileName string) error {
126+
// Save the collection to a file
127+
//
128+
// ex: err := db.Save("db.gob")
129+
func (c *Collection[K, T]) Save(fileName string) error {
155130
slog.Info("Saving collection")
156131

157132
file, err := os.Create(fileName)
@@ -169,7 +144,10 @@ func (c Collection[K, T]) Save(fileName string) error {
169144
return nil
170145
}
171146

172-
func (c Collection[K, T]) Load(fileName string) error {
147+
// Load the collection from a file
148+
//
149+
// ex: err := db.Load("db.gob")
150+
func (c *Collection[K, T]) Load(fileName string) error {
173151
slog.Info("Loading collection")
174152

175153
file, err := os.Open(fileName)
@@ -188,7 +166,10 @@ func (c Collection[K, T]) Load(fileName string) error {
188166

189167
}
190168

191-
func (c Collection[K, T]) RecordsCreatedSince(time time.Time) []Record[T] {
169+
// CreatedSince returns all records created since a given time
170+
//
171+
// ex: records := db.CreatedSince(time.Now().Add(-24 * time.Hour))
172+
func (c *Collection[K, T]) CreatedSince(time time.Time) []Record[T] {
192173
var records []Record[T]
193174
for _, record := range c.Keys {
194175
if record.CreatedAt.After(time) {
@@ -198,7 +179,10 @@ func (c Collection[K, T]) RecordsCreatedSince(time time.Time) []Record[T] {
198179
return records
199180
}
200181

201-
func (c Collection[K, T]) RecordsModifiedSince(time time.Time) []Record[T] {
182+
// ModifiedSince returns all records modified since a given time
183+
//
184+
// ex: records := db.ModifiedSince(time.Now().Add(-24 * time.Hour))
185+
func (c *Collection[K, T]) ModifiedSince(time time.Time) []Record[T] {
202186
var records []Record[T]
203187
for _, record := range c.Keys {
204188
if record.ModifiedAt.After(time) {
@@ -208,7 +192,10 @@ func (c Collection[K, T]) RecordsModifiedSince(time time.Time) []Record[T] {
208192
return records
209193
}
210194

211-
func (c Collection[K, T]) RecordsAccessedSince(time time.Time) []Record[T] {
195+
// AccessedSince returns all records accessed since a given time
196+
//
197+
// ex: records := db.AccessedSince(time.Now().Add(-24 * time.Hour))
198+
func (c *Collection[K, T]) AccessedSince(time time.Time) []Record[T] {
212199
var records []Record[T]
213200
for _, record := range c.Keys {
214201
if record.AccessedAt.After(time) {

0 commit comments

Comments
 (0)