-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsource.lua
219 lines (198 loc) · 5.57 KB
/
source.lua
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
local cmp = require('cmp')
local api = vim.api
local fn = vim.fn
local conf = require('cmp_tabby.config')
local function dump(...)
local objects = vim.tbl_map(vim.inspect, { ... })
print(unpack(objects))
end
local Source = {
id = nil,
job = nil,
}
local last_instance = nil
function Source.new()
last_instance = setmetatable({}, { __index = Source })
return last_instance
end
function Source.is_available(self)
return true
end
function Source.get_debug_name()
return 'Tabby'
end
function Source._do_complete(self, ctx, callback)
local max_lines = conf:get('max_lines')
local cursor = ctx.context.cursor
local cur_line = ctx.context.cursor_line
-- properly handle utf8
-- local cur_line_before = string.sub(cur_line, 1, cursor.col - 1)
local cur_line_before = vim.fn.strpart(cur_line, 0, math.max(cursor.col - 1, 0), true)
-- properly handle utf8
-- local cur_line_after = string.sub(cur_line, cursor.col) -- include current character
local cur_line_after = vim.fn.strpart(cur_line, math.max(cursor.col - 1, 0), vim.fn.strdisplaywidth(cur_line), true) -- include current character
local region_includes_beginning = false
local region_includes_end = false
if cursor.line - max_lines <= 1 then
region_includes_beginning = true
end
if cursor.line + max_lines >= fn['line']('$') then
region_includes_end = true
end
local lines_before = api.nvim_buf_get_lines(0, math.max(0, cursor.line - max_lines), cursor.line, false)
table.insert(lines_before, cur_line_before)
local before = table.concat(lines_before, '\n')
local lines_after = api.nvim_buf_get_lines(0, cursor.line + 1, cursor.line + max_lines, false)
table.insert(lines_after, 1, cur_line_after)
local after = table.concat(lines_after, '\n')
local req = {
language = (vim.filetype.match({ buf = 0 }) or ''),
segments = {
prefix = before,
suffix = after,
},
}
-- local res = curl.post(conf:get('host') .. '/v1/engines/codegen/completions', {
-- body = vim.fn.json_encode(req),
-- headers = {
-- content_type = 'application/json',
-- },
-- })
-- dump(req)
self.job = fn.jobstart({
'curl',
'-s',
'-H',
'Content-type: application/json',
'-H',
'Accept: application/json',
'-X',
'POST',
'-d',
vim.json.encode(req),
conf:get('host') .. '/v1/completions',
}, {
on_stdout = function(_, c, _)
-- dump(c)
local items = {}
for _, res in ipairs(c) do
if res ~= nil and res ~= '' and res ~= 'null' then
local data = (vim.json.decode(res) or {})
for _, result in ipairs(data.choices) do
local newText = result.text:gsub('<|endoftext|>', '')
if newText:find('.*\n.*') then
-- this is a multi line completion.
-- remove leading newlines
newText = newText:gsub('^\n', '')
end
local range = {
start = { line = cursor.line, character = cursor.col },
['end'] = { line = cursor.line, character = cursor.col },
}
local item = {
label = cur_line_before .. newText,
-- removing filterText, as it interacts badly with multiline
-- filterText = newText,
data = {
id = data.id,
choice = result.index,
},
textEdit = {
newText = newText,
insert = range, -- May be better to exclude the trailing part of old_suffix since it's 'replaced'?
replace = range,
},
sortText = newText,
dup = 0,
cmp = {
kind_text = 'Tabby',
},
documentation = {
kind = cmp.lsp.MarkupKind.Markdown,
value = '```' .. (vim.filetype.match({ buf = 0 }) or '') .. '\n' .. cur_line_before .. newText .. '\n```',
},
}
if result.text:find('.*\n.*') then
item['data']['multiline'] = true
end
table.insert(items, item)
self:view(item)
end
end
end
if next(items) ~= nil then
if self.id == ctx.context.id then
callback({
items = items,
isIncomplete = conf:get('run_on_every_keystroke'),
})
end
end
end,
})
end
--- view
function Source.view(self, item)
-- dump(item)
local req = {
type = 'view',
completion_id = item.data.id,
choice_index = item.data.choice,
}
-- dump(vim.json.encode(req))
fn.jobstart({
'curl',
'-s',
'-H',
'Content-type: application/json',
'-H',
'Accept: application/json',
'-X',
'POST',
'-d',
vim.json.encode(req),
conf:get('host') .. '/v1/events',
}, {
on_stdout = function(_, c, _)
-- dump(c)
end,
})
end
--- execute
function Source.execute(self, item, callback)
-- dump(item)
local req = {
type = 'select',
completion_id = item.data.id,
choice_index = item.data.choice,
}
-- dump(vim.json.encode(req))
fn.jobstart({
'curl',
'-s',
'-H',
'Content-type: application/json',
'-H',
'Accept: application/json',
'-X',
'POST',
'-d',
vim.json.encode(req),
conf:get('host') .. '/v1/events',
}, {
on_stdout = function(_, c, _)
-- dump(c)
end,
})
callback(item)
end
--- complete
function Source.complete(self, ctx, callback)
self.id = ctx.context.id
if self.job ~= nil then
fn.jobstop(self.job)
self.job = nil
end
self:_do_complete(ctx, callback)
end
return Source