2018-03-14 14:12:26 +08:00
|
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
|
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
|
|
|
// must be obtained first.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
package util
|
|
|
|
|
|
|
|
|
|
import (
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"archive/zip"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
"fmt"
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"io"
|
2017-11-09 17:32:02 +08:00
|
|
|
|
"io/ioutil"
|
2017-11-13 21:54:11 +08:00
|
|
|
|
"net"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
"os"
|
|
|
|
|
"os/exec"
|
2018-01-17 22:06:58 +08:00
|
|
|
|
"path"
|
2018-01-23 18:07:02 +08:00
|
|
|
|
"path/filepath"
|
2018-05-16 13:23:33 +08:00
|
|
|
|
"strconv"
|
2017-11-09 17:32:02 +08:00
|
|
|
|
"strings"
|
2018-01-23 18:07:02 +08:00
|
|
|
|
"sync"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/Sirupsen/logrus"
|
2017-11-09 17:32:02 +08:00
|
|
|
|
"github.com/twinj/uuid"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
//CheckAndCreateDir check and create dir
|
|
|
|
|
func CheckAndCreateDir(path string) error {
|
|
|
|
|
if subPathExists, err := FileExists(path); err != nil {
|
|
|
|
|
return fmt.Errorf("Could not determine if subPath %s exists; will not attempt to change its permissions", path)
|
|
|
|
|
} else if !subPathExists {
|
|
|
|
|
// Create the sub path now because if it's auto-created later when referenced, it may have an
|
|
|
|
|
// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
|
|
|
|
|
// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
|
|
|
|
|
// later auto-create it with the incorrect mode 0750
|
|
|
|
|
if err := os.MkdirAll(path, 0755); err != nil {
|
|
|
|
|
return fmt.Errorf("failed to mkdir:%s", path)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := os.Chmod(path, 0755); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-01 11:30:54 +08:00
|
|
|
|
//DirIsEmpty 验证目录是否为空
|
|
|
|
|
func DirIsEmpty(dir string) bool {
|
|
|
|
|
infos, _ := ioutil.ReadDir(dir)
|
|
|
|
|
if len(infos) == 0 {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-15 12:27:03 +08:00
|
|
|
|
//OpenOrCreateFile open or create file
|
|
|
|
|
func OpenOrCreateFile(filename string) (*os.File, error) {
|
|
|
|
|
return os.OpenFile(filename, os.O_RDWR|os.O_CREATE, 0777)
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
//FileExists check file exist
|
|
|
|
|
func FileExists(filename string) (bool, error) {
|
|
|
|
|
if _, err := os.Stat(filename); os.IsNotExist(err) {
|
|
|
|
|
return false, nil
|
|
|
|
|
} else if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
return true, nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-17 22:06:58 +08:00
|
|
|
|
//SearchFileBody 搜索文件中是否含有指定字符串
|
|
|
|
|
func SearchFileBody(filename, searchStr string) bool {
|
|
|
|
|
body, _ := ioutil.ReadFile(filename)
|
|
|
|
|
return strings.Contains(string(body), searchStr)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//IsHaveFile 指定目录是否含有文件
|
|
|
|
|
//.开头文件除外
|
|
|
|
|
func IsHaveFile(path string) bool {
|
|
|
|
|
files, _ := ioutil.ReadDir(path)
|
|
|
|
|
for _, file := range files {
|
|
|
|
|
if !strings.HasPrefix(file.Name(), ".") {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//SearchFile 搜索指定目录是否有指定文件,指定搜索目录层数,-1为全目录搜索
|
|
|
|
|
func SearchFile(pathDir, name string, level int) bool {
|
|
|
|
|
if level == 0 {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
files, _ := ioutil.ReadDir(pathDir)
|
|
|
|
|
var dirs []os.FileInfo
|
|
|
|
|
for _, file := range files {
|
|
|
|
|
if file.IsDir() {
|
|
|
|
|
dirs = append(dirs, file)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if file.Name() == name {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if level == 1 {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
for _, dir := range dirs {
|
|
|
|
|
ok := SearchFile(path.Join(pathDir, dir.Name()), name, level-1)
|
|
|
|
|
if ok {
|
|
|
|
|
return ok
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//FileExistsWithSuffix 指定目录是否含有指定后缀的文件
|
|
|
|
|
func FileExistsWithSuffix(pathDir, suffix string) bool {
|
|
|
|
|
files, _ := ioutil.ReadDir(pathDir)
|
|
|
|
|
for _, file := range files {
|
|
|
|
|
if strings.HasSuffix(file.Name(), suffix) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
//CmdRunWithTimeout exec cmd with timeout
|
|
|
|
|
func CmdRunWithTimeout(cmd *exec.Cmd, timeout time.Duration) (bool, error) {
|
|
|
|
|
done := make(chan error)
|
|
|
|
|
if cmd.Process != nil { //还原执行状态
|
|
|
|
|
cmd.Process = nil
|
|
|
|
|
cmd.ProcessState = nil
|
|
|
|
|
}
|
|
|
|
|
if err := cmd.Start(); err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
go func() {
|
|
|
|
|
done <- cmd.Wait()
|
|
|
|
|
}()
|
|
|
|
|
var err error
|
|
|
|
|
select {
|
|
|
|
|
case <-time.After(timeout):
|
|
|
|
|
// timeout
|
|
|
|
|
if err = cmd.Process.Kill(); err != nil {
|
|
|
|
|
logrus.Errorf("failed to kill: %s, error: %s", cmd.Path, err.Error())
|
|
|
|
|
}
|
|
|
|
|
go func() {
|
|
|
|
|
<-done // allow goroutine to exit
|
|
|
|
|
}()
|
|
|
|
|
logrus.Info("process:%s killed", cmd.Path)
|
|
|
|
|
return true, err
|
|
|
|
|
case err = <-done:
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-09 17:32:02 +08:00
|
|
|
|
|
|
|
|
|
//ReadHostID 读取当前机器ID
|
|
|
|
|
//ID是节点的唯一标识,acp_node将把ID与机器信息的绑定关系维护于etcd中
|
|
|
|
|
func ReadHostID(filePath string) (string, error) {
|
|
|
|
|
if filePath == "" {
|
2018-04-24 17:14:58 +08:00
|
|
|
|
filePath = "/opt/rainbond/etc/node/node_host_uuid.conf"
|
2017-11-09 17:32:02 +08:00
|
|
|
|
}
|
|
|
|
|
_, err := os.Stat(filePath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if strings.HasSuffix(err.Error(), "no such file or directory") {
|
|
|
|
|
uid := uuid.NewV4().String()
|
|
|
|
|
err = ioutil.WriteFile(filePath, []byte("host_uuid="+uid), 0777)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Error("Write host_uuid file error.", err.Error())
|
|
|
|
|
}
|
|
|
|
|
return uid, nil
|
|
|
|
|
}
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
body, err := ioutil.ReadFile(filePath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
info := strings.Split(strings.TrimSpace(string(body)), "=")
|
|
|
|
|
if len(info) == 2 {
|
|
|
|
|
return info[1], nil
|
|
|
|
|
}
|
|
|
|
|
return "", fmt.Errorf("Invalid host uuid from file")
|
|
|
|
|
}
|
2017-11-13 21:54:11 +08:00
|
|
|
|
|
|
|
|
|
//LocalIP 获取本机 ip
|
|
|
|
|
// 获取第一个非 loopback ip
|
|
|
|
|
func LocalIP() (net.IP, error) {
|
|
|
|
|
tables, err := net.Interfaces()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
for _, t := range tables {
|
|
|
|
|
addrs, err := t.Addrs()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
for _, a := range addrs {
|
|
|
|
|
ipnet, ok := a.(*net.IPNet)
|
|
|
|
|
if !ok || ipnet.IP.IsLoopback() {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if v4 := ipnet.IP.To4(); v4 != nil {
|
|
|
|
|
return v4, nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil, fmt.Errorf("cannot find local IP address")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//GetIDFromKey 从 etcd 的 key 中取 id
|
|
|
|
|
func GetIDFromKey(key string) string {
|
|
|
|
|
index := strings.LastIndex(key, "/")
|
|
|
|
|
if index < 0 {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
if strings.Contains(key, "-") { //build in任务,为了给不同node做一个区分
|
|
|
|
|
return strings.Split(key[index+1:], "-")[0]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return key[index+1:]
|
|
|
|
|
}
|
2017-12-22 17:01:54 +08:00
|
|
|
|
|
|
|
|
|
//Deweight 去除数组重复
|
|
|
|
|
func Deweight(data *[]string) {
|
|
|
|
|
var result []string
|
|
|
|
|
if len(*data) < 1024 {
|
|
|
|
|
// 切片长度小于1024的时候,循环来过滤
|
|
|
|
|
for i := range *data {
|
|
|
|
|
flag := true
|
|
|
|
|
for j := range result {
|
|
|
|
|
if result[j] == (*data)[i] {
|
|
|
|
|
flag = false // 存在重复元素,标识为false
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-24 18:38:07 +08:00
|
|
|
|
if flag && (*data)[i] != "" { // 标识为false,不添加进结果
|
2017-12-22 17:01:54 +08:00
|
|
|
|
result = append(result, (*data)[i])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// 大于的时候,通过map来过滤
|
|
|
|
|
var tmp = make(map[string]byte)
|
|
|
|
|
for _, d := range *data {
|
|
|
|
|
l := len(tmp)
|
|
|
|
|
tmp[d] = 0
|
2017-12-24 18:38:07 +08:00
|
|
|
|
if len(tmp) != l && d != "" { // 加入map后,map长度变化,则元素不重复
|
2017-12-22 17:01:54 +08:00
|
|
|
|
result = append(result, d)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*data = result
|
|
|
|
|
}
|
2018-01-23 18:07:02 +08:00
|
|
|
|
|
2018-05-16 13:23:33 +08:00
|
|
|
|
//GetDirSizeByCmd get dir sizes by du command
|
|
|
|
|
//return kb
|
|
|
|
|
func GetDirSizeByCmd(path string) float64 {
|
|
|
|
|
out, err := CmdExec(fmt.Sprintf("du -sk %s", path))
|
|
|
|
|
if err != nil {
|
|
|
|
|
fmt.Println(err)
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
info := strings.Split(out, " ")
|
|
|
|
|
fmt.Println(info)
|
|
|
|
|
if len(info) < 2 {
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
i, _ := strconv.Atoi(info[0])
|
|
|
|
|
return float64(i)
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 11:08:44 +08:00
|
|
|
|
//GetFileSize get file size
|
|
|
|
|
func GetFileSize(path string) int64 {
|
|
|
|
|
if fileInfo, err := os.Stat(path); err == nil {
|
|
|
|
|
return fileInfo.Size()
|
|
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:07:02 +08:00
|
|
|
|
//GetDirSize kb为单位
|
|
|
|
|
func GetDirSize(path string) float64 {
|
|
|
|
|
if ok, err := FileExists(path); err != nil || !ok {
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileSizes := make(chan int64)
|
2018-01-31 14:24:09 +08:00
|
|
|
|
concurrent := make(chan int, 10)
|
2018-01-23 18:07:02 +08:00
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
|
|
|
|
|
wg.Add(1)
|
2018-01-31 14:24:09 +08:00
|
|
|
|
go walkDir(path, &wg, fileSizes, concurrent)
|
2018-01-23 18:07:02 +08:00
|
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
|
wg.Wait() //等待goroutine结束
|
|
|
|
|
close(fileSizes)
|
|
|
|
|
}()
|
|
|
|
|
var nfiles, nbytes int64
|
|
|
|
|
loop:
|
|
|
|
|
for {
|
|
|
|
|
select {
|
|
|
|
|
case size, ok := <-fileSizes:
|
|
|
|
|
if !ok {
|
|
|
|
|
break loop
|
|
|
|
|
}
|
|
|
|
|
nfiles++
|
|
|
|
|
nbytes += size
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return float64(nbytes / 1024)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//获取目录dir下的文件大小
|
2018-01-31 14:24:09 +08:00
|
|
|
|
func walkDir(dir string, wg *sync.WaitGroup, fileSizes chan<- int64, concurrent chan int) {
|
2018-01-23 18:07:02 +08:00
|
|
|
|
defer wg.Done()
|
2018-01-31 14:24:09 +08:00
|
|
|
|
concurrent <- 1
|
|
|
|
|
defer func() {
|
|
|
|
|
<-concurrent
|
|
|
|
|
}()
|
2018-01-23 18:07:02 +08:00
|
|
|
|
for _, entry := range dirents(dir) {
|
|
|
|
|
if entry.IsDir() { //目录
|
|
|
|
|
wg.Add(1)
|
|
|
|
|
subDir := filepath.Join(dir, entry.Name())
|
2018-01-31 14:24:09 +08:00
|
|
|
|
go walkDir(subDir, wg, fileSizes, concurrent)
|
2018-01-23 18:07:02 +08:00
|
|
|
|
} else {
|
|
|
|
|
fileSizes <- entry.Size()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//sema is a counting semaphore for limiting concurrency in dirents
|
|
|
|
|
var sema = make(chan struct{}, 20)
|
|
|
|
|
|
|
|
|
|
//读取目录dir下的文件信息
|
|
|
|
|
func dirents(dir string) []os.FileInfo {
|
|
|
|
|
sema <- struct{}{}
|
|
|
|
|
defer func() { <-sema }()
|
|
|
|
|
entries, err := ioutil.ReadDir(dir)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Errorf("get file sizt: %v\n", err)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
return entries
|
|
|
|
|
}
|
2018-03-03 12:56:26 +08:00
|
|
|
|
|
|
|
|
|
//RemoveSpaces 去除空格项
|
|
|
|
|
func RemoveSpaces(sources []string) (re []string) {
|
|
|
|
|
for _, s := range sources {
|
2018-03-03 13:24:40 +08:00
|
|
|
|
if s != " " && s != "" {
|
2018-03-03 12:56:26 +08:00
|
|
|
|
re = append(re, s)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-04-24 18:02:00 +08:00
|
|
|
|
|
|
|
|
|
//CmdExec CmdExec
|
|
|
|
|
func CmdExec(args string) (string, error) {
|
|
|
|
|
out, err := exec.Command("bash", "-c", args).Output()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
return string(out), nil
|
|
|
|
|
}
|
2018-05-23 11:08:44 +08:00
|
|
|
|
|
|
|
|
|
//Zip zip compressing source dir to target file
|
|
|
|
|
func Zip(source, target string) error {
|
2018-05-23 12:38:23 +08:00
|
|
|
|
if err := CheckAndCreateDir(filepath.Dir(target)); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2018-05-23 11:08:44 +08:00
|
|
|
|
zipfile, err := os.Create(target)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer zipfile.Close()
|
|
|
|
|
|
|
|
|
|
archive := zip.NewWriter(zipfile)
|
|
|
|
|
defer archive.Close()
|
|
|
|
|
|
|
|
|
|
info, err := os.Stat(source)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var baseDir string
|
|
|
|
|
if info.IsDir() {
|
|
|
|
|
baseDir = filepath.Base(source)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
filepath.Walk(source, func(path string, info os.FileInfo, err error) error {
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header, err := zip.FileInfoHeader(info)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if baseDir != "" {
|
|
|
|
|
header.Name = filepath.Join(baseDir, strings.TrimPrefix(path, source))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if info.IsDir() {
|
|
|
|
|
header.Name += "/"
|
|
|
|
|
} else {
|
|
|
|
|
header.Method = zip.Deflate
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writer, err := archive.CreateHeader(header)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if info.IsDir() {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file, err := os.Open(path)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer file.Close()
|
|
|
|
|
_, err = io.Copy(writer, file)
|
|
|
|
|
return err
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Unzip archive file to target dir
|
|
|
|
|
func Unzip(archive, target string) error {
|
|
|
|
|
reader, err := zip.OpenReader(archive)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := os.MkdirAll(target, 0755); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, file := range reader.File {
|
|
|
|
|
run := func() error {
|
|
|
|
|
path := filepath.Join(target, file.Name)
|
|
|
|
|
if file.FileInfo().IsDir() {
|
|
|
|
|
os.MkdirAll(path, file.Mode())
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileReader, err := file.Open()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer fileReader.Close()
|
|
|
|
|
|
|
|
|
|
targetFile, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, file.Mode())
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer targetFile.Close()
|
|
|
|
|
|
|
|
|
|
if _, err := io.Copy(targetFile, fileReader); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
if err := run(); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2018-05-28 13:44:50 +08:00
|
|
|
|
|
|
|
|
|
//GetParentDirectory GetParentDirectory
|
|
|
|
|
func GetParentDirectory(dirctory string) string {
|
|
|
|
|
return substr(dirctory, 0, strings.LastIndex(dirctory, "/"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func substr(s string, pos, length int) string {
|
|
|
|
|
runes := []rune(s)
|
|
|
|
|
l := pos + length
|
|
|
|
|
if l > len(runes) {
|
|
|
|
|
l = len(runes)
|
|
|
|
|
}
|
|
|
|
|
return string(runes[pos:l])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Rename move file
|
|
|
|
|
func Rename(old, new string) error {
|
|
|
|
|
_, err := os.Stat(GetParentDirectory(new))
|
|
|
|
|
if err != nil {
|
2018-05-28 16:14:39 +08:00
|
|
|
|
if err == os.ErrNotExist || strings.Contains(err.Error(), "no such file or directory") {
|
2018-05-28 13:44:50 +08:00
|
|
|
|
if err := os.MkdirAll(GetParentDirectory(new), 0755); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return os.Rename(old, new)
|
|
|
|
|
}
|
2018-05-29 12:51:10 +08:00
|
|
|
|
|
|
|
|
|
//CreateVersionByTime create version number
|
|
|
|
|
func CreateVersionByTime() string {
|
|
|
|
|
now := time.Now()
|
|
|
|
|
re := fmt.Sprintf("%d%d%d%d%d%d%d", now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second(), now.Nanosecond())
|
|
|
|
|
return re
|
|
|
|
|
}
|