-
-
Notifications
You must be signed in to change notification settings - Fork 273
/
sourcemap.go
78 lines (70 loc) · 2.33 KB
/
sourcemap.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
package parser
// SourceExpressionTo is a record of an expression, along with its start and end positions.
type SourceExpressionTo struct {
Source Expression
Target Range
}
// NewSourceMap creates a new lookup to map templ source code to items in the
// parsed template.
func NewSourceMap() *SourceMap {
return &SourceMap{
Items: make([]SourceExpressionTo, 0),
}
}
type SourceMap struct {
Items []SourceExpressionTo
}
// Add an item to the lookup.
func (sm *SourceMap) Add(src Expression, tgt Range) (updatedFrom Position) {
sm.Items = append(sm.Items, SourceExpressionTo{
Source: src,
Target: tgt,
})
return src.Range.From
}
// TargetPositionFromSource looks up the target position using the source position.
func (sm *SourceMap) TargetPositionFromSource(line, col int) (tgt Position, mapping SourceExpressionTo, ok bool) {
mapping, offset, ok := sm.lookupTargetBySourceLineCol(line, col)
if ok {
tgt = mapping.Target.From
tgt.Col += offset
}
return
}
func (sm *SourceMap) lookupTargetBySourceLineCol(line, col int) (ir SourceExpressionTo, offset int, ok bool) {
for _, cc := range sm.Items {
if cc.Source.Range.From.Line == cc.Source.Range.To.Line && cc.Source.Range.To.Line == line && ((col >= cc.Source.Range.From.Col && col <= cc.Source.Range.To.Col) ||
(col <= cc.Source.Range.From.Col && col >= cc.Source.Range.To.Col)) {
ccOffset := col - cc.Source.Range.From.Col
if isBestMatch := ccOffset < offset || !ok; isBestMatch {
ok = true
offset = ccOffset
ir = cc
}
}
}
return
}
// SourcePositionFromTarget looks the source position using the target position.
func (sm *SourceMap) SourcePositionFromTarget(line, col int) (src Position, mapping SourceExpressionTo, ok bool) {
mapping, offset, ok := sm.lookupSourceByTargetLineCol(line, col)
if ok {
src = mapping.Source.Range.From
src.Col += offset
}
return
}
func (sm *SourceMap) lookupSourceByTargetLineCol(line, col int) (ir SourceExpressionTo, offset int, ok bool) {
for _, cc := range sm.Items {
if cc.Target.From.Line == cc.Target.To.Line && cc.Target.To.Line == line && ((col >= cc.Target.From.Col && col <= cc.Target.To.Col) ||
(col <= cc.Target.From.Col && col >= cc.Target.To.Col)) {
ccOffset := col - cc.Target.From.Col
if isBestMatch := ccOffset < offset || !ok; isBestMatch {
ok = true
offset = ccOffset
ir = cc
}
}
}
return
}