@@ -23,11 +23,13 @@ import (
23
23
"io"
24
24
"strconv"
25
25
"strings"
26
+
27
+ "github.com/docker/compose-cli/api/compose"
26
28
)
27
29
28
30
// NewLogConsumer creates a new LogConsumer
29
- func NewLogConsumer (ctx context.Context , w io.Writer ) LogConsumer {
30
- return LogConsumer {
31
+ func NewLogConsumer (ctx context.Context , w io.Writer ) compose. LogConsumer {
32
+ return & logConsumer {
31
33
ctx : ctx ,
32
34
colors : map [string ]colorFunc {},
33
35
width : 0 ,
@@ -36,7 +38,7 @@ func NewLogConsumer(ctx context.Context, w io.Writer) LogConsumer {
36
38
}
37
39
38
40
// Log formats a log message as received from service/container
39
- func (l * LogConsumer ) Log (service , container , message string ) {
41
+ func (l * logConsumer ) Log (service , container , message string ) {
40
42
if l .ctx .Err () != nil {
41
43
return
42
44
}
@@ -54,16 +56,7 @@ func (l *LogConsumer) Log(service, container, message string) {
54
56
}
55
57
}
56
58
57
- // GetWriter creates a io.Writer that will actually split by line and format by LogConsumer
58
- func (l * LogConsumer ) GetWriter (service , container string ) io.Writer {
59
- return splitBuffer {
60
- service : service ,
61
- container : container ,
62
- consumer : l ,
63
- }
64
- }
65
-
66
- func (l * LogConsumer ) computeWidth () {
59
+ func (l * logConsumer ) computeWidth () {
67
60
width := 0
68
61
for n := range l .colors {
69
62
if len (n ) > width {
@@ -74,25 +67,9 @@ func (l *LogConsumer) computeWidth() {
74
67
}
75
68
76
69
// LogConsumer consume logs from services and format them
77
- type LogConsumer struct {
70
+ type logConsumer struct {
78
71
ctx context.Context
79
72
colors map [string ]colorFunc
80
73
width int
81
74
writer io.Writer
82
75
}
83
-
84
- type splitBuffer struct {
85
- service string
86
- container string
87
- consumer * LogConsumer
88
- }
89
-
90
- func (s splitBuffer ) Write (b []byte ) (n int , err error ) {
91
- split := bytes .Split (b , []byte {'\n' })
92
- for _ , line := range split {
93
- if len (line ) != 0 {
94
- s .consumer .Log (s .service , s .container , string (line ))
95
- }
96
- }
97
- return len (b ), nil
98
- }
0 commit comments