Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3-pinner
Commits
59393aec
Commit
59393aec
authored
9 years ago
by
Tommi Virtanen
Committed by
Jeromy
9 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fsrepo: Refactor to extract datastore internals
License: MIT Signed-off-by:
Tommi Virtanen
<
tv@eagain.net
>
parent
930fa6c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pin.go
pin.go
+3
-3
No files found.
pin.go
View file @
59393aec
...
...
@@ -64,11 +64,11 @@ type pinner struct {
// not delete them.
internalPin
map
[
key
.
Key
]
struct
{}
dserv
mdag
.
DAGService
dstore
ds
.
ThreadSafe
Datastore
dstore
ds
.
Datastore
}
// NewPinner creates a new pinner using the given datastore as a backend
func
NewPinner
(
dstore
ds
.
ThreadSafe
Datastore
,
serv
mdag
.
DAGService
)
Pinner
{
func
NewPinner
(
dstore
ds
.
Datastore
,
serv
mdag
.
DAGService
)
Pinner
{
// Load set from given datastore...
rcset
:=
set
.
NewSimpleBlockSet
()
...
...
@@ -207,7 +207,7 @@ func (p *pinner) RemovePinWithMode(key key.Key, mode PinMode) {
}
// LoadPinner loads a pinner and its keysets from the given datastore
func
LoadPinner
(
d
ds
.
ThreadSafe
Datastore
,
dserv
mdag
.
DAGService
)
(
Pinner
,
error
)
{
func
LoadPinner
(
d
ds
.
Datastore
,
dserv
mdag
.
DAGService
)
(
Pinner
,
error
)
{
p
:=
new
(
pinner
)
rootKeyI
,
err
:=
d
.
Get
(
pinDatastoreKey
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment