lotus/extern/storage-sealing/garbage.go

45 lines
1016 B
Go
Raw Normal View History

package sealing
import (
"context"
"golang.org/x/xerrors"
2020-02-27 00:54:39 +00:00
)
2021-02-16 16:14:59 +00:00
func (m *Sealing) PledgeSector(ctx context.Context) error {
m.inputLk.Lock()
defer m.inputLk.Unlock()
cfg, err := m.getConfig()
if err != nil {
return xerrors.Errorf("getting config: %w", err)
}
if cfg.MaxSealingSectors > 0 {
if m.stats.curSealing() >= cfg.MaxSealingSectors {
return xerrors.Errorf("too many sectors sealing (curSealing: %d, max: %d)", m.stats.curSealing(), cfg.MaxSealingSectors)
}
}
2021-02-16 16:14:59 +00:00
spt, err := m.currentSealProof(ctx)
if err != nil {
return xerrors.Errorf("getting seal proof type: %w", err)
}
2021-02-16 16:14:59 +00:00
sid, err := m.sc.Next()
if err != nil {
return xerrors.Errorf("generating sector number: %w", err)
}
sectorID := m.minerSector(spt, sid)
err = m.sealer.NewSector(ctx, sectorID)
if err != nil {
return xerrors.Errorf("notifying sealer of the new sector: %w", err)
}
2021-02-16 16:14:59 +00:00
log.Infof("Creating CC sector %d", sid)
return m.sectors.Send(uint64(sid), SectorStartCC{
ID: sid,
SectorType: spt,
})
}