mirror of
https://github.com/golang/go
synced 2024-11-24 23:47:55 -07:00
encoding/varint: deleted WriteXvarint
Fixes #2748. R=rsc, r, r CC=golang-dev https://golang.org/cl/5557072
This commit is contained in:
parent
6923f6d12a
commit
0796c1c3ec
@ -98,14 +98,6 @@ func Varint(buf []byte) (int64, int) {
|
||||
return x, n
|
||||
}
|
||||
|
||||
// WriteUvarint encodes x and writes the result to w.
|
||||
func WriteUvarint(w io.Writer, x uint64) error {
|
||||
var buf [MaxVarintLen64]byte
|
||||
n := PutUvarint(buf[:], x)
|
||||
_, err := w.Write(buf[0:n])
|
||||
return err
|
||||
}
|
||||
|
||||
var overflow = errors.New("binary: varint overflows a 64-bit integer")
|
||||
|
||||
// ReadUvarint reads an encoded unsigned integer from r and returns it as a uint64.
|
||||
@ -129,15 +121,6 @@ func ReadUvarint(r io.ByteReader) (uint64, error) {
|
||||
panic("unreachable")
|
||||
}
|
||||
|
||||
// WriteVarint encodes x and writes the result to w.
|
||||
func WriteVarint(w io.Writer, x int64) error {
|
||||
ux := uint64(x) << 1
|
||||
if x < 0 {
|
||||
ux = ^ux
|
||||
}
|
||||
return WriteUvarint(w, ux)
|
||||
}
|
||||
|
||||
// ReadVarint reads an encoded unsigned integer from r and returns it as a uint64.
|
||||
func ReadVarint(r io.ByteReader) (int64, error) {
|
||||
ux, err := ReadUvarint(r) // ok to continue in presence of error
|
||||
|
@ -25,9 +25,9 @@ func TestConstants(t *testing.T) {
|
||||
}
|
||||
|
||||
func testVarint(t *testing.T, x int64) {
|
||||
buf1 := make([]byte, MaxVarintLen64)
|
||||
n := PutVarint(buf1[:], x)
|
||||
y, m := Varint(buf1[0:n])
|
||||
buf := make([]byte, MaxVarintLen64)
|
||||
n := PutVarint(buf, x)
|
||||
y, m := Varint(buf[0:n])
|
||||
if x != y {
|
||||
t.Errorf("Varint(%d): got %d", x, y)
|
||||
}
|
||||
@ -35,15 +35,7 @@ func testVarint(t *testing.T, x int64) {
|
||||
t.Errorf("Varint(%d): got n = %d; want %d", x, m, n)
|
||||
}
|
||||
|
||||
var buf2 bytes.Buffer
|
||||
err := WriteVarint(&buf2, x)
|
||||
if err != nil {
|
||||
t.Errorf("WriteVarint(%d): %s", x, err)
|
||||
}
|
||||
if n != buf2.Len() {
|
||||
t.Errorf("WriteVarint(%d): got n = %d; want %d", x, buf2.Len(), n)
|
||||
}
|
||||
y, err = ReadVarint(&buf2)
|
||||
y, err := ReadVarint(bytes.NewBuffer(buf))
|
||||
if err != nil {
|
||||
t.Errorf("ReadVarint(%d): %s", x, err)
|
||||
}
|
||||
@ -53,9 +45,9 @@ func testVarint(t *testing.T, x int64) {
|
||||
}
|
||||
|
||||
func testUvarint(t *testing.T, x uint64) {
|
||||
buf1 := make([]byte, MaxVarintLen64)
|
||||
n := PutUvarint(buf1[:], x)
|
||||
y, m := Uvarint(buf1[0:n])
|
||||
buf := make([]byte, MaxVarintLen64)
|
||||
n := PutUvarint(buf, x)
|
||||
y, m := Uvarint(buf[0:n])
|
||||
if x != y {
|
||||
t.Errorf("Uvarint(%d): got %d", x, y)
|
||||
}
|
||||
@ -63,15 +55,7 @@ func testUvarint(t *testing.T, x uint64) {
|
||||
t.Errorf("Uvarint(%d): got n = %d; want %d", x, m, n)
|
||||
}
|
||||
|
||||
var buf2 bytes.Buffer
|
||||
err := WriteUvarint(&buf2, x)
|
||||
if err != nil {
|
||||
t.Errorf("WriteUvarint(%d): %s", x, err)
|
||||
}
|
||||
if n != buf2.Len() {
|
||||
t.Errorf("WriteUvarint(%d): got n = %d; want %d", x, buf2.Len(), n)
|
||||
}
|
||||
y, err = ReadUvarint(&buf2)
|
||||
y, err := ReadUvarint(bytes.NewBuffer(buf))
|
||||
if err != nil {
|
||||
t.Errorf("ReadUvarint(%d): %s", x, err)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user