58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
package sealing
|
|
|
|
import (
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
)
|
|
|
|
func (m *Sealing) MarkForUpgrade(id abi.SectorNumber) error {
|
|
m.upgradeLk.Lock()
|
|
defer m.upgradeLk.Unlock()
|
|
|
|
_, found := m.toUpgrade[id]
|
|
if found {
|
|
return xerrors.Errorf("sector %d already marked for upgrade", id)
|
|
}
|
|
|
|
si, err := m.GetSectorInfo(id)
|
|
if err != nil {
|
|
return xerrors.Errorf("getting sector info: %w", err)
|
|
}
|
|
|
|
if si.State != Proving {
|
|
return xerrors.Errorf("can't mark sectors not in the 'Proving' state for upgrade")
|
|
}
|
|
|
|
if len(si.Pieces) != 1 {
|
|
return xerrors.Errorf("not a committed-capacity sector, expected 1 piece")
|
|
}
|
|
|
|
if si.Pieces[0].DealInfo != nil {
|
|
return xerrors.Errorf("not a committed-capacity sector, has deals")
|
|
}
|
|
|
|
// TODO: more checks to match actor constraints
|
|
|
|
m.toUpgrade[id] = struct{}{}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *Sealing) maybeUpgradableSector() *abi.SectorNumber {
|
|
m.upgradeLk.Lock()
|
|
defer m.upgradeLk.Unlock()
|
|
for number := range m.toUpgrade {
|
|
// TODO: checks to match actor constraints
|
|
|
|
// this one looks good
|
|
/*if checks */{
|
|
delete(m.toUpgrade, number)
|
|
return &number
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|