Files
Olares/cli/pkg/core/util/file.go

373 lines
6.9 KiB
Go
Executable File

/*
Copyright 2021 The KubeSphere 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.
*/
package util
import (
"archive/tar"
"compress/gzip"
"crypto/md5"
"crypto/sha256"
"fmt"
"io"
"io/fs"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/beclab/Olares/cli/pkg/core/logger"
)
func IsExist(path string) bool {
_, err := os.Stat(path)
if err != nil {
if os.IsExist(err) {
return true
}
if os.IsNotExist(err) {
return false
}
return false
}
return true
}
func ChangeDir(path string) error {
return os.Chdir(path)
}
func CreateDir(path string) error {
if IsExist(path) == false {
err := os.MkdirAll(path, os.ModePerm)
if err != nil {
return err
}
}
return nil
}
func RemoveDir(path string) error {
if IsExist(path) == true {
err := os.RemoveAll(path)
if err != nil {
return err
}
}
return nil
}
func RemoveFile(path string) error {
if IsExist(path) {
return os.Remove(path)
}
return nil
}
func IsDir(path string) bool {
s, err := os.Stat(path)
if err != nil {
return false
}
return s.IsDir()
}
func IsExecutable(path string) bool {
info, err := os.Stat(path)
if err != nil {
return false
}
return info.Mode().Perm()&0111 != 0
}
func CountDirFiles(dirName string) int {
if !IsDir(dirName) {
return 0
}
var count int
err := filepath.Walk(dirName, func(path string, info os.FileInfo, err error) error {
if info.IsDir() {
return nil
}
count++
return nil
})
if err != nil {
logger.Fatalf("count dir files failed %v", err)
return 0
}
return count
}
// FileMD5 count file md5
func FileMD5(path string) (string, error) {
file, err := os.Open(path)
defer file.Close()
if err != nil {
return "", err
}
m := md5.New()
if _, err := io.Copy(m, file); err != nil {
return "", err
}
fileMd5 := fmt.Sprintf("%x", m.Sum(nil))
return fileMd5, nil
}
func Sha256sum(path string) (string, error) {
file, err := os.Open(path)
defer file.Close()
if err != nil {
return "", err
}
data, err := ioutil.ReadAll(file)
if err != nil {
return "", err
}
return fmt.Sprintf("%x", sha256.Sum256(data)), nil
}
func LocalMd5Sum(src string) string {
md5Str, err := FileMD5(src)
if err != nil {
logger.Fatalf("get file md5 failed %v", err)
return ""
}
return md5Str
}
// MkFileFullPathDir is used to file create the full path.
// eg. there is a file "./aa/bb/xxx.txt", and dir ./aa/bb is not exist, and will create the full path dir.
func MkFileFullPathDir(fileName string) error {
localDir := filepath.Dir(fileName)
err := Mkdir(localDir)
if err != nil {
return fmt.Errorf("create local dir %s failed: %v", localDir, err)
}
return nil
}
func Mkdir(dirName string) error {
return os.MkdirAll(dirName, os.ModePerm)
}
func WriteFile(fileName string, content []byte, perm os.FileMode) error {
dir := filepath.Dir(fileName)
if _, err := os.Stat(dir); os.IsNotExist(err) {
if err = os.MkdirAll(dir, 0755); err != nil {
return err
}
}
if err := ioutil.WriteFile(fileName, content, perm); err != nil {
return err
}
return nil
}
func CopyFile(src, dst string) error {
sourceFile, err := os.Open(src)
if err != nil {
return err
}
defer sourceFile.Close()
dstDir := filepath.Dir(dst)
if err := os.MkdirAll(dstDir, 0755); err != nil {
return err
}
destFile, err := os.Create(dst)
if err != nil {
return err
}
defer destFile.Close()
_, err = io.Copy(destFile, sourceFile)
return err
}
func CopyFileToDir(src, dir string) error {
dest := filepath.Join(dir, filepath.Base(src))
return CopyFile(src, dest)
}
func MoveFile(src, dst string) error {
if err := CopyFile(src, dst); err != nil {
return err
}
return os.Remove(src)
}
func CopyDirectory(src, dst string) error {
return filepath.Walk(src, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
relPath, err := filepath.Rel(src, path)
if err != nil {
return err
}
dstPath := filepath.Join(dst, relPath)
if info.IsDir() {
return os.MkdirAll(dstPath, info.Mode())
}
return CopyFile(path, dstPath)
})
}
func MoveDirectory(src, dst string) error {
if err := CopyDirectory(src, dst); err != nil {
return err
}
return os.RemoveAll(src)
}
func CopyDirectoryIfExists(src, dstDir string) error {
if _, err := os.Stat(src); os.IsNotExist(err) {
return nil // Skip if source doesn't exist
}
return CopyDirectory(src, dstDir)
}
func ReplaceInFile(filepath, old, new string) error {
content, err := os.ReadFile(filepath)
if err != nil {
return err
}
newContent := strings.ReplaceAll(string(content), old, new)
return os.WriteFile(filepath, []byte(newContent), 0644)
}
func Tar(src, dst, trimPrefix string) error {
fw, err := os.Create(dst)
if err != nil {
return err
}
defer fw.Close()
gw := gzip.NewWriter(fw)
defer gw.Close()
tw := tar.NewWriter(gw)
defer tw.Close()
return filepath.Walk(src, func(path string, info fs.FileInfo, err error) error {
if err != nil {
return err
}
hdr, err := tar.FileInfoHeader(info, "")
if err != nil {
return err
}
if !info.Mode().IsRegular() {
return nil
}
fr, err := os.Open(path)
defer fr.Close()
if err != nil {
return err
}
path = strings.TrimPrefix(path, trimPrefix)
fmt.Println(strings.TrimPrefix(path, string(filepath.Separator)))
hdr.Name = strings.TrimPrefix(path, string(filepath.Separator))
if err := tw.WriteHeader(hdr); err != nil {
return err
}
if _, err := io.Copy(tw, fr); err != nil {
return err
}
return nil
})
}
func Untar(src, dst string) error {
fr, err := os.Open(src)
if err != nil {
return err
}
defer fr.Close()
gr, err := gzip.NewReader(fr)
if err != nil {
return err
}
defer gr.Close()
tr := tar.NewReader(gr)
for {
hdr, err := tr.Next()
switch {
case err == io.EOF:
return nil
case err != nil:
return err
case hdr == nil:
continue
}
dstPath := filepath.Join(dst, hdr.Name)
switch hdr.Typeflag {
case tar.TypeDir:
if !IsExist(dstPath) && IsDir(dstPath) {
if err := CreateDir(dstPath); err != nil {
return err
}
}
case tar.TypeReg:
if dir := filepath.Dir(dstPath); !IsExist(dir) {
if err := CreateDir(dir); err != nil {
return err
}
}
file, err := os.OpenFile(dstPath, os.O_CREATE|os.O_RDWR|os.O_TRUNC, os.FileMode(hdr.Mode))
if err != nil {
return err
}
if _, err = io.Copy(file, tr); err != nil {
return err
}
fmt.Println(dstPath)
file.Close()
}
}
}
func GetCommand(c string) (string, error) {
return exec.LookPath(c)
}