@@ -5,37 +5,23 @@ import (
5
5
"fmt"
6
6
"log/slog"
7
7
"os"
8
- "reflect"
9
8
"time"
10
9
)
11
10
12
11
// Collection is a key-value store
13
12
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
18
15
}
19
16
20
17
// Record is a key-value store record
21
18
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
39
25
}
40
26
41
27
// NewRecord creates a new record with a value, content type, and description
@@ -44,13 +30,12 @@ type Record[T any] struct {
44
30
func NewRecord [T any ](value T ) Record [T ] {
45
31
now := time .Now ()
46
32
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 ,
54
39
}
55
40
}
56
41
@@ -125,33 +110,23 @@ func (c *Collection[K, T]) Delete(key K) {
125
110
// Clear the collection
126
111
//
127
112
// ex: db.Clear()
128
- func (c Collection [K , T ]) Clear () {
113
+ func (c * Collection [K , T ]) Clear () {
129
114
//slog.Info("Clearing collection")
130
115
clear (c .Keys )
131
116
}
132
117
133
118
// Len returns the number of records in the collection
134
119
//
135
120
// ex: size := db.Len()
136
- func (c Collection [K , T ]) Len () int {
121
+ func (c * Collection [K , T ]) Len () int {
137
122
//slog.Info("Getting collection size", "len", len(c.Keys))
138
123
return len (c .Keys )
139
124
}
140
125
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 {
155
130
slog .Info ("Saving collection" )
156
131
157
132
file , err := os .Create (fileName )
@@ -169,7 +144,10 @@ func (c Collection[K, T]) Save(fileName string) error {
169
144
return nil
170
145
}
171
146
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 {
173
151
slog .Info ("Loading collection" )
174
152
175
153
file , err := os .Open (fileName )
@@ -188,7 +166,10 @@ func (c Collection[K, T]) Load(fileName string) error {
188
166
189
167
}
190
168
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 ] {
192
173
var records []Record [T ]
193
174
for _ , record := range c .Keys {
194
175
if record .CreatedAt .After (time ) {
@@ -198,7 +179,10 @@ func (c Collection[K, T]) RecordsCreatedSince(time time.Time) []Record[T] {
198
179
return records
199
180
}
200
181
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 ] {
202
186
var records []Record [T ]
203
187
for _ , record := range c .Keys {
204
188
if record .ModifiedAt .After (time ) {
@@ -208,7 +192,10 @@ func (c Collection[K, T]) RecordsModifiedSince(time time.Time) []Record[T] {
208
192
return records
209
193
}
210
194
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 ] {
212
199
var records []Record [T ]
213
200
for _ , record := range c .Keys {
214
201
if record .AccessedAt .After (time ) {
0 commit comments