go-bt/bencode/parse.go
Vincent Batts 0eb8ce1253 move bencode to subdirectory
making room for other packages
2014-08-14 14:27:17 -04:00

200 lines
3.9 KiB
Go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// bencode parser.
// See the bittorrent protocol
package bencode
import (
"bufio"
"errors"
"fmt"
"io"
"strconv"
)
// Parser
//
// Implements parsing but not the actions. Those are
// carried out by the implementation of the builder interface.
// A builder represents the object being created.
// Calling a method like Int64(i) sets that object to i.
// Calling a method like Elem(i) or Key(s) creates a
// new builder for a subpiece of the object (logically,
// a slice element or a map key).
//
// There are two Builders, in other files.
// The decoder builds a generic bencode structures
// in which maps are maps.
// The structBuilder copies data into a possibly
// nested data structure, using the "map keys"
// as struct field names.
// A builder is an interface implemented by clients and passed
// to the bencode parser. It gives clients full control over the
// eventual representation returned by the parser.
type builder interface {
// Set value
Int64(i int64)
Uint64(i uint64)
String(s string)
Array()
Map()
// Create sub-Builders
Elem(i int) builder
Key(s string) builder
// Flush changes to parent builder if necessary.
Flush()
}
func collectInt(r *bufio.Reader, delim byte) (buf []byte, err error) {
for {
var c byte
c, err = r.ReadByte()
if err != nil {
return
}
if c == delim {
return
}
if !(c == '-' || (c >= '0' && c <= '9')) {
err = errors.New("expected digit")
return
}
buf = append(buf, c)
}
return
}
func decodeInt64(r *bufio.Reader, delim byte) (data int64, err error) {
buf, err := collectInt(r, delim)
if err != nil {
return
}
data, err = strconv.ParseInt(string(buf), 10, 64)
return
}
func decodeString(r *bufio.Reader) (data string, err error) {
length, err := decodeInt64(r, ':')
if err != nil {
return
}
if length < 0 {
err = errors.New("Bad string length")
return
}
var buf = make([]byte, length)
_, err = io.ReadFull(r, buf)
if err != nil {
return
}
data = string(buf)
return
}
func parseFromReader(r *bufio.Reader, build builder) (err error) {
c, err := r.ReadByte()
if err != nil {
goto exit
}
switch {
case c >= '0' && c <= '9':
// String
err = r.UnreadByte()
if err != nil {
goto exit
}
var str string
str, err = decodeString(r)
if err != nil {
goto exit
}
build.String(str)
case c == 'd':
// dictionary
build.Map()
for {
c, err = r.ReadByte()
if err != nil {
goto exit
}
if c == 'e' {
break
}
err = r.UnreadByte()
if err != nil {
goto exit
}
var key string
key, err = decodeString(r)
if err != nil {
goto exit
}
// TODO: in pendantic mode, check for keys in ascending order.
err = parse(r, build.Key(key))
if err != nil {
goto exit
}
}
case c == 'i':
var buf []byte
buf, err = collectInt(r, 'e')
if err != nil {
goto exit
}
var str string
var i int64
var i2 uint64
str = string(buf)
// If the number is exactly an integer, use that.
if i, err = strconv.ParseInt(str, 10, 64); err == nil {
build.Int64(i)
} else if i2, err = strconv.ParseUint(str, 10, 64); err == nil {
build.Uint64(i2)
} else {
err = errors.New("Bad integer")
}
case c == 'l':
// array
build.Array()
n := 0
for {
c, err = r.ReadByte()
if err != nil {
goto exit
}
if c == 'e' {
break
}
err = r.UnreadByte()
if err != nil {
goto exit
}
err = parseFromReader(r, build.Elem(n))
if err != nil {
goto exit
}
n++
}
default:
err = errors.New(fmt.Sprintf("Unexpected character: '%v'", c))
}
exit:
build.Flush()
return
}
// Parse parses the bencode stream and makes calls to
// the builder to construct a parsed representation.
func parse(r io.Reader, builder builder) (err error) {
return parseFromReader(bufio.NewReader(r), builder)
}