second draft of resh cli

pull/58/head
Simon Let 6 years ago
parent ef996545e9
commit a12862032a
  1. 361
      cmd/cli/main.go
  2. 54
      cmd/daemon/dump.go
  3. 1
      cmd/daemon/run-server.go
  4. 23
      pkg/histcli/histcli.go
  5. 20
      pkg/histfile/histfile.go
  6. 13
      pkg/msg/msg.go
  7. 4
      scripts/reshctl.sh

@ -3,18 +3,22 @@ package main
import ( import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"errors"
"flag" "flag"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"log" "log"
"net/http" "net/http"
"os"
"sort" "sort"
"strings" "strings"
"sync"
"github.com/BurntSushi/toml" "github.com/BurntSushi/toml"
"github.com/awesome-gocui/gocui" "github.com/awesome-gocui/gocui"
"github.com/curusarn/resh/pkg/cfg" "github.com/curusarn/resh/pkg/cfg"
"github.com/curusarn/resh/pkg/msg" "github.com/curusarn/resh/pkg/msg"
"github.com/curusarn/resh/pkg/records"
"os/user" "os/user"
"path/filepath" "path/filepath"
@ -31,18 +35,35 @@ func main() {
usr, _ := user.Current() usr, _ := user.Current()
dir := usr.HomeDir dir := usr.HomeDir
configPath := filepath.Join(dir, "/.config/resh.toml") configPath := filepath.Join(dir, "/.config/resh.toml")
logPath := filepath.Join(dir, ".resh/cli.log")
f, err := os.OpenFile(logPath, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
log.Fatal("Error opening file:", err)
}
defer f.Close()
log.SetOutput(f)
var config cfg.Config var config cfg.Config
if _, err := toml.DecodeFile(configPath, &config); err != nil { if _, err := toml.DecodeFile(configPath, &config); err != nil {
log.Fatal("Error reading config:", err) log.Fatal("Error reading config:", err)
} }
if config.Debug {
// Debug = true
log.SetFlags(log.LstdFlags | log.Lmicroseconds)
}
sessionID := flag.String("sessionID", "", "resh generated session id") sessionID := flag.String("sessionID", "", "resh generated session id")
pwd := flag.String("pwd", "", "present working directory")
flag.Parse() flag.Parse()
if *sessionID == "" { if *sessionID == "" {
fmt.Println("Error: you need to specify sessionId") fmt.Println("Error: you need to specify sessionId")
} }
if *pwd == "" {
fmt.Println("Error: you need to specify PWD")
}
g, err := gocui.NewGui(gocui.OutputNormal, false) g, err := gocui.NewGui(gocui.OutputNormal, false)
if err != nil { if err != nil {
@ -53,18 +74,22 @@ func main() {
g.Cursor = true g.Cursor = true
g.SelFgColor = gocui.ColorGreen g.SelFgColor = gocui.ColorGreen
// g.SelBgColor = gocui.ColorGreen // g.SelBgColor = gocui.ColorGreen
g.Highlight = false g.Highlight = true
mess := msg.InspectMsg{SessionID: *sessionID, Count: 40} mess := msg.DumpMsg{
resp := SendInspectMsg(mess, strconv.Itoa(config.Port)) SessionID: *sessionID,
PWD: *pwd,
}
resp := SendDumpMsg(mess, strconv.Itoa(config.Port))
st := state{ st := state{
// lock sync.Mutex // lock sync.Mutex
dataOriginal: resp.CmdLines, fullRecords: resp.FullRecords,
data: resp.CmdLines,
} }
layout := manager{ layout := manager{
sessionID: *sessionID, sessionID: *sessionID,
pwd: *pwd,
config: config, config: config,
s: &st, s: &st,
} }
@ -86,6 +111,7 @@ func main() {
log.Panicln(err) log.Panicln(err)
} }
layout.UpdateData("")
err = g.MainLoop() err = g.MainLoop()
if err != nil && gocui.IsQuit(err) == false { if err != nil && gocui.IsQuit(err) == false {
log.Panicln(err) log.Panicln(err)
@ -93,20 +119,224 @@ func main() {
layout.Output() layout.Output()
} }
// returns the number of hits for query func leftCutPadString(str string, newLen int) string {
func queryHits(cmdline string, queryTerms []string) int { dots := "…"
strLen := len(str)
if newLen > strLen {
return strings.Repeat(" ", newLen-strLen) + str
} else if newLen < strLen {
return dots + str[strLen-newLen+1:]
}
return str
}
func rightCutPadString(str string, newLen int) string {
dots := "…"
strLen := len(str)
if newLen > strLen {
return str + strings.Repeat(" ", newLen-strLen)
} else if newLen < strLen {
return str[:newLen-1] + dots
}
return str
}
func cleanHighlight(str string) string {
prefix := "\033["
invert := "\033[32;7;1m"
end := "\033[0m"
blueBold := "\033[34;1m"
redBold := "\033[31;1m"
repace := []string{invert, end, blueBold, redBold}
if strings.Contains(str, prefix) == false {
return str
}
for _, escSeq := range repace {
str = strings.ReplaceAll(str, escSeq, "")
}
return str
}
func highlightSelected(str string) string {
// template "\033[3%d;%dm"
invert := "\033[32;7;1m"
end := "\033[0m"
return invert + cleanHighlight(str) + end
}
func highlightMatchAlternative(str string) string {
// template "\033[3%d;%dm"
blueBold := "\033[34;1m"
end := "\033[0m"
return blueBold + cleanHighlight(str) + end
}
func highlightMatch(str string) string {
// template "\033[3%d;%dm"
redBold := "\033[31;1m"
end := "\033[0m"
return redBold + cleanHighlight(str) + end
}
func toString(record records.EnrichedRecord, lineLength int) string {
dirColWidth := 24 // make this dynamic somehow
return leftCutPadString(strings.Replace(record.Pwd, record.Home, "~", 1), dirColWidth) + " " +
rightCutPadString(strings.ReplaceAll(record.CmdLine, "\n", "; "), lineLength-dirColWidth-3) + "\n"
}
type query struct {
terms []string
pwd string
// pwdTilde string
}
func isValidTerm(term string) bool {
if len(term) == 0 {
return false
}
if strings.Contains(term, " ") {
return false
}
return true
}
func filterTerms(terms []string) []string {
var newTerms []string
for _, term := range terms {
if isValidTerm(term) {
newTerms = append(newTerms, term)
}
}
return newTerms
}
func newQueryFromString(queryInput string, pwd string) query {
log.Println("QUERY input = <" + queryInput + ">")
terms := strings.Fields(queryInput)
var logStr string
for _, term := range terms {
logStr += " <" + term + ">"
}
log.Println("QUERY raw terms =" + logStr)
terms = filterTerms(terms)
logStr = ""
for _, term := range terms {
logStr += " <" + term + ">"
}
log.Println("QUERY filtered terms =" + logStr)
log.Println("QUERY pwd =" + pwd)
return query{terms: terms, pwd: pwd}
}
type item struct {
// record records.EnrichedRecord
display string
displayNoColor string
cmdLine string
pwd string
pwdTilde string
hits int
}
func (i item) less(i2 item) bool {
// reversed order
return i.hits > i2.hits
}
// used for deduplication
func (i item) key() string {
unlikelySeparator := "|||||"
return i.cmdLine + unlikelySeparator + i.pwd
}
// func (i item) equals(i2 item) bool {
// return i.cmdLine == i2.cmdLine && i.pwd == i2.pwd
// }
// newItemFromRecordForQuery creates new item from record based on given query
// returns error if the query doesn't match the record
func newItemFromRecordForQuery(record records.EnrichedRecord, query query) (item, error) {
// TODO: use color to highlight matches
hits := 0 hits := 0
for _, term := range queryTerms { cmd := record.CmdLine
if strings.Contains(cmdline, term) { pwdTilde := strings.Replace(record.Pwd, record.Home, "~", 1)
pwdDisp := leftCutPadString(pwdTilde, 25)
pwdRawDisp := leftCutPadString(record.Pwd, 25)
var useRawPwd bool
for _, term := range query.terms {
if strings.Contains(record.CmdLine, term) {
hits++ hits++
cmd = strings.ReplaceAll(cmd, term, highlightMatch(term))
// NO continue
} }
if strings.Contains(pwdTilde, term) {
hits++
pwdDisp = strings.ReplaceAll(pwdDisp, term, highlightMatch(term))
useRawPwd = false
continue
}
if strings.Contains(record.Pwd, term) {
hits++
pwdRawDisp = strings.ReplaceAll(pwdRawDisp, term, highlightMatch(term))
useRawPwd = true
continue
}
// if strings.Contains(record.GitOriginRemote, term) {
// hits++
// }
}
// actual pwd matches
if record.Pwd == query.pwd {
hits++
pwdDisp = highlightMatchAlternative(pwdDisp)
pwdRawDisp = highlightMatchAlternative(pwdRawDisp)
useRawPwd = false
} }
return hits if hits == 0 {
return item{}, errors.New("no match for given record and query")
}
display := " "
// pwd := leftCutPadString("<"+pwdTilde+">", 20)
if useRawPwd {
display += pwdRawDisp
} else {
display += pwdDisp
}
hitsDisp := " " + rightCutPadString(strconv.Itoa(hits), 2)
display += hitsDisp
// cmd := "<" + strings.ReplaceAll(record.CmdLine, "\n", ";") + ">"
cmd = strings.ReplaceAll(cmd, "\n", ";")
display += cmd
// itDummy := item{
// cmdLine: record.CmdLine,
// pwd: record.Pwd,
// }
// + " #K:<" + itDummy.key() + ">"
it := item{
display: display,
displayNoColor: display,
cmdLine: record.CmdLine,
pwd: record.Pwd,
pwdTilde: pwdTilde,
hits: hits,
}
return it, nil
}
func doHighlightString(str string, minLength int) string {
str = "> " + string(str[2:])
if len(str) < minLength {
str = str + strings.Repeat(" ", minLength-len(str))
}
return highlightSelected(str)
} }
type state struct { type state struct {
dataOriginal []string lock sync.Mutex
data []string fullRecords []records.EnrichedRecord
data []item
highlightedItem int highlightedItem int
outputBuffer string outputBuffer string
@ -114,46 +344,80 @@ type state struct {
type manager struct { type manager struct {
sessionID string sessionID string
pwd string
config cfg.Config config cfg.Config
s *state s *state
} }
func (m manager) Output() { func (m manager) Output() {
m.s.lock.Lock()
defer m.s.lock.Unlock()
if len(m.s.outputBuffer) > 0 { if len(m.s.outputBuffer) > 0 {
fmt.Print(m.s.outputBuffer) fmt.Print(m.s.outputBuffer)
} }
} }
func (m manager) SelectExecute(g *gocui.Gui, v *gocui.View) error { func (m manager) SelectExecute(g *gocui.Gui, v *gocui.View) error {
m.s.lock.Lock()
defer m.s.lock.Unlock()
if m.s.highlightedItem < len(m.s.data) { if m.s.highlightedItem < len(m.s.data) {
m.s.outputBuffer = m.s.data[m.s.highlightedItem] m.s.outputBuffer = m.s.data[m.s.highlightedItem].cmdLine + "\n"
return gocui.ErrQuit return gocui.ErrQuit
} }
return nil return nil
} }
func (m manager) Edit(v *gocui.View, key gocui.Key, ch rune, mod gocui.Modifier) { func (m manager) UpdateData(input string) {
gocui.DefaultEditor.Edit(v, key, ch, mod) log.Println("EDIT start")
query := v.Buffer() log.Println("len(fullRecords) =", len(m.s.fullRecords))
terms := strings.Split(query, " ") log.Println("len(data) =", len(m.s.data))
var dataHits []int query := newQueryFromString(input, m.pwd)
m.s.data = nil var data []item
for _, entry := range m.s.dataOriginal { itemSet := make(map[string]bool)
hits := queryHits(entry, terms) m.s.lock.Lock()
if hits > 0 { defer m.s.lock.Unlock()
m.s.data = append(m.s.data, entry) for _, rec := range m.s.fullRecords {
dataHits = append(dataHits, hits) itm, err := newItemFromRecordForQuery(rec, query)
if err != nil {
// records didn't match the query
// log.Println(" * continue (no match)", rec.Pwd)
continue
} }
if itemSet[itm.key()] {
// log.Println(" * continue (already present)", itm.key(), itm.pwd)
continue
}
itemSet[itm.key()] = true
data = append(data, itm)
// log.Println("DATA =", itm.display)
} }
sort.SliceStable(m.s.data, func(p, q int) bool { log.Println("len(tmpdata) =", len(data))
return dataHits[p] > dataHits[q] sort.SliceStable(data, func(p, q int) bool {
return data[p].hits > data[q].hits
}) })
m.s.data = nil
for _, itm := range data {
if len(m.s.data) > 420 {
break
}
m.s.data = append(m.s.data, itm)
}
m.s.highlightedItem = 0 m.s.highlightedItem = 0
log.Println("len(fullRecords) =", len(m.s.fullRecords))
log.Println("len(data) =", len(m.s.data))
log.Println("EDIT end")
}
func (m manager) Edit(v *gocui.View, key gocui.Key, ch rune, mod gocui.Modifier) {
gocui.DefaultEditor.Edit(v, key, ch, mod)
m.UpdateData(v.Buffer())
} }
func (m manager) Next(g *gocui.Gui, v *gocui.View) error { func (m manager) Next(g *gocui.Gui, v *gocui.View) error {
_, y := g.Size() _, y := g.Size()
m.s.lock.Lock()
defer m.s.lock.Unlock()
if m.s.highlightedItem < y { if m.s.highlightedItem < y {
m.s.highlightedItem++ m.s.highlightedItem++
} }
@ -161,6 +425,8 @@ func (m manager) Next(g *gocui.Gui, v *gocui.View) error {
} }
func (m manager) Prev(g *gocui.Gui, v *gocui.View) error { func (m manager) Prev(g *gocui.Gui, v *gocui.View) error {
m.s.lock.Lock()
defer m.s.lock.Unlock()
if m.s.highlightedItem > 0 { if m.s.highlightedItem > 0 {
m.s.highlightedItem-- m.s.highlightedItem--
} }
@ -190,15 +456,36 @@ func (m manager) Layout(g *gocui.Gui) error {
log.Panicln(err.Error()) log.Panicln(err.Error())
} }
v.Frame = false v.Frame = false
v.Autoscroll = true v.Autoscroll = false
v.Clear() v.Clear()
for _, cmdLine := range m.s.data { v.Rewind()
entry := strings.Trim(cmdLine, "\n") + "\n"
v.WriteString(entry) m.s.lock.Lock()
} defer m.s.lock.Unlock()
if m.s.highlightedItem < len(m.s.data) { for i, itm := range m.s.data {
v.SetHighlight(m.s.highlightedItem, true) if i == maxY {
log.Println(maxY)
break
}
displayStr := itm.display
if m.s.highlightedItem == i {
// use actual min requried length instead of 420 constant
displayStr = doHighlightString(displayStr, 420)
log.Println("### HightlightedItem string :", displayStr)
} else {
log.Println(displayStr)
}
if strings.Contains(displayStr, "\n") {
log.Println("display string contained \\n")
displayStr = strings.ReplaceAll(displayStr, "\n", "#")
}
v.WriteString(displayStr + "\n")
// if m.s.highlightedItem == i {
// v.SetHighlight(m.s.highlightedItem, true)
// }
} }
log.Println("len(data) =", len(m.s.data))
log.Println("highlightedItem =", m.s.highlightedItem)
return nil return nil
} }
@ -206,14 +493,14 @@ func quit(g *gocui.Gui, v *gocui.View) error {
return gocui.ErrQuit return gocui.ErrQuit
} }
// SendInspectMsg to daemon // SendDumpMsg to daemon
func SendInspectMsg(m msg.InspectMsg, port string) msg.MultiResponse { func SendDumpMsg(m msg.DumpMsg, port string) msg.DumpResponse {
recJSON, err := json.Marshal(m) recJSON, err := json.Marshal(m)
if err != nil { if err != nil {
log.Fatal("send err 1", err) log.Fatal("send err 1", err)
} }
req, err := http.NewRequest("POST", "http://localhost:"+port+"/inspect", req, err := http.NewRequest("POST", "http://localhost:"+port+"/dump",
bytes.NewBuffer(recJSON)) bytes.NewBuffer(recJSON))
if err != nil { if err != nil {
log.Fatal("send err 2", err) log.Fatal("send err 2", err)
@ -232,7 +519,7 @@ func SendInspectMsg(m msg.InspectMsg, port string) msg.MultiResponse {
log.Fatal("read response error") log.Fatal("read response error")
} }
// log.Println(string(body)) // log.Println(string(body))
response := msg.MultiResponse{} response := msg.DumpResponse{}
err = json.Unmarshal(body, &response) err = json.Unmarshal(body, &response)
if err != nil { if err != nil {
log.Fatal("unmarshal resp error: ", err) log.Fatal("unmarshal resp error: ", err)

@ -0,0 +1,54 @@
package main
import (
"encoding/json"
"io/ioutil"
"log"
"net/http"
"github.com/curusarn/resh/pkg/histfile"
"github.com/curusarn/resh/pkg/msg"
)
type dumpHandler struct {
histfileBox *histfile.Histfile
}
func (h *dumpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if Debug {
log.Println("/dump START")
log.Println("/dump reading body ...")
}
jsn, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Println("Error reading the body", err)
return
}
mess := msg.DumpMsg{}
if Debug {
log.Println("/dump unmarshaling record ...")
}
err = json.Unmarshal(jsn, &mess)
if err != nil {
log.Println("Decoding error:", err)
log.Println("Payload:", jsn)
return
}
if Debug {
log.Println("/dump dumping ...")
}
fullRecords := h.histfileBox.DumpRecords()
if err != nil {
log.Println("Dump error:", err)
}
resp := msg.DumpResponse{FullRecords: fullRecords.List}
jsn, err = json.Marshal(&resp)
if err != nil {
log.Println("Encoding error:", err)
return
}
w.Write(jsn)
log.Println("/dump END")
}

@ -62,6 +62,7 @@ func runServer(config cfg.Config, reshHistoryPath, bashHistoryPath, zshHistoryPa
mux.Handle("/session_init", &sessionInitHandler{subscribers: sessionInitSubscribers}) mux.Handle("/session_init", &sessionInitHandler{subscribers: sessionInitSubscribers})
mux.Handle("/recall", &recallHandler{sesshistDispatch: sesshistDispatch}) mux.Handle("/recall", &recallHandler{sesshistDispatch: sesshistDispatch})
mux.Handle("/inspect", &inspectHandler{sesshistDispatch: sesshistDispatch}) mux.Handle("/inspect", &inspectHandler{sesshistDispatch: sesshistDispatch})
mux.Handle("/dump", &dumpHandler{histfileBox: histfileBox})
server := &http.Server{Addr: ":" + strconv.Itoa(config.Port), Handler: mux} server := &http.Server{Addr: ":" + strconv.Itoa(config.Port), Handler: mux}
go server.ListenAndServe() go server.ListenAndServe()

@ -0,0 +1,23 @@
package histcli
import (
"github.com/curusarn/resh/pkg/records"
)
// Histcli is a dump of history preprocessed for resh cli purposes
type Histcli struct {
// list of records
List []records.EnrichedRecord
}
// New Histcli
func New() Histcli {
return Histcli{}
}
// AddRecord to the histcli
func (h *Histcli) AddRecord(record records.Record) {
enriched := records.Enriched(record)
h.List = append(h.List, enriched)
}

@ -8,6 +8,7 @@ import (
"strconv" "strconv"
"sync" "sync"
"github.com/curusarn/resh/pkg/histcli"
"github.com/curusarn/resh/pkg/histlist" "github.com/curusarn/resh/pkg/histlist"
"github.com/curusarn/resh/pkg/records" "github.com/curusarn/resh/pkg/records"
) )
@ -25,6 +26,8 @@ type Histfile struct {
// resh_history itself is common for both bash and zsh // resh_history itself is common for both bash and zsh
bashCmdLines histlist.Histlist bashCmdLines histlist.Histlist
zshCmdLines histlist.Histlist zshCmdLines histlist.Histlist
fullRecords histcli.Histcli
} }
// New creates new histfile and runs its gorutines // New creates new histfile and runs its gorutines
@ -38,13 +41,24 @@ func New(input chan records.Record, sessionsToDrop chan string,
historyPath: reshHistoryPath, historyPath: reshHistoryPath,
bashCmdLines: histlist.New(), bashCmdLines: histlist.New(),
zshCmdLines: histlist.New(), zshCmdLines: histlist.New(),
fullRecords: histcli.New(),
} }
go hf.loadHistory(bashHistoryPath, zshHistoryPath, maxInitHistSize, minInitHistSizeKB) go hf.loadHistory(bashHistoryPath, zshHistoryPath, maxInitHistSize, minInitHistSizeKB)
go hf.writer(input, signals, shutdownDone) go hf.writer(input, signals, shutdownDone)
go hf.sessionGC(sessionsToDrop) go hf.sessionGC(sessionsToDrop)
go hf.loadFullRecords()
return &hf return &hf
} }
// load records from resh history, reverse, enrich and save
func (h *Histfile) loadFullRecords() {
recs := records.LoadFromFile(h.historyPath, math.MaxInt32)
for i := len(recs) - 1; i >= 0; i-- {
rec := recs[i]
h.fullRecords.AddRecord(rec)
}
}
// loadsHistory from resh_history and if there is not enough of it also load native shell histories // loadsHistory from resh_history and if there is not enough of it also load native shell histories
func (h *Histfile) loadHistory(bashHistoryPath, zshHistoryPath string, maxInitHistSize, minInitHistSizeKB int) { func (h *Histfile) loadHistory(bashHistoryPath, zshHistoryPath string, maxInitHistSize, minInitHistSizeKB int) {
h.recentMutex.Lock() h.recentMutex.Lock()
@ -209,3 +223,9 @@ func (h *Histfile) GetRecentCmdLines(shell string, limit int) histlist.Histlist
log.Println("histfile: history copied (zsh) - cmdLine count:", len(hl.List)) log.Println("histfile: history copied (zsh) - cmdLine count:", len(hl.List))
return hl return hl
} }
// DumpRecords returns enriched records
func (h *Histfile) DumpRecords() histcli.Histcli {
// don't forget locks in the future
return h.fullRecords
}

@ -1,5 +1,18 @@
package msg package msg
import "github.com/curusarn/resh/pkg/records"
// DumpMsg struct
type DumpMsg struct {
SessionID string `json:"sessionID"`
PWD string `json:"pwd"`
}
// DumpResponse struct
type DumpResponse struct {
FullRecords []records.EnrichedRecord `json:"fullRecords"`
}
// InspectMsg struct // InspectMsg struct
type InspectMsg struct { type InspectMsg struct {
SessionID string `json:"sessionId"` SessionID string `json:"sessionId"`

@ -78,9 +78,9 @@ __resh_unbind_all() {
# wrapper for resh-cli # wrapper for resh-cli
# meant to be launched on ctrl+R # meant to be launched on ctrl+R
resh() { resh() {
if resh-cli --sessionID "$__RESH_SESSION_ID" > ~/.resh/cli_last_run_out.txt 2>&1; then if resh-cli --sessionID "$__RESH_SESSION_ID" --pwd "$PWD" > ~/.resh/cli_last_run_out.txt 2>&1; then
# insert on cmdline # insert on cmdline
echo "$(cat ~/.resh/cli_last_run_out.txt)" cat ~/.resh/cli_last_run_out.txt
eval "$(cat ~/.resh/cli_last_run_out.txt)" eval "$(cat ~/.resh/cli_last_run_out.txt)"
# TODO: get rid of eval # TODO: get rid of eval
else else

Loading…
Cancel
Save