This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2017-04-03 10:00:38 -04:00
|
|
|
package srnd
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
"io"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type LineWriter struct {
|
2017-11-06 19:09:45 -05:00
|
|
|
w io.Writer
|
2017-11-07 13:37:22 -05:00
|
|
|
limit int64
|
2017-04-03 10:00:38 -04:00
|
|
|
}
|
|
|
|
|
|
2017-11-07 13:37:22 -05:00
|
|
|
func NewLineWriter(w io.Writer, limit int64) *LineWriter {
|
2017-04-03 10:00:38 -04:00
|
|
|
return &LineWriter{
|
2017-11-06 19:09:45 -05:00
|
|
|
w: w,
|
|
|
|
|
limit: limit,
|
2017-04-03 10:00:38 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (l *LineWriter) Write(data []byte) (n int, err error) {
|
2017-11-07 13:37:22 -05:00
|
|
|
n = len(data)
|
2017-04-03 10:00:38 -04:00
|
|
|
data = bytes.Replace(data, []byte{13, 10}, []byte{10}, -1)
|
2017-11-07 13:37:22 -05:00
|
|
|
_, err = l.w.Write(data)
|
|
|
|
|
l.limit -= int64(n)
|
|
|
|
|
if l.limit <= 0 {
|
|
|
|
|
err = ErrOversizedMessage
|
2017-04-04 11:04:14 -04:00
|
|
|
}
|
2017-04-03 10:00:38 -04:00
|
|
|
return
|
|
|
|
|
}
|