2016-08-13 12:49:04 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-03-26 18:22:18 +00:00
|
|
|
"bufio"
|
2016-08-13 12:49:04 +00:00
|
|
|
"fmt"
|
2018-03-26 18:22:18 +00:00
|
|
|
"io"
|
2016-08-13 12:49:04 +00:00
|
|
|
"log"
|
|
|
|
"os"
|
2018-04-03 19:56:38 +00:00
|
|
|
"os/exec"
|
2018-07-11 17:49:55 +00:00
|
|
|
"path/filepath"
|
2016-11-06 15:19:48 +00:00
|
|
|
"strconv"
|
2016-08-13 12:49:04 +00:00
|
|
|
"strings"
|
2018-06-09 19:02:09 +00:00
|
|
|
"time"
|
2016-08-13 12:49:04 +00:00
|
|
|
)
|
|
|
|
|
2017-05-15 09:30:50 +00:00
|
|
|
type cmdItem struct {
|
2017-11-19 18:55:13 +00:00
|
|
|
prefix string
|
|
|
|
value string
|
2017-05-15 09:30:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-17 21:47:37 +00:00
|
|
|
type app struct {
|
2018-05-15 21:16:49 +00:00
|
|
|
ui *ui
|
|
|
|
nav *nav
|
2018-06-09 19:02:09 +00:00
|
|
|
ticker *time.Ticker
|
2018-05-15 21:16:49 +00:00
|
|
|
quitChan chan bool
|
|
|
|
cmd *exec.Cmd
|
|
|
|
cmdIn io.WriteCloser
|
|
|
|
cmdOutBuf []byte
|
|
|
|
cmdHistory []cmdItem
|
2018-07-11 17:49:55 +00:00
|
|
|
cmdHistoryBeg int
|
2018-05-15 21:16:49 +00:00
|
|
|
cmdHistoryInd int
|
2016-10-27 19:24:42 +00:00
|
|
|
}
|
|
|
|
|
2016-12-17 21:47:37 +00:00
|
|
|
func newApp() *app {
|
2016-10-27 19:24:42 +00:00
|
|
|
ui := newUI()
|
|
|
|
nav := newNav(ui.wins[0].h)
|
2016-10-29 23:20:35 +00:00
|
|
|
|
2016-12-17 21:47:37 +00:00
|
|
|
return &app{
|
2017-11-19 18:55:13 +00:00
|
|
|
ui: ui,
|
|
|
|
nav: nav,
|
2018-06-09 19:02:09 +00:00
|
|
|
ticker: new(time.Ticker),
|
2017-11-19 18:55:13 +00:00
|
|
|
quitChan: make(chan bool, 1),
|
2016-10-27 19:24:42 +00:00
|
|
|
}
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 18:55:13 +00:00
|
|
|
func (app *app) readFile(path string) {
|
|
|
|
log.Printf("reading file: %s", path)
|
2016-08-13 12:49:04 +00:00
|
|
|
|
2017-11-19 18:55:13 +00:00
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
2019-02-28 18:58:14 +00:00
|
|
|
app.ui.echoerrf("opening file: %s", err)
|
2017-11-19 18:55:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer f.Close()
|
2016-08-13 12:49:04 +00:00
|
|
|
|
2017-11-19 18:55:13 +00:00
|
|
|
p := newParser(f)
|
2018-05-20 17:30:41 +00:00
|
|
|
|
2017-11-19 18:55:13 +00:00
|
|
|
for p.parse() {
|
|
|
|
p.expr.eval(app, nil)
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 18:55:13 +00:00
|
|
|
if p.err != nil {
|
2019-02-28 18:58:14 +00:00
|
|
|
app.ui.echoerrf("%s", p.err)
|
2017-11-19 18:55:13 +00:00
|
|
|
}
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 17:49:55 +00:00
|
|
|
func (app *app) readHistory() error {
|
|
|
|
f, err := os.Open(gHistoryPath)
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("opening history file: %s", err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
scanner := bufio.NewScanner(f)
|
|
|
|
for scanner.Scan() {
|
|
|
|
toks := strings.SplitN(scanner.Text(), " ", 2)
|
|
|
|
app.cmdHistory = append(app.cmdHistory, cmdItem{toks[0], toks[1]})
|
|
|
|
}
|
|
|
|
|
|
|
|
app.cmdHistoryBeg = len(app.cmdHistory)
|
|
|
|
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
|
|
return fmt.Errorf("reading history file: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *app) writeHistory() error {
|
|
|
|
if len(app.cmdHistory) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
local := make([]cmdItem, len(app.cmdHistory)-app.cmdHistoryBeg)
|
|
|
|
copy(local, app.cmdHistory[app.cmdHistoryBeg:])
|
|
|
|
app.cmdHistory = nil
|
|
|
|
|
|
|
|
if err := app.readHistory(); err != nil {
|
|
|
|
return fmt.Errorf("reading history file: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
app.cmdHistory = append(app.cmdHistory, local...)
|
|
|
|
|
|
|
|
if err := os.MkdirAll(filepath.Dir(gHistoryPath), os.ModePerm); err != nil {
|
|
|
|
return fmt.Errorf("creating data directory: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := os.Create(gHistoryPath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("creating history file: %s", err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
if len(app.cmdHistory) > 1000 {
|
|
|
|
app.cmdHistory = app.cmdHistory[len(app.cmdHistory)-1000:]
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cmd := range app.cmdHistory {
|
|
|
|
_, err = f.WriteString(fmt.Sprintf("%s %s\n", cmd.prefix, cmd.value))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("writing history file: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-20 17:30:41 +00:00
|
|
|
// This is the main event loop of the application. Expressions are read from
|
|
|
|
// the client and the server on separate goroutines and sent here over channels
|
|
|
|
// for evaluation. Similarly directories and regular files are also read in
|
|
|
|
// separate goroutines and sent here for update.
|
2017-11-19 18:55:13 +00:00
|
|
|
func (app *app) loop() {
|
2016-12-15 09:26:06 +00:00
|
|
|
clientChan := app.ui.readExpr()
|
2017-11-19 18:55:13 +00:00
|
|
|
serverChan := readExpr()
|
2016-10-29 23:20:35 +00:00
|
|
|
|
2019-02-10 16:48:49 +00:00
|
|
|
if gSelect != "" {
|
|
|
|
go func() {
|
|
|
|
app.ui.exprChan <- &callExpr{"select", []string{gSelect}, 1}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2019-02-08 21:55:11 +00:00
|
|
|
for _, path := range gConfigPaths {
|
|
|
|
if _, err := os.Stat(path); !os.IsNotExist(err) {
|
|
|
|
app.readFile(path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-06 11:56:06 +00:00
|
|
|
if gCommand != "" {
|
|
|
|
p := newParser(strings.NewReader(gCommand))
|
2019-02-08 16:54:04 +00:00
|
|
|
|
|
|
|
for p.parse() {
|
|
|
|
p.expr.eval(app, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.err != nil {
|
2019-02-28 18:58:14 +00:00
|
|
|
app.ui.echoerrf("%s", p.err)
|
2019-02-06 11:56:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 12:49:04 +00:00
|
|
|
for {
|
2016-10-27 19:24:42 +00:00
|
|
|
select {
|
2017-11-19 18:55:13 +00:00
|
|
|
case <-app.quitChan:
|
2019-02-28 19:10:57 +00:00
|
|
|
if app.nav.copyTotal > 0 {
|
|
|
|
app.ui.echoerr("quit: copy operation in progress")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-08-13 12:49:04 +00:00
|
|
|
log.Print("bye!")
|
2016-08-14 12:45:24 +00:00
|
|
|
|
2018-07-11 17:09:26 +00:00
|
|
|
if err := app.nav.writeMarks(); err != nil {
|
|
|
|
log.Printf("writing marks file: %s", err)
|
|
|
|
}
|
|
|
|
|
2018-07-11 17:49:55 +00:00
|
|
|
if err := app.writeHistory(); err != nil {
|
|
|
|
log.Printf("writing history file: %s", err)
|
|
|
|
}
|
|
|
|
|
2016-08-14 12:45:24 +00:00
|
|
|
if gLastDirPath != "" {
|
|
|
|
f, err := os.Create(gLastDirPath)
|
|
|
|
if err != nil {
|
2016-08-17 19:09:34 +00:00
|
|
|
log.Printf("opening last dir file: %s", err)
|
2016-08-14 12:45:24 +00:00
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
dir := app.nav.currDir()
|
|
|
|
|
|
|
|
_, err = f.WriteString(dir.path)
|
|
|
|
if err != nil {
|
2016-08-17 19:09:34 +00:00
|
|
|
log.Printf("writing last dir file: %s", err)
|
2016-08-14 12:45:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 12:49:04 +00:00
|
|
|
return
|
2019-02-28 18:04:38 +00:00
|
|
|
case n := <-app.nav.copyBytesChan:
|
2019-03-01 01:01:33 +00:00
|
|
|
// n is usually 4096B so update roughly per 4096B x 1024 = 4MB copied
|
2019-02-28 18:04:38 +00:00
|
|
|
if app.nav.copyUpdate++; app.nav.copyUpdate >= 1024 {
|
|
|
|
app.nav.copyUpdate = 0
|
|
|
|
app.ui.draw(app.nav)
|
|
|
|
}
|
|
|
|
app.nav.copyBytes += n
|
|
|
|
case n := <-app.nav.copyTotalChan:
|
|
|
|
app.nav.copyTotal += n
|
|
|
|
if n < 0 {
|
|
|
|
app.nav.copyBytes += n
|
|
|
|
}
|
|
|
|
app.ui.draw(app.nav)
|
2018-01-11 16:25:48 +00:00
|
|
|
case d := <-app.nav.dirChan:
|
2018-01-26 21:28:07 +00:00
|
|
|
prev, ok := app.nav.dirCache[d.path]
|
|
|
|
if ok {
|
2018-08-27 15:57:55 +00:00
|
|
|
d.ind = prev.ind
|
2018-08-22 17:05:22 +00:00
|
|
|
d.sel(prev.name(), app.nav.height)
|
2018-01-26 21:28:07 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 16:25:48 +00:00
|
|
|
app.nav.dirCache[d.path] = d
|
|
|
|
|
|
|
|
for i := range app.nav.dirs {
|
|
|
|
if app.nav.dirs[i].path == d.path {
|
|
|
|
app.nav.dirs[i] = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
app.nav.position()
|
|
|
|
|
|
|
|
curr, err := app.nav.currFile()
|
|
|
|
if err == nil {
|
|
|
|
if d.path == app.nav.currDir().path {
|
2018-02-10 15:59:19 +00:00
|
|
|
app.ui.loadFile(app.nav)
|
2018-01-11 16:25:48 +00:00
|
|
|
}
|
|
|
|
if d.path == curr.path {
|
|
|
|
app.ui.dirPrev = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 17:13:28 +00:00
|
|
|
app.ui.draw(app.nav)
|
2018-02-10 15:59:19 +00:00
|
|
|
case r := <-app.nav.regChan:
|
|
|
|
app.nav.regCache[r.path] = r
|
|
|
|
|
2018-01-28 17:13:28 +00:00
|
|
|
curr, err := app.nav.currFile()
|
|
|
|
if err == nil {
|
2018-02-10 15:59:19 +00:00
|
|
|
if r.path == curr.path {
|
|
|
|
app.ui.regPrev = r
|
2018-01-28 17:13:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-11 16:25:48 +00:00
|
|
|
app.ui.draw(app.nav)
|
2016-10-29 23:20:35 +00:00
|
|
|
case e := <-clientChan:
|
2018-04-12 15:04:37 +00:00
|
|
|
e.eval(app, nil)
|
2016-10-27 19:24:42 +00:00
|
|
|
app.ui.draw(app.nav)
|
2016-10-29 23:20:35 +00:00
|
|
|
case e := <-serverChan:
|
|
|
|
e.eval(app, nil)
|
|
|
|
app.ui.draw(app.nav)
|
2018-06-09 19:02:09 +00:00
|
|
|
case <-app.ticker.C:
|
|
|
|
app.nav.renew()
|
|
|
|
app.ui.loadFile(app.nav)
|
|
|
|
app.ui.draw(app.nav)
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-17 21:47:37 +00:00
|
|
|
func (app *app) exportVars() {
|
2016-08-13 12:49:04 +00:00
|
|
|
var envFile string
|
2016-10-24 19:18:31 +00:00
|
|
|
if f, err := app.nav.currFile(); err == nil {
|
2017-11-19 18:55:13 +00:00
|
|
|
envFile = f.path
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-09 18:22:10 +00:00
|
|
|
selections := app.nav.currSelections()
|
2016-08-13 12:49:04 +00:00
|
|
|
|
2018-07-09 18:22:10 +00:00
|
|
|
envFiles := strings.Join(selections, gOpts.filesep)
|
2016-08-13 12:49:04 +00:00
|
|
|
|
|
|
|
os.Setenv("f", envFile)
|
|
|
|
os.Setenv("fs", envFiles)
|
|
|
|
|
2018-07-09 18:22:10 +00:00
|
|
|
if len(selections) == 0 {
|
2016-08-13 12:49:04 +00:00
|
|
|
os.Setenv("fx", envFile)
|
|
|
|
} else {
|
|
|
|
os.Setenv("fx", envFiles)
|
|
|
|
}
|
2016-11-06 15:19:48 +00:00
|
|
|
|
2016-12-17 21:47:37 +00:00
|
|
|
os.Setenv("id", strconv.Itoa(gClientID))
|
2018-06-28 18:51:24 +00:00
|
|
|
|
|
|
|
os.Setenv("OPENER", envOpener)
|
|
|
|
os.Setenv("EDITOR", envEditor)
|
|
|
|
os.Setenv("PAGER", envPager)
|
|
|
|
os.Setenv("SHELL", envShell)
|
2018-07-28 13:52:54 +00:00
|
|
|
|
|
|
|
level, err := strconv.Atoi(envLevel)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("reading lf level: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
level++
|
|
|
|
|
|
|
|
os.Setenv("LF_LEVEL", strconv.Itoa(level))
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 18:55:13 +00:00
|
|
|
func waitKey() error {
|
|
|
|
cmd := pauseCommand()
|
|
|
|
|
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return fmt.Errorf("waiting key: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-20 17:30:41 +00:00
|
|
|
// This function is used to run a shell command. Modes are as follows:
|
2016-08-13 12:49:04 +00:00
|
|
|
//
|
2018-05-20 17:30:41 +00:00
|
|
|
// Prefix Wait Async Stdin Stdout Stderr UI action
|
|
|
|
// $ No No Yes Yes Yes Pause and then resume
|
|
|
|
// % No No Yes Yes Yes Statline for input/output
|
|
|
|
// ! Yes No Yes Yes Yes Pause and then resume
|
|
|
|
// & No Yes No No No Do nothing
|
2018-03-26 18:22:18 +00:00
|
|
|
func (app *app) runShell(s string, args []string, prefix string) {
|
2016-08-13 12:49:04 +00:00
|
|
|
app.exportVars()
|
|
|
|
|
2017-08-05 16:23:55 +00:00
|
|
|
cmd := shellCommand(s, args)
|
2016-08-13 12:49:04 +00:00
|
|
|
|
2018-03-26 18:22:18 +00:00
|
|
|
var out io.Reader
|
|
|
|
switch prefix {
|
|
|
|
case "$", "!":
|
2016-08-13 12:49:04 +00:00
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
|
|
|
|
app.ui.pause()
|
|
|
|
defer app.ui.resume()
|
2018-04-15 15:18:39 +00:00
|
|
|
defer app.nav.renew()
|
2018-03-26 18:22:18 +00:00
|
|
|
case "%":
|
2018-04-03 19:22:58 +00:00
|
|
|
stdin, err := cmd.StdinPipe()
|
2018-03-26 18:22:18 +00:00
|
|
|
if err != nil {
|
2018-04-03 19:22:58 +00:00
|
|
|
log.Printf("writing stdin: %s", err)
|
2018-03-26 18:22:18 +00:00
|
|
|
}
|
2018-04-03 19:22:58 +00:00
|
|
|
app.cmdIn = stdin
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
2018-03-26 18:22:18 +00:00
|
|
|
if err != nil {
|
2018-04-03 19:22:58 +00:00
|
|
|
log.Printf("reading stdout: %s", err)
|
2018-03-26 18:22:18 +00:00
|
|
|
}
|
2018-04-03 19:22:58 +00:00
|
|
|
out = stdout
|
|
|
|
cmd.Stderr = cmd.Stdout
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2018-03-26 18:22:18 +00:00
|
|
|
switch prefix {
|
|
|
|
case "$", "!":
|
2016-08-13 12:49:04 +00:00
|
|
|
err = cmd.Run()
|
2018-03-26 18:22:18 +00:00
|
|
|
case "%", "&":
|
|
|
|
err = cmd.Start()
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2019-02-28 18:58:14 +00:00
|
|
|
app.ui.echoerrf("running shell: %s", err)
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
|
2018-03-26 18:22:18 +00:00
|
|
|
switch prefix {
|
|
|
|
case "!":
|
2016-08-13 12:49:04 +00:00
|
|
|
if err := waitKey(); err != nil {
|
2019-02-28 18:58:14 +00:00
|
|
|
app.ui.echoerrf("waiting key: %s", err)
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-09 15:18:02 +00:00
|
|
|
|
|
|
|
app.ui.loadFile(app.nav)
|
|
|
|
app.ui.loadFileInfo(app.nav)
|
2018-03-26 18:22:18 +00:00
|
|
|
|
|
|
|
switch prefix {
|
|
|
|
case "%":
|
2019-02-08 21:55:11 +00:00
|
|
|
app.cmd = cmd
|
|
|
|
app.cmdOutBuf = nil
|
|
|
|
app.ui.msg = ""
|
|
|
|
app.ui.cmdPrefix = ">"
|
2019-02-08 21:48:23 +00:00
|
|
|
|
2019-02-08 21:55:11 +00:00
|
|
|
go func() {
|
2019-02-08 21:48:23 +00:00
|
|
|
reader := bufio.NewReader(out)
|
2018-11-08 17:00:54 +00:00
|
|
|
for {
|
2018-12-03 12:43:12 +00:00
|
|
|
b, err := reader.ReadByte()
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
2019-02-08 21:48:23 +00:00
|
|
|
app.cmdOutBuf = append(app.cmdOutBuf, b)
|
|
|
|
app.ui.exprChan <- &callExpr{"echo", []string{string(app.cmdOutBuf)}, 1}
|
|
|
|
if b == '\n' || b == '\r' {
|
|
|
|
app.cmdOutBuf = nil
|
2018-04-03 19:22:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := cmd.Wait(); err != nil {
|
|
|
|
log.Printf("running shell: %s", err)
|
|
|
|
}
|
2018-04-03 19:56:38 +00:00
|
|
|
app.cmd = nil
|
2018-04-03 19:22:58 +00:00
|
|
|
app.ui.cmdPrefix = ""
|
2018-08-27 16:01:21 +00:00
|
|
|
app.ui.exprChan <- &callExpr{"load", nil, 1}
|
2018-04-03 19:22:58 +00:00
|
|
|
}()
|
2018-03-26 18:22:18 +00:00
|
|
|
}
|
2016-08-13 12:49:04 +00:00
|
|
|
}
|