summaryrefslogtreecommitdiff
path: root/pkg/database/locks.go
blob: 6c0bdfbb78879f99c450ef9b360cc1364a21f3ac (plain)
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
package database

import (
	"database/sql"
	"encoding/json"
	"errors"
	"fmt"

	"go.n16f.net/uuid"
)

// Atomically check the lock status of a state and lock it if unlocked. Returns
// true if the function locked the state, otherwise returns false and the lock
// parameter is updated to the value of the existing lock
func (db *DB) SetLockOrGetExistingLock(path string, lock any) (bool, error) {
	ret := false
	return ret, db.WithTransaction(func(tx *sql.Tx) error {
		var lockData []byte
		if err := tx.QueryRowContext(db.ctx, `SELECT lock FROM states WHERE path = ?;`, path).Scan(&lockData); err != nil {
			if errors.Is(err, sql.ErrNoRows) {
				if lockData, err = json.Marshal(lock); err != nil {
					return err
				}
				var stateId uuid.UUID
				if err := stateId.Generate(uuid.V7); err != nil {
					return fmt.Errorf("failed to generate state id: %w", err)
				}
				_, err = tx.ExecContext(db.ctx, `INSERT INTO states(id, path, lock) VALUES (?, ?, json(?))`, stateId, path, lockData)
				ret = true
				return err
			} else {
				return err
			}
		}
		if lockData != nil {
			return json.Unmarshal(lockData, lock)
		}
		var err error
		if lockData, err = json.Marshal(lock); err != nil {
			return err
		}
		_, err = tx.ExecContext(db.ctx, `UPDATE states SET lock = json(?) WHERE path = ?;`, lockData, path)
		ret = true
		return err
	})
}

func (db *DB) Unlock(path, lock any) (bool, error) {
	data, err := json.Marshal(lock)
	if err != nil {
		return false, err
	}
	result, err := db.Exec(`UPDATE states SET lock = NULL WHERE path = ? and lock = json(?);`, path, data)
	if err != nil {
		return false, err
	}
	n, err := result.RowsAffected()
	return n == 1, err
}