forked from ziglang/sublime-zig-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zig.py
389 lines (332 loc) · 13.7 KB
/
Zig.py
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
381
382
383
384
385
386
387
388
389
import sublime
import sublime_plugin
import os
import subprocess
import sys
import threading
import time
import codecs
import signal
import html
def get_setting(view, opt, default):
zig_settings = sublime.load_settings('Zig.sublime-settings')
preferences_settings = sublime.load_settings("Preferences.sublime-settings")
file_settings = preferences_settings.get(opt, zig_settings.get(opt, default))
return view.settings().get(opt, file_settings)
class ProcessSink:
def on_data(self, proc, data): pass
def on_finished(self, proc): pass
class AsyncProcess:
def __init__(self, args, cwd, sink):
self.killed = False
self.sink = sink
# Hide the console window on Windows
startupinfo = None
if os.name == "nt":
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
self.proc = subprocess.Popen(
args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
startupinfo=startupinfo,
cwd=cwd
)
self.stdout_thread = threading.Thread(
target=self.read_fileno,
args=(self.proc.stdout, True)
)
self.stderr_thread = threading.Thread(
target=self.read_fileno,
args=(self.proc.stderr, False)
)
def start(self):
self.start_time = time.time()
self.stdout_thread.start()
self.stderr_thread.start()
def kill(self):
if not self.killed:
self.killed = True
if sys.platform == "win32":
# terminate would not kill process opened by the shell cmd.exe,
# it will only kill cmd.exe leaving the child running
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
subprocess.Popen(
"taskkill /PID %d /T /F" % self.proc.pid,
startupinfo=startupinfo)
else:
os.killpg(self.proc.pid, signal.SIGTERM)
self.proc.terminate()
def poll(self):
return self.proc.poll() is None
def exit_code(self):
return self.proc.poll()
def read_fileno(self, file, execute_finished):
chunk_size = 2 ** 16
decoder = \
codecs.getincrementaldecoder(self.sink.encoding)('replace')
while True:
data = decoder.decode(file.read(chunk_size))
data = data.replace('\r\n', '\n').replace('\r', '\n')
if len(data) > 0 and not self.killed:
self.sink.on_data(self, data)
continue
else:
if execute_finished:
self.stderr_thread.join()
self.sink.on_finished(self)
break
class ZigBuildCommand(sublime_plugin.WindowCommand, ProcessSink):
def __init__(self, window):
super().__init__(window)
self.panel_lock = threading.Lock()
self.encoding = 'utf-8'
self.quiet = False
self.panel = None
self.proc = None
self.show_errors_inline = True
self.phantom_sets_by_buffer = {}
self.errs_by_file = {}
def is_enabled(self, kill=False, **kwargs):
if kill:
return (self.proc is not None) and self.proc.poll()
return True
def handle_args(args, cmd, build, vars):
if build is not None and cmd is None:
args.append('build')
if isinstance(build, dict):
step = build.get('step', '')
step_args = build.get('args', [])
if step != '': args.append(step)
if step_args != []:
args.append('--')
args.extend(step_args)
elif isinstance(build, list):
args.extend(build)
elif isinstance(build, str):
args.append(build)
elif cmd is not None:
if isinstance(cmd, list):
args.extend(cmd)
elif isinstance(cmd, str):
args.append(cmd)
return sublime.expand_variables(args, vars)
def run(self, cmd=None, build=None, quiet=False, kill=False, update_phantoms_only=False):
if update_phantoms_only:
if self.show_errors_inline:
self.update_phantoms()
return
if kill and self.proc:
self.proc.kill()
return
vars = self.window.extract_variables()
working_dir = vars.get('file_path', vars['folder'])
view = self.window.active_view()
self.quiet = get_setting(view, 'zig.quiet', quiet)
with self.panel_lock:
# Creating the panel implicitly clears any previous contents
self.panel = self.window.create_output_panel('exec')
settings = self.panel.settings()
settings.set(
'result_file_regex',
r'^(?:.\/)?(\S.*):(\d*):(\d*): (?:[^:]*): (.*)$'
)
settings.set(
'result_line_regex',
r'^(?:\S.*):(\d*):(\d*): (?:[^:]*): (.*)$'
)
settings.set('result_base_dir', working_dir)
self.window.create_output_panel('exec')
if self.proc is not None:
if self.proc.poll() is None:
self.proc.terminate()
self.proc = None
args = [get_setting(view, 'zig.executable', 'zig')]
args = ZigBuildCommand.handle_args(args, cmd, build, vars)
self.proc = None
if not self.quiet:
print("Running " + " ".join(args))
sublime.status_message("Building")
show_panel_on_build = get_setting(view, "show_panel_on_build", True)
if show_panel_on_build and not self.quiet:
self.window.run_command('show_panel', {'panel': 'output.exec'})
self.hide_phantoms()
self.show_errors_inline = get_setting(view, "show_errors_inline", True)
self.should_update_phantoms = False
try:
self.proc = AsyncProcess(args, working_dir, self)
self.proc.start()
except Exception as e:
self.write(None, str(e) + "\n")
if not self.quiet:
self.write(None, "[Finished]")
def write(self, proc, data):
with self.panel_lock:
if proc != self.proc and proc:
# a second process is running
# and we don't want to pollute the output
proc.kill()
return
# write to the panel
self.panel.run_command('append', {'characters': data})
# collect any errors
def phantoms_check():
errs = self.panel.find_all_results_with_text()
errs_by_file = {}
for file, line, column, text in errs:
if file not in errs_by_file:
errs_by_file[file] = []
errs_by_file[file].append((line, column, text))
self.errs_by_file = errs_by_file
self.update_phantoms()
self.should_update_phantoms = False
if not self.should_update_phantoms:
if self.show_errors_inline and data.find('\n') >= 0:
self.should_update_phantoms = True
sublime.set_timeout(lambda: phantoms_check())
def on_data(self, proc, data):
if proc != self.proc: return
self.write(None, data)
def on_finished(self, proc):
if proc != self.proc:
return
if proc.killed: self.write(None, "\n[Cancelled]")
elif not self.quiet:
elapsed = time.time() - proc.start_time
if elapsed < 1:
elapsed_str = "%.0fms" % (elapsed * 1000)
else:
elapsed_str = "%.1fs" % (elapsed)
exit_code = proc.exit_code()
if exit_code == 0 or exit_code is None:
self.write(None, "[Finished in %s]" % elapsed_str)
else:
self.write(None, "[Finished in %s with exit code %d]\n" %
(elapsed_str, exit_code))
if proc.killed:
sublime.status_message("Build cancelled")
else:
with self.panel_lock:
errs = self.panel.find_all_results()
if len(errs) == 0:
sublime.status_message("Build finished")
else:
sublime.status_message("Build finished with %d errors" %
len(errs))
def update_phantoms(self):
stylesheet = '''
<style>
div.error-arrow {
border-top: 0.4rem solid transparent;
border-left: 0.5rem solid color(var(--redish) blend(var(--background) 30%));
width: 0;
height: 0;
}
div.error {
padding: 0.4rem 0 0.4rem 0.7rem;
margin: 0 0 0.2rem;
border-radius: 0 0.2rem 0.2rem 0.2rem;
}
div.error span.message {
padding-right: 0.7rem;
}
div.error a {
text-decoration: inherit;
padding: 0.35rem 0.7rem 0.45rem 0.8rem;
position: relative;
bottom: 0.05rem;
border-radius: 0 0.2rem 0.2rem 0;
font-weight: bold;
}
html.dark div.error a {
background-color: #00000018;
}
html.light div.error a {
background-color: #ffffff18;
}
</style>
'''
for file, errs in self.errs_by_file.items():
view = self.window.find_open_file(file)
if view:
buffer_id = view.buffer_id()
if buffer_id not in self.phantom_sets_by_buffer:
phantom_set = sublime.PhantomSet(view, "exec")
self.phantom_sets_by_buffer[buffer_id] = phantom_set
else:
phantom_set = self.phantom_sets_by_buffer[buffer_id]
phantoms = []
region_set = []
line_err_set = []
# this probably could be optimized to do a single pass
for line, column, text in errs:
# this technically gives the of-by-1 column numbers
# but when doing the actual rendering these look nicer
pt = view.text_point(line - 1, column)
if (line_err_set and
line == line_err_set[len(line_err_set) - 1][0]):
line_err_set[len(line_err_set) - 1][1] += (
"<br>" + html.escape(text, quote=False))
else:
pt_b = pt + 1
if view.classify(pt) & sublime.CLASS_WORD_START:
pt_b = view.find_by_class(
pt,
forward=True,
classes=(sublime.CLASS_WORD_END)
)
if pt_b <= pt: pt_b = pt + 1
region_set.append(sublime.Region(pt, pt_b))
line_err_set.append([line, html.escape(text, quote=False)])
for region, text in zip(region_set, line_err_set):
phantoms.append(sublime.Phantom(
region,
('<body id=inline-error>' + stylesheet +
'<div class="error-arrow"></div><div class="error">' +
'<span class="message">' + text[1] + '</span>' +
'<a href=hide>' + chr(0x00D7) + '</a></div>' +
'</body>'),
sublime.LAYOUT_BELOW,
on_navigate=self.on_phantom_navigate
))
phantom_set.update(phantoms)
def hide_phantoms(self):
for window in sublime.windows():
for file, errs in self.errs_by_file.items():
view = window.find_open_file(file)
if view:
view.erase_phantoms("exec")
view.erase_regions("exec")
view.hide_popup()
view = sublime.active_window().active_view()
if view:
view.erase_phantoms("exec")
view.erase_regions("exec")
view.hide_popup()
self.errs_by_file = {}
self.phantom_sets_by_buffer = {}
self.show_errors_inline = False
def on_phantom_navigate(self, url):
self.hide_phantoms()
class Zig(sublime_plugin.EventListener):
def on_load_async(self, view):
w = view.window()
if w is not None:
w.run_command('zig_build', {'update_phantoms_only': True})
def on_post_save_async(self, view):
sel = view.sel()[0]
region = view.word(sel)
scope = view.scope_name(region.b)
if scope.find('source.zig') != -1:
should_fmt = get_setting(view, 'zig.fmt.on_save', True)
should_build = get_setting(view, 'zig.build.on_save', False)
is_quiet = get_setting(view, 'zig.quiet', True)
if (should_fmt):
mode = get_setting(view, 'zig.fmt.mode', 'file').lower()
mode = '$file' if mode == 'file' else '$folder'
view.window().run_command('zig_build', {"cmd": ["fmt", mode], "quiet": True})
if (should_build):
view.window().run_command('zig_build')
if (is_quiet):
view.window().run_command("hide_panel")