This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
pid.go
66 lines (56 loc) · 1.6 KB
/
pid.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
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"
"strconv"
"syscall"
)
// CreatePidfile creates a pidfile.
// If the file already exists, it checks if the process is already running and terminates.
func CreatePidfile(pidFile string) {
if pidFile != "" {
if err := os.MkdirAll(filepath.Dir(pidFile), os.FileMode(0755)); err != nil {
log.Fatalf("Could not create path to pidfile %v", err)
}
if _, err := os.Stat(pidFile); err != nil && !os.IsNotExist(err) {
log.Fatalf("Failed to stat pidfile %v", err)
}
f, err := os.OpenFile(pidFile, os.O_CREATE|os.O_RDWR, 0644)
if err != nil {
log.Fatalf("Failed to open pidfile %v", err)
}
defer f.Close()
if pidBytes, err := ioutil.ReadAll(f); err != nil {
log.Fatalf("Failed to read from pidfile %v", err)
} else {
if len(pidBytes) == 0 {
goto foo
}
pid, err := strconv.Atoi(string(pidBytes))
if err != nil {
log.Fatalf("Invalid pid %v", err)
}
process, err := os.FindProcess(pid)
if err != nil {
log.Fatalf("Failed to find process %v, please delete the pid file %s manually", err, pidFile)
}
if err := process.Signal(syscall.Signal(0)); err == nil {
log.Fatalf("Process %d still running, please stop the process and delete the pid file %s manually", pid, pidFile)
}
}
foo:
if err = f.Truncate(0); err != nil {
log.Fatalf("Failed to truncate pidfile %v", err)
}
if _, err = f.Seek(0, 0); err != nil {
log.Fatalf("Failed to seek pidfile %v", err)
}
_, err = fmt.Fprintf(f, "%d", os.Getpid())
if err != nil {
log.Fatalf("Failed to write pidfile %v", err)
}
}
}