1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00
lazygit/main.go

86 lines
1.8 KiB
Go
Raw Normal View History

2018-05-19 03:16:34 +02:00
package main
2018-06-02 00:35:49 +02:00
import (
2018-08-07 10:05:43 +02:00
"errors"
"flag"
"fmt"
"log"
"os"
2018-08-07 10:05:43 +02:00
"os/exec"
"os/user"
"time"
"github.com/fatih/color"
2018-08-07 10:05:43 +02:00
"github.com/jesseduffield/gocui"
2018-06-02 00:35:49 +02:00
)
2018-08-07 10:05:43 +02:00
// ErrSubProcess is raised when we are running a subprocess
2018-06-05 11:30:55 +02:00
var (
2018-08-07 10:05:43 +02:00
startTime time.Time
debugging bool
ErrSubprocess = errors.New("running subprocess")
subprocess *exec.Cmd
2018-06-05 11:30:55 +02:00
)
2018-05-27 08:32:09 +02:00
2018-06-05 11:32:03 +02:00
func homeDirectory() string {
usr, err := user.Current()
if err != nil {
log.Fatal(err)
}
return usr.HomeDir
2018-06-05 11:32:03 +02:00
}
func devLog(objects ...interface{}) {
localLog(color.FgWhite, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/development.log", objects...)
2018-06-05 11:32:03 +02:00
}
func colorLog(colour color.Attribute, objects ...interface{}) {
localLog(colour, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/development.log", objects...)
2018-06-05 11:32:03 +02:00
}
func commandLog(objects ...interface{}) {
localLog(color.FgWhite, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/commands.log", objects...)
2018-06-05 11:32:03 +02:00
}
func localLog(colour color.Attribute, path string, objects ...interface{}) {
if !debugging {
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")
}
2018-06-05 11:32:03 +02:00
}
2018-05-19 03:16:34 +02:00
func main() {
debuggingPointer := flag.Bool("debug", false, "a boolean")
flag.Parse()
debugging = *debuggingPointer
devLog("\n\n\n\n\n\n\n\n\n\n")
startTime = time.Now()
verifyInGitRepo()
navigateToRepoRootDirectory()
2018-08-07 10:05:43 +02: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 03:16:34 +02:00
}