-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfrob.vim
380 lines (328 loc) · 10.4 KB
/
frob.vim
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
" frob.vim: Modify Go code.
scriptencoding utf-8
" Run the :GoFrob command.
fun! gopher#frob#cmd(...) abort
if a:0 is 0
return gopher#frob#popup()
endif
if a:1 is# 'implement' && a:0 < 2
return gopher#error('must specify at least one interface name')
endif
call s:run_cmd(0, a:1, a:000[1:])
endfun
" Complete the mappings people can choose and interfaces for 'implement'.
fun! gopher#frob#complete(lead, cmdline, cursor) abort
if getcmdtype() is# '@' || a:cmdline[:16] is# 'GoFrob implement '
return gopher#compl#filter(a:lead, s:find_interface(a:lead))
endif
return gopher#compl#filter(a:lead, ['error', 'if', 'implement', 'fillstruct', 'return'])
endfun
" Find all interfaces starting with lead.
"
" Before the dot we complete a package; for example on 'i' it completes:
" [image, image/color, .., io, io/ioutil]
"
" After the dot it completes interfaces for that package; for 'io.':
" [io.ByteReader, .., io.WriterTo]
fun! s:find_interface(lead) abort
if a:lead is# '' || a:lead !~# '^\h\w.*\.\%(\h\w*\)\=$'
return gopher#pkg#list_importable()
endif
let l:pkg = split(a:lead, '\.', 1)
let [l:iface, l:pkg] = [l:pkg[-1], join(l:pkg[:-2], '.')]
return map(filter(gopher#pkg#list_interfaces(l:pkg),
\ {_, v -> strpart(l:v, 0, len(l:iface)) is# l:iface}),
\ {_, v -> l:pkg . '.' . l:v})
endfun
" Implement methods for an interface.
fun! gopher#frob#implement(iface) abort
try
let l:save = winsaveview()
let l:type = s:get_type()
if l:type is# v:null
return gopher#error('no type definition found')
endif
let [l:out, l:err] = gopher#system#tool(['impl',
\ '-dir', expand('%:p:h'),
\ printf('%s *%s', tolower(l:type)[0], l:type), a:iface])
if l:err
return gopher#error(l:out)
endif
" TODO(impl): everything beyond here is hacky. Should improve impl tool.
" Get just the function signatures.
try
let l:s = winsaveview()
let l:out = map(split(l:out, '}')[:-2], { _, v -> split(l:v, "\n")[0][:-3]})
let l:existing = map(split(execute('g/func (\h\w* \*\h\w*) '), "\n"), { _, v -> v[:-3]})
finally
call winrestview(l:s)
endtry
" Move to end of struct.
"call winrestview(l:save)
"if getline('.')[-9:] is# ' struct {'
" normal! $%
"endif
for l:f in l:out
" Filter out methods that already exist.
let l:have = 0
for l:e in l:existing
if l:f is# l:e
let l:have = 1
break
endif
endfor
if l:have
continue
end
" Format to be a bit nicer.
let l:comment = printf('// %s implements the %s interface.',
\ matchstr(l:f, ') \k\+(')[2:-2], a:iface)
call append('.', ['', l:comment, '//', '// TODO: implement', l:f . ' {', '', '}'])
" Add return.
normal! 6j
call gopher#frob#ret(0)
normal! >>6k
endfor
finally
call winrestview(l:save)
endtry
endfun
" Get current type name.
"
" Note: moves the cursor!
fun! s:get_type() abort
if getline('.') is# '}'
normal! %
endif
" type x int
" type x struct {
let l:type = split(getline('.'), ' ')
if l:type[0] is# 'type' && (len(l:type) is# 3 || len(l:type) is# 4)
normal! $%
return l:type[1]
endif
" type (
" foo int
" x int
" )
let l:loc = search('\v^[^ \t]', 'Wbn')
if getline(l:loc) is# 'type ('
call search('^)$', 'W')
return l:type[0]
endif
" type x struct {
" field int
" }
let l:type = split(getline(l:loc), ' ')
if l:type[0] is# 'type' && (len(l:type) is# 3 || len(l:type) is# 4)
call search('^}$', 'W')
return l:type[1]
endif
return v:null
endfun
" Toggle between 'single-line' and 'normal' if checks:
"
" err := e()
" if err != nil {
"
" and:
"
" if err := e(); err != nil {
"
" This works for all variables, not just error checks.
"
" TODO: also make this work for switches:
"
" switch cmd, err := f.ShiftCommand("help", "collect", "logs", "serve"); cmd {
fun! gopher#frob#if() abort
let l:line = getline('.')
if match(l:line, 'if ') is -1
" Try line below current one too.
let l:line = getline(line('.') + 1)
if match(l:line, 'if ') is -1
return gopher#error('No if statement on current or next line')
endif
normal! j
endif
let l:line = substitute(l:line, '^\s*', '', '')
let l:indent = repeat("\t", indent('.') / 4)
" Convert 'if .. {' to 'if ..; err != nil {'.
if match(l:line, ';') is -1
let l:decl = substitute(getline(line('.') - 1), '^\s*', '', '')
if match(l:decl, '=') is# -1
return gopher#error('No variable declaration on the line above if')
endif
execute ':' . (line('.') - 1) . 'd _'
call setline('.', printf('%sif %s; %s', l:indent, l:decl, trim(getline('.'))[3:]))
" Convert 'if ..; err != nil {' to 'if .. {'.
else
let [l:prev_line, l:line] = split(l:line, '; ')
let l:prev_line = substitute(l:prev_line, '^\s*', '', '')[3:]
call setline('.', printf('%sif %s', l:indent, l:line))
call append(line('.') - 1, printf('%s%s', l:indent, l:prev_line))
endif
endfun
" Generate a return statement with zero values.
"
" If error is 1 it will return 'err' and surrounded in an 'if err != nil' check.
fun! gopher#frob#ret(error) abort
let [l:out, l:err] = gopher#system#tool(
\ ['gosodoff', '-pos=' . gopher#buf#cursor(), (a:error ? '-errcheck' : v:null)],
\ gopher#buf#lines())
if l:err
return gopher#error(l:out)
endif
" Go up one line if the current line is blank (assume cursor is below 'err := ... ).
if getline('.') =~# '^\s*$'
delete _
normal! k
endif
" Copy indent.
let l:indent = matchstr(getline('.'), '^\s*')
if l:indent is# ''
let l:indent = matchstr(getline(line('.') - 1), '^\s*')
endif
call append('.', map(split(l:out, "\n"), {_, l -> l:indent . l:l}))
normal! j^
" Position cursor on 'err'.
if a:error
normal! j$b
endif
endfun
" Fill a struct.
fun! gopher#frob#fillstruct() abort
" TODO: fillstruct panics on mail.Address{"", ""}
" can maybe merge keyify, fillstruct, and fillswitch?
let [l:out, l:err] = gopher#system#tool(['fillstruct',
\ '-modified',
\ '-file', bufname(''),
\ '-offset', gopher#buf#cursor()],
\ gopher#system#archive())
if l:err
return gopher#error(l:out)
endif
try
let l:json = json_decode(l:out)
catch
return gopher#error(l:out)
endtry
" Always one result when using -offset
let l:json = l:json[0]
let l:json['code'] = split(l:json['code'], "\n")
" Indent every line except the first one; makes it look nice.
let l:indent = repeat("\t", indent(byte2line(l:json['start'])) / shiftwidth())
for l:i in range(1, len(l:json['code']) - 1)
let l:json['code'][l:i] = l:indent . l:json['code'][l:i]
endfor
" Add any code before the struct.
call gopher#buf#replace(l:json['start'], l:json['end'], l:json['code'])
endfun
let s:popup_items = [
\ ['install', 'Install current package or ./cmd/<modname>'],
\ ['test-current', 'Test current function'],
\ ['test', 'Test current package'],
\ ['lint', 'Lint current package'],
\ ['error', 'Add return with if err != nil'],
\ ['if', 'Toggle if style'],
\ ['implement', 'Add interface methods'],
\ ['return', 'Add return'],
\ ['fillstruct', 'Fill struct with keyed fields'],
\ ]
" key -> action mapping (reverse of g:gopher_map).
let s:map = {}
" Show a popup menu with mappings to choose from.
"
" TODO: move out of frob.vim to popup.vim, since it's more than just frob
" commands now.
fun! gopher#frob#popup() abort
" Makes s:map and desciption list.
let l:items = []
for l:item in s:popup_items
let l:map = get(g:gopher_map, l:item[0], v:null)
if l:map isnot v:null
let s:map[l:map] = l:item[0]
let l:items = add(l:items, printf('(%s) %s', l:map, l:item[1]))
endif
endfor
" Fallback for older versions.
if !exists('*popup_create') || !exists('*popup_close')
echo join(map(items(s:map), {_, v-> printf('(%s) %s', v[0], v[1])}), ' | ')
let l:char = nr2char(getchar())
let l:c = get(s:map, l:char, 0)
redraw " Clear enter prompt
if l:c is 0
return gopher#error('invalid selection: %s', l:char)
endif
return s:run_cmd(0, l:c)
endif
let l:o = get(g:, 'gopher_popup', {})
let l:CB = get(g:, 'Gopher_popup')
if type(l:CB) is v:t_func
let l:o = extend(l:o, l:CB())
endif
call popup_create(l:items, gopher#dict#merge({
\ 'filter': function('s:filter'),
\ 'callback': function('s:run_cmd'),
\ 'mapping': 0,
\ 'cursorline': 1,
\ 'line': 'cursor+1',
\ 'col': 'cursor',
\ 'moved': 'WORD',
\ 'title': '─ gopher.vim',
\ 'padding': [0, 1, 0, 1],
\ 'border': [],
\ 'borderchars': ['─', '│', '─', '│', '┌', '┐', '┘', '└'],
\ }, l:o))
endfun
fun! s:filter(id, key) abort
if a:key is# 'x' || a:key is# ''
call popup_clear()
return 1
endif
" No shortcut, pass to generic filter
let l:action = get(s:map, a:key, -1)
if l:action is -1
return popup_filter_menu(a:id, a:key)
endif
call popup_close(a:id, l:action)
return 1
endfun
fun! s:run_cmd(id, cmd, ...) abort
" Fixes some problems with the popup menu's buffer still being open when we
" start doing various operations (wrong text, infinite recursion, etc.)
" TODO(popup): I think this is a Vim bug? Or am I using it wrong? Need to look
" deeper.
call popup_clear()
let l:cmd = a:cmd
if type(l:cmd) is v:t_number
let l:cmd = s:popup_items[a:cmd - 1][0]
endif
if l:cmd is# 'if'
call gopher#frob#if()
elseif l:cmd is# 'return'
call gopher#frob#ret(0)
elseif l:cmd is# 'error'
call gopher#frob#ret(1)
elseif a:cmd is# 'fillstruct'
call gopher#frob#fillstruct()
elseif a:cmd is# 'install'
call gopher#go#run_install()
elseif a:cmd is# 'test'
call gopher#go#run_test()
elseif a:cmd is# 'test-current'
call gopher#go#run_test_current()
elseif a:cmd is# 'lint'
call gopher#go#run_lint()
elseif a:cmd is# 'implement'
if a:0 is 0
let l:in = [input('interface? ', '', 'customlist,gopher#frob#complete')]
else
let l:in = a:1
endif
for l:i in l:in
call gopher#frob#implement(l:i)
endfor
elseif l:cmd isnot -1
call gopher#error('unknown command: %s', l:cmd)
endif
endfun