go-raft/writestring.go

22 lines
573 B
Go
Raw Normal View History

2024-01-23 14:08:11 +00:00
package raft
import (
"io"
"sourcecode.social/reiver/go-erorr"
)
// writeString is similar to io.WriteString(), except that if the number of bytes written (by io.WriteString()) is not 'len(str)' then it returns an error.
func writeString(writer io.Writer, str string) error {
n, err := io.WriteString(writer, str)
if nil != err {
return erorr.Errorf("problem writing string: %w", err)
}
if expected, actual := len(str), n ; expected != actual {
return erorr.Errorf("expected to write %d bytes but actually wrote %d bytes", expected, actual)
}
return nil
}