forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
strip_newline.go
42 lines (35 loc) · 1011 Bytes
/
strip_newline.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
package processor
// StripNewline processor removes the last trailing newline characters from
// read lines.
type StripNewline struct {
reader LineProcessor
}
// NewStripNewline creates a new line reader stripping the last tailing newline.
func NewStripNewline(r LineProcessor) *StripNewline {
return &StripNewline{r}
}
// Next returns the next line.
func (p *StripNewline) Next() (Line, error) {
line, err := p.reader.Next()
if err != nil {
return line, err
}
L := line.Content
line.Content = L[:len(L)-lineEndingChars(L)]
return line, err
}
// isLine checks if the given byte array is a line, means has a line ending \n
func isLine(l []byte) bool {
return l != nil && len(l) > 0 && l[len(l)-1] == '\n'
}
// lineEndingChars returns the number of line ending chars the given by array has
// In case of Unix/Linux files, it is -1, in case of Windows mostly -2
func lineEndingChars(l []byte) int {
if !isLine(l) {
return 0
}
if len(l) > 1 && l[len(l)-2] == '\r' {
return 2
}
return 1
}