forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decode.go
174 lines (144 loc) · 4.33 KB
/
decode.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
package processor
import (
"bytes"
"encoding/ascii85"
"encoding/base64"
"encoding/hex"
"fmt"
"io"
"time"
"github.com/dafanshu/benthos/v3/internal/docs"
"github.com/dafanshu/benthos/v3/internal/tracing"
"github.com/dafanshu/benthos/v3/lib/log"
"github.com/dafanshu/benthos/v3/lib/metrics"
"github.com/dafanshu/benthos/v3/lib/response"
"github.com/dafanshu/benthos/v3/lib/types"
"github.com/tilinna/z85"
)
//------------------------------------------------------------------------------
func init() {
Constructors[TypeDecode] = TypeSpec{
constructor: NewDecode,
Status: docs.StatusDeprecated,
Footnotes: `
## Alternatives
All functionality of this processor has been superseded by the
[bloblang](/docs/components/processors/bloblang) processor.`,
FieldSpecs: docs.FieldSpecs{
docs.FieldCommon("scheme", "The decoding scheme to use.").HasOptions("hex", "base64", "ascii85", "z85"),
PartsFieldSpec,
},
}
}
//------------------------------------------------------------------------------
// DecodeConfig contains configuration fields for the Decode processor.
type DecodeConfig struct {
Scheme string `json:"scheme" yaml:"scheme"`
Parts []int `json:"parts" yaml:"parts"`
}
// NewDecodeConfig returns a DecodeConfig with default values.
func NewDecodeConfig() DecodeConfig {
return DecodeConfig{
Scheme: "base64",
Parts: []int{},
}
}
//------------------------------------------------------------------------------
type decodeFunc func(bytes []byte) ([]byte, error)
func base64Decode(b []byte) ([]byte, error) {
e := base64.NewDecoder(base64.StdEncoding, bytes.NewReader(b))
return io.ReadAll(e)
}
func hexDecode(b []byte) ([]byte, error) {
e := hex.NewDecoder(bytes.NewReader(b))
return io.ReadAll(e)
}
func ascii85Decode(b []byte) ([]byte, error) {
e := ascii85.NewDecoder(bytes.NewReader(b))
return io.ReadAll(e)
}
func z85Decode(b []byte) ([]byte, error) {
dec := make([]byte, z85.DecodedLen(len(b)))
if _, err := z85.Decode(dec, b); err != nil {
return nil, err
}
return dec, nil
}
func strToDecoder(str string) (decodeFunc, error) {
switch str {
case "base64":
return base64Decode, nil
case "hex":
return hexDecode, nil
case "ascii85":
return ascii85Decode, nil
case "z85":
return z85Decode, nil
}
return nil, fmt.Errorf("decode scheme not recognised: %v", str)
}
//------------------------------------------------------------------------------
// Decode is a processor that can selectively decode parts of a message
// following a chosen scheme.
type Decode struct {
conf DecodeConfig
fn decodeFunc
log log.Modular
stats metrics.Type
mCount metrics.StatCounter
mErr metrics.StatCounter
mSent metrics.StatCounter
mBatchSent metrics.StatCounter
}
// NewDecode returns a Decode processor.
func NewDecode(
conf Config, mgr types.Manager, log log.Modular, stats metrics.Type,
) (Type, error) {
cor, err := strToDecoder(conf.Decode.Scheme)
if err != nil {
return nil, err
}
return &Decode{
conf: conf.Decode,
fn: cor,
log: log,
stats: stats,
mCount: stats.GetCounter("count"),
mErr: stats.GetCounter("error"),
mSent: stats.GetCounter("sent"),
mBatchSent: stats.GetCounter("batch.sent"),
}, nil
}
//------------------------------------------------------------------------------
// ProcessMessage applies the processor to a message, either creating >0
// resulting messages or a response to be sent back to the message source.
func (c *Decode) ProcessMessage(msg types.Message) ([]types.Message, types.Response) {
c.mCount.Incr(1)
newMsg := msg.Copy()
proc := func(i int, span *tracing.Span, part types.Part) error {
newBytes, err := c.fn(part.Get())
if err != nil {
c.log.Errorf("Failed to decode message part: %v\n", err)
c.mErr.Incr(1)
return err
}
part.Set(newBytes)
return nil
}
if newMsg.Len() == 0 {
return nil, response.NewAck()
}
IteratePartsWithSpanV2(TypeDecode, c.conf.Parts, newMsg, proc)
c.mBatchSent.Incr(1)
c.mSent.Incr(int64(newMsg.Len()))
msgs := [1]types.Message{newMsg}
return msgs[:], nil
}
// CloseAsync shuts down the processor and stops processing requests.
func (c *Decode) CloseAsync() {
}
// WaitForClose blocks until the processor has closed down.
func (c *Decode) WaitForClose(timeout time.Duration) error {
return nil
}
//------------------------------------------------------------------------------