Skip to content

Commit

Permalink
progress for resource can be restarted after more Working event comes
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
  • Loading branch information
ndeloof committed Apr 15, 2024
1 parent d8ee474 commit b3792dd
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 20 deletions.
3 changes: 0 additions & 3 deletions internal/desktop/file_shares.go
Expand Up @@ -139,9 +139,6 @@ func NewFileShareManager(cli *Client, projectName string, hostPaths []string) *F
// flow can continue.
func (m *FileShareManager) EnsureExists(ctx context.Context) (err error) {
w := progress.ContextWriter(ctx)
// TODO(milas): this should be a per-node option, not global
w.HasMore(false)

w.Event(progress.NewEvent(fileShareProgressID, progress.Working, ""))
defer func() {
if err != nil {
Expand Down
8 changes: 2 additions & 6 deletions pkg/compose/create.go
Expand Up @@ -68,11 +68,11 @@ type createConfigs struct {

func (s *composeService) Create(ctx context.Context, project *types.Project, createOpts api.CreateOptions) error {
return progress.RunWithTitle(ctx, func(ctx context.Context) error {
return s.create(ctx, project, createOpts, false)
return s.create(ctx, project, createOpts)
}, s.stdinfo(), "Creating")
}

func (s *composeService) create(ctx context.Context, project *types.Project, options api.CreateOptions, willAttach bool) error {
func (s *composeService) create(ctx context.Context, project *types.Project, options api.CreateOptions) error {
if len(options.Services) == 0 {
options.Services = project.ServiceNames()
}
Expand Down Expand Up @@ -113,10 +113,6 @@ func (s *composeService) create(ctx context.Context, project *types.Project, opt
"--remove-orphans flag to clean it up.", orphans.names())
}
}

if willAttach {
progress.ContextWriter(ctx).HasMore(willAttach)
}
return newConvergence(options.Services, observedState, s).apply(ctx, project, options)
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/compose/scale.go
Expand Up @@ -26,7 +26,7 @@ import (

func (s *composeService) Scale(ctx context.Context, project *types.Project, options api.ScaleOptions) error {
return progress.Run(ctx, tracing.SpanWrapFunc("project/scale", tracing.ProjectOptions(ctx, project), func(ctx context.Context) error {
err := s.create(ctx, project, api.CreateOptions{Services: options.Services}, true)
err := s.create(ctx, project, api.CreateOptions{Services: options.Services})
if err != nil {
return err
}
Expand Down
3 changes: 1 addition & 2 deletions pkg/compose/up.go
Expand Up @@ -37,8 +37,7 @@ import (

func (s *composeService) Up(ctx context.Context, project *types.Project, options api.UpOptions) error { //nolint:gocyclo
err := progress.Run(ctx, tracing.SpanWrapFunc("project/up", tracing.ProjectOptions(ctx, project), func(ctx context.Context) error {
w := progress.ContextWriter(ctx)
err := s.create(ctx, project, options.Create, options.Start.Attach != nil)
err := s.create(ctx, project, options.Create)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/compose/watch.go
Expand Up @@ -470,7 +470,7 @@ func (s *composeService) handleWatchBatch(ctx context.Context, project *types.Pr
Services: []string{serviceName},
Inherit: true,
Recreate: api.RecreateForce,
}, true)
})
if err != nil {
options.LogTo.Log(api.WatchLogger, fmt.Sprintf("Failed to recreate service after update. Error: %v", err))
return err
Expand Down
6 changes: 5 additions & 1 deletion pkg/progress/event.go
Expand Up @@ -176,6 +176,10 @@ func (e *Event) stop() {
e.spinner.Stop()
}

func (e *Event) hasMore() {
e.spinner.Restart()
}

var (
spinnerDone = "✔"
spinnerWarning = "!"
Expand All @@ -191,6 +195,6 @@ func (e *Event) Spinner() any {
case Error:
return ErrorColor(spinnerError)
default:
return e.spinner.String()
return CountColor(e.spinner.String())
}
}
4 changes: 4 additions & 0 deletions pkg/progress/spinner.go
Expand Up @@ -64,3 +64,7 @@ func (s *spinner) String() string {
func (s *spinner) Stop() {
s.stop = true
}

func (s *spinner) Restart() {
s.stop = false
}
7 changes: 2 additions & 5 deletions pkg/progress/tty.go
Expand Up @@ -84,14 +84,11 @@ func (w *ttyWriter) event(e Event) {
last := w.events[e.ID]
switch e.Status {
case Done, Error, Warning:
if last.endTime.IsZero() {
if last.Status != e.Status {
last.stop()
}
case Working:
if !last.endTime.IsZero() {
// already done, don't overwrite
return
}
last.hasMore()
}
last.Status = e.Status
last.Text = e.Text
Expand Down
2 changes: 1 addition & 1 deletion pkg/progress/tty_test.go
Expand Up @@ -42,7 +42,7 @@ func TestLineText(t *testing.T) {
lineWidth := len(fmt.Sprintf("%s %s", ev.ID, ev.Text))

out := tty().lineText(ev, "", 50, lineWidth, false)
assert.Equal(t, out, " . id Text Status \x1b[34m0.0s \x1b[0m\n")
assert.Equal(t, out, " \x1b[33m.\x1b[0m id Text Status \x1b[34m0.0s \x1b[0m\n")

ev.Status = Done
out = tty().lineText(ev, "", 50, lineWidth, false)
Expand Down

0 comments on commit b3792dd

Please sign in to comment.