jrouter/aurp/wtacc.go

53 lines
893 B
Go
Raw Normal View History

2024-03-15 15:17:21 +11:00
package aurp
import (
"io"
)
// wtacc is a helper for io.WriterTo implementations.
2024-03-15 16:38:02 +11:00
// It sacrifices early returns for a shorter syntax. However, it won't continue
// writing to the destination writer after detecting an error.
2024-03-15 15:17:21 +11:00
type wtacc struct {
w io.Writer
n int64
err error
}
func acc(w io.Writer) wtacc { return wtacc{w: w} }
func (a *wtacc) ret() (int64, error) {
return a.n, a.err
}
func (a *wtacc) write8(x uint8) {
2024-03-15 16:38:02 +11:00
a.write([]byte{x})
2024-03-15 15:17:21 +11:00
}
func (a *wtacc) write16(x uint16) {
2024-03-15 16:38:02 +11:00
// Could do this with:
// binary.Write(a.w, binary.BigEndian, x)
// - but don't wanna
a.write([]byte{
byte(x >> 8),
byte(x & 0xff),
})
2024-03-15 15:17:21 +11:00
}
func (a *wtacc) write(b []byte) {
if a.err != nil {
return
}
n, err := a.w.Write(b)
a.n += int64(n)
a.err = err
}
func (a *wtacc) writeTo(wt io.WriterTo) {
if a.err != nil {
return
}
n, err := wt.WriteTo(a.w)
a.n += n
a.err = err
}