aboutsummaryrefslogblamecommitdiffstats
path: root/formats/packfile/common.go
blob: 06c63d4398cda16cf4ee0774ae3a573dff69ecfc (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                            

                          

 





                                                            
                              













                                                                                 
                    

                        
package packfile

import (
	"fmt"
	"io"
)

type trackingReader struct {
	r        io.Reader
	position int64
}

func (t *trackingReader) Read(p []byte) (n int, err error) {
	n, err = t.r.Read(p)
	if err != nil {
		return 0, err
	}

	t.position += int64(n)
	return n, err
}

func (t *trackingReader) ReadByte() (c byte, err error) {
	var p [1]byte
	n, err := t.r.Read(p[:])
	if err != nil {
		return 0, err
	}

	if n > 1 {
		return 0, fmt.Errorf("read %d bytes, should have read just 1", n)
	}

	t.position++
	return p[0], nil
}