-
Notifications
You must be signed in to change notification settings - Fork 312
/
profile.go
89 lines (76 loc) · 2.54 KB
/
profile.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
// Copyright 2020 PingCAP, Inc.
//
// 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,
// See the License for the specific language governing permissions and
// limitations under the License.
package spec
import (
"os"
"os/user"
"path"
"path/filepath"
"github.com/pingcap/tiup/pkg/meta"
utils2 "github.com/pingcap/tiup/pkg/utils"
"github.com/pingcap/errors"
tiuplocaldata "github.com/pingcap/tiup/pkg/localdata"
)
// sub directory names
const (
TiOpsPackageCacheDir = "packages"
TiOpsClusterDir = "clusters"
TiOpsAuditDir = "audit"
)
var profileDir string
// getHomeDir get the home directory of current user (if they have one).
// The result path might be empty.
func getHomeDir() (string, error) {
u, err := user.Current()
if err != nil {
return "", errors.Trace(err)
}
return u.HomeDir, nil
}
var initialized = false
// Initialize initializes the global variables of meta package. If the
// environment variable TIUP_COMPONENT_DATA_DIR is set, it is used as root of
// the profile directory, otherwise the `$HOME/.tiops` of current user is used.
// The directory will be created before return if it does not already exist.
func Initialize(base string) error {
tiupData := os.Getenv(tiuplocaldata.EnvNameComponentDataDir)
if tiupData == "" {
homeDir, err := getHomeDir()
if err != nil {
return errors.Trace(err)
}
profileDir = path.Join(homeDir, ".tiup", tiuplocaldata.StorageParentDir, base)
} else {
profileDir = tiupData
}
clusterBaseDir := filepath.Join(profileDir, TiOpsClusterDir)
tidbSpec = meta.NewSpec(clusterBaseDir)
initialized = true
// make sure the dir exist
return utils2.CreateDir(profileDir)
}
// ProfileDir returns the full profile directory path of TiOps.
func ProfileDir() string {
return profileDir
}
// ProfilePath joins a path under the profile dir
func ProfilePath(subpath ...string) string {
return path.Join(append([]string{profileDir}, subpath...)...)
}
// ClusterPath returns the full path to a subpath (file or directory) of a
// cluster, it is a subdir in the profile dir of the user, with the cluster name
// as its name.
// It is not guaranteed the path already exist.
func ClusterPath(cluster string, subpath ...string) string {
return GetSpecManager().Path(cluster, subpath...)
}