1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-11-29 22:47:29 +02:00

Switch to an Iterator interface.

This is to solve an issue where writers returned by the Formatter
were often stateful, but this fact was not obvious to the API consumer,
and failed in interesting ways.
This commit is contained in:
Alec Thomas
2017-09-20 22:19:36 +10:00
parent 36ead7258a
commit cc0e4a59ab
20 changed files with 215 additions and 129 deletions

41
iterator.go Normal file
View File

@@ -0,0 +1,41 @@
package chroma
// An Iterator across tokens.
//
// nil will be returned at the end of the Token stream.
type Iterator func() *Token
// Concaterator concatenates tokens from a series of iterators.
func Concaterator(iterators ...Iterator) Iterator {
return func() *Token {
for len(iterators) > 0 {
t := iterators[0]()
if t != nil {
return t
}
iterators = iterators[1:]
}
return nil
}
}
// Literator converts a sequence of literal Tokens into an Iterator.
func Literator(tokens ...*Token) Iterator {
return func() (out *Token) {
if len(tokens) == 0 {
return nil
}
token := tokens[0]
tokens = tokens[1:]
return token
}
}
// Flatten an Iterator into its tokens.
func Flatten(iterator Iterator) []*Token {
out := []*Token{}
for t := iterator(); t != nil; t = iterator() {
out = append(out, t)
}
return out
}