-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
173 lines (140 loc) · 4.55 KB
/
main.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
/*
Copyright Ds886 2022
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
package main
import (
"flag"
"fmt"
"log"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
)
func fncMainKiosk(cfg cfgKiosk) {
fncDispalyConfig(cfg)
fncPIDCheck(cfg.Main.PIDFilePath)
fncRunKiosk(cfg)
}
func fncConvertExitCodeToInt(strValidExitCodeString string) ([]int, error) {
var arrFlagRawValidExitCode []string
var arrOutput []int
arrFlagRawValidExitCode = strings.Split(strValidExitCodeString, ",")
for _, itemExitCode := range arrFlagRawValidExitCode {
nCurrExitCode, err := strconv.Atoi(itemExitCode)
if err != nil {
return nil, fmt.Errorf("Error in parsing exit code: %s", itemExitCode)
}
arrOutput = append(arrOutput, nCurrExitCode)
}
return arrOutput, nil
}
func main() {
// Init flags
// config path
var strFlagConfigPath string
flag.StringVar(&strFlagConfigPath, "config", "", "Specify the config path")
// General
var strFlagPIDPath string
flag.StringVar(&strFlagPIDPath, "pid-path", "", "Specify the path to create the PID path")
var nFlagMaxRetries int
flag.IntVar(&nFlagMaxRetries, "max-retries", -1, "Speiify the max amount of retries")
var nFlagTimeout int
flag.IntVar(&nFlagTimeout, "timeout", -1, "Speiify the timeout inbetween running apps in case of crash")
// Target app
var strFlagTargetApp string
flag.StringVar(&strFlagTargetApp, "target-app", "", "Specify the runtime of the running app")
var strFlagRawValidExitCode string
var err error
var arrFlagValidExitCode []int
flag.StringVar(&strFlagRawValidExitCode, "exit-code", "", "override the valid exit codes [Param need to be comma-seprated i.e. '-exit-code \"0,2\"']")
if strFlagRawValidExitCode != "" {
arrFlagValidExitCode, err = fncConvertExitCodeToInt(strFlagRawValidExitCode)
}
// Target logging
var bFlagOutputToStdOut bool
flag.BoolVar(&bFlagOutputToStdOut, "redirect-stdout", true, "Overrides redirection of target app output to stdout")
// Base config variable
var cfg cfgKiosk
flag.Parse()
//var strPIDFile string = "/var/run/kiosk/kiosk.pid"
//var strTargetApp string = "/usr/bin/firefox"
strConfigPath, err := fncFindConfig(strFlagConfigPath)
if err != nil {
log.Fatalln(err.Error())
}
cfg = fncTOMLRead(strConfigPath)
//Overriding config from params
if strFlagPIDPath != "" {
log.Println("Overriding PID file with parameter: ", strFlagPIDPath)
cfg.Main.PIDFilePath = strFlagPIDPath
}
if nFlagMaxRetries != -1 {
cfg.Main.MaxRetries = nFlagMaxRetries
}
if nFlagTimeout != -1 {
log.Println("Overriding Timeout between attempts with: ", strFlagTargetApp)
cfg.Main.Timeout = nFlagTimeout
}
if strFlagTargetApp != "" {
log.Println("Overriding Target app with parameter: ", strFlagTargetApp)
cfg.KioskTargetApp.TargetApp = strFlagTargetApp
}
if strFlagRawValidExitCode != "" {
log.Println("Overriding valid exit codes from parameter: ", strFlagRawValidExitCode)
cfg.KioskTargetApp.ValidExitCode = arrFlagValidExitCode
}
errConfig := fncVerifyConfig(cfg)
if errConfig != nil {
log.Fatalf("Error in config: \"%s\"", errConfig)
}
fncMainKiosk(cfg)
chanSignal := make(chan os.Signal, 1)
signal.Notify(
chanSignal,
syscall.SIGINT,
syscall.SIGTERM,
syscall.SIGQUIT,
syscall.SIGKILL)
chanExit := make(chan int)
go func() {
for {
sig := <-chanSignal
switch sig {
case syscall.SIGINT:
log.Println("Exiting due to request from outside")
fncPIDClear(cfg.Main.PIDFilePath)
os.Exit(0)
case syscall.SIGTERM:
log.Println("Exiting due to request from outside")
fncPIDClear(cfg.Main.PIDFilePath)
os.Exit(0)
case syscall.SIGQUIT:
log.Println("Exiting due to request from outside")
fncPIDClear(cfg.Main.PIDFilePath)
os.Exit(0)
case syscall.SIGKILL:
log.Println("Exiting due to request from outside")
fncPIDClear(cfg.Main.PIDFilePath)
os.Exit(0)
}
}
}()
nExitCode := <-chanExit
os.Exit(nExitCode)
}