plain.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package progress
  14. import (
  15. "context"
  16. "fmt"
  17. "io"
  18. "github.com/docker/compose/v2/pkg/api"
  19. )
  20. type plainWriter struct {
  21. out io.Writer
  22. done chan bool
  23. dryRun bool
  24. }
  25. func (p *plainWriter) Start(ctx context.Context) error {
  26. select {
  27. case <-ctx.Done():
  28. return ctx.Err()
  29. case <-p.done:
  30. return nil
  31. }
  32. }
  33. func (p *plainWriter) Event(e Event) {
  34. prefix := ""
  35. if p.dryRun {
  36. prefix = api.DRYRUN_PREFIX
  37. }
  38. fmt.Fprintln(p.out, prefix, e.ID, e.Text, e.StatusText)
  39. }
  40. func (p *plainWriter) Events(events []Event) {
  41. for _, e := range events {
  42. p.Event(e)
  43. }
  44. }
  45. func (p *plainWriter) TailMsgf(m string, args ...interface{}) {
  46. prefix := ""
  47. if p.dryRun {
  48. prefix = api.DRYRUN_PREFIX
  49. }
  50. fmt.Fprintln(p.out, append([]interface{}{prefix, m}, args...)...)
  51. }
  52. func (p *plainWriter) Stop() {
  53. p.done <- true
  54. }