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
|
// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
// Package btrfstree contains core b+-tree implementation and
// interfaces.
package btrfstree
import (
"context"
"fmt"
"git.lukeshu.com/btrfs-progs-ng/lib/btrfs/btrfsprim"
"git.lukeshu.com/btrfs-progs-ng/lib/btrfs/btrfsvol"
)
type Forrest interface {
// ForrestLookup returns (nil, ErrNoTree) if the tree does not
// exist but there is otherwise no error.
ForrestLookup(ctx context.Context, treeID btrfsprim.ObjID) (Tree, error)
}
type Tree interface {
// TreeLookup looks up the Item for a given key.
//
// If no such Item exists, but there is otherwise no error,
// then ErrNoItem is returned.
TreeLookup(ctx context.Context, key btrfsprim.Key) (Item, error)
// TreeSearch searches the Tree for a value for which
// `search.Search(itemKey, itemSize) == 0`.
//
// : + + + 0 0 0 - - -
// : ^ ^ ^
// : any of
//
// You can conceptualize `search.Search` as subtraction:
//
// func(strawKey btrfsprim.Key, strawSize uint32) int {
// return needle - straw
// }
//
// `search.Search` may be called with key/size pairs that do not
// correspond to an existing Item (for key-pointers in
// interior nodes in the tree); in which case the size
// math.MaxUint32.
//
// If no such Item exists, but there is otherwise no error,
// then an error that is ErrNoItem is returned.
TreeSearch(ctx context.Context, search TreeSearcher) (Item, error)
// TreeRange iterates over the Tree in order, calling
// `handleFn` for each Item.
TreeRange(ctx context.Context, handleFn func(Item) bool) error
// TreeSubrange iterates over the Tree in order, calling
// `handleFn` for all Items for which `search.Search` returns
// 0.
//
// `search.Search` may be called with key/size pairs that do
// not correspond to an existing Item (for key-pointers in
// interior nodes in the tree); in which case the size
// math.MaxUint32.
//
// If handleFn is called for fewer than `min` items, an error
// that is ErrNoItem is returned.
TreeSubrange(ctx context.Context,
min int,
search TreeSearcher,
handleFn func(Item) bool,
) error
// CheckOwner returns whether it is permissible for a node
// with .Head.Owner=owner and .Head.Generation=gen to be in
// this tree.
//
// If there is an error determining this, then `failOpen`
// specifies whether it should return an error (false) or nil
// (true).
TreeCheckOwner(ctx context.Context, failOpen bool, owner btrfsprim.ObjID, gen btrfsprim.Generation) error
// TreeWalk is a lower-level call than TreeSubrange. Use with
// hesitancy.
//
// It walks a Tree, triggering callbacks for every node, key-pointer,
// and item; as well as for any errors encountered.
//
// If the Tree is valid, then everything is walked in key-order; but
// if the Tree is broken, then ordering is not guaranteed.
//
// Canceling the Context causes TreeWalk to return early; no values
// from the Context are used.
//
// The lifecycle of callbacks is:
//
// 000 (read superblock) (maybe cbs.BadSuperblock())
//
// 001 (read node)
// 002 cbs.Node() or cbs.BadNode()
// if interior:
// for kp in node.items:
// 003a if cbs.PreKeyPointer == nil || cbs.PreKeyPointer() {
// 004b (recurse)
// else:
// for item in node.items:
// 003b cbs.Item() or cbs.BadItem()
TreeWalk(ctx context.Context, cbs TreeWalkHandler)
}
type TreeSearcher interface {
// How the search should be described in the event of an
// error.
fmt.Stringer
// size is math.MaxUint32 for key-pointers
Search(key btrfsprim.Key, size uint32) int
}
type TreeWalkHandler struct {
BadSuperblock func(error)
// Callbacks for entire nodes.
//
// The return value from BadNode is whether to process the
// slots in this node or not; if no BadNode function is given,
// then it is not processed.
Node func(Path, *Node)
BadNode func(Path, *Node, error) bool
// Callbacks for slots in nodes.
//
// The return value from KeyPointer is whether to recurse or
// not; if no KeyPointer function is given, then it is
// recursed.
KeyPointer func(Path, KeyPointer) bool
Item func(Path, Item)
BadItem func(Path, Item)
}
// Compat //////////////////////////////////////////////////////////////////////
// TreeOperator is an interface for performing basic btree operations.
type TreeOperator interface {
// TreeWalk walks a tree, triggering callbacks for every node,
// key-pointer, and item; as well as for any errors encountered.
//
// If the tree is valid, then everything is walked in key-order; but
// if the tree is broken, then ordering is not guaranteed.
//
// Canceling the Context causes TreeWalk to return early; no values
// from the Context are used.
//
// The lifecycle of callbacks is:
//
// 000 (read superblock) (maybe cbs.BadSuperblock())
//
// 001 (read node)
// 002 cbs.Node() or cbs.BadNode()
// if interior:
// for kp in node.items:
// 003a if cbs.PreKeyPointer == nil || cbs.PreKeyPointer() {
// 004b (recurse)
// else:
// for item in node.items:
// 003b cbs.Item() or cbs.BadItem()
TreeWalk(ctx context.Context, treeID btrfsprim.ObjID, errHandle func(*TreeError), cbs TreeWalkHandler)
TreeLookup(treeID btrfsprim.ObjID, key btrfsprim.Key) (Item, error)
TreeSearch(treeID btrfsprim.ObjID, search TreeSearcher) (Item, error)
// If some items are able to be read, but there is an error reading the
// full set, then it might return *both* a list of items and an error.
//
// If the tree is not found, an error that is ErrNoTree is
// returned.
//
// If no such item is found, an error that is ErrNoItem is
// returned.
TreeSearchAll(treeID btrfsprim.ObjID, search TreeSearcher) ([]Item, error)
}
type TreeError struct {
Path Path
Err error
}
func (e *TreeError) Unwrap() error { return e.Err }
func (e *TreeError) Error() string {
return fmt.Sprintf("%v: %v", e.Path, e.Err)
}
type NodeSource interface {
Superblock() (*Superblock, error)
AcquireNode(ctx context.Context, addr btrfsvol.LogicalAddr, exp NodeExpectations) (*Node, error)
ReleaseNode(*Node)
}
|