47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package sealing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/filecoin-project/specs-storage/storage"
|
|
)
|
|
|
|
func (m *Sealing) PledgeSector(ctx context.Context) (storage.SectorRef, error) {
|
|
m.inputLk.Lock()
|
|
defer m.inputLk.Unlock()
|
|
|
|
cfg, err := m.getConfig()
|
|
if err != nil {
|
|
return storage.SectorRef{}, xerrors.Errorf("getting config: %w", err)
|
|
}
|
|
|
|
if cfg.MaxSealingSectors > 0 {
|
|
if m.stats.curSealing() >= cfg.MaxSealingSectors {
|
|
return storage.SectorRef{}, xerrors.Errorf("too many sectors sealing (curSealing: %d, max: %d)", m.stats.curSealing(), cfg.MaxSealingSectors)
|
|
}
|
|
}
|
|
|
|
spt, err := m.currentSealProof(ctx)
|
|
if err != nil {
|
|
return storage.SectorRef{}, xerrors.Errorf("getting seal proof type: %w", err)
|
|
}
|
|
|
|
sid, err := m.sc.Next()
|
|
if err != nil {
|
|
return storage.SectorRef{}, xerrors.Errorf("generating sector number: %w", err)
|
|
}
|
|
sectorID := m.minerSector(spt, sid)
|
|
err = m.sealer.NewSector(ctx, sectorID)
|
|
if err != nil {
|
|
return storage.SectorRef{}, xerrors.Errorf("notifying sealer of the new sector: %w", err)
|
|
}
|
|
|
|
log.Infof("Creating CC sector %d", sid)
|
|
return sectorID, m.sectors.Send(uint64(sid), SectorStartCC{
|
|
ID: sid,
|
|
SectorType: spt,
|
|
})
|
|
}
|