-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
centralize registration of exit handlers #230
Open
lstocchi
wants to merge
2
commits into
crc-org:main
Choose a base branch
from
lstocchi:i229
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package util | ||
|
||
import ( | ||
"log" | ||
"os" | ||
"os/signal" | ||
"syscall" | ||
) | ||
|
||
var exitHandlers []func() | ||
|
||
// RegisterExitHandler appends a func Exit handler to the list of handlers. | ||
// The handlers will be invoked when vfkit receives a termination or interruption signal | ||
// | ||
// This method is useful when a caller wishes to execute a func before a shutdown. | ||
func RegisterExitHandler(handler func()) { | ||
exitHandlers = append(exitHandlers, handler) | ||
} | ||
|
||
// SetupExitSignalHandling sets up a signal channel to listen for termination or interruption signals. | ||
// When one of these signals is received, all the registered exit handlers will be invoked, just | ||
// before terminating the program. | ||
func SetupExitSignalHandling() { | ||
setupExitSignalHandling(true) | ||
} | ||
|
||
// setupExitSignalHandling sets up a signal channel to listen for termination or interruption signals. | ||
// When one of these signals is received, all the registered exit handlers will be invoked. | ||
// It is possible to prevent the program from exiting by setting the doExit param to false (used for testing) | ||
func setupExitSignalHandling(doExit bool) { | ||
sigChan := make(chan os.Signal, 2) | ||
signal.Notify(sigChan, os.Interrupt, syscall.SIGTERM, syscall.SIGINT) | ||
go func() { | ||
for sig := range sigChan { | ||
log.Printf("captured %v, calling exit handlers and exiting..", sig) | ||
for _, handler := range exitHandlers { | ||
handler() | ||
} | ||
if doExit { | ||
os.Exit(1) | ||
} | ||
} | ||
}() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package util | ||
|
||
import ( | ||
"syscall" | ||
"testing" | ||
"time" | ||
) | ||
|
||
func TestExitHandlerCalled(t *testing.T) { | ||
setupExitSignalHandling(false) | ||
|
||
ch := make(chan struct{}) | ||
RegisterExitHandler(func() { | ||
close(ch) | ||
}) | ||
|
||
err := syscall.Kill(syscall.Getpid(), syscall.SIGINT) | ||
|
||
if err != nil { | ||
t.Errorf("failed at sending SIGINT signal") | ||
} | ||
|
||
select { | ||
case <-ch: | ||
// exit handler was called | ||
case <-time.After(5 * time.Second): | ||
t.Errorf("Exit handler not called - timed out") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The use of a global variable means
RegisterExitHandler
should not be called from multiple go routines simultaneously. The next commit will call it from a go routine which is not the main one, it's safer to add a mutex to protect accesses toexitHandlers
.