-
Notifications
You must be signed in to change notification settings - Fork 287
/
dfpath.go
240 lines (200 loc) · 5.24 KB
/
dfpath.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
234
235
236
237
238
239
240
/*
* Copyright 2020 The Dragonfly Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//go:generate mockgen -destination mocks/dfpath_mock.go -source dfpath.go -package mocks
package dfpath
import (
"io/fs"
"os"
"path"
"path/filepath"
"sync"
"github.com/hashicorp/go-multierror"
)
// Dfpath is the interface used for init project path.
type Dfpath interface {
WorkHome() string
WorkHomeMode() fs.FileMode
CacheDir() string
CacheDirMode() fs.FileMode
LogDir() string
DataDir() string
DataDirMode() fs.FileMode
PluginDir() string
DaemonSockPath() string
DaemonLockPath() string
DfgetLockPath() string
}
// Dfpath provides init project path function.
type dfpath struct {
workHome string
workHomeMode fs.FileMode
cacheDir string
cacheDirMode fs.FileMode
logDir string
dataDir string
dataDirMode fs.FileMode
pluginDir string
daemonSockPath string
daemonLockPath string
dfgetLockPath string
}
// Cache of the dfpath.
var cache struct {
sync.Once
d *dfpath
err *multierror.Error
}
// Option is a functional option for configuring the dfpath.
type Option func(d *dfpath)
// WithWorkHome set the workhome directory.
func WithWorkHome(dir string) Option {
return func(d *dfpath) {
d.workHome = dir
}
}
// WithWorkHomeMode sets the workHome directory mode
func WithWorkHomeMode(mode fs.FileMode) Option {
return func(d *dfpath) {
d.workHomeMode = mode
}
}
// WithCacheDir set the cache directory.
func WithCacheDir(dir string) Option {
return func(d *dfpath) {
d.cacheDir = dir
}
}
// WithCacheDirMode sets the cacheDir mode
func WithCacheDirMode(mode fs.FileMode) Option {
return func(d *dfpath) {
d.cacheDirMode = mode
}
}
// WithLogDir set the log directory.
func WithLogDir(dir string) Option {
return func(d *dfpath) {
d.logDir = dir
}
}
// WithDataDir set download data directory.
func WithDataDir(dir string) Option {
return func(d *dfpath) {
d.dataDir = dir
}
}
// WithDataDirMode sets the dataDir mode
func WithDataDirMode(mode fs.FileMode) Option {
return func(d *dfpath) {
d.dataDirMode = mode
}
}
// WithPluginDir set plugin directory.
func WithPluginDir(dir string) Option {
return func(d *dfpath) {
d.pluginDir = dir
}
}
// WithDownloadUnixSocketPath set unix socket path.
func WithDownloadUnixSocketPath(path string) Option {
return func(d *dfpath) {
d.daemonSockPath = path
}
}
// New returns a new dfpath interface.
func New(options ...Option) (Dfpath, error) {
cache.Do(func() {
d := &dfpath{
workHome: DefaultWorkHome,
workHomeMode: DefaultWorkHomeMode,
logDir: DefaultLogDir,
dataDir: DefaultDataDir,
dataDirMode: DefaultDataDirMode,
pluginDir: DefaultPluginDir,
cacheDir: DefaultCacheDir,
cacheDirMode: DefaultCacheDirMode,
daemonSockPath: DefaultDownloadUnixSocketPath,
}
for _, opt := range options {
opt(d)
}
// Initialize dfdaemon path.
d.daemonLockPath = filepath.Join(d.workHome, "daemon.lock")
d.dfgetLockPath = filepath.Join(d.workHome, "dfget.lock")
// Create workhome directory.
if err := os.MkdirAll(d.workHome, d.workHomeMode); err != nil {
cache.err = multierror.Append(cache.err, err)
}
// Create log directory.
if err := os.MkdirAll(d.logDir, fs.FileMode(0700)); err != nil {
cache.err = multierror.Append(cache.err, err)
}
// Create plugin directory.
if err := os.MkdirAll(d.pluginDir, fs.FileMode(0700)); err != nil {
cache.err = multierror.Append(cache.err, err)
}
// Create unix socket directory.
if err := os.MkdirAll(path.Dir(d.daemonSockPath), fs.FileMode(0700)); err != nil {
cache.err = multierror.Append(cache.err, err)
}
// Create cache directory.
if err := os.MkdirAll(d.cacheDir, d.cacheDirMode); err != nil {
cache.err = multierror.Append(cache.err, err)
}
// Create data directory.
if err := os.MkdirAll(d.dataDir, d.dataDirMode); err != nil {
cache.err = multierror.Append(cache.err, err)
}
cache.d = d
})
if cache.err.ErrorOrNil() != nil {
return nil, cache.err
}
d := *cache.d
return &d, nil
}
func (d *dfpath) WorkHome() string {
return d.workHome
}
func (d *dfpath) WorkHomeMode() fs.FileMode {
return d.workHomeMode
}
func (d *dfpath) CacheDir() string {
return d.cacheDir
}
func (d *dfpath) CacheDirMode() fs.FileMode {
return d.cacheDirMode
}
func (d *dfpath) LogDir() string {
return d.logDir
}
func (d *dfpath) DataDir() string {
return d.dataDir
}
func (d *dfpath) DataDirMode() fs.FileMode {
return d.dataDirMode
}
func (d *dfpath) PluginDir() string {
return d.pluginDir
}
func (d *dfpath) DaemonSockPath() string {
return d.daemonSockPath
}
func (d *dfpath) DaemonLockPath() string {
return d.daemonLockPath
}
func (d *dfpath) DfgetLockPath() string {
return d.dfgetLockPath
}