lotus/extern/sector-storage/worker_calltracker.go

56 lines
1020 B
Go
Raw Normal View History

2020-09-14 07:44:55 +00:00
package sectorstorage
import (
"github.com/filecoin-project/go-statestore"
"github.com/filecoin-project/lotus/extern/sector-storage/storiface"
)
type workerCallTracker struct {
2020-09-14 07:44:55 +00:00
st *statestore.StateStore // by CallID
}
type CallState uint64
const (
CallStarted CallState = iota
CallDone
// returned -> remove
)
type Call struct {
ID storiface.CallID
RetType ReturnType
2020-09-14 07:44:55 +00:00
State CallState
Result []byte // json bytes
2020-09-14 07:44:55 +00:00
}
func (wt *workerCallTracker) onStart(ci storiface.CallID, rt ReturnType) error {
2020-09-14 07:44:55 +00:00
return wt.st.Begin(ci, &Call{
ID: ci,
RetType:rt,
2020-09-14 07:44:55 +00:00
State: CallStarted,
})
}
func (wt *workerCallTracker) onDone(ci storiface.CallID, ret []byte) error {
2020-09-14 07:44:55 +00:00
st := wt.st.Get(ci)
return st.Mutate(func(cs *Call) error {
cs.State = CallDone
cs.Result = ret
return nil
})
}
func (wt *workerCallTracker) onReturned(ci storiface.CallID) error {
2020-09-14 07:44:55 +00:00
st := wt.st.Get(ci)
return st.End()
}
func (wt *workerCallTracker) unfinished() ([]Call, error) {
var out []Call
return out, wt.st.List(&out)
}