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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
package lsp
import (
"bufio"
"encoding/json"
"fmt"
"hexai/internal"
"io"
"log"
"net/textproto"
"os"
"strconv"
"strings"
"sync"
)
// JSON-RPC 2.0 structures (minimal)
type Request struct {
JSONRPC string `json:"jsonrpc"`
ID json.RawMessage `json:"id,omitempty"`
Method string `json:"method"`
Params json.RawMessage `json:"params,omitempty"`
}
type Response struct {
JSONRPC string `json:"jsonrpc"`
ID json.RawMessage `json:"id,omitempty"`
Result any `json:"result,omitempty"`
Error *RespError `json:"error,omitempty"`
}
type RespError struct {
Code int `json:"code"`
Message string `json:"message"`
}
// LSP responses (subset)
type InitializeResult struct {
Capabilities ServerCapabilities `json:"capabilities"`
ServerInfo *ServerInfo `json:"serverInfo,omitempty"`
}
type ServerInfo struct {
Name string `json:"name"`
Version string `json:"version,omitempty"`
}
type ServerCapabilities struct {
TextDocumentSync any `json:"textDocumentSync,omitempty"`
CompletionProvider *CompletionOptions `json:"completionProvider,omitempty"`
}
type CompletionOptions struct {
ResolveProvider bool `json:"resolveProvider,omitempty"`
TriggerCharacters []string `json:"triggerCharacters,omitempty"`
}
type CompletionList struct {
IsIncomplete bool `json:"isIncomplete"`
Items []CompletionItem `json:"items"`
}
type CompletionItem struct {
Label string `json:"label"`
Kind int `json:"kind,omitempty"`
Detail string `json:"detail,omitempty"`
InsertText string `json:"insertText,omitempty"`
SortText string `json:"sortText,omitempty"`
Documentation string `json:"documentation,omitempty"`
}
// Server implements a minimal LSP over stdio.
type Server struct {
in *bufio.Reader
out io.Writer
logger *log.Logger
exited bool
mu sync.RWMutex
docs map[string]*document
logContext bool
}
func NewServer(r io.Reader, w io.Writer, logger *log.Logger, logContext bool) *Server {
return &Server{in: bufio.NewReader(r), out: w, logger: logger, docs: make(map[string]*document), logContext: logContext}
}
func (s *Server) Run() error {
for {
body, err := s.readMessage()
if err == io.EOF {
return nil
}
if err != nil {
return err
}
var req Request
if err := json.Unmarshal(body, &req); err != nil {
s.logger.Printf("invalid JSON: %v", err)
continue
}
if req.Method == "" {
// A response from client; ignore
continue
}
go s.handle(req)
if s.exited {
return nil
}
}
}
func (s *Server) handle(req Request) {
switch req.Method {
case "initialize":
res := InitializeResult{
Capabilities: ServerCapabilities{
// 1 = TextDocumentSyncKindFull
TextDocumentSync: 1,
CompletionProvider: &CompletionOptions{
ResolveProvider: false,
TriggerCharacters: []string{".", ":", "/", "_"},
},
},
ServerInfo: &ServerInfo{Name: "hexai", Version: internal.Version},
}
s.reply(req.ID, res, nil)
case "initialized":
// Notification; no response
s.logger.Println("client initialized")
case "shutdown":
s.reply(req.ID, nil, nil)
case "exit":
s.exited = true
// No response per spec.
os.Exit(0)
case "textDocument/didOpen":
var p DidOpenTextDocumentParams
if err := json.Unmarshal(req.Params, &p); err == nil {
s.setDocument(p.TextDocument.URI, p.TextDocument.Text)
}
case "textDocument/didChange":
var p DidChangeTextDocumentParams
if err := json.Unmarshal(req.Params, &p); err == nil {
if len(p.ContentChanges) > 0 {
s.setDocument(p.TextDocument.URI, p.ContentChanges[len(p.ContentChanges)-1].Text)
}
}
case "textDocument/didClose":
var p DidCloseTextDocumentParams
if err := json.Unmarshal(req.Params, &p); err == nil {
s.deleteDocument(p.TextDocument.URI)
}
case "textDocument/completion":
var p CompletionParams
var docStr string
if err := json.Unmarshal(req.Params, &p); err == nil {
above, current, below, funcCtx := s.lineContext(p.TextDocument.URI, p.Position)
docStr = fmt.Sprintf("file: %s\nline: %d\nabove: %s\ncurrent: %s\nbelow: %s\nfunction: %s", p.TextDocument.URI, p.Position.Line, trimLen(above), trimLen(current), trimLen(below), trimLen(funcCtx))
if s.logContext {
s.logger.Printf("completion ctx uri=%s line=%d char=%d above=%q current=%q below=%q function=%q",
p.TextDocument.URI, p.Position.Line, p.Position.Character, trimLen(above), trimLen(current), trimLen(below), trimLen(funcCtx))
}
}
items := []CompletionItem{{
Label: "hexai-complete",
Kind: 14,
Detail: "dummy completion",
InsertText: "hexai",
SortText: "0000",
Documentation: docStr,
}}
s.reply(req.ID, CompletionList{IsIncomplete: false, Items: items}, nil)
default:
// Unknown method; reply with Method Not Found for requests that have an ID.
if len(req.ID) != 0 {
s.reply(req.ID, nil, &RespError{Code: -32601, Message: fmt.Sprintf("method not found: %s", req.Method)})
}
}
}
func (s *Server) reply(id json.RawMessage, result any, err *RespError) {
resp := Response{JSONRPC: "2.0", ID: id, Result: result, Error: err}
s.writeMessage(resp)
}
func (s *Server) readMessage() ([]byte, error) {
tp := textproto.NewReader(s.in)
var contentLength int
for {
line, err := tp.ReadLine()
if err != nil {
return nil, err
}
if line == "" { // end of headers
break
}
parts := strings.SplitN(line, ":", 2)
if len(parts) != 2 {
continue
}
key := strings.TrimSpace(strings.ToLower(parts[0]))
val := strings.TrimSpace(parts[1])
switch key {
case "content-length":
n, err := strconv.Atoi(val)
if err != nil {
return nil, fmt.Errorf("invalid Content-Length: %v", err)
}
contentLength = n
}
}
if contentLength <= 0 {
return nil, fmt.Errorf("missing or invalid Content-Length")
}
buf := make([]byte, contentLength)
if _, err := io.ReadFull(s.in, buf); err != nil {
return nil, err
}
return buf, nil
}
func (s *Server) writeMessage(v any) {
data, err := json.Marshal(v)
if err != nil {
s.logger.Printf("marshal error: %v", err)
return
}
header := fmt.Sprintf("Content-Length: %d\r\n\r\n", len(data))
if _, err := io.WriteString(s.out, header); err != nil {
s.logger.Printf("write header error: %v", err)
return
}
if _, err := s.out.Write(data); err != nil {
s.logger.Printf("write body error: %v", err)
return
}
}
// --- Document store and helpers ---
type document struct {
uri string
text string
lines []string
}
func (s *Server) setDocument(uri, text string) {
s.mu.Lock()
defer s.mu.Unlock()
s.docs[uri] = &document{uri: uri, text: text, lines: splitLines(text)}
}
func (s *Server) deleteDocument(uri string) {
s.mu.Lock()
defer s.mu.Unlock()
delete(s.docs, uri)
}
func (s *Server) getDocument(uri string) *document {
s.mu.RLock()
defer s.mu.RUnlock()
return s.docs[uri]
}
func splitLines(sx string) []string {
sx = strings.ReplaceAll(sx, "\r\n", "\n")
return strings.Split(sx, "\n")
}
// LSP param types (subset)
type TextDocumentItem struct {
URI string `json:"uri"`
LanguageID string `json:"languageId,omitempty"`
Version int `json:"version,omitempty"`
Text string `json:"text"`
}
type VersionedTextDocumentIdentifier struct {
URI string `json:"uri"`
Version int `json:"version,omitempty"`
}
type TextDocumentIdentifier struct {
URI string `json:"uri"`
}
type DidOpenTextDocumentParams struct {
TextDocument TextDocumentItem `json:"textDocument"`
}
type TextDocumentContentChangeEvent struct {
Range any `json:"range,omitempty"`
RangeLength int `json:"rangeLength,omitempty"`
Text string `json:"text"`
}
type DidChangeTextDocumentParams struct {
TextDocument VersionedTextDocumentIdentifier `json:"textDocument"`
ContentChanges []TextDocumentContentChangeEvent `json:"contentChanges"`
}
type DidCloseTextDocumentParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
}
type Position struct {
Line int `json:"line"`
Character int `json:"character"`
}
type CompletionParams struct {
TextDocument TextDocumentIdentifier `json:"textDocument"`
Position Position `json:"position"`
Context any `json:"context,omitempty"`
}
func (s *Server) lineContext(uri string, pos Position) (above, current, below, funcCtx string) {
d := s.getDocument(uri)
if d == nil || len(d.lines) == 0 {
return "", "", "", ""
}
idx := pos.Line
if idx < 0 {
idx = 0
}
if idx >= len(d.lines) {
idx = len(d.lines) - 1
}
current = d.lines[idx]
if idx-1 >= 0 {
above = d.lines[idx-1]
}
if idx+1 < len(d.lines) {
below = d.lines[idx+1]
}
for i := idx; i >= 0; i-- {
line := strings.TrimSpace(d.lines[i])
if hasAny(line, []string{"func ", "def ", "class ", "fn ", "procedure ", "sub "}) {
funcCtx = line
break
}
}
return
}
func hasAny(s string, needles []string) bool {
for _, n := range needles {
if strings.Contains(s, n) {
return true
}
}
return false
}
func trimLen(s string) string {
s = strings.TrimSpace(s)
if len(s) > 200 {
return s[:200] + "…"
}
return s
}
|