forked from megaease/easeprobe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daemon.go
102 lines (87 loc) · 2.35 KB
/
daemon.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
/*
* Copyright (c) 2022, MegaEase
* All rights reserved.
*
* Licensed 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 daemon
import (
"errors"
"fmt"
"os"
"path/filepath"
"strconv"
"strings"
"github.com/megaease/easeprobe/global"
)
// Config is the daemon config
type Config struct {
PIDFile string
pidFd *os.File
}
// NewPIDFile create a new pid file
func NewPIDFile(pidfile string) (*Config, error) {
if pidfile == "" {
return nil, fmt.Errorf("pid file is empty")
}
fi, err := os.Stat(pidfile)
if err == nil { // file exists
if fi.IsDir() {
pidfile = filepath.Join(pidfile, global.DefaultPIDFile)
}
li, _ := os.Lstat(pidfile)
if li != nil && (li.Mode()&os.ModeSymlink == os.ModeSymlink) {
os.Remove(pidfile)
}
} else if errors.Is(err, os.ErrNotExist) { // file not exists
// create all of directories
if e := os.MkdirAll(filepath.Dir(pidfile), 0755); e != nil {
return nil, e
}
} else {
return nil, err
}
c := &Config{
PIDFile: pidfile,
}
pidstr := fmt.Sprintf("%d", os.Getpid())
if err := os.WriteFile(c.PIDFile, []byte(pidstr), 0600); err != nil {
return nil, err
}
c.pidFd, _ = os.OpenFile(c.PIDFile, os.O_APPEND|os.O_EXCL, 0600)
return c, nil
}
// CheckPIDFile check if the pid file exists
// if the PID file exists, return the PID of the process
// if the PID file does not exist, return -1
func (c *Config) CheckPIDFile() (int, error) {
buf, err := os.ReadFile(c.PIDFile)
if err != nil {
return -1, nil
}
pidstr := strings.TrimSpace(string(buf))
pid, err := strconv.Atoi(pidstr)
if err != nil {
return -1, nil
}
if processExists(pid) {
return pid, fmt.Errorf("pid file(%s) found, ensure %s(%d) is not running",
c.PIDFile, global.DefaultProg, pid)
}
return -1, nil
}
// RemovePIDFile remove the pid file
func (c *Config) RemovePIDFile() error {
c.pidFd.Close()
return os.Remove(c.PIDFile)
}