1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00
lazygit/main.go

129 lines
2.5 KiB
Go
Raw Normal View History

2018-05-19 11:16:34 +10:00
package main
2018-06-02 08:35:49 +10:00
import (
2018-08-07 18:05:43 +10:00
"errors"
"flag"
"fmt"
2018-08-09 12:25:32 +10:00
"io/ioutil"
"log"
"os"
2018-08-07 18:05:43 +10:00
"os/exec"
"os/user"
2018-08-09 13:21:30 +10:00
"path/filepath"
2018-08-07 18:05:43 +10:00
"github.com/jesseduffield/gocui"
2018-08-09 14:33:51 +10:00
git "gopkg.in/src-d/go-git.v4"
2018-06-02 08:35:49 +10:00
)
2018-08-07 18:05:43 +10:00
// ErrSubProcess is raised when we are running a subprocess
2018-06-05 19:30:55 +10:00
var (
2018-08-07 18:05:43 +10:00
ErrSubprocess = errors.New("running subprocess")
subprocess *exec.Cmd
2018-08-08 18:57:27 +10:00
2018-08-08 22:48:37 +10:00
commit string
version = "unversioned"
2018-08-08 18:57:27 +10:00
2018-08-08 22:48:37 +10:00
date string
2018-08-08 19:46:21 +10:00
debuggingFlag = flag.Bool("debug", false, "a boolean")
versionFlag = flag.Bool("v", false, "Print the current version")
2018-08-09 14:33:51 +10:00
w *git.Worktree
r *git.Repository
2018-06-05 19:30:55 +10:00
)
2018-05-27 16:32:09 +10:00
2018-06-05 19:32:03 +10:00
func homeDirectory() string {
usr, err := user.Current()
if err != nil {
log.Fatal(err)
}
return usr.HomeDir
2018-06-05 19:32:03 +10:00
}
2018-08-09 13:29:25 +10:00
func projectPath(path string) string {
gopath := os.Getenv("GOPATH")
return filepath.FromSlash(gopath + "/src/github.com/jesseduffield/lazygit/" + path)
}
2018-06-05 19:32:03 +10:00
func devLog(objects ...interface{}) {
localLog("development.log", objects...)
2018-06-05 19:32:03 +10:00
}
func commandLog(objects ...interface{}) {
localLog("commands.log", objects...)
2018-06-05 19:32:03 +10:00
}
func localLog(path string, objects ...interface{}) {
2018-08-08 19:46:21 +10:00
if !*debuggingFlag {
return
}
f, err := os.OpenFile(projectPath(path), os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
panic(err.Error())
}
defer f.Close()
log.SetOutput(f)
for _, object := range objects {
log.Println(fmt.Sprint(object))
}
}
func navigateToRepoRootDirectory() {
_, err := os.Stat(".git")
for os.IsNotExist(err) {
devLog("going up a directory to find the root")
os.Chdir("..")
_, err = os.Stat(".git")
}
2018-06-05 19:32:03 +10:00
}
2018-08-09 12:25:32 +10:00
// when building the binary, `version` is set as a compile-time variable, along
// with `date` and `commit`. If this program has been opened directly via go,
// we will populate the `version` with VERSION in the lazygit root directory
func fallbackVersion() string {
2018-08-09 13:29:25 +10:00
path := projectPath("VERSION")
2018-08-09 13:21:30 +10:00
byteVersion, err := ioutil.ReadFile(path)
2018-08-09 12:25:32 +10:00
if err != nil {
return "unversioned"
2018-08-09 12:25:32 +10:00
}
return string(byteVersion)
}
2018-08-09 14:33:51 +10:00
func setupWorktree() {
var err error
r, err = git.PlainOpen(".")
2018-08-09 14:33:51 +10:00
if err != nil {
panic(err)
}
w, err = r.Worktree()
if err != nil {
panic(err)
}
}
2018-05-19 11:16:34 +10:00
func main() {
devLog("\n\n\n\n\n\n\n\n\n\n")
flag.Parse()
2018-08-09 12:25:32 +10:00
if version == "unversioned" {
version = fallbackVersion()
}
if *versionFlag {
2018-08-08 22:51:18 +10:00
fmt.Printf("commit=%s, build date=%s, version=%s", commit, date, version)
os.Exit(0)
}
verifyInGitRepo()
navigateToRepoRootDirectory()
2018-08-09 14:33:51 +10:00
setupWorktree()
2018-08-07 18:05:43 +10:00
for {
if err := run(); err != nil {
if err == gocui.ErrQuit {
break
} else if err == ErrSubprocess {
subprocess.Run()
} else {
log.Panicln(err)
}
}
}
2018-05-19 11:16:34 +10:00
}