Skip to content

Commit

Permalink
Merge pull request #331 from tranchitella/graceful-shutdown
Browse files Browse the repository at this point in the history
fix: protect shutdown cancel registrations from concurrent access
  • Loading branch information
alfrunes committed Nov 24, 2023
2 parents 8081b4b + de46e55 commit 1b09e48
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ package app
import (
"context"
"io"
"sync"
"sync/atomic"
"time"

Expand Down Expand Up @@ -62,11 +63,12 @@ type App interface {

// app is an app object
type app struct {
store store.DataStore
inventory inventory.Client
workflows workflows.Client
shutdownCancels map[uint32]context.CancelFunc
shutdownDone chan struct{}
store store.DataStore
inventory inventory.Client
workflows workflows.Client
shutdownCancels map[uint32]context.CancelFunc
shutdownCancelsM *sync.Mutex
shutdownDone chan struct{}
Config
}

Expand All @@ -83,12 +85,13 @@ func New(ds store.DataStore, inv inventory.Client, wf workflows.Client, config .
}
}
return &app{
store: ds,
inventory: inv,
workflows: wf,
Config: conf,
shutdownCancels: make(map[uint32]context.CancelFunc),
shutdownDone: make(chan struct{}),
store: ds,
inventory: inv,
workflows: wf,
Config: conf,
shutdownCancels: make(map[uint32]context.CancelFunc),
shutdownCancelsM: &sync.Mutex{},
shutdownDone: make(chan struct{}),
}
}

Expand Down Expand Up @@ -319,6 +322,8 @@ func (a *app) submitFileTransferAuditlog(ctx context.Context, userID string, dev
}

func (a *app) Shutdown(timeout time.Duration) {
a.shutdownCancelsM.Lock()
defer a.shutdownCancelsM.Unlock()
ticker := time.NewTicker(timeout / time.Duration(len(a.shutdownCancels)+1))
for _, cancel := range a.shutdownCancels {
cancel()
Expand All @@ -335,11 +340,15 @@ func (a *app) ShutdownDone() {
var shutdownID uint32

func (a *app) RegisterShutdownCancel(cancel context.CancelFunc) uint32 {
a.shutdownCancelsM.Lock()
defer a.shutdownCancelsM.Unlock()
id := atomic.AddUint32(&shutdownID, 1)
a.shutdownCancels[id] = cancel
return id
}

func (a *app) UnregisterShutdownCancel(id uint32) {
a.shutdownCancelsM.Lock()
defer a.shutdownCancelsM.Unlock()
delete(a.shutdownCancels, id)
}

0 comments on commit 1b09e48

Please sign in to comment.