68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
/*
|
|
Copyright 2024 Josh Deprez
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package aurp
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// wtacc is a helper for io.WriterTo implementations.
|
|
// It sacrifices early returns for a shorter syntax. However, it won't continue
|
|
// writing to the destination writer after detecting an error.
|
|
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) {
|
|
a.write([]byte{x})
|
|
}
|
|
|
|
func (a *wtacc) write16(x uint16) {
|
|
// Could do this with:
|
|
// binary.Write(a.w, binary.BigEndian, x)
|
|
// - but don't wanna
|
|
a.write([]byte{
|
|
byte(x >> 8),
|
|
byte(x & 0xff),
|
|
})
|
|
}
|
|
|
|
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
|
|
}
|