-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice_windows.go
More file actions
85 lines (71 loc) · 1.69 KB
/
service_windows.go
File metadata and controls
85 lines (71 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//go:build windows
package main
import (
"log"
"sync"
"golang.org/x/sys/windows/svc"
"golang.org/x/sys/windows/svc/debug"
)
type nMonitorService struct{}
func (m *nMonitorService) Execute(args []string, r <-chan svc.ChangeRequest, status chan<- svc.Status) (bool, uint32) {
const cmdsAccepted = svc.AcceptStop | svc.AcceptShutdown
status <- svc.Status{State: svc.StartPending}
status <- svc.Status{State: svc.Running, Accepts: cmdsAccepted}
var (
wg sync.WaitGroup
quitService chan struct{}
isServiceActive bool
)
startServiceGoroutine := func() {
if isServiceActive {
return
}
quitService = make(chan struct{})
wg.Add(1)
go func() {
defer wg.Done()
go networkCaptureRoutine(quitService)
}()
isServiceActive = true
}
stopServiceGoroutine := func() {
if !isServiceActive {
return
}
close(quitService)
wg.Wait()
isServiceActive = false
}
startServiceGoroutine()
serviceLoop:
for {
select {
case c := <-r:
switch c.Cmd {
case svc.Interrogate:
status <- c.CurrentStatus
case svc.Stop, svc.Shutdown:
logMessage(LOGLEVEL_INFO, "Shutting down network monitor service.")
stopServiceGoroutine()
break serviceLoop
default:
log.Printf("Unexpected service control request #%d", c)
}
}
}
status <- svc.Status{State: svc.StopPending}
return false, 0
}
func runService(name string, isDebug bool) {
if isDebug {
err := debug.Run(name, &nMonitorService{})
if err != nil {
log.Fatalln("Error running network monitor in interactive mode:", err)
}
} else {
err := svc.Run(name, &nMonitorService{})
if err != nil {
log.Fatalln("Error running network monitor in Service Control mode:", err)
}
}
}