energy/cmd/internal/install/install.go

522 lines
12 KiB
Go
Raw Normal View History

//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
//
2023-09-04 11:36:36 +08:00
package install
import (
"archive/tar"
"archive/zip"
"compress/bzip2"
"compress/gzip"
2023-09-04 11:36:36 +08:00
"fmt"
"github.com/energye/energy/v2/cmd/internal/command"
2023-09-05 19:45:30 +08:00
"github.com/energye/energy/v2/cmd/internal/consts"
2023-09-04 11:36:36 +08:00
"github.com/energye/energy/v2/cmd/internal/env"
progressbar "github.com/energye/energy/v2/cmd/internal/progress-bar"
"github.com/energye/energy/v2/cmd/internal/tools"
"io"
"io/fs"
"net/http"
"os"
"path/filepath"
"runtime"
2023-09-04 11:36:36 +08:00
"strconv"
"strings"
)
type downloadInfo struct {
fileName string
frameworkPath string
downloadPath string
url string
success bool
isSupport bool
module string
}
func Install(c *command.Config) {
// 初始配置和安装目录
initInstall(c)
// 检查环境
willInstall := checkInstallEnv(c)
2023-09-05 19:09:15 +08:00
var (
2023-09-05 20:03:09 +08:00
goRoot string
goSuccessCallback func()
cefFrameworkRoot string
cefFrameworkSuccessCallback func()
nsisRoot string
nsisSuccessCallback func()
2023-09-05 19:09:15 +08:00
)
if len(willInstall) > 0 {
println("Following will be installed")
for _, name := range willInstall {
println("\t", name)
}
println("Press Enter to start installation")
var s string
fmt.Scanln(&s)
}
// 安装Go开发环境
2023-09-05 20:03:09 +08:00
goRoot, goSuccessCallback = installGolang(c)
// 安装CEF二进制框架
2023-09-05 20:03:09 +08:00
cefFrameworkRoot, cefFrameworkSuccessCallback = installCEFFramework(c)
// 安装nsis安装包制作工具, 仅windows - amd64
2023-09-05 20:03:09 +08:00
nsisRoot, nsisSuccessCallback = installNSIS(c)
// 设置nsis环境变量
if nsisRoot != "" {
env.SetNSISEnv(nsisRoot)
}
// 设置 go 环境变量
if goRoot != "" {
env.SetGoEnv(goRoot)
}
2023-09-05 20:03:09 +08:00
// windows path 环境变量设置
2023-09-05 19:09:15 +08:00
env.SetToPath()
// 设置 energy cef 环境变量
if cefFrameworkRoot != "" {
env.SetEnergyHomeEnv(cefFrameworkRoot)
}
println("-----------------------------------------------------")
2023-09-05 20:03:09 +08:00
// success 输出
if nsisSuccessCallback != nil {
nsisSuccessCallback()
}
if goSuccessCallback != nil {
goSuccessCallback()
}
if cefFrameworkSuccessCallback != nil {
cefFrameworkSuccessCallback()
}
// end
//if len(willInstall) > 0 {
// print("was installed: ")
// for i, name := range willInstall {
// if i > 0 {
// print("|")
// }
// print(name)
// }
// println()
//}
}
func cefInstallPathName(c *command.Config) string {
return filepath.Join(c.Install.Path, c.Install.Name)
}
2023-09-05 19:09:15 +08:00
func goInstallPathName(c *command.Config) string {
return filepath.Join(c.Install.Path, "go")
}
func nsisInstallPathName(c *command.Config) string {
return filepath.Join(c.Install.Path, "nsis")
}
func checkInstallEnv(c *command.Config) (result []string) {
skip := strings.ToLower(c.Install.All) == "y"
var check = func(chkInstall func() bool, name string, yes func()) {
if chkInstall() {
println(" ", name, "installed")
} else {
fmt.Printf(" %s: Not installed, install %s ? (Y/n): ", name, name)
var s string
if !skip { // 跳过输入Y,
fmt.Scanln(&s)
} else {
s = "y"
}
if strings.ToLower(s) == "y" {
result = append(result, name)
yes()
} else {
println(" ", name, "install skip")
}
}
}
// go
check(func() bool {
return tools.CommandExists("go")
}, "Golang", func() {
c.Install.IGolang = true
})
// nsis
check(func() bool {
if consts.IsWindows && runtime.GOARCH == "amd64" {
return tools.CommandExists("makensis")
} else {
println(" Non Windows amd64 skipping NSIS")
return false
}
}, "NSIS", func() {
c.Install.INSIS = true
})
// cef
check(func() bool {
return tools.CheckCEFDir()
}, "CEF Framework", func() {
c.Install.ICEF = true
})
// upx
check(func() bool {
return tools.CommandExists("upx")
}, "UPX", func() {
c.Install.IUPX = true
})
return
}
func initInstall(c *command.Config) {
if c.Install.Path == "" {
// current dir
c.Install.Path = c.Wd
}
if c.Install.Version == "" {
// latest
c.Install.Version = "latest"
}
// 创建安装目录
os.MkdirAll(c.Install.Path, fs.ModePerm)
os.MkdirAll(cefInstallPathName(c), fs.ModePerm)
2023-09-05 19:09:15 +08:00
os.MkdirAll(goInstallPathName(c), fs.ModePerm)
os.MkdirAll(nsisInstallPathName(c), fs.ModePerm)
2023-09-05 19:45:30 +08:00
os.MkdirAll(filepath.Join(c.Install.Path, consts.FrameworkCache), fs.ModePerm)
}
2023-09-04 11:36:36 +08:00
func filePathInclude(compressPath string, files ...any) (string, bool) {
if len(files) == 0 {
return compressPath, true
} else {
for _, file := range files {
f := file.(string)
tIdx := strings.LastIndex(f, "/*")
if tIdx != -1 {
f = f[:tIdx]
if f[0] == '/' {
if strings.Index(compressPath, f[1:]) == 0 {
return compressPath, true
}
2023-09-04 11:36:36 +08:00
}
if strings.Index(compressPath, f) == 0 {
return strings.Replace(compressPath, f, "", 1), true
}
} else {
if f[0] == '/' {
if compressPath == f[1:] {
return f, true
}
}
if compressPath == f {
f = f[strings.Index(f, "/")+1:]
2023-09-04 11:36:36 +08:00
return f, true
}
}
}
}
return "", false
}
func dir(path string) string {
path = strings.ReplaceAll(path, "\\", string(filepath.Separator))
lastSep := strings.LastIndex(path, string(filepath.Separator))
return path[:lastSep]
}
func tarFileReader(filePath string) (*tar.Reader, func()) {
2023-09-04 11:36:36 +08:00
reader, err := os.Open(filePath)
if err != nil {
fmt.Printf("error: cannot open file, error=[%v]\n", err)
os.Exit(1)
return nil, nil
2023-09-04 11:36:36 +08:00
}
if filepath.Ext(filePath) == ".gz" {
gr, err := gzip.NewReader(reader)
if err != nil {
fmt.Printf("error: cannot open gzip file, error=[%v]\n", err)
os.Exit(1)
return nil, nil
}
return tar.NewReader(gr), func() {
gr.Close()
reader.Close()
}
} else {
return tar.NewReader(reader), func() {
reader.Close()
}
}
}
func ExtractUnTar(filePath, targetPath string, files ...any) {
tarReader, close := tarFileReader(filePath)
if tarReader == nil {
return
}
defer close()
bar := progressbar.NewBar(100)
bar.SetNotice("\t")
bar.HideRatio()
2023-09-04 11:36:36 +08:00
for {
header, err := tarReader.Next()
if err == io.EOF {
break
} else if err != nil {
fmt.Printf("error: cannot read tar file, error=[%v]\n", err)
os.Exit(1)
return
}
// 去除压缩包内的一级目录
compressPath := filepath.Clean(header.Name[strings.Index(header.Name, "/")+1:])
2023-09-04 11:36:36 +08:00
includePath, isInclude := filePathInclude(compressPath, files...)
if !isInclude {
continue
}
fmt.Println("compressPath:", compressPath)
2023-09-04 11:36:36 +08:00
info := header.FileInfo()
targetFile := filepath.Join(targetPath, includePath)
if info.IsDir() {
if err = os.MkdirAll(targetFile, info.Mode()); err != nil {
fmt.Printf("error: cannot mkdir file, error=[%v]\n", err)
os.Exit(1)
return
}
} else {
fDir := dir(targetFile)
_, err = os.Stat(fDir)
if os.IsNotExist(err) {
if err = os.MkdirAll(fDir, info.Mode()); err != nil {
fmt.Printf("error: cannot file mkdir file, error=[%v]\n", err)
os.Exit(1)
return
}
}
file, err := os.OpenFile(targetFile, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, info.Mode())
if err != nil {
fmt.Printf("error: cannot open file, error=[%v]\n", err)
os.Exit(1)
return
}
bar.SetCurrentValue(0)
2023-09-04 11:36:36 +08:00
writeFile(tarReader, file, header.Size, func(totalLength, processLength int64) {
bar.PrintBar(int((float64(processLength) / float64(totalLength)) * 100))
})
file.Sync()
file.Close()
2023-09-04 11:36:36 +08:00
bar.PrintBar(100)
bar.PrintEnd()
if err != nil {
fmt.Printf("error: cannot write file, error=[%v]\n", err)
os.Exit(1)
return
}
}
}
}
2023-09-05 19:09:15 +08:00
func ExtractUnZip(filePath, targetPath string, rmRootDir bool, files ...any) {
2023-09-04 11:36:36 +08:00
if rc, err := zip.OpenReader(filePath); err == nil {
defer rc.Close()
bar := progressbar.NewBar(100)
bar.SetNotice("\t")
bar.HideRatio()
var createWriteFile = func(info fs.FileInfo, path string, file io.Reader) {
targetFileName := filepath.Join(targetPath, path)
if info.IsDir() {
os.MkdirAll(targetFileName, info.Mode())
2023-09-04 11:36:36 +08:00
return
}
2023-09-05 19:09:15 +08:00
fDir := filepath.Dir(targetFileName)
if !tools.IsExist(fDir) {
os.MkdirAll(fDir, 0755)
}
if targetFile, err := os.Create(targetFileName); err == nil {
fmt.Println("extract file: ", path)
bar.SetCurrentValue(0)
writeFile(file, targetFile, info.Size(), func(totalLength, processLength int64) {
bar.PrintBar(int((float64(processLength) / float64(totalLength)) * 100))
})
bar.PrintBar(100)
bar.PrintEnd()
targetFile.Close()
2023-09-05 19:09:15 +08:00
} else {
println("createWriteFile", err.Error())
os.Exit(1)
}
}
// 所有文件
if len(files) == 0 {
zipFiles := rc.File
for _, f := range zipFiles {
r, _ := f.Open()
2023-09-05 19:09:15 +08:00
var name string
if rmRootDir {
// 移除压缩包内的根文件夹名
name = filepath.Clean(f.Name[strings.Index(f.Name, "/")+1:])
} else {
name = filepath.Clean(f.Name)
}
createWriteFile(f.FileInfo(), name, r.(io.Reader))
_ = r.Close()
}
} else {
// 指定名字的文件
for i := 0; i < len(files); i++ {
if f, err := rc.Open(files[i].(string)); err == nil {
info, _ := f.Stat()
createWriteFile(info, files[i].(string), f)
_ = f.Close()
} else {
fmt.Printf("error: cannot open file, error=[%v]\n", err)
os.Exit(1)
return
}
}
2023-09-04 11:36:36 +08:00
}
} else {
if err != nil {
fmt.Printf("error: cannot read zip file, error=[%v]\n", err)
os.Exit(1)
}
}
}
// 释放bz2文件到tar
func UnBz2ToTar(name string, callback func(totalLength, processLength int64)) string {
fileBz2, err := os.Open(name)
if err != nil {
fmt.Errorf("%s", err.Error())
os.Exit(1)
}
defer fileBz2.Close()
dirName := fileBz2.Name()
dirName = dirName[:strings.LastIndex(dirName, ".")]
if !tools.IsExist(dirName) {
r := bzip2.NewReader(fileBz2)
w, err := os.Create(dirName)
if err != nil {
fmt.Errorf("%s", err.Error())
os.Exit(1)
}
defer w.Close()
writeFile(r, w, 0, callback)
} else {
println("File already exists")
2023-09-04 11:36:36 +08:00
}
return dirName
}
func writeFile(r io.Reader, w *os.File, totalLength int64, callback func(totalLength, processLength int64)) {
buf := make([]byte, 1024*10)
var written int64
for {
nr, err := r.Read(buf)
if nr > 0 {
nw, err := w.Write(buf[0:nr])
if nw > 0 {
written += int64(nw)
}
callback(totalLength, written)
if err != nil {
break
}
if nr != nw {
err = io.ErrShortWrite
break
}
}
if err != nil {
break
}
}
}
func isFileExist(filename string, filesize int64) bool {
info, err := os.Stat(filename)
if os.IsNotExist(err) {
return false
}
if filesize == info.Size() {
return true
}
os.Remove(filename)
return false
}
// 下载文件
func downloadFile(url string, localPath string, callback func(totalLength, processLength int64)) error {
var (
fsize int64
buf = make([]byte, 1024*10)
written int64
)
tmpFilePath := localPath + ".download"
client := new(http.Client)
resp, err := client.Get(url)
if err != nil {
fmt.Printf("download-error=[%v]\n", err)
os.Exit(1)
return err
}
fsize, err = strconv.ParseInt(resp.Header.Get("Content-Length"), 10, 32)
if err != nil {
fmt.Printf("download-error=[%v]\n", err)
os.Exit(1)
return err
}
if isFileExist(localPath, fsize) {
println("File already exists")
return nil
}
println("Save path: [", localPath, "] file size:", fsize)
file, err := os.Create(tmpFilePath)
if err != nil {
fmt.Printf("download-error=[%v]\n", err)
os.Exit(1)
return err
}
defer file.Close()
if resp.Body == nil {
fmt.Printf("Download-error=[body is null]\n")
os.Exit(1)
return nil
}
defer resp.Body.Close()
for {
nr, er := resp.Body.Read(buf)
if nr > 0 {
nw, err := file.Write(buf[0:nr])
if nw > 0 {
written += int64(nw)
}
callback(fsize, written)
if err != nil {
break
}
if nr != nw {
err = io.ErrShortWrite
break
}
}
if er != nil {
if er != io.EOF {
err = er
}
break
}
}
if err == nil {
file.Sync()
file.Close()
err = os.Rename(tmpFilePath, localPath)
if err != nil {
return err
}
}
return err
}