WIP streaming commands

This commit is contained in:
Jesse Duffield 2019-06-05 23:20:42 +10:00
parent 129c9bbe9e
commit 1f5df32141
7 changed files with 100 additions and 40 deletions

View file

@ -106,6 +106,7 @@ type CommandTemplatesConfig struct {
StopService string `yaml:"stopService,omitempty"` StopService string `yaml:"stopService,omitempty"`
ServiceLogs string `yaml:"serviceLogs,omitempty"` ServiceLogs string `yaml:"serviceLogs,omitempty"`
ViewServiceLogs string `yaml:"viewServiceLogs,omitempty"` ViewServiceLogs string `yaml:"viewServiceLogs,omitempty"`
RebuildService string `yaml:"rebuildService,omitempty"`
} }
type OSConfig struct { type OSConfig struct {

View file

@ -81,10 +81,6 @@ func (gui *Gui) handleContainerSelect(g *gocui.Gui, v *gocui.View) error {
mainView := gui.getMainView() mainView := gui.getMainView()
mainView.Clear()
mainView.SetOrigin(0, 0)
mainView.SetCursor(0, 0)
switch gui.getContainerContexts()[gui.State.Panels.Containers.ContextIndex] { switch gui.getContainerContexts()[gui.State.Panels.Containers.ContextIndex] {
case "logs": case "logs":
if err := gui.renderContainerLogs(mainView, container); err != nil { if err := gui.renderContainerLogs(mainView, container); err != nil {
@ -114,9 +110,11 @@ func (gui *Gui) renderContainerConfig(mainView *gocui.View, container *commands.
return err return err
} }
return gui.T.NewTask(func(stop chan struct{}) { go gui.T.NewTask(func(stop chan struct{}) {
gui.renderString(gui.g, "main", string(data)) gui.renderString(gui.g, "main", string(data))
}) })
return nil
} }
func (gui *Gui) renderContainerStats(mainView *gocui.View, container *commands.Container) error { func (gui *Gui) renderContainerStats(mainView *gocui.View, container *commands.Container) error {
@ -153,13 +151,14 @@ func (gui *Gui) renderLogsForRegularContainer(mainView *gocui.View, container *c
cmd.Stdout = mainView cmd.Stdout = mainView
cmd.Stderr = mainView cmd.Stderr = mainView
go gui.runProcessWithLock(cmd) gui.runProcessWithLock(cmd)
return nil return nil
} }
func (gui *Gui) runProcessWithLock(cmd *exec.Cmd) { func (gui *Gui) runProcessWithLock(cmd *exec.Cmd) {
gui.T.NewTask(func(stop chan struct{}) { go gui.T.NewTask(func(stop chan struct{}) {
gui.clearMainView()
cmd.Start() cmd.Start()
go func() { go func() {
@ -189,7 +188,7 @@ func (gui *Gui) renderLogsForTTYContainer(mainView *gocui.View, container *comma
} }
}() }()
go gui.runProcessWithLock(cmd) gui.runProcessWithLock(cmd)
return nil return nil
} }

View file

@ -78,10 +78,6 @@ func (gui *Gui) handleImageSelect(g *gocui.Gui, v *gocui.View) error {
mainView := gui.getMainView() mainView := gui.getMainView()
mainView.Clear()
mainView.SetOrigin(0, 0)
mainView.SetCursor(0, 0)
switch gui.getImageContexts()[gui.State.Panels.Images.ContextIndex] { switch gui.getImageContexts()[gui.State.Panels.Images.ContextIndex] {
case "config": case "config":
if err := gui.renderImageConfig(mainView, Image); err != nil { if err := gui.renderImageConfig(mainView, Image); err != nil {
@ -95,11 +91,7 @@ func (gui *Gui) handleImageSelect(g *gocui.Gui, v *gocui.View) error {
} }
func (gui *Gui) renderImageConfig(mainView *gocui.View, image *commands.Image) error { func (gui *Gui) renderImageConfig(mainView *gocui.View, image *commands.Image) error {
mainView.Autoscroll = false go gui.T.NewTask(func(stop chan struct{}) {
mainView.Wrap = false
mainView.Title = "Config"
gui.T.NewTask(func(stop chan struct{}) {
output := "" output := ""
output += utils.WithPadding("ID: ", 10) + image.Image.ID + "\n" output += utils.WithPadding("ID: ", 10) + image.Image.ID + "\n"
output += utils.WithPadding("Tags: ", 10) + utils.ColoredString(strings.Join(image.Image.RepoTags, ", "), color.FgGreen) + "\n" output += utils.WithPadding("Tags: ", 10) + utils.ColoredString(strings.Join(image.Image.RepoTags, ", "), color.FgGreen) + "\n"
@ -113,6 +105,10 @@ func (gui *Gui) renderImageConfig(mainView *gocui.View, image *commands.Image) e
output += "\n\n" + history output += "\n\n" + history
mainView.Autoscroll = false
mainView.Wrap = false
mainView.Title = "Config"
gui.renderString(gui.g, "main", output) gui.renderString(gui.g, "main", output)
}) })

View file

@ -242,6 +242,13 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Handler: gui.handleServicesNextContext, Handler: gui.handleServicesNextContext,
Description: gui.Tr.NextContext, Description: gui.Tr.NextContext,
}, },
{
ViewName: "services",
Key: 'R',
Modifier: gocui.ModNone,
Handler: gui.handleServiceRestartMenu,
Description: gui.Tr.ViewRestartOptions,
},
{ {
ViewName: "images", ViewName: "images",
Key: '[', Key: '[',

View file

@ -1,8 +1,10 @@
package gui package gui
import ( import (
"bytes"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io"
"github.com/fatih/color" "github.com/fatih/color"
"github.com/go-errors/errors" "github.com/go-errors/errors"
@ -73,10 +75,6 @@ func (gui *Gui) handleServiceSelect(g *gocui.Gui, v *gocui.View) error {
mainView := gui.getMainView() mainView := gui.getMainView()
mainView.Clear()
mainView.SetOrigin(0, 0)
mainView.SetCursor(0, 0)
switch gui.getServiceContexts()[gui.State.Panels.Services.ContextIndex] { switch gui.getServiceContexts()[gui.State.Panels.Services.ContextIndex] {
case "logs": case "logs":
if err := gui.renderServiceLogs(mainView, service); err != nil { if err := gui.renderServiceLogs(mainView, service); err != nil {
@ -101,7 +99,7 @@ func (gui *Gui) renderServiceConfig(mainView *gocui.View, service *commands.Serv
mainView.Autoscroll = false mainView.Autoscroll = false
mainView.Title = "Config" mainView.Title = "Config"
gui.T.NewTask(func(stop chan struct{}) { go gui.T.NewTask(func(stop chan struct{}) {
// TODO: actually show service config // TODO: actually show service config
data, err := json.MarshalIndent(&service.Container.Container, "", " ") data, err := json.MarshalIndent(&service.Container.Container, "", " ")
if err != nil { if err != nil {
@ -129,6 +127,9 @@ func (gui *Gui) renderServiceLogs(mainView *gocui.View, service *commands.Servic
} }
if service.Container == nil { if service.Container == nil {
go gui.T.NewTask(func(stop chan struct{}) {
gui.clearMainView()
})
return nil return nil
} }
@ -183,14 +184,14 @@ func (gui *Gui) handleServicesNextContext(g *gocui.Gui, v *gocui.View) error {
return nil return nil
} }
type removeServiceOption struct { type commandOption struct {
description string description string
command string command string
} }
// GetDisplayStrings is a function. // GetDisplayStrings is a function.
func (r *removeServiceOption) GetDisplayStrings(isFocused bool) []string { func (r *commandOption) GetDisplayStrings(isFocused bool) []string {
return []string{r.description, color.New(color.FgRed).Sprint(r.command)} return []string{r.description, color.New(color.FgCyan).Sprint(r.command)}
} }
func (gui *Gui) handleServiceRemoveMenu(g *gocui.Gui, v *gocui.View) error { func (gui *Gui) handleServiceRemoveMenu(g *gocui.Gui, v *gocui.View) error {
@ -201,7 +202,7 @@ func (gui *Gui) handleServiceRemoveMenu(g *gocui.Gui, v *gocui.View) error {
composeCommand := gui.Config.UserConfig.CommandTemplates.DockerCompose composeCommand := gui.Config.UserConfig.CommandTemplates.DockerCompose
options := []*removeServiceOption{ options := []*commandOption{
{ {
description: gui.Tr.Remove, description: gui.Tr.Remove,
command: fmt.Sprintf("%s rm --stop --force %s", composeCommand, service.Name), command: fmt.Sprintf("%s rm --stop --force %s", composeCommand, service.Name),
@ -215,20 +216,7 @@ func (gui *Gui) handleServiceRemoveMenu(g *gocui.Gui, v *gocui.View) error {
}, },
} }
handleMenuPress := func(index int) error { return gui.createCommandMenu(options, gui.Tr.RemovingStatus)
if options[index].command == "" {
return nil
}
return gui.WithWaitingStatus(gui.Tr.RemovingStatus, func() error {
if err := gui.OSCommand.RunCommand(options[index].command); err != nil {
return gui.createErrorPanel(gui.g, err.Error())
}
return gui.refreshContainersAndServices()
})
}
return gui.createMenu("", options, len(options), handleMenuPress)
} }
func (gui *Gui) handleServiceStop(g *gocui.Gui, v *gocui.View) error { func (gui *Gui) handleServiceStop(g *gocui.Gui, v *gocui.View) error {
@ -293,3 +281,61 @@ func (gui *Gui) handleServiceViewLogs(g *gocui.Gui, v *gocui.View) error {
gui.SubProcess = c gui.SubProcess = c
return gui.Errors.ErrSubProcess return gui.Errors.ErrSubProcess
} }
func (gui *Gui) handleServiceRestartMenu(g *gocui.Gui, v *gocui.View) error {
service, err := gui.getSelectedService()
if err != nil {
return nil
}
options := []*commandOption{
{
description: gui.Tr.Restart,
command: utils.ApplyTemplate(gui.Config.UserConfig.CommandTemplates.RestartService, service.Name),
},
{
description: gui.Tr.Rebuild,
command: utils.ApplyTemplate(gui.Config.UserConfig.CommandTemplates.RebuildService, service.Name),
},
{
description: gui.Tr.Cancel,
},
}
return gui.createCommandMenu(options, gui.Tr.RestartingStatus)
}
func (gui *Gui) createCommandMenu(options []*commandOption, status string) error {
handleMenuPress := func(index int) error {
if options[index].command == "" {
return nil
}
gui.getMainView().Clear()
return gui.WithWaitingStatus(status, func() error {
done := make(chan struct{})
go gui.T.NewTask(func(stop chan struct{}) {
cmd := gui.OSCommand.RunCustomCommand(options[index].command)
cmd.Stdout = gui.getMainView()
var stderrBuf bytes.Buffer
cmd.Stderr = io.MultiWriter(gui.getMainView(), &stderrBuf)
cmd.Run()
done <- struct{}{}
errorMessage := stderrBuf.String()
if errorMessage != "" {
gui.createErrorPanel(gui.g, errorMessage)
}
})
<-done
return nil
})
}
return gui.createMenu("", options, len(options), handleMenuPress)
}

View file

@ -359,3 +359,10 @@ func (gui *Gui) isPopupPanel(viewName string) bool {
func (gui *Gui) popupPanelFocused() bool { func (gui *Gui) popupPanelFocused() bool {
return gui.isPopupPanel(gui.currentViewName()) return gui.isPopupPanel(gui.currentViewName())
} }
func (gui *Gui) clearMainView() {
mainView := gui.getMainView()
mainView.Clear()
mainView.SetOrigin(0, 0)
mainView.SetCursor(0, 0)
}

View file

@ -34,6 +34,7 @@ type TranslationSet struct {
RemoveService string RemoveService string
Stop string Stop string
Restart string Restart string
Rebuild string
PreviousContext string PreviousContext string
NextContext string NextContext string
Attach string Attach string
@ -50,6 +51,7 @@ type TranslationSet struct {
PruningStatus string PruningStatus string
StopService string StopService string
PressEnterToReturn string PressEnterToReturn string
ViewRestartOptions string
} }
func englishSet() TranslationSet { func englishSet() TranslationSet {
@ -79,6 +81,7 @@ func englishSet() TranslationSet {
RemoveService: "remove containers", RemoveService: "remove containers",
Stop: "stop", Stop: "stop",
Restart: "restart", Restart: "restart",
Rebuild: "rebuild",
PreviousContext: "previous context", PreviousContext: "previous context",
NextContext: "next context", NextContext: "next context",
Attach: "attach", Attach: "attach",
@ -86,6 +89,7 @@ func englishSet() TranslationSet {
RemoveImage: "remove image", RemoveImage: "remove image",
RemoveWithoutPrune: "remove without deleting untagged parents", RemoveWithoutPrune: "remove without deleting untagged parents",
PruneImages: "prune unused images", PruneImages: "prune unused images",
ViewRestartOptions: "view restart options",
AnonymousReportingTitle: "Help make lazydocker better", AnonymousReportingTitle: "Help make lazydocker better",
AnonymousReportingPrompt: "Would you like to enable anonymous reporting data to help improve lazydocker? (enter/esc)", AnonymousReportingPrompt: "Would you like to enable anonymous reporting data to help improve lazydocker? (enter/esc)",