-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathAStyleFormat.py
441 lines (374 loc) · 15.6 KB
/
AStyleFormat.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
"""
Copyright (c) 2012 Timon Wong
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import sublime
import sublime_plugin
import json
import re
import os
import sys
if sys.version_info < (3, 0):
import pyastyle
from AStyleFormatterLib import get_syntax_mode_mapping, Options
from AStyleFormatterLib.MergeUtils import merge_code
else:
from . import pyastyle
from .AStyleFormatterLib import get_syntax_mode_mapping, Options
from .AStyleFormatterLib.MergeUtils import merge_code
__file__ = os.path.normpath(os.path.abspath(__file__))
__path__ = os.path.dirname(__file__)
PLUGIN_NAME = 'SublimeAStyleFormatter'
SYNTAX_RE = re.compile(r'(?<=source\.)[\w+#]+')
with open(os.path.join(__path__, 'options_default.json')) as fp:
OPTIONS_DEFAULT = json.load(fp)
def log(level, fmt, args):
s = PLUGIN_NAME + ': [' + level + '] ' + (fmt.format(*args))
print(s)
def log_debug(fmt, *args):
log('DEBUG', fmt, args)
def load_settings():
return sublime.load_settings(PLUGIN_NAME + '.sublime-settings')
_VARPROG_RE = re.compile(r'\$(\w+|\{[^}]*\})')
def custom_expandvars(path, custom_envs):
if '$' not in path:
return path
envs = custom_envs.copy()
envs.update(os.environ)
i = 0
while True:
m = _VARPROG_RE.search(path, i)
if not m:
break
i, j = m.span(0)
name = m.group(1)
if name.startswith('{') and name.endswith('}'):
name = name[1:-1]
if name in envs:
tail = path[j:]
path = path[:i] + envs[name]
i = len(path)
path += tail
else:
i = j
return path
def get_settings_for_view(view, key, default=None):
try:
settings = view.settings()
sub_key = 'AStyleFormatter'
if settings.has(sub_key):
proj_settings = settings.get(sub_key)
if key in proj_settings:
return proj_settings[key]
except:
pass
settings = load_settings()
return settings.get(key, default)
def get_settings_for_active_view(key, default=None):
return get_settings_for_view(
sublime.active_window().active_view(), key, default)
def get_syntax_for_view(view):
caret = view.sel()[0].a
syntax = SYNTAX_RE.search(view.scope_name(caret))
if syntax is None:
return ''
return syntax.group(0).lower()
def is_supported_syntax(view, syntax):
mapping = get_settings_for_view(
view, 'user_defined_syntax_mode_mapping', {})
return syntax in get_syntax_mode_mapping(mapping)
def is_enabled_in_view(view):
syntax = get_syntax_for_view(view)
return is_supported_syntax(view, syntax)
class AstyleformatCommand(sublime_plugin.TextCommand):
def _get_settings(self, key, default=None):
return get_settings_for_view(self.view, key, default=default)
def _get_syntax_settings(self, syntax, formatting_mode):
key = 'options_%s' % formatting_mode
settings = get_settings_for_view(self.view, key, default={})
if syntax and syntax != formatting_mode:
key = 'options_%s' % syntax
settings_override = get_settings_for_view(
self.view, key, default={})
settings.update(settings_override)
return settings
def _get_default_options(self):
options_default = OPTIONS_DEFAULT.copy()
options_default_override = self._get_settings(
'options_default', default={})
options_default.update(options_default_override)
return options_default
_SKIP_COMMENT_RE = re.compile(r'\s*\#')
def _build_custom_vars(self):
view = self.view
custom_vars = {
'packages': sublime.packages_path(),
}
full_path = view.file_name()
if full_path:
file_name = os.path.basename(full_path)
file_base_name, file_extension = os.path.splitext(file_name)
custom_vars.update({
'file_path': os.path.dirname(full_path),
'file': full_path,
'file_name': file_name,
'file_extension': file_extension,
'file_base_name': file_base_name,
})
if sublime.version() > '3000':
window = view.window()
project_file_name = window.project_file_name()
if project_file_name:
project_name = os.path.basename(project_file_name)
project_base_name, project_extension = os.path.splitext(
project_name)
custom_vars.update({
'project': project_file_name,
'project_path': os.path.dirname(project_file_name),
'project_name': project_name,
'project_extension': project_extension,
'project_base_name': project_base_name,
})
return custom_vars
def _read_astylerc(self, path):
# Expand environment variables first
fullpath = custom_expandvars(path, self._build_custom_vars())
if not os.path.isfile(fullpath):
return ''
try:
lines = []
with open(fullpath, 'r') as f:
for line in f:
if not self._SKIP_COMMENT_RE.match(line):
lines.append(line.strip())
return ' '.join(lines)
except Exception:
return ''
@staticmethod
def _join_options(options_list):
return Options.strip_invalid_options_string(
' '.join(o for o in options_list if o))
def _get_options(self, syntax, formatting_mode):
syntax_settings = self._get_syntax_settings(syntax, formatting_mode)
# --mode=xxx placed first
options_list = [Options.build_astyle_mode_option(formatting_mode)]
if 'additional_options_file' in syntax_settings:
astylerc_options = self._read_astylerc(
syntax_settings['additional_options_file'])
else:
astylerc_options = ''
if 'additional_options' in syntax_settings:
additional_options = ' '.join(
syntax_settings['additional_options'])
else:
additional_options = ''
options_list.append(additional_options)
options_list.append(astylerc_options)
# Check if user will use only additional options, skip processing other
# options when 'use_only_additional_options' is true
if syntax_settings.get('use_only_additional_options', False):
return self._join_options(options_list)
# Get default options
default_settings = self._get_default_options()
# Merge syntax_settings with default_settings
default_settings.update(syntax_settings)
options = Options.build_astyle_options(
default_settings,
self._build_indent_options(),
convert_tabs=self._should_convert_tabs()
)
options = ' '.join(options)
options_list.insert(1, options)
return self._join_options(options_list)
def _build_indent_options(self):
view_settings = self.view.settings()
return {
'indent': 'spaces'
if view_settings.get('translate_tabs_to_spaces')
else 'tab',
'spaces': view_settings.get('tab_size'),
}
def _should_convert_tabs(self):
view_settings = self.view.settings()
return view_settings.get('translate_tabs_to_spaces')
def _get_formatting_mode(self, syntax):
mapping = get_settings_for_view(
self.view, 'user_defined_syntax_mode_mapping', {})
return get_syntax_mode_mapping(mapping).get(syntax, '')
def run(self, edit, selection_only=False):
# Close output panel previouslly created each run
under_unittest = self.view.settings().get('_UNDER_UNITTEST')
error_panel = ErrorMessagePanel("astyle_error_message",
under_unittest=under_unittest)
error_panel.close()
try:
# Loading options
syntax = get_syntax_for_view(self.view)
formatting_mode = self._get_formatting_mode(syntax)
options = self._get_options(syntax, formatting_mode)
except Options.ImproperlyConfigured as e:
extra_message = e.extra_message
error_panel = ErrorMessagePanel("astyle_error_message")
error_panel.write(
"%s: An error occurred while processing options: %s\n\n" % (
PLUGIN_NAME, e))
if extra_message:
error_panel.write("* %s\n" % extra_message)
error_panel.show()
return
# Options ok, format now
try:
if selection_only:
self.run_selection_only(edit, options)
else:
self.run_whole_file(edit, options)
except pyastyle.error as e:
error_panel.write(
"%s: An error occurred while formatting using astyle: %s\n\n"
% (PLUGIN_NAME, e))
error_panel.show()
return
if self._get_settings('debug', False):
log_debug('AStyle version: {0}', pyastyle.version())
log_debug('AStyle options: ' + options)
sublime.status_message('AStyle (v%s) Formatted' % pyastyle.version())
_STRIP_LEADING_SPACES_RE = re.compile(r'[ \t]*\n([^\r\n])')
def run_selection_only(self, edit, options):
def get_line_indentation_pos(view, point):
line_region = view.line(point)
pos = line_region.a
end = line_region.b
while pos < end:
ch = view.substr(pos)
if ch != ' ' and ch != '\t':
break
pos += 1
return pos
def get_indentation_count(view, start):
indent_count = 0
i = start - 1
while i > 0:
ch = view.substr(i)
scope = view.scope_name(i)
# Skip preprocessors, strings, characaters and comments
if ('string.quoted' in scope or
'comment' in scope or 'preprocessor' in scope):
extent = view.extract_scope(i)
i = extent.a - 1
continue
else:
i -= 1
if ch == '}':
indent_count -= 1
elif ch == '{':
indent_count += 1
return indent_count
view = self.view
regions = []
for sel in view.sel():
start = get_line_indentation_pos(view, min(sel.a, sel.b))
region = sublime.Region(
view.line(start).a, # line start of first line
view.line(max(sel.a, sel.b)).b) # line end of last line
indent_count = get_indentation_count(view, start)
# Add braces for indentation hack
text = '{' * indent_count
if indent_count > 0:
text += '\n'
text += view.substr(region)
# Performing astyle formatter
formatted_code = pyastyle.format(text, options)
if indent_count > 0:
for _ in range(indent_count):
index = formatted_code.find('{') + 1
formatted_code = formatted_code[index:]
formatted_code = self._STRIP_LEADING_SPACES_RE.sub(
r'\1', formatted_code, 1)
else:
# HACK: While no identation, a '{' will generate a blank line,
# so strip it.
search = '\n{'
if search not in text:
formatted_code = formatted_code.replace(search, '{', 1)
# Applying formatted text
view.replace(edit, region, formatted_code)
# Region for replaced text
if sel.a <= sel.b:
regions.append(
sublime.Region(region.a, region.a + len(formatted_code)))
else:
regions.append(
sublime.Region(region.a + len(formatted_code), region.a))
view.sel().clear()
# Add regions of formatted text
[view.sel().add(region) for region in regions]
def run_whole_file(self, edit, options):
view = self.view
region = sublime.Region(0, view.size())
code = view.substr(region)
# Performing astyle formatter
formatted_code = pyastyle.format(code, options)
# Replace to view
_, err = merge_code(view, edit, code, formatted_code)
if err:
error_panel = ErrorMessagePanel("astyle_error_message")
error_panel.write('%s: Merge failure: "%s"\n' % (PLUGIN_NAME, err))
def is_enabled(self):
return is_enabled_in_view(self.view)
class PluginEventListener(sublime_plugin.EventListener):
def on_pre_save(self, view):
if is_enabled_in_view(view) and get_settings_for_active_view(
'autoformat_on_save', default=False):
view.run_command('astyleformat')
def on_query_context(self, view, key, operator, operand, match_all):
if key == 'astyleformat_is_enabled':
return is_enabled_in_view(view)
return None
class AstylePanelInsertCommand(sublime_plugin.TextCommand):
def run(self, edit, text):
self.view.set_read_only(False)
self.view.insert(edit, self.view.size(), text)
self.view.set_read_only(True)
self.view.show(self.view.size())
class ErrorMessagePanel(object):
def __init__(self, name, under_unittest=False, word_wrap=False,
line_numbers=False, gutter=False, scroll_past_end=False,
syntax='Packages/Text/Plain text.tmLanguage'):
# If we are under testing, do not manipulate output panel
self.name = name
self.window = None
self.output_view = None
if not under_unittest:
self.window = sublime.active_window()
self.output_view = self.window.get_output_panel(name)
settings = self.output_view.settings()
settings.set("word_wrap", word_wrap)
settings.set("line_numbers", line_numbers)
settings.set("gutter", gutter)
settings.set("scroll_past_end", scroll_past_end)
settings.set("syntax", syntax)
def write(self, s):
if self.output_view:
self.output_view.run_command('astyle_panel_insert', {'text': s})
def show(self):
if self.output_view:
self.window.run_command(
"show_panel", {"panel": "output." + self.name})
def close(self):
if self.output_view:
self.window.run_command(
"hide_panel", {"panel": "output." + self.name})