-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
52 additions
and
0 deletions.
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,7 @@ | ||
package service_os | ||
|
||
var chanGraceExit = make(chan int) | ||
|
||
func Shutdown_Channel() <-chan int { | ||
return chanGraceExit | ||
} |
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,42 @@ | ||
//+build windows | ||
|
||
package service_os | ||
|
||
import ( | ||
wsvc "golang.org/x/sys/windows/svc" | ||
) | ||
|
||
type serviceWindows struct{} | ||
|
||
func init() { | ||
interactive, err := wsvc.IsAnInteractiveSession() | ||
if err != nil { | ||
panic(err) | ||
} | ||
if interactive { | ||
return | ||
} | ||
go func() { | ||
_ = wsvc.Run("", serviceWindows{}) | ||
}() | ||
} | ||
|
||
func (serviceWindows) Execute(args []string, r <-chan wsvc.ChangeRequest, s chan<- wsvc.Status) (svcSpecificEC bool, exitCode uint32) { | ||
const accCommands = wsvc.AcceptStop | wsvc.AcceptShutdown | ||
s <- wsvc.Status{State: wsvc.StartPending} | ||
|
||
s <- wsvc.Status{State: wsvc.Running, Accepts: accCommands} | ||
for { | ||
c := <-r | ||
switch c.Cmd { | ||
case wsvc.Interrogate: | ||
s <- c.CurrentStatus | ||
case wsvc.Stop, wsvc.Shutdown: | ||
chanGraceExit <- 1 | ||
s <- wsvc.Status{State: wsvc.StopPending} | ||
return false, 0 | ||
} | ||
} | ||
|
||
return false, 0 | ||
} |