Commit 5972a48b authored by ForrestWeston's avatar ForrestWeston

docs for pin method impls

License: MIT
Signed-off-by: default avatarForrestWeston <forrest@protocol.ai>
parent 407d3b91
...@@ -147,6 +147,7 @@ type Pinned struct { ...@@ -147,6 +147,7 @@ type Pinned struct {
Via *cid.Cid Via *cid.Cid
} }
// Pinned returns whether or not the given cid is pinned
func (p Pinned) Pinned() bool { func (p Pinned) Pinned() bool {
if p.Mode == NotPinned { if p.Mode == NotPinned {
return false return false
...@@ -155,6 +156,7 @@ func (p Pinned) Pinned() bool { ...@@ -155,6 +156,7 @@ func (p Pinned) Pinned() bool {
} }
} }
// String Returns pin status as string
func (p Pinned) String() string { func (p Pinned) String() string {
switch p.Mode { switch p.Mode {
case NotPinned: case NotPinned:
...@@ -277,6 +279,8 @@ func (p *pinner) IsPinned(c *cid.Cid) (string, bool, error) { ...@@ -277,6 +279,8 @@ func (p *pinner) IsPinned(c *cid.Cid) (string, bool, error) {
return p.isPinnedWithType(c, Any) return p.isPinnedWithType(c, Any)
} }
// IsPinnedWithType returns whether or not the given cid is pinned with the
// given pin type, as well as returning the type of pin its pinned with.
func (p *pinner) IsPinnedWithType(c *cid.Cid, mode PinMode) (string, bool, error) { func (p *pinner) IsPinnedWithType(c *cid.Cid, mode PinMode) (string, bool, error) {
p.lock.RLock() p.lock.RLock()
defer p.lock.RUnlock() defer p.lock.RUnlock()
...@@ -328,6 +332,8 @@ func (p *pinner) isPinnedWithType(c *cid.Cid, mode PinMode) (string, bool, error ...@@ -328,6 +332,8 @@ func (p *pinner) isPinnedWithType(c *cid.Cid, mode PinMode) (string, bool, error
return "", false, nil return "", false, nil
} }
// CheckIfPinned Checks if a set of keys are pinned, more efficient than
// calling IsPinned for each key, returns the pinned status of cid(s)
func (p *pinner) CheckIfPinned(cids ...*cid.Cid) ([]Pinned, error) { func (p *pinner) CheckIfPinned(cids ...*cid.Cid) ([]Pinned, error) {
p.lock.RLock() p.lock.RLock()
defer p.lock.RUnlock() defer p.lock.RUnlock()
...@@ -393,6 +399,9 @@ func (p *pinner) CheckIfPinned(cids ...*cid.Cid) ([]Pinned, error) { ...@@ -393,6 +399,9 @@ func (p *pinner) CheckIfPinned(cids ...*cid.Cid) ([]Pinned, error) {
return pinned, nil return pinned, nil
} }
// RemovePinWithMode is for manually editing the pin structure.
// Use with care! If used improperly, garbage collection may not
// be successful.
func (p *pinner) RemovePinWithMode(c *cid.Cid, mode PinMode) { func (p *pinner) RemovePinWithMode(c *cid.Cid, mode PinMode) {
p.lock.Lock() p.lock.Lock()
defer p.lock.Unlock() defer p.lock.Unlock()
...@@ -486,6 +495,9 @@ func (p *pinner) RecursiveKeys() []*cid.Cid { ...@@ -486,6 +495,9 @@ func (p *pinner) RecursiveKeys() []*cid.Cid {
return p.recursePin.Keys() return p.recursePin.Keys()
} }
// Update updates a recursive pin from one cid to another
// this is more efficient than simply pinning the new one and unpinning the
// old one
func (p *pinner) Update(ctx context.Context, from, to *cid.Cid, unpin bool) error { func (p *pinner) Update(ctx context.Context, from, to *cid.Cid, unpin bool) error {
p.lock.Lock() p.lock.Lock()
defer p.lock.Unlock() defer p.lock.Unlock()
...@@ -556,6 +568,8 @@ func (p *pinner) Flush() error { ...@@ -556,6 +568,8 @@ func (p *pinner) Flush() error {
return nil return nil
} }
// InternalPins returns all cids kept pinned for the internal state of the
// pinner
func (p *pinner) InternalPins() []*cid.Cid { func (p *pinner) InternalPins() []*cid.Cid {
p.lock.Lock() p.lock.Lock()
defer p.lock.Unlock() defer p.lock.Unlock()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment