summaryrefslogtreecommitdiffstats
path: root/parse.go
blob: 02f7eb2dc4097838e232046bf5bd5b3117358612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package cnm

import (
	"bufio"
	"io"
)

// TopLevel represents the top-level block.
var TopLevel = &TokenBlock{
	TokenLine: TokenLine{
		Indentation: -1,
		RawLine:     "",
		LineNo:      0,
	},
	Parent: nil,
	Name:   "",
	Args:   nil,
}

// Parser parses a CNM document by lines.
type Parser struct {
	r       *bufio.Reader
	line    int
	block   *TokenBlock
	current *TokenLine
	end     bool
}

// NewParser creates a new Parser that reads from r.
func NewParser(r io.Reader) *Parser {
	return &Parser{
		r:       bufio.NewReader(r),
		line:    0,
		block:   TopLevel,
		current: nil,
		end:     false,
	}
}

// Line returns the number of the last parsed line in the document, starting
// with 1 after the first line.
func (p *Parser) Line() int {
	return p.line
}

// Next retrieves the next line.
func (p *Parser) Next() error {
	line, err := p.nextLine()
	if err != nil {
		return err
	}
	indent := 0
	for _, c := range line {
		if c != '\t' {
			break
		}
		indent++
	}
	if indent > p.block.Indent()+1 {
		indent = p.block.Indent() + 1
	}
	p.current = &TokenLine{
		Indentation: indent,
		RawLine:     line,
		LineNo:      p.line,
	}
	if p.current.Indent() <= p.block.Indent() && !p.Empty() {
		p.block = p.block.Parent
	}
	return nil
}

// Indent returns the indentation of the current line.
//
// Returns -1 if no line has been read yet.
func (p *Parser) Indent() int {
	if p.current == nil {
		return -1
	}
	return p.current.Indent()
}

// Empty returns true if the current line is empty.
func (p *Parser) Empty() bool {
	if p.current == nil {
		return true
	}
	if p.current.Indent() == len(p.current.Raw()) {
		return true
	}
	return false
}

// Block parses the current line in block mode.
//
// Returns a TokenBlock if the line was not empty, otherwise TokenEmptyLine. In
// block mode, a line is empty even if its indentation exceeds the block
// content indentation, as long as it only contains tab characters.
//
// Next() must have been called before calling Block().
func (p *Parser) Block() Token {
	line := p.current.Raw()[p.current.Indent():]

	/*indent := 0
	for _, c := range line {
		if c != '\t' {
			break
		}
		indent++
	}
	if len(line) == indent {
		return &TokenEmptyLine{*p.current}
	}*/

	ss := SplitUnescape(line)
	if len(ss) == 0 || len(ss) == 1 && ss[0] == "" {
		return &TokenEmptyLine{*p.current}
	}

	block := TokenBlock{
		TokenLine: *p.current,
		Parent:    p.block,
	}
	block.Name = ss[0]
	if len(ss) > 1 {
		block.Args = ss[1:]
	}

	p.block = &block

	return &block
}

// RawText parses the current line as raw text.
//
// Returns a TokenRawText if the line was not empty, otherwise
// TokenEmptyLine.
//
// Next() must have been called before calling RawText().
func (p *Parser) RawText() Token {
	if p.Empty() {
		return &TokenEmptyLine{*p.current}
	}
	return &TokenRawText{
		TokenLine: *p.current,
		Text:      p.current.Raw()[p.current.Indent():],
	}
}

// SimpleText parses the current line as simple text.
//
// Returns a TokenSimpleText if the line was not empty, otherwise
// TokenEmptyLine.
//
// Next() must have been called before calling SimpleText().
func (p *Parser) SimpleText() Token {
	if p.Empty() {
		return &TokenEmptyLine{*p.current}
	}
	return &TokenSimpleText{
		TokenLine: *p.current,
		Text:      ParseSimpleText(p.current.Raw()[p.current.Indent():]),
	}
}

func (p *Parser) nextLine() (string, error) {
	l, err := p.r.ReadString('\n')
	if err == io.EOF {
		if l != "" {
			err = nil
		} else if !p.end { // XXX
			l = "\n"
			p.end = true
			err = nil
		}
	}
	rs := make([]rune, len(l))
	ri := 0
	for _, r := range l {
		switch r {
		case '\n', '\r', '\x00':
			continue
		}
		rs[ri] = r
		ri++
	}
	p.line++
	return string(rs[:ri]), err
}