main.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. package main
  2. import (
  3. "fmt"
  4. "image/color"
  5. "log"
  6. "os"
  7. "os/exec"
  8. "path/filepath"
  9. "time"
  10. "updater/download"
  11. "updater/utils"
  12. "gioui.org/app"
  13. "gioui.org/io/system"
  14. "gioui.org/layout"
  15. "gioui.org/op"
  16. "gioui.org/text"
  17. "gioui.org/unit"
  18. "gioui.org/widget/material"
  19. "github.com/jessevdk/go-flags"
  20. "infish.cn/comm"
  21. )
  22. // 启动程序
  23. // 下载文件->成功->失败
  24. // 下载成功->通知nats关闭原程序
  25. // 安装->成功->失败
  26. // 成功启动程序
  27. // 失败还原程序,关闭更新应用
  28. // Define the progress variables, a channel and a variable
  29. var progress float32
  30. var progressIncrementer chan float32
  31. var GAppOption = &AppOption{}
  32. type AppOption struct {
  33. NatsPort int `short:"p" long:"np" description:"nats port"`
  34. Url string `short:"u" long:"url" description:"url"`
  35. Upload string `short:"d" long:"upload" description:"upload"`
  36. }
  37. func (o *AppOption) Parse() {
  38. flags.NewParser(o, flags.Default|flags.IgnoreUnknown).Parse()
  39. }
  40. type ProcesCallback = func(int, string)
  41. func upgradeLancherExe(url string, cb ProcesCallback) {
  42. exepath, _ := os.Executable()
  43. appExeDir, _ := filepath.Split(exepath)
  44. //1 下载lancher.exe
  45. downLancherExe := filepath.Join(appExeDir, "lancher")
  46. err := download.DownloadExe(downLancherExe, GAppOption.Url)
  47. if err != nil {
  48. fmt.Println(err)
  49. cb(-1, "下载安装包失败!")
  50. return
  51. }
  52. //2 通知lancher.exe退出
  53. remoteCnn, err := comm.NewNatsBus(fmt.Sprintf("nats://localhost:%d", GAppOption.NatsPort), 1, 1, []*comm.NatsStreamWather{})
  54. if err != nil {
  55. fmt.Println(err)
  56. cb(-1, "安装失败!")
  57. return
  58. }
  59. err = remoteCnn.Publish("lancher.quit", []byte{})
  60. if err != nil {
  61. fmt.Println(err)
  62. cb(-1, "安装失败!")
  63. return
  64. }
  65. remoteCnn.GetNatsConn().Flush()
  66. time.Sleep(time.Second * 3)
  67. //3 安装新的lancher.exe
  68. currLancherExe := filepath.Join(appExeDir, "lancher.exe")
  69. currLancherExeback := filepath.Join(appExeDir, "lancher.exe.back")
  70. err = os.Rename(currLancherExe, currLancherExeback)
  71. if err != nil {
  72. fmt.Println(err)
  73. cb(-1, "安装失败!")
  74. return
  75. }
  76. err = os.Rename(downLancherExe, currLancherExe)
  77. if err != nil {
  78. fmt.Println(err)
  79. cb(-1, "安装失败!")
  80. os.Rename(currLancherExeback, currLancherExe)
  81. return
  82. }
  83. //4 启动lancher.exe
  84. // 重启
  85. cmd := exec.Command(currLancherExe)
  86. cmd.Stdout = os.Stdout
  87. cmd.Stderr = os.Stderr
  88. err = cmd.Start()
  89. if err != nil {
  90. fmt.Printf("failed to call cmd.Start(): %v", err)
  91. os.Rename(currLancherExeback, currLancherExe)
  92. cb(-1, "新包启动失败!")
  93. return
  94. }
  95. cb(1, "")
  96. time.Sleep(time.Second)
  97. os.Remove(currLancherExeback)
  98. os.Remove(downLancherExe)
  99. os.Exit(0)
  100. }
  101. var installError = ""
  102. var installSucc = false
  103. func main() {
  104. GAppOption.Parse()
  105. fmt.Println(GAppOption)
  106. // 上传编译好的执行文件
  107. if len(GAppOption.Upload) > 0 {
  108. zipPath, err := utils.UploadExe()
  109. if err != nil {
  110. fmt.Println(err)
  111. }
  112. // 成功后删除压缩文件
  113. os.Remove(zipPath)
  114. return
  115. }
  116. // // Setup a separate channel to provide ticks to increment progress
  117. progressIncrementer = make(chan float32)
  118. go func() {
  119. for {
  120. time.Sleep(time.Second / 25)
  121. progressIncrementer <- 0.004
  122. }
  123. }()
  124. w := app.NewWindow(
  125. app.Title("updater"),
  126. app.Size(unit.Dp(600), unit.Dp(400)),
  127. )
  128. go func() {
  129. // create new window
  130. if err := draw(w); err != nil {
  131. log.Fatal(err)
  132. }
  133. os.Exit(0)
  134. }()
  135. go func() {
  136. if len(GAppOption.Url) < 1 {
  137. return
  138. }
  139. upgradeLancherExe(GAppOption.Url, func(i int, s string) {
  140. fmt.Println("xxx=>", i, s)
  141. if i == -1 {
  142. installError = s
  143. w.Invalidate()
  144. return
  145. }
  146. installSucc = true
  147. w.Invalidate()
  148. })
  149. }()
  150. app.Main()
  151. }
  152. type C = layout.Context
  153. type D = layout.Dimensions
  154. func draw(w *app.Window) error {
  155. var ops op.Ops
  156. th := material.NewTheme()
  157. for {
  158. select {
  159. case e := <-w.Events():
  160. switch e := e.(type) {
  161. case system.FrameEvent:
  162. gtx := layout.NewContext(&ops, e)
  163. title := material.Body1(th, "更新中...")
  164. maroon := color.NRGBA{R: 0, G: 0, B: 0, A: 255}
  165. title.Color = maroon
  166. title.Alignment = text.Middle
  167. title.Layout(gtx)
  168. e.Frame(gtx.Ops)
  169. case system.DestroyEvent:
  170. return e.Err
  171. }
  172. }
  173. }
  174. }