2015-07-25 04:35:07 -04:00
|
|
|
// Package pidfile provides structure and helper functions to create and remove
|
|
|
|
// PID file. A PID file is usually a file used to store the process ID of a
|
|
|
|
// running process.
|
2015-02-25 13:33:01 -05:00
|
|
|
package pidfile
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
// PIDFile is a file used to store the process ID of a running process.
|
|
|
|
type PIDFile struct {
|
2015-02-25 13:33:01 -05:00
|
|
|
path string
|
|
|
|
}
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
func checkPIDFileAlreadyExists(path string) error {
|
2015-02-25 13:33:01 -05:00
|
|
|
if pidString, err := ioutil.ReadFile(path); err == nil {
|
|
|
|
if pid, err := strconv.Atoi(string(pidString)); err == nil {
|
|
|
|
if _, err := os.Stat(filepath.Join("/proc", string(pid))); err == nil {
|
|
|
|
return fmt.Errorf("pid file found, ensure docker is not running or delete %s", path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
// New creates a PIDfile using the specified path.
|
|
|
|
func New(path string) (*PIDFile, error) {
|
|
|
|
if err := checkPIDFileAlreadyExists(path); err != nil {
|
2015-02-25 13:33:01 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-04-27 17:11:29 -04:00
|
|
|
if err := ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-25 13:33:01 -05:00
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
return &PIDFile{path: path}, nil
|
2015-02-25 13:33:01 -05:00
|
|
|
}
|
|
|
|
|
2015-07-25 04:35:07 -04:00
|
|
|
// Remove removes the PIDFile.
|
|
|
|
func (file PIDFile) Remove() error {
|
2015-02-25 13:33:01 -05:00
|
|
|
if err := os.Remove(file.path); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|