-
Notifications
You must be signed in to change notification settings - Fork 26
/
acmelsp.go
274 lines (255 loc) · 7.03 KB
/
acmelsp.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
// Package acmelsp implements the core of acme-lsp commands.
package acmelsp
import (
"bufio"
"context"
"fmt"
"io"
"io/ioutil"
"os"
"sort"
"strconv"
"strings"
"9fans.net/acme-lsp/internal/acme"
"9fans.net/acme-lsp/internal/acmeutil"
"9fans.net/acme-lsp/internal/lsp"
"9fans.net/acme-lsp/internal/lsp/proxy"
"9fans.net/acme-lsp/internal/lsp/text"
"9fans.net/internal/go-lsp/lsp/protocol"
"github.com/fhs/9fans-go/plan9"
"github.com/fhs/9fans-go/plumb"
)
func CurrentWindowRemoteCmd(ss *ServerSet, fm *FileManager) (*RemoteCmd, error) {
id, err := strconv.Atoi(os.Getenv("winid"))
if err != nil {
return nil, fmt.Errorf("failed to parse $winid: %v", err)
}
return WindowRemoteCmd(ss, fm, id)
}
func WindowRemoteCmd(ss *ServerSet, fm *FileManager, winid int) (*RemoteCmd, error) {
w, err := acmeutil.OpenWin(winid)
if err != nil {
return nil, fmt.Errorf("failed to to open window %v: %v", winid, err)
}
defer w.CloseFiles()
_, fname, err := text.DocumentURI(w)
if err != nil {
return nil, fmt.Errorf("failed to get text position: %v", err)
}
srv, found, err := ss.StartForFile(fname)
if err != nil {
return nil, fmt.Errorf("cound not start language server: %v", err)
}
if !found {
return nil, fmt.Errorf("no language server for filename %q", fname)
}
// In case the window has unsaved changes (it's dirty),
// send changes to LSP server.
if err = fm.didChange(winid, fname); err != nil {
return nil, fmt.Errorf("DidChange failed: %v", err)
}
return NewRemoteCmd(srv.Client, winid), nil
}
func getLine(p string, l int) string {
file, err := os.Open(p)
if err != nil {
fmt.Println(err)
return ""
}
defer file.Close()
scanner := bufio.NewScanner(file)
currentLine := 0
for scanner.Scan() {
currentLine++
if currentLine == l {
return scanner.Text()
}
}
return ""
}
func PrintLocations(w io.Writer, loc []protocol.Location) error {
wd, err := os.Getwd()
if err != nil {
wd = ""
}
sort.Slice(loc, func(i, j int) bool {
a := loc[i]
b := loc[j]
n := strings.Compare(string(a.URI), string(b.URI))
if n == 0 {
m := a.Range.Start.Line - b.Range.Start.Line
if m == 0 {
return a.Range.Start.Character < b.Range.Start.Character
}
return m < 0
}
return n < 0
})
for _, l := range loc {
fmt.Fprintf(w, "%v:%s\n", lsp.LocationLink(&l, wd), getLine(text.ToPath(l.URI), int(l.Range.Start.Line+1)))
}
return nil
}
// PlumbLocations sends the locations to the plumber.
func PlumbLocations(locations []protocol.Location) error {
p, err := plumb.Open("send", plan9.OWRITE)
if err != nil {
return fmt.Errorf("failed to open plumber: %v", err)
}
defer p.Close()
for _, loc := range locations {
err := plumbLocation(&loc).Send(p)
if err != nil {
return fmt.Errorf("failed to plumb location: %v", err)
}
}
return nil
}
func plumbLocation(loc *protocol.Location) *plumb.Message {
// LSP uses zero-based offsets.
// Place the cursor *before* the location range.
pos := loc.Range.Start
attr := &plumb.Attribute{
Name: "addr",
Value: fmt.Sprintf("%v-#0+#%v", pos.Line+1, pos.Character),
}
return &plumb.Message{
Src: "acme-lsp",
Dst: "edit",
Dir: "/",
Type: "text",
Attr: attr,
Data: []byte(text.ToPath(loc.URI)),
}
}
type FormatServer interface {
InitializeResult(context.Context, *protocol.TextDocumentIdentifier) (*protocol.InitializeResult, error)
DidChange(context.Context, *protocol.DidChangeTextDocumentParams) error
Formatting(context.Context, *protocol.DocumentFormattingParams) ([]protocol.TextEdit, error)
CodeAction(context.Context, *protocol.CodeActionParams) ([]protocol.CodeAction, error)
ExecuteCommandOnDocument(context.Context, *proxy.ExecuteCommandOnDocumentParams) (interface{}, error)
}
// CodeActionAndFormat runs the given code actions and then formats the file f.
func CodeActionAndFormat(ctx context.Context, server FormatServer, doc *protocol.TextDocumentIdentifier, f text.File, actions []protocol.CodeActionKind) error {
initres, err := server.InitializeResult(ctx, doc)
if err != nil {
return err
}
actions = lsp.CompatibleCodeActions(&initres.Capabilities, actions)
if len(actions) > 0 {
actions, err := server.CodeAction(ctx, &protocol.CodeActionParams{
TextDocument: *doc,
Range: protocol.Range{},
Context: protocol.CodeActionContext{
Diagnostics: nil,
Only: actions,
},
})
if err != nil {
return err
}
for _, a := range actions {
if a.Edit != nil {
err := editWorkspace(a.Edit)
if err != nil {
return err
}
}
if a.Command != nil {
_, err := server.ExecuteCommandOnDocument(ctx, &proxy.ExecuteCommandOnDocumentParams{
TextDocument: *doc,
ExecuteCommandParams: protocol.ExecuteCommandParams{
Command: a.Command.Command,
Arguments: a.Command.Arguments,
},
})
if err != nil {
return err
}
}
}
if len(actions) > 0 {
// Our file may or may not be among the workspace edits for import fixes.
// We assume it is among the edits.
// TODO(fhs): Skip if our file didn't have import changes.
rd, err := f.Reader()
if err != nil {
return err
}
b, err := ioutil.ReadAll(rd)
if err != nil {
return err
}
server.DidChange(ctx, &protocol.DidChangeTextDocumentParams{
TextDocument: protocol.VersionedTextDocumentIdentifier{
TextDocumentIdentifier: *doc,
},
ContentChanges: []protocol.TextDocumentContentChangeEvent{
{
Text: string(b),
},
},
})
if err != nil {
return err
}
}
}
edits, err := server.Formatting(ctx, &protocol.DocumentFormattingParams{
TextDocument: *doc,
})
if err != nil {
return err
}
if err := text.Edit(f, edits); err != nil {
return fmt.Errorf("failed to apply edits: %v", err)
}
return nil
}
func editWorkspace(we *protocol.WorkspaceEdit) error {
if we == nil {
return nil // no changes to apply
}
if we.Changes == nil && we.DocumentChanges != nil {
// gopls version >= 0.3.1 sends versioned document edits
// for organizeImports code action even when we don't
// support it. Convert versioned edits to non-versioned.
changes := make(map[protocol.DocumentURI][]protocol.TextEdit)
for _, dc := range we.DocumentChanges {
if tde := dc.TextDocumentEdit; tde != nil {
changes[tde.TextDocument.TextDocumentIdentifier.URI] = tde.Edits
}
}
we.Changes = changes
}
if we.Changes == nil {
return nil // no changes to apply
}
wins, err := acme.Windows()
if err != nil {
return fmt.Errorf("failed to read list of acme index: %v", err)
}
winid := make(map[string]int, len(wins))
for _, info := range wins {
winid[info.Name] = info.ID
}
for uri := range we.Changes {
fname := text.ToPath(uri)
if _, ok := winid[fname]; !ok {
return fmt.Errorf("%v: not open in acme", fname)
}
}
for uri, edits := range we.Changes {
fname := text.ToPath(uri)
id := winid[fname]
w, err := acmeutil.OpenWin(id)
if err != nil {
return fmt.Errorf("failed to open window %v: %v", id, err)
}
if err := text.Edit(w, edits); err != nil {
return fmt.Errorf("failed to apply edits to window %v: %v", id, err)
}
w.CloseFiles()
}
return nil
}