This repository has been archived by the owner on Jul 14, 2022. It is now read-only.
forked from rexray/rexray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
233 lines (193 loc) · 5.65 KB
/
util.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package util
import (
"fmt"
"io"
"os"
"os/exec"
"strconv"
"github.com/akutz/gotil"
"github.com/emccode/rexray/core/version"
)
const (
logDirPathSuffix = "/var/log/rexray"
etcDirPathSuffix = "/etc/rexray"
binDirPathSuffix = "/usr/bin"
runDirPathSuffix = "/var/run/rexray"
libDirPathSuffix = "/var/lib/rexray"
// UnitFilePath is the path to the SystemD service's unit file.
UnitFilePath = "/etc/systemd/system/rexray.service"
// InitFilePath is the path to the SystemV Service's init script.
InitFilePath = "/etc/init.d/rexray"
// EnvFileName is the name of the environment file used by the SystemD
// service.
EnvFileName = "rexray.env"
)
var (
thisExeDir string
thisExeName string
thisExeAbsPath string
prefix string
binDirPath string
binFilePath string
logDirPath string
libDirPath string
runDirPath string
etcDirPath string
pidFilePath string
)
func init() {
prefix = os.Getenv("REXRAY_HOME")
thisExeDir, thisExeName, thisExeAbsPath = gotil.GetThisPathParts()
}
// GetPrefix gets the root path to the REX-Ray data.
func GetPrefix() string {
return prefix
}
// Prefix sets the root path to the REX-Ray data.
func Prefix(p string) {
if p == "" || p == "/" {
return
}
binDirPath = ""
binFilePath = ""
logDirPath = ""
libDirPath = ""
runDirPath = ""
etcDirPath = ""
pidFilePath = ""
prefix = p
}
// IsPrefixed returns a flag indicating whether or not a prefix value is set.
func IsPrefixed() bool {
return !(prefix == "" || prefix == "/")
}
// Install executes the system install command.
func Install(args ...string) {
exec.Command("install", args...).Run()
}
// InstallChownRoot executes the system install command and chowns the target
// to the root user and group.
func InstallChownRoot(args ...string) {
a := []string{"-o", "0", "-g", "0"}
for _, i := range args {
a = append(a, i)
}
exec.Command("install", a...).Run()
}
// InstallDirChownRoot executes the system install command with a -d flag and
// chowns the target to the root user and group.
func InstallDirChownRoot(dirPath string) {
InstallChownRoot("-d", dirPath)
}
// EtcDirPath returns the path to the REX-Ray etc directory.
func EtcDirPath() string {
if etcDirPath == "" {
etcDirPath = fmt.Sprintf("%s%s", prefix, etcDirPathSuffix)
os.MkdirAll(etcDirPath, 0755)
}
return etcDirPath
}
// RunDirPath returns the path to the REX-Ray run directory.
func RunDirPath() string {
if runDirPath == "" {
runDirPath = fmt.Sprintf("%s%s", prefix, runDirPathSuffix)
os.MkdirAll(runDirPath, 0755)
}
return runDirPath
}
// LogDirPath returns the path to the REX-Ray log directory.
func LogDirPath() string {
if logDirPath == "" {
logDirPath = fmt.Sprintf("%s%s", prefix, logDirPathSuffix)
os.MkdirAll(logDirPath, 0755)
}
return logDirPath
}
// LibDirPath returns the path to the REX-Ray bin directory.
func LibDirPath() string {
if libDirPath == "" {
libDirPath = fmt.Sprintf("%s%s", prefix, libDirPathSuffix)
os.MkdirAll(libDirPath, 0755)
}
return libDirPath
}
// LibFilePath returns the path to a file inside the REX-Ray lib directory
// with the provided file name.
func LibFilePath(fileName string) string {
return fmt.Sprintf("%s/%s", LibDirPath(), fileName)
}
// BinDirPath returns the path to the REX-Ray bin directory.
func BinDirPath() string {
if binDirPath == "" {
binDirPath = fmt.Sprintf("%s%s", prefix, binDirPathSuffix)
os.MkdirAll(binDirPath, 0755)
}
return binDirPath
}
// PidFilePath returns the path to the REX-Ray PID file.
func PidFilePath() string {
if pidFilePath == "" {
pidFilePath = fmt.Sprintf("%s/rexray.pid", RunDirPath())
}
return pidFilePath
}
// BinFilePath returns the path to the REX-Ray executable.
func BinFilePath() string {
if binFilePath == "" {
binFilePath = fmt.Sprintf("%s/rexray", BinDirPath())
}
return binFilePath
}
// EtcFilePath returns the path to a file inside the REX-Ray etc directory
// with the provided file name.
func EtcFilePath(fileName string) string {
return fmt.Sprintf("%s/%s", EtcDirPath(), fileName)
}
// LogFilePath returns the path to a file inside the REX-Ray log directory
// with the provided file name.
func LogFilePath(fileName string) string {
return fmt.Sprintf("%s/%s", LogDirPath(), fileName)
}
// LogFile returns a writer to a file inside the REX-Ray log directory
// with the provided file name.
func LogFile(fileName string) (io.Writer, error) {
return os.OpenFile(
LogFilePath(fileName), os.O_CREATE|os.O_APPEND|os.O_RDWR, 0644)
}
// StdOutAndLogFile returns a mutltiplexed writer for the current process's
// stdout descriptor and a REX-Ray log file with the provided name.
func StdOutAndLogFile(fileName string) (io.Writer, error) {
lf, lfErr := LogFile(fileName)
if lfErr != nil {
return nil, lfErr
}
return io.MultiWriter(os.Stdout, lf), nil
}
// WritePidFile writes the current process ID to the REX-Ray PID file.
func WritePidFile(pid int) error {
if pid < 0 {
pid = os.Getpid()
}
return gotil.WriteStringToFile(fmt.Sprintf("%d", pid), PidFilePath())
}
// ReadPidFile reads the REX-Ray PID from the PID file.
func ReadPidFile() (int, error) {
pidStr, pidStrErr := gotil.ReadFileToString(PidFilePath())
if pidStrErr != nil {
return -1, pidStrErr
}
pid, atoiErr := strconv.Atoi(pidStr)
if atoiErr != nil {
return -1, atoiErr
}
return pid, nil
}
// PrintVersion prints the current version information to the provided writer.
func PrintVersion(out io.Writer) {
fmt.Fprintf(out, "Binary: %s\n", thisExeAbsPath)
fmt.Fprintf(out, "SemVer: %s\n", version.SemVer)
fmt.Fprintf(out, "OsArch: %s\n", version.Arch)
fmt.Fprintf(out, "Branch: %s\n", version.Branch)
fmt.Fprintf(out, "Commit: %s\n", version.ShaLong)
fmt.Fprintf(out, "Formed: %s\n", version.EpochToRfc1123())
}