dns/scanner.go

39 lines
651 B
Go
Raw Normal View History

2012-02-22 08:36:27 +11:00
package dns
2012-02-22 08:43:24 +11:00
2012-02-22 08:36:27 +11:00
// Implement a simple scanner, return a byte stream from an io reader.
import (
"bufio"
"io"
"text/scanner"
)
type scan struct {
2012-02-22 08:43:24 +11:00
src *bufio.Reader
position scanner.Position
eof int // have we just seen an EOF (0 no, 1 yes)
2012-02-22 08:36:27 +11:00
}
func scanInit(r io.Reader) *scan {
s := new(scan)
s.src = bufio.NewReader(r)
2012-02-22 08:43:24 +11:00
s.position.Line = 1
2012-02-22 08:36:27 +11:00
return s
}
// tokenText returns the next byte from the input
func (s *scan) tokenText() (byte, error) {
2012-02-22 08:43:24 +11:00
c, err := s.src.ReadByte()
if err != nil {
return c, err
}
s.eof = 0
2012-02-22 08:43:24 +11:00
if c == '\n' {
s.position.Line++
s.position.Column = 0
s.eof = 1
2012-02-22 08:43:24 +11:00
}
s.position.Column++
return c, nil
2012-02-22 08:36:27 +11:00
}