Files
fission-src/pkg/utils/manager/manager.go
T
Vardhaman SuranaandGitHub 2a40b4538c added manger to keep track of go routines in the services (#2869)
- added manager to wait for all go routines to end before exit
- code refactor
- renamed Manafer to Interface and GoRoutineManager to GroupManager
- replaced some go routine calls with manager Add func
- added unit tests for manager
2023-11-07 15:30:48 +05:30

63 lines
1.4 KiB
Go

package manager
import (
"context"
"sync"
"time"
)
var _ Interface = &GroupManager{}
// Interface keeps track of the go routines in the system and can be used to gracefully shutdown the
// the system by waiting for completion of go routines added to it.
type Interface interface {
// Add will start a go routine for the given "function" and adds it to the list of go routines
// and will also remove the "function" from the list when it completes
Add(ctx context.Context, function func(context.Context))
// Wait blocks the execution of the process until all the go routines in the manager are completed.
Wait()
// WaitWithTimeout blocks the execution of the process until timeout or till all all the go routines in the manager are completed
WaitWithTimeout(timeout time.Duration) error
}
type GroupManager struct {
wg sync.WaitGroup
}
func New() Interface {
return &GroupManager{
wg: sync.WaitGroup{},
}
}
func (g *GroupManager) Add(ctx context.Context, f func(context.Context)) {
g.wg.Add(1)
go func() {
defer g.wg.Done()
f(ctx)
}()
}
func (g *GroupManager) Wait() {
g.wg.Wait()
}
func (g *GroupManager) WaitWithTimeout(timeout time.Duration) error {
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
done := make(chan struct{})
go func() {
g.wg.Wait()
close(done)
}()
select {
case <-ctx.Done():
return ctx.Err()
case <-done:
return nil
}
}