forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
stdin.go
221 lines (184 loc) · 5.56 KB
/
stdin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
Copyright (c) 2014 Ashley Jeffs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package input
import (
"bufio"
"io"
"os"
"sync/atomic"
"time"
"github.com/jeffail/benthos/lib/types"
"github.com/jeffail/util/log"
"github.com/jeffail/util/metrics"
)
//--------------------------------------------------------------------------------------------------
func init() {
constructors["stdin"] = typeSpec{
constructor: NewSTDIN,
description: `
The stdin input simply reads any data piped to stdin as messages. By default the
messages are assumed single part and are line delimited. If the multipart option
is set to true then lines are interpretted as message parts, and an empty line
indicates the end of the message.`,
}
}
//--------------------------------------------------------------------------------------------------
// STDINConfig - contains config fields for the STDIN input type.
type STDINConfig struct {
Multipart bool `json:"multipart" yaml:"multipart"`
}
// NewSTDINConfig - creates a STDINConfig populated with default values.
func NewSTDINConfig() STDINConfig {
return STDINConfig{
Multipart: false,
}
}
//--------------------------------------------------------------------------------------------------
// STDIN - An input type that reads lines from STDIN.
type STDIN struct {
running int32
handle io.Reader
conf Config
log log.Modular
internalMessages chan [][]byte
messages chan types.Message
responses <-chan types.Response
closeChan chan struct{}
closedChan chan struct{}
}
// NewSTDIN - Create a new STDIN input type.
func NewSTDIN(conf Config, log log.Modular, stats metrics.Type) (Type, error) {
s := STDIN{
running: 1,
handle: os.Stdin,
conf: conf,
log: log.NewModule(".input.stdin"),
internalMessages: make(chan [][]byte),
messages: make(chan types.Message),
responses: nil,
closeChan: make(chan struct{}),
closedChan: make(chan struct{}),
}
go s.readLoop()
return &s, nil
}
//--------------------------------------------------------------------------------------------------
// readLoop - Reads from stdin pipe and sends to internal messages chan.
func (s *STDIN) readLoop() {
defer func() {
close(s.internalMessages)
}()
stdin := bufio.NewScanner(s.handle)
var partsToSend, parts [][]byte
for atomic.LoadInt32(&s.running) == 1 {
// If no bytes then read a line
if len(partsToSend) == 0 {
if stdin.Scan() {
if len(stdin.Bytes()) > 0 {
if s.conf.STDIN.Multipart {
parts = append(parts, stdin.Bytes())
} else {
partsToSend = append(partsToSend, stdin.Bytes())
}
} else if s.conf.STDIN.Multipart {
// Empty line means we're finished reading parts for this message.
partsToSend = parts
parts = nil
}
} else {
return
}
}
// If we have a line to push out
if len(partsToSend) != 0 {
select {
case s.internalMessages <- partsToSend:
partsToSend = nil
case <-time.After(time.Second):
}
}
}
}
// loop - Internal loop brokers incoming messages to output pipe.
func (s *STDIN) loop() {
defer func() {
atomic.StoreInt32(&s.running, 0)
close(s.messages)
close(s.closedChan)
}()
var data [][]byte
var open bool
readChan := s.internalMessages
s.log.Infoln("Receiving messages through STDIN")
for atomic.LoadInt32(&s.running) == 1 {
if data == nil {
select {
case data, open = <-readChan:
if !open {
return
}
case <-s.closeChan:
return
}
}
if data != nil {
select {
case s.messages <- types.Message{Parts: data}:
case <-s.closeChan:
return
}
var res types.Response
if res, open = <-s.responses; !open {
return
}
if res.Error() == nil {
data = nil
}
}
}
}
// StartListening - Sets the channel used by the input to validate message receipt.
func (s *STDIN) StartListening(responses <-chan types.Response) error {
if s.responses != nil {
return types.ErrAlreadyStarted
}
s.responses = responses
go s.loop()
return nil
}
// MessageChan - Returns the messages channel.
func (s *STDIN) MessageChan() <-chan types.Message {
return s.messages
}
// CloseAsync - Shuts down the STDIN input and stops processing requests.
func (s *STDIN) CloseAsync() {
if atomic.CompareAndSwapInt32(&s.running, 1, 0) {
close(s.closeChan)
}
}
// WaitForClose - Blocks until the STDIN input has closed down.
func (s *STDIN) WaitForClose(timeout time.Duration) error {
select {
case <-s.closedChan:
case <-time.After(timeout):
return types.ErrTimeout
}
return nil
}
//--------------------------------------------------------------------------------------------------