repostatus/update.go

158 lines
3.3 KiB
Go
Raw Permalink Normal View History

2024-01-09 15:34:53 -06:00
package repostatus
import (
"errors"
2024-01-09 15:34:53 -06:00
"fmt"
"time"
"go.wit.com/log"
)
2024-02-16 11:41:29 -06:00
func (rs *RepoStatus) gitBranchAll() {
2024-11-08 06:43:33 -06:00
r := rs.Run([]string{"git", "branch", "--all"})
if r.Error != nil {
2024-02-22 17:19:29 -06:00
log.Log(WARN, "git branch failed string =", rs.String())
log.Log(WARN, "git branch failed realpath =", rs.realPath.String())
return
2024-02-16 11:41:29 -06:00
}
2024-11-08 06:43:33 -06:00
for _, s := range r.Stdout {
2024-02-16 11:41:29 -06:00
rs.targetBranch.AddText(s)
}
}
2024-02-20 14:45:43 -06:00
func (rs *RepoStatus) updateNew() {
2024-02-16 11:41:29 -06:00
if !rs.Ready() {
log.Log(WARN, "can't update yet. ready is false")
log.Error(errors.New("Update() is not ready yet"))
return
}
2024-02-16 17:55:13 -06:00
// store the current checked out branch name and version
rs.checkCurrentBranchName()
rs.checkCurrentBranchVersion()
// read in the tags
2024-02-16 11:41:29 -06:00
rs.populateTags()
2024-02-16 17:55:13 -06:00
// record if the repo is dirty
2024-02-16 11:41:29 -06:00
rs.CheckDirty()
2024-02-16 17:55:13 -06:00
// store the last tag version
rs.setLastTagVersion()
// store the master branch version
2024-02-16 11:41:29 -06:00
mName := rs.GetMasterBranchName()
2024-02-16 17:55:13 -06:00
out, _ := rs.gitDescribeByName(mName)
rs.setMasterVersion(out)
2024-02-16 11:41:29 -06:00
2024-02-16 17:55:13 -06:00
// store the devel branch version
2024-02-16 11:41:29 -06:00
dName := rs.GetDevelBranchName()
2024-02-16 17:55:13 -06:00
if dName == "" {
rs.setDevelVersion("")
2024-02-16 11:41:29 -06:00
} else {
2024-02-16 17:55:13 -06:00
out, _ = rs.gitDescribeByName(dName)
rs.setDevelVersion(out)
2024-02-16 11:41:29 -06:00
}
2024-02-16 17:55:13 -06:00
// store the user branch version
2024-02-16 11:41:29 -06:00
uName := rs.GetUserBranchName()
2024-02-16 17:55:13 -06:00
if uName == "" {
rs.setUserVersion("")
2024-02-16 11:41:29 -06:00
} else {
2024-02-16 17:55:13 -06:00
out, _ = rs.gitDescribeByName(uName)
rs.setUserVersion(out)
2024-02-16 11:41:29 -06:00
}
2024-02-19 16:29:10 -06:00
// populates a string into the rs.gitState widget
// todo: make the values from this function a bit cleaner
rs.CheckGitState()
2024-02-16 11:41:29 -06:00
}
2024-02-19 16:29:10 -06:00
func (rs *RepoStatus) Update() {
if !rs.Ready() {
2024-01-09 15:34:53 -06:00
log.Log(WARN, "can't update yet. ready is false")
log.Error(errors.New("Update() is not ready yet"))
return
}
log.Log(INFO, "Update() START")
duration := timeFunction(func() {
2024-02-20 14:45:43 -06:00
rs.updateNew()
2024-01-09 15:34:53 -06:00
})
rs.setSpeed(duration)
log.Log(INFO, "Update() END")
2024-01-09 15:34:53 -06:00
}
func (rs *RepoStatus) setSpeed(duration time.Duration) {
s := fmt.Sprint(duration)
if rs.speedActual == nil {
log.Log(WARN, "rs.speedActual == nil")
2024-01-09 15:34:53 -06:00
return
}
rs.speedActual.SetValue(s)
2024-01-09 15:34:53 -06:00
2024-02-19 16:29:10 -06:00
if duration > 200*time.Millisecond {
rs.speed.SetValue("SLOW")
2024-02-19 16:29:10 -06:00
} else if duration > 50*time.Millisecond {
rs.speed.SetValue("OK")
2024-01-09 15:34:53 -06:00
} else {
rs.speed.SetValue("FAST")
2024-01-09 15:34:53 -06:00
}
}
// disable all things besides Update() button
func (rs *RepoStatus) DisableEverything() {
log.Log(INFO, "DisableEverything()")
// choosing a major, minor or revision
rs.major.Disable()
rs.minor.Disable()
rs.revision.Disable()
// disable adding a tag message
rs.versionMessage.Disable()
// disable the merge devel to master button
rs.develMergeB.Disable()
// disable the tag a new version button
rs.releaseVersion.Disable()
}
// this means devel needs to be merged to master
func (rs *RepoStatus) EnableMergeDevel() {
rs.DisableEverything()
rs.develMergeB.Enable()
}
func (rs *RepoStatus) Disable() {
rs.window.Disable()
}
func (rs *RepoStatus) Enable() {
rs.window.Enable()
}
// this means you need to release a new version of the master repository
func (rs *RepoStatus) EnableSelectTag() {
rs.DisableEverything()
// choosing a major, minor or revision
rs.major.Enable()
rs.minor.Enable()
rs.revision.Enable()
// disable adding a tag message
rs.versionMessage.Enable()
rs.develMergeB.SetLabel("ready to release")
if len(rs.versionMessage.String()) == 0 {
// force there to be a commit message
rs.releaseVersion.Disable()
} else {
rs.generateCmd()
rs.releaseVersion.Enable()
}
}