mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-24 08:52:21 +02:00
94 lines
2.0 KiB
Go
94 lines
2.0 KiB
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
"os/user"
|
|
"time"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/jesseduffield/gocui"
|
|
)
|
|
|
|
// ErrSubProcess is raised when we are running a subprocess
|
|
var (
|
|
ErrSubprocess = errors.New("running subprocess")
|
|
subprocess *exec.Cmd
|
|
startTime time.Time
|
|
|
|
commit string
|
|
version = "unversioned"
|
|
|
|
date string
|
|
debuggingFlag = flag.Bool("debug", false, "a boolean")
|
|
versionFlag = flag.Bool("v", false, "Print the current version")
|
|
)
|
|
|
|
func homeDirectory() string {
|
|
usr, err := user.Current()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
return usr.HomeDir
|
|
}
|
|
|
|
func devLog(objects ...interface{}) {
|
|
localLog(color.FgWhite, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/development.log", objects...)
|
|
}
|
|
|
|
func colorLog(colour color.Attribute, objects ...interface{}) {
|
|
localLog(colour, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/development.log", objects...)
|
|
}
|
|
|
|
func commandLog(objects ...interface{}) {
|
|
localLog(color.FgWhite, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/commands.log", objects...)
|
|
}
|
|
|
|
func localLog(colour color.Attribute, path string, objects ...interface{}) {
|
|
if !*debuggingFlag {
|
|
return
|
|
}
|
|
f, _ := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0644)
|
|
defer f.Close()
|
|
for _, object := range objects {
|
|
colorFunction := color.New(colour).SprintFunc()
|
|
f.WriteString(colorFunction(fmt.Sprint(object)) + "\n")
|
|
}
|
|
}
|
|
|
|
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")
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
startTime = time.Now()
|
|
devLog("\n\n\n\n\n\n\n\n\n\n")
|
|
flag.Parse()
|
|
if *versionFlag {
|
|
fmt.Printf("rev=%s, build date=%s, version=%s", Rev, date, Version)
|
|
os.Exit(0)
|
|
}
|
|
verifyInGitRepo()
|
|
navigateToRepoRootDirectory()
|
|
for {
|
|
if err := run(); err != nil {
|
|
if err == gocui.ErrQuit {
|
|
break
|
|
} else if err == ErrSubprocess {
|
|
subprocess.Run()
|
|
} else {
|
|
log.Panicln(err)
|
|
}
|
|
}
|
|
}
|
|
}
|