-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsqlite.go
More file actions
486 lines (404 loc) · 12.6 KB
/
sqlite.go
File metadata and controls
486 lines (404 loc) · 12.6 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
package store
import (
"context"
"database/sql"
"fmt"
"log/slog"
"os"
"path/filepath"
"strings"
"time"
"github.com/brunoscheufler/gopherconuk25/util"
"github.com/google/uuid"
_ "modernc.org/sqlite"
)
type sqliteAccountStore struct {
db *sql.DB
}
func (s *sqliteAccountStore) ListAccounts(ctx context.Context) ([]Account, error) {
query := `SELECT id, name, is_migrating, shard FROM accounts`
var rows *sql.Rows
err := util.Retry(ctx, defaultRetryConfig, func() error {
var queryErr error
rows, queryErr = s.db.QueryContext(ctx, query)
return queryErr
})
if err != nil {
return nil, fmt.Errorf("failed to query accounts: %w", err)
}
defer rows.Close()
var accounts []Account
for rows.Next() {
var account Account
var idStr string
var shardStr *string
err := rows.Scan(&idStr, &account.Name, &account.IsMigrating, &shardStr)
if err != nil {
return nil, fmt.Errorf("failed to scan account: %w", err)
}
account.Shard = shardStr
if err != nil {
return nil, fmt.Errorf("failed to scan account: %w", err)
}
account.ID, err = uuid.Parse(idStr)
if err != nil {
return nil, fmt.Errorf("failed to parse account ID: %w", err)
}
accounts = append(accounts, account)
}
if err := rows.Err(); err != nil {
return nil, fmt.Errorf("row iteration error: %w", err)
}
return accounts, nil
}
func (s *sqliteAccountStore) GetAccount(ctx context.Context, accountID uuid.UUID) (*Account, error) {
query := `SELECT id, name, is_migrating, shard FROM accounts WHERE id = ?`
var account Account
var idStr string
var shardStr *string
err := util.Retry(ctx, defaultRetryConfig, func() error {
row := s.db.QueryRowContext(ctx, query, accountID.String())
return row.Scan(&idStr, &account.Name, &account.IsMigrating, &shardStr)
})
if err != nil {
if err == sql.ErrNoRows {
return nil, ErrAccountNotFound
}
return nil, fmt.Errorf("failed to scan account: %w", err)
}
account.ID, err = uuid.Parse(idStr)
if err != nil {
return nil, fmt.Errorf("failed to parse account ID: %w", err)
}
account.Shard = shardStr
if err != nil {
if err == sql.ErrNoRows {
return nil, ErrAccountNotFound
}
return nil, fmt.Errorf("failed to scan account: %w", err)
}
account.ID, err = uuid.Parse(idStr)
if err != nil {
return nil, fmt.Errorf("failed to parse account ID: %w", err)
}
return &account, nil
}
func (s *sqliteAccountStore) CreateAccount(ctx context.Context, a Account) error {
query := `INSERT INTO accounts (id, name, is_migrating, shard) VALUES (?, ?, ?, ?)`
err := util.Retry(ctx, defaultRetryConfig, func() error {
_, execErr := s.db.ExecContext(ctx, query, a.ID.String(), a.Name, a.IsMigrating, a.Shard)
return execErr
})
if err != nil {
return fmt.Errorf("failed to create account: %w", err)
}
return nil
}
func (s *sqliteAccountStore) UpdateAccount(ctx context.Context, a Account) error {
query := `UPDATE accounts SET name = ?, is_migrating = ?, shard = ? WHERE id = ?`
var result sql.Result
err := util.Retry(ctx, defaultRetryConfig, func() error {
var execErr error
result, execErr = s.db.ExecContext(ctx, query, a.Name, a.IsMigrating, a.Shard, a.ID.String())
return execErr
})
if err != nil {
return fmt.Errorf("failed to update account: %w", err)
}
rowsAffected, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("failed to get rows affected: %w", err)
}
if rowsAffected == 0 {
return ErrAccountNotFound
}
return nil
}
func (s *sqliteAccountStore) HealthCheck(ctx context.Context) error {
// Simple ping query to check database connectivity
return s.db.PingContext(ctx)
}
type sqliteNoteStore struct {
logger *slog.Logger
db *sql.DB
}
func (s *sqliteNoteStore) ListNotes(ctx context.Context, accountID uuid.UUID) ([]uuid.UUID, error) {
query := `SELECT id FROM notes WHERE creator = ?`
var rows *sql.Rows
err := util.Retry(ctx, defaultRetryConfig, func() error {
var queryErr error
rows, queryErr = s.db.QueryContext(ctx, query, accountID.String())
return queryErr
})
if err != nil {
return nil, fmt.Errorf("failed to query notes: %w", err)
}
defer rows.Close()
var notes []uuid.UUID
for rows.Next() {
var idStr string
err := rows.Scan(&idStr)
if err != nil {
return nil, fmt.Errorf("failed to scan note: %w", err)
}
noteID, err := uuid.Parse(idStr)
if err != nil {
return nil, fmt.Errorf("failed to parse note ID: %w", err)
}
notes = append(notes, noteID)
}
if err := rows.Err(); err != nil {
return nil, fmt.Errorf("row iteration error: %w", err)
}
return notes, nil
}
func (s *sqliteNoteStore) GetNote(ctx context.Context, accountID, noteID uuid.UUID) (*Note, error) {
query := `SELECT id, creator, created_at, updated_at, content FROM notes WHERE id = ? AND creator = ?`
var note Note
var idStr, creatorStr string
var createdAtMillis, updatedAtMillis int64
err := util.Retry(ctx, defaultRetryConfig, func() error {
row := s.db.QueryRowContext(ctx, query, noteID.String(), accountID.String())
return row.Scan(&idStr, &creatorStr, &createdAtMillis, &updatedAtMillis, ¬e.Content)
})
if err != nil {
if err == sql.ErrNoRows {
return nil, nil
}
return nil, fmt.Errorf("failed to scan note: %w", err)
}
note.ID, err = uuid.Parse(idStr)
if err != nil {
return nil, fmt.Errorf("failed to parse note ID: %w", err)
}
note.Creator, err = uuid.Parse(creatorStr)
if err != nil {
return nil, fmt.Errorf("failed to parse creator ID: %w", err)
}
note.CreatedAt = time.UnixMilli(createdAtMillis)
note.UpdatedAt = time.UnixMilli(updatedAtMillis)
return ¬e, nil
}
func (s *sqliteNoteStore) CreateNote(ctx context.Context, accountID uuid.UUID, note Note) error {
query := `INSERT INTO notes (id, creator, created_at, updated_at, content) VALUES (?, ?, ?, ?, ?)`
s.logger.Debug("creating note",
"id", note.ID.String(),
"created_at", note.CreatedAt.Format(time.StampMilli),
"creator", note.Creator.String(),
)
err := util.Retry(ctx, defaultRetryConfig, func() error {
_, execErr := s.db.ExecContext(ctx, query, note.ID.String(), accountID.String(), note.CreatedAt.UnixMilli(), note.UpdatedAt.UnixMilli(), note.Content)
return execErr
})
if err != nil {
return fmt.Errorf("failed to create note: %w", err)
}
return nil
}
func (s *sqliteNoteStore) UpdateNote(ctx context.Context, accountID uuid.UUID, note Note) error {
query := `UPDATE notes SET content = ?, updated_at = ? WHERE id = ? AND creator = ? AND updated_at < ?`
s.logger.Debug("updating note",
"id", note.ID.String(),
"updated_at", note.UpdatedAt.Format(time.StampMilli),
"creator", note.Creator.String(),
)
err := util.Retry(ctx, defaultRetryConfig, func() error {
var execErr error
_, execErr = s.db.ExecContext(ctx, query,
note.Content,
note.UpdatedAt.UnixMilli(),
note.ID.String(),
accountID.String(),
note.UpdatedAt.UnixMilli(),
)
if execErr != nil {
s.logger.Error("received exec error after update", "error", execErr)
}
return execErr
})
if err != nil {
return fmt.Errorf("failed to update note: %w", err)
}
return nil
}
func (s *sqliteNoteStore) DeleteNote(ctx context.Context, accountID uuid.UUID, note Note) error {
query := `DELETE FROM notes WHERE id = ? AND creator = ?`
err := util.Retry(ctx, defaultRetryConfig, func() error {
var execErr error
_, execErr = s.db.ExecContext(ctx, query, note.ID.String(), accountID.String())
return execErr
})
if err != nil {
return fmt.Errorf("failed to delete note: %w", err)
}
return nil
}
func (s *sqliteNoteStore) CountNotes(ctx context.Context, accountID uuid.UUID) (int, error) {
query := `SELECT COUNT(*) FROM notes WHERE creator = ?`
var count int
err := util.Retry(ctx, defaultRetryConfig, func() error {
return s.db.QueryRowContext(ctx, query, accountID.String()).Scan(&count)
})
if err != nil {
return 0, fmt.Errorf("failed to count notes for account: %w", err)
}
return count, nil
}
func (s *sqliteNoteStore) GetTotalNotes(ctx context.Context) (int, error) {
query := `SELECT COUNT(*) FROM notes`
var count int
err := util.Retry(ctx, defaultRetryConfig, func() error {
return s.db.QueryRowContext(ctx, query).Scan(&count)
})
if err != nil {
return 0, fmt.Errorf("failed to count notes: %w", err)
}
return count, nil
}
func (s *sqliteNoteStore) HealthCheck(ctx context.Context) error {
// Simple ping query to check database connectivity
return s.db.PingContext(ctx)
}
// Close implements the Store interface for sqliteAccountStore
func (s *sqliteAccountStore) Close() error {
return s.db.Close()
}
// Close implements the Store interface for sqliteNoteStore
func (s *sqliteNoteStore) Close() error {
return s.db.Close()
}
// StoreOptions configures store creation
type StoreOptions struct {
Name string
BasePath string
Config DatabaseConfig
Logger *slog.Logger
}
// DefaultStoreOptions returns sensible defaults for store creation
func DefaultStoreOptions(name string, logger *slog.Logger) StoreOptions {
return StoreOptions{
Name: name,
Config: DefaultDatabaseConfig(),
Logger: logger,
}
}
func NewAccountStore(opts StoreOptions) (AccountStore, error) {
logger := opts.Logger
if logger == nil {
logger = slog.New(slog.DiscardHandler)
}
db, err := createSQLiteDatabaseWithPath(opts.Name, opts.BasePath, opts.Config, logger)
if err != nil {
return nil, fmt.Errorf("could not create sqlite db: %w", err)
}
if err := createAccountsTable(db); err != nil {
db.Close()
return nil, fmt.Errorf("could not create accounts table: %w", err)
}
return &sqliteAccountStore{db}, nil
}
func NewNoteStore(opts StoreOptions) (NoteStore, error) {
logger := opts.Logger
if logger == nil {
logger = slog.New(slog.DiscardHandler)
}
db, err := createSQLiteDatabaseWithPath(opts.Name, opts.BasePath, opts.Config, logger)
if err != nil {
return nil, fmt.Errorf("could not create sqlite db: %w", err)
}
if err := createNotesTable(db); err != nil {
db.Close()
return nil, fmt.Errorf("could not create notes table: %w", err)
}
return &sqliteNoteStore{
logger: logger,
db: db,
}, nil
}
func createNotesTable(db *sql.DB) error {
query := `
CREATE TABLE IF NOT EXISTS notes (
id TEXT PRIMARY KEY,
creator TEXT NOT NULL,
created_at INTEGER NOT NULL,
updated_at INTEGER NOT NULL,
content TEXT NOT NULL
);`
_, err := db.Exec(query)
return err
}
func createAccountsTable(db *sql.DB) error {
query := `
CREATE TABLE IF NOT EXISTS accounts (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
is_migrating BOOLEAN NOT NULL DEFAULT 0,
shard TEXT
);`
_, err := db.Exec(query)
return err
}
func createSQLiteDatabaseWithPath(name, basePath string, config DatabaseConfig, logger *slog.Logger) (*sql.DB, error) {
var dir string
if basePath != "" {
dir = filepath.Join(basePath, ".data")
} else {
wd, err := os.Getwd()
if err != nil {
return nil, fmt.Errorf("could not get working directory: %w", err)
}
dir = filepath.Join(wd, ".data")
}
if _, err := os.Stat(dir); os.IsNotExist(err) {
err := os.MkdirAll(dir, 0750)
if err != nil {
return nil, fmt.Errorf("could not create data dir: %w", err)
}
}
file := filepath.Join(dir, fmt.Sprintf("%s.db", name))
// Configure SQLite for multi-process access with WAL mode and timeouts
dsn := fmt.Sprintf("file:%s", file)
db, err := sql.Open("sqlite", dsn)
if err != nil {
return nil, fmt.Errorf("could not open sqlite db: %w", err)
}
// Configure connection pool for multi-process access
db.SetMaxOpenConns(1) // Single connection to prevent lock contention
db.SetMaxIdleConns(1)
db.SetConnMaxLifetime(config.ConnMaxLifetime)
if config.EnableWAL {
logger.Debug("enabling WAL on database", "dsn", dsn)
// https://www.sqlite.org/pragma.html#pragma_journal_mode
_, err = db.Exec("PRAGMA journal_mode = WAL;")
if err != nil {
return nil, fmt.Errorf("could not enable WAL mode: %w", err)
}
// https://www.sqlite.org/pragma.html#pragma_busy_timeout
_, err = db.Exec("PRAGMA busy_timeout = 0;")
if err != nil {
return nil, fmt.Errorf("could not configure busy timeout: %w", err)
}
// https://www.sqlite.org/pragma.html#pragma_synchronous
_, err = db.Exec("PRAGMA synchronous = FULL;")
if err != nil {
return nil, fmt.Errorf("could not enable synchronous mode: %w", err)
}
}
return db, nil
}
// isSQLiteBusyError checks if an error is a SQLite BUSY error that should be retried
func isSQLiteBusyError(err error) bool {
if err == nil {
return false
}
errorStr := err.Error()
return strings.Contains(errorStr, "database is locked") ||
strings.Contains(errorStr, "SQLITE_BUSY")
}
// defaultRetryConfig provides the standard retry configuration for all SQLite operations
var defaultRetryConfig = util.RetryConfig{
MaxRetries: 5,
BaseDelay: 10 * time.Millisecond,
MaxDelay: 1 * time.Second,
ShouldRetryFunc: isSQLiteBusyError,
}