-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.py
393 lines (299 loc) · 9.62 KB
/
plugin.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
390
391
392
393
from collections import defaultdict
from functools import partial, wraps
import re
import sys
import time
import sublime
import sublime_plugin
from SublimeLinter.lint import persist
MYPY = False
if MYPY:
from typing import Any, Callable, DefaultDict, Dict, List, Optional
from mypy_extensions import TypedDict
FileName = str
LinterName = str
Reason = str
LintError = persist.LintError
_State = TypedDict(
'_State',
{
'errors': Dict[FileName, List[LintError]],
'filter_fn': Callable[[str], bool],
'user_value': str,
},
)
THEME_FLAG = 'sl_filtered_errors'
VIEW_HAS_NOT_CHANGED = lambda: False
PASS_PREDICATE = lambda x: True
NO_OP = lambda *a, **k: ...
Store = {
'errors': persist.file_errors.copy(),
'filter_fn': PASS_PREDICATE,
'user_value': '',
} # type: _State
def dprint(*a, **k):
# print(*a, **k)
...
def canonical_filename(view):
# type: (sublime.View) -> str
return view.file_name() or '<untitled {}>'.format(view.buffer_id())
class GarbargeController(sublime_plugin.EventListener):
def on_pre_close(self, view):
filename = canonical_filename(view)
views_into_buffer = [
view
for window in sublime.windows()
for view in window.views()
if canonical_filename(view) == filename
]
if len(views_into_buffer) <= 1:
Store['errors'].pop(filename, None)
try:
super_fn
except NameError:
dprint('=<> Init super_fn to None.')
super_fn = None # type: Optional[Callable]
else:
dprint('=<> Using super_fn from before while hot-reloading.')
def plugin_loaded():
dprint('=<> plugin_loaded')
patch_sublime_linter()
def plugin_unloaded():
dprint('=<> plugin_unloaded')
unpatch_sublime_linter()
def get_plugin_module():
try:
return sys.modules['SublimeLinter.sublime_linter']
except LookupError:
flash("addon-filter: SublimeLinter not installed. 😕")
return
def patch_sublime_linter():
global super_fn
plugin = get_plugin_module()
if not plugin:
return
if plugin.update_file_errors.__name__ == 'patched_update_file_errors':
flash("addon-filter: Already patched, how's that? 🤔")
else:
super_fn = plugin.update_file_errors
dprint('--> Patching')
plugin.update_file_errors = patched_update_file_errors
def unpatch_sublime_linter():
global super_fn
if super_fn is None:
return
plugin = get_plugin_module()
if not plugin:
return
dprint('--> Un-patching')
if plugin.update_file_errors.__name__ != 'patched_update_file_errors':
flash("addon-filter: Already unpatched, how's that? 🤔")
else:
plugin.update_file_errors = super_fn
super_fn = None
def patched_update_file_errors(filename, linter, errors, reason=None):
# type: (FileName, LinterName, List[LintError], Optional[Reason]) -> None
Store['errors'][filename] = [
error
for error in Store['errors'][filename]
if error['linter'] != linter
] + errors
super_fn(filename, linter, filter_errors(errors), reason=reason)
def refilter() -> None:
for filename, errors in Store['errors'].items():
for linter_name, linter_errors in group_by_linter(errors).items():
super_fn(filename, linter_name, filter_errors(linter_errors))
def sample_one_error(window: sublime.Window) -> "Optional[str]":
# Samples one error for the nice help message for the TextInputHandler.
# We take the store in `sublime_linter` bc that's the one that only holds
# *filtered* errors. We do the sorting to *prioritize* errors from the
# active view or at least current window.
view = window.active_view()
top_filename = canonical_filename(view) if view else ''
other_filenames = {canonical_filename(view) for view in window.views()}
def key_fn(filename_errors):
filename, _ = filename_errors
return (
'a'
if filename == top_filename
else 'b'
if filename in other_filenames
else 'c'
)
for filename, errors in sorted(persist.file_errors.items(), key=key_fn):
if not errors:
continue
error = errors[0]
return format_error(error)
else:
return None
def group_by_linter(
errors: "List[LintError]",
) -> "Dict[LinterName, List[LintError]]":
by_linter = defaultdict(
list
) # type: DefaultDict[LinterName, List[LintError]]
for error in errors:
by_linter[error['linter']].append(error)
return by_linter
def format_error(error: "LintError") -> str:
return '{filename}: {linter}: {error_type}: {code}: {msg}'.format(**error)
def filter_errors(errors: "List[LintError]") -> "List[LintError]":
filter_fn = Store['filter_fn']
if filter_fn is PASS_PREDICATE:
return errors
return [error for error in errors if filter_fn(format_error(error))]
def runtime_for(fn):
start_time = time.time()
fn()
end_time = time.time()
return end_time - start_time
def throttle(fn):
# The difference between running on the main thread or the worker
# is kinda huge. To get a 'immediate feel' when possible we measure
# the actual runtime of calling `fn` and dynamically decide if we
# block or not.
sink = NO_OP
runtime = 0.0
def tick():
nonlocal sink, runtime
if sink is NO_OP:
return
sink, sink_ = NO_OP, sink
runtime = runtime_for(sink_)
@wraps(fn)
def inner(*args):
nonlocal sink
sink = partial(fn, *args)
if runtime < 0.2:
tick()
else:
sublime.set_timeout_async(tick, 0)
return inner
@throttle
def set_filter(pattern: str) -> None:
Store.update({'user_value': pattern, 'filter_fn': make_filter_fn(pattern)})
refilter()
set_theme_flag(bool(pattern))
def make_filter_fn(pattern: str) -> "Callable[[str], bool]":
pattern = pattern.strip()
if not pattern:
return PASS_PREDICATE
fns = [_make_filter_fn(term) for term in pattern.split(' ') if term]
return lambda x: any(f(x) for f in fns)
def _make_filter_fn(term: str) -> "Callable[[str], Any]":
negate = term.startswith('-')
if negate:
term = term[1:]
if not term:
return PASS_PREDICATE
fn = re.compile(term).search
if negate:
return lambda x: not fn(x)
return fn
def set_theme_flag(flag: bool) -> None:
global_settings = sublime.load_settings('Preferences.sublime-settings')
if flag:
global_settings.set(THEME_FLAG, True)
else:
global_settings.erase(THEME_FLAG)
class sublime_linter_addon_filter(sublime_plugin.WindowCommand):
def run(self, pattern=''):
try:
set_filter(pattern)
except Exception as e:
flash("Invalid pattern: {!r}".format(e), self.window)
else:
if pattern:
flash(
"Filter pattern set to {!r}.".format(pattern), self.window
)
else:
flash("Reset filter pattern.", self.window)
def input(self, args):
if 'pattern' in args:
return None
return PatternInputHandler(self.window)
class PatternInputHandler(sublime_plugin.TextInputHandler):
def __init__(self, window):
self.window = window
def preview(self, pattern):
try:
make_filter_fn(pattern)
except re.error as e:
exc_str = str(e)
hint_msg = PATTERN_ERROR_HINT.format(
exc_str[0].upper() + exc_str[1:]
)
else:
set_filter(pattern)
sample_error = sample_one_error(self.window)
hint_msg = (
EXAMPLE_MATCH_HINT.format(
sample_error.replace('<', '<').replace('>', '>')
)
if sample_error
else NO_MATCH_HINT
)
return sublime.Html(HELP_MESSAGE.format(hint=hint_msg))
def validate(self, pattern):
try:
make_filter_fn(pattern)
except re.error:
return False
else:
return True
def initial_text(self):
return Store['user_value']
def cancel(self):
self.window.run_command('sublime_linter_addon_filter', {'pattern': ''})
class sublime_linter_addon_cycle_filter_patterns(sublime_plugin.WindowCommand):
def run(self, patterns):
current_value = Store['user_value']
try:
next_index = patterns.index(current_value) + 1
except ValueError:
next_index = 0
pattern = patterns[next_index % len(patterns)]
self.window.run_command(
'sublime_linter_addon_filter', {'pattern': pattern}
)
HELP_MESSAGE = '''
<style>
span {{
padding: 2px;
}}
</style>
Search term will match against:
<i>filename</i>:
<i>linter</i>:
<i>error_type</i>:
<i>code</i>:
<i>msg</i>
<br /><br />
{hint}
<br /><br />
Prepend '-' to negate
'''
EXAMPLE_MATCH_HINT = '''
Example match:
<br />
<span style="background-color: color(black alpha(0.25));">
{}
</span>
'''
NO_MATCH_HINT = '''
<span style="background-color: color(red alpha(0.25));">
No match
</span>
'''
PATTERN_ERROR_HINT = '''
<span style="background-color: color(red alpha(0.25));">
{}
</span>
'''
def flash(message, window: 'Optional[sublime.Window]' = None):
print(message)
if window is None:
window = sublime.active_window()
window.status_message(message)