1 Star 0 Fork 0

sqos/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
strip_newline.go 1010 Bytes
一键复制 编辑 原始数据 按行查看 历史
package reader
// StripNewline reader removes the last trailing newline characters from
// read lines.
type StripNewline struct {
reader Reader
}
// NewStripNewline creates a new line reader stripping the last tailing newline.
func NewStripNewline(r Reader) *StripNewline {
return &StripNewline{r}
}
// Next returns the next line.
func (p *StripNewline) Next() (Message, error) {
message, err := p.reader.Next()
if err != nil {
return message, err
}
L := message.Content
message.Content = L[:len(L)-lineEndingChars(L)]
return message, 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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v5.4.3

搜索帮助