| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- // Copyright 2016 Google Inc. All rights reserved.
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to writing, software distributed
- // under the License is distributed on a "AS IS" BASIS, WITHOUT WARRANTIES OR
- // CONDITIONS OF ANY KIND, either express or implied.
- //
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package embedmd
- import (
- "bufio"
- "fmt"
- "io"
- "strings"
- )
- type commandRunner func(io.Writer, *command) error
- func process(out io.Writer, in io.Reader, run commandRunner) error {
- s := &countingScanner{bufio.NewScanner(in), 0}
- state := parsingText
- var err error
- for state != nil {
- state, err = state(out, s, run)
- if err != nil {
- return fmt.Errorf("%d: %v", s.line, err)
- }
- }
- if err := s.Err(); err != nil {
- return fmt.Errorf("%d: %v", s.line, err)
- }
- return nil
- }
- type countingScanner struct {
- *bufio.Scanner
- line int
- }
- func (c *countingScanner) Scan() bool {
- b := c.Scanner.Scan()
- if b {
- c.line++
- }
- return b
- }
- type textScanner interface {
- Text() string
- Scan() bool
- }
- type state func(io.Writer, textScanner, commandRunner) (state, error)
- func parsingText(out io.Writer, s textScanner, run commandRunner) (state, error) {
- if !s.Scan() {
- return nil, nil // end of file, which is fine.
- }
- switch line := s.Text(); {
- case strings.HasPrefix(line, "[embedmd]:#"):
- return parsingCmd, nil
- case strings.HasPrefix(line, "```"):
- return codeParser{print: true}.parse, nil
- default:
- fmt.Fprintln(out, s.Text())
- return parsingText, nil
- }
- }
- func parsingCmd(out io.Writer, s textScanner, run commandRunner) (state, error) {
- line := s.Text()
- fmt.Fprintln(out, line)
- args := line[strings.Index(line, "#")+1:]
- cmd, err := parseCommand(args)
- if err != nil {
- return nil, err
- }
- if err := run(out, cmd); err != nil {
- return nil, err
- }
- if !s.Scan() {
- return nil, nil // end of file, which is fine.
- }
- if strings.HasPrefix(s.Text(), "```") {
- return codeParser{print: false}.parse, nil
- }
- fmt.Fprintln(out, s.Text())
- return parsingText, nil
- }
- type codeParser struct{ print bool }
- func (c codeParser) parse(out io.Writer, s textScanner, run commandRunner) (state, error) {
- if c.print {
- fmt.Fprintln(out, s.Text())
- }
- if !s.Scan() {
- return nil, fmt.Errorf("unbalanced code section")
- }
- if !strings.HasPrefix(s.Text(), "```") {
- return c.parse, nil
- }
- // print the end of the code section if needed and go back to parsing text.
- if c.print {
- fmt.Fprintln(out, s.Text())
- }
- return parsingText, nil
- }
|