mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
51f1a5a0ab
Signed-off-by: Derek Nola <derek.nola@suse.com>
67 lines
1.4 KiB
Go
67 lines
1.4 KiB
Go
package util
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func SetFileModeForPath(name string, mode os.FileMode) error {
|
|
return os.Chmod(name, mode)
|
|
}
|
|
|
|
func SetFileModeForFile(file *os.File, mode os.FileMode) error {
|
|
return file.Chmod(mode)
|
|
}
|
|
|
|
// ReadFile reads from a file
|
|
func ReadFile(path string) (string, error) {
|
|
if path == "" {
|
|
return "", nil
|
|
}
|
|
|
|
for start := time.Now(); time.Since(start) < 4*time.Minute; {
|
|
vpnBytes, err := os.ReadFile(path)
|
|
if err == nil {
|
|
return strings.TrimSpace(string(vpnBytes)), nil
|
|
} else if os.IsNotExist(err) {
|
|
logrus.Infof("Waiting for %s to be available\n", path)
|
|
time.Sleep(2 * time.Second)
|
|
} else {
|
|
return "", err
|
|
}
|
|
}
|
|
|
|
return "", errors.New("Timeout while trying to read the file")
|
|
}
|
|
|
|
// AtomicWrite firsts writes data to a temp file, then renames to the destination file.
|
|
// This ensures that the destination file is never partially written.
|
|
func AtomicWrite(fileName string, data []byte, perm os.FileMode) error {
|
|
f, err := os.CreateTemp(filepath.Dir(fileName), filepath.Base(fileName)+".tmp")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tmpName := f.Name()
|
|
defer os.Remove(tmpName)
|
|
if _, err := f.Write(data); err != nil {
|
|
f.Close()
|
|
return err
|
|
}
|
|
if err := f.Chmod(perm); err != nil {
|
|
return err
|
|
}
|
|
if err := f.Sync(); err != nil {
|
|
return err
|
|
}
|
|
if err := f.Close(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return os.Rename(tmpName, fileName)
|
|
}
|