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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
|
package gopls
import (
"sort"
"sync"
"github.com/grindlemire/go-tui/internal/lsp/log"
)
type SourceMap struct {
mu sync.RWMutex
mappings []Mapping
}
type Mapping struct {
TuiLine int
TuiCol int
GoLine int
GoCol int
Length int
}
func NewSourceMap() *SourceMap {
return &SourceMap{
mappings: make([]Mapping, 0),
}
}
func (sm *SourceMap) AddMapping(m Mapping) {
sm.mu.Lock()
defer sm.mu.Unlock()
sm.mappings = append(sm.mappings, m)
}
func (sm *SourceMap) TuiToGo(tuiLine, tuiCol int) (goLine, goCol int, found bool) {
sm.mu.RLock()
defer sm.mu.RUnlock()
log.Mapping("TuiToGo: looking for TuiLine=%d TuiCol=%d", tuiLine, tuiCol)
for _, m := range sm.mappings {
if m.TuiLine == tuiLine && tuiCol >= m.TuiCol && tuiCol <= m.TuiCol+m.Length {
offset := tuiCol - m.TuiCol
log.Mapping("TuiToGo: MATCH found! mapping TuiLine=%d TuiCol=%d GoLine=%d GoCol=%d Len=%d -> result GoLine=%d GoCol=%d (offset=%d)",
m.TuiLine, m.TuiCol, m.GoLine, m.GoCol, m.Length, m.GoLine, m.GoCol+offset, offset)
return m.GoLine, m.GoCol + offset, true
}
}
log.Mapping("TuiToGo: NO MATCH found, returning original %d:%d", tuiLine, tuiCol)
return tuiLine, tuiCol, false
}
func (sm *SourceMap) GoToTui(goLine, goCol int) (tuiLine, tuiCol int, found bool) {
sm.mu.RLock()
defer sm.mu.RUnlock()
log.Mapping("GoToTui: looking for GoLine=%d GoCol=%d", goLine, goCol)
for _, m := range sm.mappings {
if m.GoLine == goLine && goCol >= m.GoCol && goCol <= m.GoCol+m.Length {
offset := goCol - m.GoCol
log.Mapping("GoToTui: MATCH found! mapping GoLine=%d GoCol=%d TuiLine=%d TuiCol=%d Len=%d -> result TuiLine=%d TuiCol=%d (offset=%d)",
m.GoLine, m.GoCol, m.TuiLine, m.TuiCol, m.Length, m.TuiLine, m.TuiCol+offset, offset)
return m.TuiLine, m.TuiCol + offset, true
}
}
log.Mapping("GoToTui: NO MATCH found, returning original %d:%d", goLine, goCol)
return goLine, goCol, false
}
func (sm *SourceMap) FindMappingForTuiPosition(tuiLine, tuiCol int) *Mapping {
sm.mu.RLock()
defer sm.mu.RUnlock()
for i := range sm.mappings {
m := &sm.mappings[i]
if m.TuiLine == tuiLine && tuiCol >= m.TuiCol && tuiCol <= m.TuiCol+m.Length {
return m
}
}
return nil
}
func (sm *SourceMap) FindMappingForGoPosition(goLine, goCol int) *Mapping {
sm.mu.RLock()
defer sm.mu.RUnlock()
for i := range sm.mappings {
m := &sm.mappings[i]
if m.GoLine == goLine && goCol >= m.GoCol && goCol <= m.GoCol+m.Length {
return m
}
}
return nil
}
func (sm *SourceMap) IsInGoExpression(tuiLine, tuiCol int) bool {
return sm.FindMappingForTuiPosition(tuiLine, tuiCol) != nil
}
func (sm *SourceMap) AllMappings() []Mapping {
sm.mu.RLock()
defer sm.mu.RUnlock()
result := make([]Mapping, len(sm.mappings))
copy(result, sm.mappings)
sort.Slice(result, func(i, j int) bool {
if result[i].TuiLine != result[j].TuiLine {
return result[i].TuiLine < result[j].TuiLine
}
return result[i].TuiCol < result[j].TuiCol
})
return result
}
func (sm *SourceMap) Clear() {
sm.mu.Lock()
defer sm.mu.Unlock()
sm.mappings = sm.mappings[:0]
}
func (sm *SourceMap) Len() int {
sm.mu.RLock()
defer sm.mu.RUnlock()
return len(sm.mappings)
}
type VirtualFileCache struct {
mu sync.RWMutex
files map[string]*CachedVirtualFile
}
type CachedVirtualFile struct {
TuiURI string
GoURI string
Content string
SourceMap *SourceMap
Version int
}
func NewVirtualFileCache() *VirtualFileCache {
return &VirtualFileCache{
files: make(map[string]*CachedVirtualFile),
}
}
func (c *VirtualFileCache) Get(tuiURI string) *CachedVirtualFile {
c.mu.RLock()
defer c.mu.RUnlock()
return c.files[tuiURI]
}
func (c *VirtualFileCache) Put(tuiURI, goURI, content string, sourceMap *SourceMap, version int) {
c.mu.Lock()
defer c.mu.Unlock()
c.files[tuiURI] = &CachedVirtualFile{
TuiURI: tuiURI,
GoURI: goURI,
Content: content,
SourceMap: sourceMap,
Version: version,
}
}
func (c *VirtualFileCache) Remove(tuiURI string) {
c.mu.Lock()
defer c.mu.Unlock()
delete(c.files, tuiURI)
}
func (c *VirtualFileCache) GetByGoURI(goURI string) *CachedVirtualFile {
c.mu.RLock()
defer c.mu.RUnlock()
for _, f := range c.files {
if f.GoURI == goURI {
return f
}
}
return nil
}
func (c *VirtualFileCache) All() []*CachedVirtualFile {
c.mu.RLock()
defer c.mu.RUnlock()
result := make([]*CachedVirtualFile, 0, len(c.files))
for _, f := range c.files {
result = append(result, f)
}
return result
}
|