progress for resource can be restarted after more Working event comes

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2024-04-15 08:54:55 +02:00 committed by Nicolas De loof
parent d8ee474e09
commit b3792dd258
9 changed files with 17 additions and 20 deletions

View File

@ -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 {

View File

@ -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()
}
@ -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)
}

View File

@ -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
}

View File

@ -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
}

View File

@ -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

View File

@ -176,6 +176,10 @@ func (e *Event) stop() {
e.spinner.Stop()
}
func (e *Event) hasMore() {
e.spinner.Restart()
}
var (
spinnerDone = "✔"
spinnerWarning = "!"
@ -191,6 +195,6 @@ func (e *Event) Spinner() any {
case Error:
return ErrorColor(spinnerError)
default:
return e.spinner.String()
return CountColor(e.spinner.String())
}
}

View File

@ -64,3 +64,7 @@ func (s *spinner) String() string {
func (s *spinner) Stop() {
s.stop = true
}
func (s *spinner) Restart() {
s.stop = false
}

View File

@ -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

View File

@ -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)