Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/srndv2/src/srnd/line.go

30 lines
456 B
Go
Raw Normal View History

package srnd
import (
"bytes"
"io"
)
type LineWriter struct {
2017-11-07 05:09:45 +05:00
w io.Writer
2017-11-07 23:37:22 +05:00
limit int64
}
2017-11-07 23:37:22 +05:00
func NewLineWriter(w io.Writer, limit int64) *LineWriter {
return &LineWriter{
2017-11-07 05:09:45 +05:00
w: w,
limit: limit,
}
}
func (l *LineWriter) Write(data []byte) (n int, err error) {
2017-11-07 23:37:22 +05:00
n = len(data)
data = bytes.Replace(data, []byte{13, 10}, []byte{10}, -1)
2017-11-07 23:37:22 +05:00
_, err = l.w.Write(data)
l.limit -= int64(n)
if l.limit <= 0 {
err = ErrOversizedMessage
2017-04-04 20:04:14 +05:00
}
return
}