|
@@ -1,15 +1,13 @@
|
|
package main
|
|
package main
|
|
|
|
|
|
import (
|
|
import (
|
|
- "encoding/json"
|
|
|
|
"fmt"
|
|
"fmt"
|
|
- "io/fs"
|
|
|
|
"log"
|
|
"log"
|
|
"os"
|
|
"os"
|
|
"os/exec"
|
|
"os/exec"
|
|
- "path"
|
|
|
|
"path/filepath"
|
|
"path/filepath"
|
|
- "uploader/download"
|
|
|
|
|
|
+ "time"
|
|
|
|
+ "updater/download"
|
|
|
|
|
|
"gioui.org/app"
|
|
"gioui.org/app"
|
|
"gioui.org/io/system"
|
|
"gioui.org/io/system"
|
|
@@ -38,78 +36,134 @@ var progressIncrementer chan float32
|
|
var GAppOption = &AppOption{}
|
|
var GAppOption = &AppOption{}
|
|
|
|
|
|
type AppOption struct {
|
|
type AppOption struct {
|
|
- NatsPort int `short:"np" long:"np" description:"nats port"`
|
|
|
|
- AppExePath string `short:"ap" long:"ap" description:"app exe path"`
|
|
|
|
- Url string `short:"url" long:"url" description:"url"`
|
|
|
|
|
|
+ NatsPort int `short:"p" long:"np" description:"nats port"`
|
|
|
|
+ Url string `short:"u" long:"url" description:"url"`
|
|
}
|
|
}
|
|
|
|
|
|
func (o *AppOption) Parse() {
|
|
func (o *AppOption) Parse() {
|
|
flags.NewParser(o, flags.Default|flags.IgnoreUnknown).Parse()
|
|
flags.NewParser(o, flags.Default|flags.IgnoreUnknown).Parse()
|
|
}
|
|
}
|
|
|
|
|
|
-func main() {
|
|
|
|
- GAppOption.Parse()
|
|
|
|
- err := download.DownloadExe(GAppOption.Url, GAppOption.AppExePath)
|
|
|
|
|
|
+type ProcesCallback = func(int, string)
|
|
|
|
+
|
|
|
|
+func upgradeLancherExe(url string, cb ProcesCallback) {
|
|
|
|
+ exepath, _ := os.Executable()
|
|
|
|
+ appExeDir, _ := filepath.Split(exepath)
|
|
|
|
+
|
|
|
|
+ //1 下载lancher.exe
|
|
|
|
+ downLancherExe := filepath.Join(appExeDir, "lancher")
|
|
|
|
+ err := download.DownloadExe(downLancherExe, GAppOption.Url)
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println(err)
|
|
|
|
+ cb(-1, "下载安装包失败!")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ //2 通知lancher.exe退出
|
|
|
|
+ remoteCnn, err := comm.NewNatsBus(fmt.Sprintf("nats://localhost:%d", GAppOption.NatsPort), 1, 1, []*comm.NatsStreamWather{})
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println(err)
|
|
|
|
+ cb(-1, "安装失败!")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ err = remoteCnn.Publish("lancher.quit", []byte{})
|
|
if err != nil {
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
fmt.Println(err)
|
|
|
|
+ cb(-1, "安装失败!")
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- remoteCnn, _ := comm.NewNatsBus(fmt.Sprintf("nats://localhost:%d", GAppOption.NatsPort), 1, 1, []*comm.NatsStreamWather{})
|
|
|
|
- if remoteCnn != nil {
|
|
|
|
- d, _ := json.Marshal(map[string]string{"shortcut": ""})
|
|
|
|
- remoteCnn.Publish("lancher.resume", d)
|
|
|
|
- remoteCnn.GetNatsConn().Flush()
|
|
|
|
|
|
+ remoteCnn.GetNatsConn().Flush()
|
|
|
|
+
|
|
|
|
+ time.Sleep(time.Second * 3)
|
|
|
|
+
|
|
|
|
+ //3 安装新的lancher.exe
|
|
|
|
+ currLancherExe := filepath.Join(appExeDir, "main")
|
|
|
|
+ currLancherExeback := filepath.Join(appExeDir, "lancher.exe.back")
|
|
|
|
+ err = os.Rename(currLancherExe, currLancherExeback)
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println(err)
|
|
|
|
+ cb(-1, "安装失败!")
|
|
|
|
+ return
|
|
}
|
|
}
|
|
- appExeDir, _ := filepath.Split(GAppOption.AppExePath)
|
|
|
|
- os.Rename(GAppOption.AppExePath, fmt.Sprintf("%s/lancherlast", appExeDir))
|
|
|
|
|
|
|
|
- fmt.Println("need restart ", GAppOption.AppExePath)
|
|
|
|
|
|
+ err = os.Rename(downLancherExe, currLancherExe)
|
|
|
|
+
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println(err)
|
|
|
|
+ cb(-1, "安装失败!")
|
|
|
|
+ os.Rename(currLancherExeback, currLancherExe)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ //4 启动lancher.exe
|
|
// 重启
|
|
// 重启
|
|
- cmd := exec.Command(GAppOption.AppExePath)
|
|
|
|
|
|
+ cmd := exec.Command(currLancherExe, "--np=14220")
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
cmd.Stderr = os.Stderr
|
|
err = cmd.Start()
|
|
err = cmd.Start()
|
|
if err != nil {
|
|
if err != nil {
|
|
fmt.Printf("failed to call cmd.Start(): %v", err)
|
|
fmt.Printf("failed to call cmd.Start(): %v", err)
|
|
|
|
+ os.Rename(currLancherExeback, currLancherExe)
|
|
|
|
+ cb(-1, "新包启动失败!")
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- os.WriteFile(path.Join(appExeDir, "pid"), []byte(fmt.Sprintf("%d", cmd.Process.Pid)), fs.FileMode(os.O_TRUNC))
|
|
|
|
- log.Printf("pid: %d", cmd.Process.Pid)
|
|
|
|
- lancherbak := fmt.Sprintf("%s/%s", appExeDir, "lancherlast")
|
|
|
|
- err = os.Remove(lancherbak)
|
|
|
|
- if err != nil {
|
|
|
|
- fmt.Println(err)
|
|
|
|
- }
|
|
|
|
- cmd.Process.Wait()
|
|
|
|
|
|
+ cb(1, "")
|
|
|
|
+
|
|
|
|
+ time.Sleep(time.Second)
|
|
|
|
+
|
|
|
|
+ os.Exit(0)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+var installError = ""
|
|
|
|
+var installSucc = false
|
|
|
|
+
|
|
|
|
+func main() {
|
|
|
|
+ GAppOption.Parse()
|
|
|
|
+ fmt.Println(GAppOption)
|
|
|
|
|
|
// // Setup a separate channel to provide ticks to increment progress
|
|
// // Setup a separate channel to provide ticks to increment progress
|
|
- // progressIncrementer = make(chan float32)
|
|
|
|
- // go func() {
|
|
|
|
- // for {
|
|
|
|
- // time.Sleep(time.Second / 25)
|
|
|
|
- // progressIncrementer <- 0.004
|
|
|
|
- // }
|
|
|
|
- // }()
|
|
|
|
- // // task := make(map[string]string)
|
|
|
|
- // // task["https://dl.softmgr.qq.com/original/game/WeGameSetup3.32.4.6183_gjwegame_0_0.exe"] = "wegame.exe"
|
|
|
|
- // // for k, v := range task {
|
|
|
|
- // // // wg.Add(1)
|
|
|
|
- // // download.DownloadFile(k, v)
|
|
|
|
- // // }
|
|
|
|
-
|
|
|
|
- // go func() {
|
|
|
|
- // // create new window
|
|
|
|
- // w := app.NewWindow(
|
|
|
|
- // app.Title("uploader"),
|
|
|
|
- // app.Size(unit.Dp(600), unit.Dp(400)),
|
|
|
|
- // )
|
|
|
|
- // if err := draw(w); err != nil {
|
|
|
|
- // log.Fatal(err)
|
|
|
|
- // }
|
|
|
|
- // os.Exit(0)
|
|
|
|
- // }()
|
|
|
|
-
|
|
|
|
- // app.Main()
|
|
|
|
|
|
+ progressIncrementer = make(chan float32)
|
|
|
|
+ go func() {
|
|
|
|
+ for {
|
|
|
|
+ time.Sleep(time.Second / 25)
|
|
|
|
+ progressIncrementer <- 0.004
|
|
|
|
+ }
|
|
|
|
+ }()
|
|
|
|
+
|
|
|
|
+ w := app.NewWindow(
|
|
|
|
+ app.Title("uploader"),
|
|
|
|
+ app.Size(unit.Dp(600), unit.Dp(400)),
|
|
|
|
+ )
|
|
|
|
+
|
|
|
|
+ go func() {
|
|
|
|
+ // create new window
|
|
|
|
+
|
|
|
|
+ if err := draw(w); err != nil {
|
|
|
|
+ log.Fatal(err)
|
|
|
|
+ }
|
|
|
|
+ os.Exit(0)
|
|
|
|
+ }()
|
|
|
|
+
|
|
|
|
+ go func() {
|
|
|
|
+ if len(GAppOption.Url) < 1 {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ upgradeLancherExe(GAppOption.Url, func(i int, s string) {
|
|
|
|
+ fmt.Println("xxx=>", i, s)
|
|
|
|
+
|
|
|
|
+ if i == -1 {
|
|
|
|
+ installError = s
|
|
|
|
+ w.Invalidate()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ installSucc = true
|
|
|
|
+ w.Invalidate()
|
|
|
|
+ })
|
|
|
|
+ }()
|
|
|
|
+
|
|
|
|
+ app.Main()
|
|
}
|
|
}
|
|
|
|
|
|
type C = layout.Context
|
|
type C = layout.Context
|
|
@@ -189,7 +243,7 @@ func draw(w *app.Window) error {
|
|
return e.Err
|
|
return e.Err
|
|
}
|
|
}
|
|
|
|
|
|
- // listen for events in the incrementor channel
|
|
|
|
|
|
+ //listen for events in the incrementor channel
|
|
case p := <-progressIncrementer:
|
|
case p := <-progressIncrementer:
|
|
if boiling && progress < 1 {
|
|
if boiling && progress < 1 {
|
|
progress += p
|
|
progress += p
|