2018-11-18 17:55:05 +00:00
|
|
|
// Copyright 2017 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2017-03-23 22:28:55 +00:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"os/user"
|
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
2020-07-18 15:27:41 +00:00
|
|
|
"strconv"
|
2017-03-23 22:28:55 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2018-11-18 17:55:05 +00:00
|
|
|
const gopsConfigDirEnvKey = "GOPS_CONFIG_DIR"
|
|
|
|
|
2017-03-23 22:28:55 +00:00
|
|
|
func ConfigDir() (string, error) {
|
2018-11-18 17:55:05 +00:00
|
|
|
if configDir := os.Getenv(gopsConfigDirEnvKey); configDir != "" {
|
|
|
|
return configDir, nil
|
|
|
|
}
|
|
|
|
|
2020-07-18 15:27:41 +00:00
|
|
|
if osUserConfigDir := getOSUserConfigDir(); osUserConfigDir != "" {
|
|
|
|
return filepath.Join(osUserConfigDir, "gops"), nil
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:28:55 +00:00
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return filepath.Join(os.Getenv("APPDATA"), "gops"), nil
|
|
|
|
}
|
2020-07-18 15:27:41 +00:00
|
|
|
|
|
|
|
if xdgConfigDir := os.Getenv("XDG_CONFIG_HOME"); xdgConfigDir != "" {
|
|
|
|
return filepath.Join(xdgConfigDir, "gops"), nil
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:28:55 +00:00
|
|
|
homeDir := guessUnixHomeDir()
|
|
|
|
if homeDir == "" {
|
|
|
|
return "", errors.New("unable to get current user home directory: os/user lookup failed; $HOME is empty")
|
|
|
|
}
|
|
|
|
return filepath.Join(homeDir, ".config", "gops"), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func guessUnixHomeDir() string {
|
|
|
|
usr, err := user.Current()
|
|
|
|
if err == nil {
|
|
|
|
return usr.HomeDir
|
|
|
|
}
|
|
|
|
return os.Getenv("HOME")
|
|
|
|
}
|
|
|
|
|
|
|
|
func PIDFile(pid int) (string, error) {
|
|
|
|
gopsdir, err := ConfigDir()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2020-07-18 15:27:41 +00:00
|
|
|
return filepath.Join(gopsdir, strconv.Itoa(pid)), nil
|
2017-03-23 22:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetPort(pid int) (string, error) {
|
|
|
|
portfile, err := PIDFile(pid)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
b, err := ioutil.ReadFile(portfile)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
port := strings.TrimSpace(string(b))
|
|
|
|
return port, nil
|
|
|
|
}
|