-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparser.go
77 lines (64 loc) · 1.48 KB
/
parser.go
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
// Package parser provides a parser for conventional commits
package parser
import (
"strings"
)
// Parser represent a conventional commits parser
type Parser struct{}
// New returns a new Parser instance
func New() *Parser {
return &Parser{}
}
// Parse parses the conventional commit. If it fails, an error is returned.
func (p *Parser) Parse(input string) (*Commit, error) {
input = strings.TrimSpace(input)
return p.parse(input)
}
func (p *Parser) parse(input string) (*Commit, error) {
lex := newLexer(input, typeState, func(error) {})
lex.Start()
c := &Commit{
message: input,
}
footerCount := 0
footerStartPos := 0
footerEndPos := 0
for {
t, done := lex.NextToken()
if done {
break
}
switch t.Type {
case breakingChangeToken:
c.isBreakingChange = true
case headerTypeToken:
c.commitType = t.Value
case headerScopeToken:
c.scope = t.Value
case descriptionToken:
c.description = t.Value
c.header = strings.TrimSpace(lex.Get(0, t.End))
case bodyToken:
c.body = strings.TrimSpace(t.Value)
case footerKeyToken:
if footerStartPos == 0 {
footerStartPos = t.Start
}
n := Note{
token: t.Value,
}
c.notes = append(c.notes, n)
case footerValueToken:
c.notes[footerCount].value = strings.TrimSpace(t.Value)
footerCount++
footerEndPos = t.End
}
}
if lex.Err() != nil {
return nil, lex.Err()
}
if footerStartPos != 0 {
c.footer = strings.TrimSpace(lex.Get(footerStartPos, footerEndPos))
}
return c, nil
}