Revert "I can parse again"

This reverts commit 0d08da5d84.
This commit is contained in:
Miek Gieben 2012-01-05 13:24:27 +01:00
parent 662ab3dac9
commit e2ecf8b80a
1 changed files with 16 additions and 21 deletions

View File

@ -8,7 +8,7 @@ import (
)
// Only used when debugging the parser itself.
var _DEBUG = false
var _DEBUG = true
// Tokinize a RFC 1035 zone file. The tokenizer will normalize it:
// * Add ownernames if they are left blank;
@ -315,6 +315,7 @@ func zlexer(r io.Reader, c chan lex) {
} else if owner {
// If we have a string and its the first, make it an owner
l.value = _OWNER
println(p, q)
l.token = string(buf[p:q])
// escape $... start with a \ not a $, so this will work
if l.token == "$TTL" {
@ -352,6 +353,7 @@ func zlexer(r io.Reader, c chan lex) {
}
owner = false
space = true
println("upping", p, q)
case ';':
if escape {
escape = false
@ -411,6 +413,7 @@ func zlexer(r io.Reader, c chan lex) {
}
p = q + 1
println("hallo")
commt = false
rrtype = false
owner = true
@ -443,7 +446,6 @@ func zlexer(r io.Reader, c chan lex) {
escape = false
break
}
p++
brace++
case ')':
if commt {
@ -461,7 +463,6 @@ func zlexer(r io.Reader, c chan lex) {
p = q + 1
return
}
p++
default:
if commt {
p++
@ -472,26 +473,20 @@ func zlexer(r io.Reader, c chan lex) {
}
// tok, err = r.ReadByte() read extra bytes
q++
if q > n-1 { // Funny, 'cause q starts at zero
// Read in a new chunk. Every thing before p
// can be discarded.
n1 := copy(buf, buf[p:])
// Reset the indices
q = q - p
p = 0
// Read a new chunk
n, err = r.Read(buf[n1:])
if q > n {
break
}
}
// It this need anymore???
/*
if p != q {
// Send remainder
l.token = string(buf[p:q])
l.value = _STRING
c <- l
}
*/
println("We crashen gewoon hier", p, q)
// It this need anymore???
/*
if p != q {
// Send remainder
l.token = string(buf[p:q])
l.value = _STRING
c <- l
}
*/
}
func stringToTtl(l lex, t chan Token) (uint32, bool) {