blob: 3e57073658e9b1307b0a42f81f05220b18f9e2a8 [file] [log] [blame]
package pidfile
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strconv"
)
type PidFile struct {
path string
}
func checkPidFileAlreadyExists(path string) error {
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
}
func New(path string) (*PidFile, error) {
if err := checkPidFileAlreadyExists(path); err != nil {
return nil, err
}
if err := ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644); err != nil {
return nil, err
}
return &PidFile{path: path}, nil
}
func (file PidFile) Remove() error {
if err := os.Remove(file.path); err != nil {
return err
}
return nil
}