-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.go
195 lines (167 loc) · 4.17 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
Copyright 2016-2017 Ronmi Ren <ronmi@patrolavia.com>
This file is part of YNIT.
YNIT is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
YNIT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with YNIT. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"bufio"
"os"
"strings"
)
// State of service
type State string
// possible states
const (
Error State = "error" // one (or more) dependencies is in failed state
Pending State = "pending"
Waiting State = "waiting"
Running State = "running"
Success State = "success"
Failed State = "failed"
)
// Property of service
type Property string
// possible properties
const (
Provides Property = "# Provides:"
StartAfter Property = "# Required-Start:"
StopBefore Property = "# Required-Stop:"
StartBefore Property = "# X-Start-Before:"
StopAfter Property = "# X-Stop-After:"
NonStop Property = "# Non-Stop:"
)
// all properties
var (
Props = []Property{
Provides, // this will always lay on element 0
NonStop, // this will always lay on element 1
StartAfter,
StopBefore,
StartBefore,
StopAfter,
}
)
// Service info
type Service struct {
Properties map[Property]map[string]bool
Script string
Process *os.Process // only valid for non-stop tasks
}
// NewService creates a Service instance by parsing script
func NewService(script string) (ret *Service, err error) {
f, err := os.Open(script)
if err != nil {
return
}
defer f.Close()
props := make(map[Property]map[string]bool)
for _, prop := range Props {
props[prop] = make(map[string]bool)
}
props[Provides][script] = true // must provide script itself
ret = &Service{
props,
script,
nil,
}
scanner := bufio.NewScanner(f)
begin := false
for scanner.Scan() {
line := scanner.Text()
if !begin {
if strings.TrimRight(line, " \t\r\n") == "### BEGIN INIT INFO" {
begin = true
}
continue
}
if strings.TrimRight(line, " \t\r\n") == "### END INIT INFO" {
break
}
if !strings.HasPrefix(line, "# ") {
continue
}
for _, prop := range Props {
if strings.HasPrefix(line, string(prop)) {
ret.setProp(line, prop)
break
}
}
}
return
}
func (s *Service) setProp(line string, prop Property) {
str := strings.TrimSpace(strings.TrimPrefix(line, string(prop)))
if str == "" {
return
}
items := strings.Split(str, " ")
for _, item := range items {
if item == "" {
continue
}
s.Properties[prop][item] = true
}
}
// IsNonStop tests if this service runs in non-stop subprocess (no forking in other words)
func (s *Service) IsNonStop() bool {
for key, ok := range s.Properties[NonStop] {
key := strings.ToLower(key)
if ok && (key == "true" || key == "yes") {
return true
}
}
return false
}
// CanStart detects if all dependencies of the Service is fulfilled
func (s *Service) CanStart(state map[string]State, prop Property) State {
for dep := range s.Properties[prop] {
switch state[dep] {
case Failed, Error:
return Error
case Success:
default:
return Pending
}
}
return Waiting
}
// CanStop detects if all dependencies of the Service is fulfilled
func (s *Service) CanStop(state map[string]State, prop Property) State {
for dep := range s.Properties[prop] {
switch state[dep] {
case Failed, Error, Success:
continue
default:
return Pending
}
}
return Waiting
}
func (s *Service) removeNonexist(buf map[string][]*Service) {
props := Props[2:]
for _, prop := range props {
for dep := range s.Properties[prop] {
if _, ok := buf[dep]; !ok {
delete(s.Properties[prop], dep)
}
}
}
}
func (s *Service) mergeDepend(buf map[string][]*Service, from, to Property) {
for want := range s.Properties[from] {
for _, victim := range buf[want] {
victim.Properties[to][s.Script] = true
}
}
s.Properties[from] = map[string]bool{}
}