summaryrefslogtreecommitdiffstats
path: root/modules/queue/lqinternal/lqinternal.go
blob: 89aa4e5989496537c19302b9cf37095a880cb272 (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
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package lqinternal

import (
	"bytes"
	"encoding/binary"

	"github.com/syndtr/goleveldb/leveldb"
	"github.com/syndtr/goleveldb/leveldb/opt"
)

func QueueItemIDBytes(id int64) []byte {
	buf := make([]byte, 8)
	binary.PutVarint(buf, id)
	return buf
}

func QueueItemKeyBytes(prefix []byte, id int64) []byte {
	key := make([]byte, len(prefix), len(prefix)+1+8)
	copy(key, prefix)
	key = append(key, '-')
	return append(key, QueueItemIDBytes(id)...)
}

func RemoveLevelQueueKeys(db *leveldb.DB, namePrefix []byte) {
	keyPrefix := make([]byte, len(namePrefix)+1)
	copy(keyPrefix, namePrefix)
	keyPrefix[len(namePrefix)] = '-'

	it := db.NewIterator(nil, &opt.ReadOptions{Strict: opt.NoStrict})
	defer it.Release()
	for it.Next() {
		if bytes.HasPrefix(it.Key(), keyPrefix) {
			_ = db.Delete(it.Key(), nil)
		}
	}
}

func ListLevelQueueKeys(db *leveldb.DB) (res [][]byte) {
	it := db.NewIterator(nil, &opt.ReadOptions{Strict: opt.NoStrict})
	defer it.Release()
	for it.Next() {
		res = append(res, it.Key())
	}
	return res
}