-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.go
119 lines (102 loc) · 2.62 KB
/
service.go
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package main
import (
"fmt"
"strings"
"time"
"golang.org/x/sys/windows/svc"
"golang.org/x/sys/windows/svc/debug"
"golang.org/x/sys/windows/svc/eventlog"
"os"
"log"
"io/ioutil"
"encoding/json"
"strconv"
"path/filepath"
)
var elog debug.Log
type myservice struct{}
func (m *myservice) Execute(args []string, r <-chan svc.ChangeRequest, changes chan<- svc.Status) (ssec bool, errno uint32) {
const cmdsAccepted = svc.AcceptStop | svc.AcceptShutdown | svc.AcceptPauseAndContinue
changes <- svc.Status{State: svc.StartPending}
elog.Info(100, filepath.Dir(os.Args[0]))
jsonfile := filepath.Dir(os.Args[0]) + "\\conf.json"
if _, err := os.Stat(jsonfile); err != nil {
println("\n")
elog.Info(500, err.Error())
log.Fatalf("Unable to find configuration file\nPlease, generate config using <generate> command\n ")
return
}
data, err := ioutil.ReadFile(jsonfile)
check(err)
c := &Config{}
err = json.Unmarshal(data, c)
check(err)
interval, err := strconv.ParseInt(c.ScanningInterval, 0, 0) //string to int
if err != nil {
log.Println(err)
return
}
tick := time.Tick(time.Duration(interval) * time.Second)
changes <- svc.Status{State: svc.Running, Accepts: cmdsAccepted}
fmt.Printf(strings.Join(args, "-"))
loop:
for {
scan_logs()
select {
case <-tick:
fmt.Println("\n\nTick! New log analyze iteration start")
case c := <-r:
switch c.Cmd {
case svc.Interrogate:
changes <- c.CurrentStatus
// Testing deadlock from https://code.google.com/p/winsvc/issues/detail?id=4
time.Sleep(100 * time.Millisecond)
changes <- c.CurrentStatus
case svc.Stop, svc.Shutdown:
break loop
default:
println("\n")
elog.Error(1, fmt.Sprintf("unexpected control request #%d", c))
}
}
}
changes <- svc.Status{State: svc.StopPending}
return
}
func runService(name string, isDebug bool) {
var err error
if isDebug {
elog = debug.New(name)
} else {
elog, err = eventlog.Open(name)
if err != nil {
return
}
}
defer elog.Close()
println("\n")
fmt.Println(fmt.Sprintf("Starting %s service ", name))
run := svc.Run
if isDebug {
run = debug.Run
}
err = run(name, &myservice{})
if err != nil {
println("\n")
elog.Error(200, fmt.Sprintf("%s service failed: %v", name, err))
return
}
println("\n")
elog.Info(1, fmt.Sprintf("%s service stopped", name))
}
func check(err error) {
if err != nil {
println("\n\n" + err.Error())
elog.Info(500, fmt.Sprintf("Error occured: %v", err))
os.Exit(0)
}
}