forked from OhYee/goldmark-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuml.go
84 lines (73 loc) · 2.19 KB
/
uml.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
78
79
80
81
82
83
84
// Package uml is a extension for the goldmark(http://github.com/yuin/goldmark).
//
// This extension adds svg picture output from uml language using
// go-plantuml(OhYee/go-plantuml).
package uml
import (
"bytes"
"crypto/sha1"
ext "github.com/OhYee/goldmark-fenced_codeblock_extension"
fp "github.com/OhYee/goutils/functional"
gouml "github.com/iessa-pragg-ctct/go-plantuml"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/ast"
"github.com/yuin/goldmark/util"
)
// Default uml extension when there is no other fencedCodeBlock goldmark render extensions
var Default = NewUMLExtension(50, "plantuml")
// RenderMap return the goldmark-fenced_codeblock_extension.RenderMap
func RenderMap(length int, languages ...string) ext.RenderMap {
return ext.RenderMap{
Languages: languages,
RenderFunction: NewUML(length, languages...).Renderer,
}
}
// NewUMLExtension return the goldmark.Extender
func NewUMLExtension(length int, languages ...string) goldmark.Extender {
return ext.NewExt(RenderMap(length, languages...))
}
// UML render struct
type UML struct {
Languages []string
buf map[string][]byte
MaxLength int
}
// NewUML initial a UML struct
func NewUML(length int, languages ...string) *UML {
return &UML{Languages: languages, buf: make(map[string][]byte), MaxLength: length}
}
// Renderer render function
func (u *UML) Renderer(w util.BufWriter, source []byte, node ast.Node, entering bool) (ast.WalkStatus, error) {
n := node.(*ast.FencedCodeBlock)
language := string(n.Language(source))
if fp.AnyString(func(l string, idx int) bool {
return l == language
}, u.Languages) {
if !entering {
raw := u.getLines(source, node)
h := sha1.New()
h.Write(raw)
hash := string(h.Sum([]byte{}))
if result, exist := u.buf[hash]; exist {
w.Write(result)
} else {
svg, _ := gouml.UML(raw)
if len(u.buf) >= u.MaxLength {
u.buf = make(map[string][]byte)
}
u.buf[hash] = svg
w.Write(svg)
}
}
}
return ast.WalkContinue, nil
}
func (u *UML) getLines(source []byte, n ast.Node) []byte {
buf := bytes.NewBuffer([]byte{})
l := n.Lines().Len()
for i := 0; i < l; i++ {
line := n.Lines().At(i)
buf.Write(line.Value(source))
}
return buf.Bytes()
}