| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package cyclemanager |
|
|
| import ( |
| "context" |
| "sync" |
|
|
| "github.com/sirupsen/logrus" |
| "github.com/weaviate/weaviate/entities/concurrency" |
| enterrors "github.com/weaviate/weaviate/entities/errors" |
|
|
| "github.com/weaviate/weaviate/entities/errorcompounder" |
| ) |
|
|
| |
| |
| type CycleCallbackCtrl interface { |
| IsActive() bool |
| Activate() error |
| Deactivate(ctx context.Context) error |
| Unregister(ctx context.Context) error |
| } |
|
|
| type cycleCallbackCtrl struct { |
| callbackId uint32 |
| callbackCustomId string |
|
|
| isActive func(callbackId uint32, callbackCustomId string) bool |
| activate func(callbackId uint32, callbackCustomId string) error |
| deactivate func(ctx context.Context, callbackId uint32, callbackCustomId string) error |
| unregister func(ctx context.Context, callbackId uint32, callbackCustomId string) error |
| } |
|
|
| func (c *cycleCallbackCtrl) IsActive() bool { |
| return c.isActive(c.callbackId, c.callbackCustomId) |
| } |
|
|
| func (c *cycleCallbackCtrl) Activate() error { |
| return c.activate(c.callbackId, c.callbackCustomId) |
| } |
|
|
| func (c *cycleCallbackCtrl) Deactivate(ctx context.Context) error { |
| return c.deactivate(ctx, c.callbackId, c.callbackCustomId) |
| } |
|
|
| func (c *cycleCallbackCtrl) Unregister(ctx context.Context) error { |
| return c.unregister(ctx, c.callbackId, c.callbackCustomId) |
| } |
|
|
| type cycleCombinedCallbackCtrl struct { |
| routinesLimit int |
| ctrls []CycleCallbackCtrl |
| logger logrus.FieldLogger |
| } |
|
|
| |
| |
| |
| func NewCombinedCallbackCtrl(routinesLimit int, logger logrus.FieldLogger, ctrls ...CycleCallbackCtrl) CycleCallbackCtrl { |
| routinesLimit = concurrency.NoMoreThanNUMCPU(routinesLimit) |
| return &cycleCombinedCallbackCtrl{routinesLimit: routinesLimit, logger: logger, ctrls: ctrls} |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) IsActive() bool { |
| for _, ctrl := range c.ctrls { |
| if !ctrl.IsActive() { |
| return false |
| } |
| } |
| return true |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) Activate() error { |
| return c.combineErrors(c.activate()...) |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) activate() []error { |
| eg := enterrors.NewErrorGroupWrapper(c.logger) |
| eg.SetLimit(c.routinesLimit) |
| lock := new(sync.Mutex) |
|
|
| errs := make([]error, 0, len(c.ctrls)) |
| for _, ctrl := range c.ctrls { |
| ctrl := ctrl |
| eg.Go(func() error { |
| if err := ctrl.Activate(); err != nil { |
| c.locked(lock, func() { errs = append(errs, err) }) |
| return err |
| } |
| return nil |
| }) |
| } |
|
|
| eg.Wait() |
| return errs |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) Deactivate(ctx context.Context) error { |
| errs, deactivated := c.deactivate(ctx) |
| if len(errs) == 0 { |
| return nil |
| } |
|
|
| |
| eg := enterrors.NewErrorGroupWrapper(c.logger) |
| eg.SetLimit(c.routinesLimit) |
| for _, id := range deactivated { |
| id := id |
| eg.Go(func() error { |
| return c.ctrls[id].Activate() |
| }) |
| } |
|
|
| eg.Wait() |
| return c.combineErrors(errs...) |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) deactivate(ctx context.Context) ([]error, []int) { |
| eg := enterrors.NewErrorGroupWrapper(c.logger) |
| eg.SetLimit(c.routinesLimit) |
| lock := new(sync.Mutex) |
|
|
| errs := make([]error, 0, len(c.ctrls)) |
| deactivated := make([]int, 0, len(c.ctrls)) |
| for id, ctrl := range c.ctrls { |
| id, ctrl := id, ctrl |
| eg.Go(func() error { |
| if err := ctrl.Deactivate(ctx); err != nil { |
| c.locked(lock, func() { errs = append(errs, err) }) |
| return err |
| } |
| c.locked(lock, func() { deactivated = append(deactivated, id) }) |
| return nil |
| }, id, ctrl) |
| } |
|
|
| eg.Wait() |
| return errs, deactivated |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) Unregister(ctx context.Context) error { |
| return c.combineErrors(c.unregister(ctx)...) |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) unregister(ctx context.Context) []error { |
| eg := enterrors.NewErrorGroupWrapper(c.logger) |
| eg.SetLimit(c.routinesLimit) |
| lock := new(sync.Mutex) |
|
|
| errs := make([]error, 0, len(c.ctrls)) |
| for _, ctrl := range c.ctrls { |
| ctrl := ctrl |
| eg.Go(func() error { |
| if err := ctrl.Unregister(ctx); err != nil { |
| c.locked(lock, func() { errs = append(errs, err) }) |
| return err |
| } |
| return nil |
| }) |
| } |
|
|
| eg.Wait() |
| return errs |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) locked(lock *sync.Mutex, mutate func()) { |
| lock.Lock() |
| defer lock.Unlock() |
|
|
| mutate() |
| } |
|
|
| func (c *cycleCombinedCallbackCtrl) combineErrors(errors ...error) error { |
| ec := errorcompounder.New() |
| for _, err := range errors { |
| ec.Add(err) |
| } |
| return ec.ToError() |
| } |
|
|
| type cycleCallbackCtrlNoop struct{} |
|
|
| func NewCallbackCtrlNoop() CycleCallbackCtrl { |
| return &cycleCallbackCtrlNoop{} |
| } |
|
|
| func (c *cycleCallbackCtrlNoop) IsActive() bool { |
| return false |
| } |
|
|
| func (c *cycleCallbackCtrlNoop) Activate() error { |
| return nil |
| } |
|
|
| func (c *cycleCallbackCtrlNoop) Deactivate(ctx context.Context) error { |
| return ctx.Err() |
| } |
|
|
| func (c *cycleCallbackCtrlNoop) Unregister(ctx context.Context) error { |
| return ctx.Err() |
| } |
|
|