forked from jszakmeister/markdown2ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown2ctags.py
executable file
·399 lines (307 loc) · 11.2 KB
/
markdown2ctags.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
#!/usr/bin/env python
# Copyright (C) 2013-2018 John Szakmeister <[email protected]>
# All rights reserved.
#
# This software is licensed as described in the file LICENSE.txt, which
# you should have received as part of this distribution.
from __future__ import absolute_import
from __future__ import print_function
import codecs
import errno
import io
import locale
import sys
import re
__version__ = "0.3.4.dev0"
class ScriptError(Exception):
pass
def detect_encoding(filename):
with open(filename, 'rb') as f:
raw = f.read(4096)
potential_bom = raw[:4]
bom_encodings = [('utf-8-sig', codecs.BOM_UTF8),
('utf-16', codecs.BOM_UTF16_LE),
('utf-16', codecs.BOM_UTF16_BE),
('utf-32', codecs.BOM_UTF32_LE),
('utf-32', codecs.BOM_UTF32_BE)]
for encoding, bom in bom_encodings:
if potential_bom.startswith(bom):
return encoding
# No BOM found, let's try to detect encoding
encoding = None
try:
import chardet
result = chardet.detect(raw)
# If we're not really confident about the encoding, then skip to
# UTF-8 detection.
if result['confidence'] >= 0.9:
encoding = result['encoding']
if encoding == 'ascii':
encoding = 'utf-8'
except ImportError:
pass
if encoding is None:
try:
raw.rsplit(b' ')[0].decode('utf-8')
encoding = 'utf-8'
except UnicodeDecodeError:
pass
return encoding or 'latin1'
def open_autoenc(filename, encoding=None):
if encoding is None:
encoding = detect_encoding(filename)
return io.open(filename, encoding=encoding, newline='')
def ctag_name_escape(str):
str = re.sub('[\t\r\n]+', ' ', str)
str = re.sub(r'^\s*\\\((.)\)', r'(\1)', str)
return str
def ctag_search_escape(str):
str = str.replace('\\', r'\\')
str = str.replace('\t', r'\t')
str = str.replace('\r', r'\r')
str = str.replace('\n', r'\n')
for c in '[]*$.^':
str = str.replace(c, '\\' + c)
return str
class Tag(object):
def __init__(self, tag_name, tag_file, tag_address):
self.tag_name = tag_name
self.tag_file = tag_file
self.tag_address = tag_address
self.fields = []
def add_field(self, type, value=None):
if type == 'kind':
type = None
self.fields.append((type, value or ""))
def _format_fields(self):
formatted_fields = []
for name, value in self.fields:
if name:
s = '%s:%s' % (name, value or "")
else:
s = str(value)
formatted_fields.append(s)
return '\t'.join(formatted_fields)
def render(self):
return '%s\t%s\t%s;"\t%s' % (
self.tag_name, self.tag_file, self.tag_address, self._format_fields())
def __repr__(self):
return "<Tag name:%s file:%s: addr:%s %s>" % (
self.tag_name, self.tag_file, self.tag_address,
self._format_fields().replace('\t', ' '))
def _tuple(self):
return (self.tag_name, self.tag_file, self.tag_address,
self._format_fields())
def __eq__(self, other):
return self._tuple() == other._tuple()
def __ne__(self, other):
return self._tuple() != other._tuple()
def __lt__(self, other):
return self._tuple() < other._tuple()
def __le__(self, other):
return self._tuple() <= other._tuple()
def __gt__(self, other):
return self._tuple() > other._tuple()
def __ge__(self, other):
return self._tuple() >= other._tuple()
@staticmethod
def section(section, sro):
tag_name = ctag_name_escape(section.name)
tag_address = '/^%s$/' % ctag_search_escape(section.line)
t = Tag(tag_name, section.filename, tag_address)
t.add_field('kind', 's')
t.add_field('line', section.line_number)
parents = []
p = section.parent
while p is not None:
parents.append(ctag_name_escape(p.name))
p = p.parent
parents.reverse()
if parents:
t.add_field('section', sro.join(parents))
return t
class Section(object):
def __init__(self, level, name, line, line_number, filename, parent=None):
self.level = level
self.name = name
self.line = line
self.line_number = line_number
self.filename = filename
self.parent = parent
def __repr__(self):
return '<Section %s %d %d>' % (self.name, self.level, self.line_number)
def pop_sections(sections, level):
while sections:
s = sections.pop()
if s and s.level < level:
sections.append(s)
return
atx_heading_re = re.compile(r'^(#+)\s+(.*?)(?:\s+#+)?\s*$')
settext_heading_re = re.compile(r'^[-=]+$')
settext_subject_re = re.compile(r'^[^\s]+.*$')
def find_sections(filename, lines):
sections = []
in_code_block = False
beyond_front_matter = False
in_front_matter = False
previous_sections = []
for i, line in enumerate(lines):
# Some markdown-based tools allow for "front matter" at the beginning
# of the file. The data is demarcated by a leading and trailing triple
# hyphen (---) on its own line. The tools I've looked at, like Jekyll,
# expect this to start on the first line. So here's an attempt to skip
# over the front matter and only tag the remaining part of the file.
if not beyond_front_matter:
if line == "":
continue
elif line == '---':
in_front_matter = not in_front_matter
continue
if not in_front_matter and line:
beyond_front_matter = True
# Skip GitHub Markdown style code blocks.
if line.startswith("```"):
in_code_block = not in_code_block
continue
if in_code_block:
continue
m = atx_heading_re.match(line)
if m:
level = len(m.group(1))
name = m.group(2)
pop_sections(previous_sections, level)
if previous_sections:
parent = previous_sections[-1]
else:
parent = None
line_number = i + 1
s = Section(level, name, line, line_number, filename, parent)
previous_sections.append(s)
sections.append(s)
else:
m = settext_heading_re.match(line)
if i and m:
if not settext_subject_re.match(lines[i - 1]):
continue
name = lines[i-1].strip()
if line[0] == '=':
level = 1
else:
level = 2
pop_sections(previous_sections, level)
if previous_sections:
parent = previous_sections[-1]
else:
parent = None
line_number = i
s = Section(level, name, lines[i-1], line_number,
filename, parent)
previous_sections.append(s)
sections.append(s)
return sections
def sections_to_tags(sections, sro):
tags = []
for section in sections:
tags.append(Tag.section(section, sro))
return tags
def gen_tags_header(output, sort):
if sort == "yes":
sorted_line = b'!_TAG_FILE_SORTED\t1\t//\n'
elif sort == "foldcase":
sorted_line = b'!_TAG_FILE_SORTED\t2\t//\n'
else:
sorted_line = b'!_TAG_FILE_SORTED\t0\t//\n'
output.write(b'!_TAG_FILE_ENCODING\tutf-8\t//\n')
output.write(b'!_TAG_FILE_FORMAT\t2\t//\n')
output.write(sorted_line)
def gen_tags_content(output, sort, tags):
if sort == "yes":
tags = sorted(tags)
elif sort == "foldcase":
tags = sorted(tags, key=lambda x: str(x).lower())
for t in tags:
output.write(t.render().encode('utf-8'))
output.write('\n'.encode('utf-8'))
def main():
from optparse import OptionParser
parser = OptionParser(usage="usage: %prog [options] file(s)",
version=__version__)
parser.add_option(
"-f", "--file", metavar="FILE", dest="tagfile",
default="tags",
help='Write tags into FILE (default: "tags"). Use "-" to write '
'tags to stdout.')
parser.add_option(
"", "--encoding", metavar="ENCODING", dest="encoding",
default=None,
help='Skips auto detection and uses the specified encoding for the '
'input files. Encoding name should be one that Python would '
'recognize.')
parser.add_option(
"", "--sort", metavar="[yes|foldcase|no]", dest="sort",
choices=["yes", "no", "foldcase"],
default="yes",
help='Produce sorted output. Acceptable values are "yes", '
'"no", and "foldcase". Default is "yes".')
parser.add_option(
"", "--sro", metavar="SEPARATOR", dest="sro",
default="|", action="store",
help=u'Use the specified string to scope nested headings. The '
'default is pipe symbol ("|"), but that can be an issue if your '
'headings contain the pipe symbol. It might be more useful to '
'use a such as the UTF-8 chevron ("\u00bb").')
options, args = parser.parse_args()
if sys.version_info[0] == 2:
encoding = sys.stdin.encoding or locale.getpreferredencoding() or 'utf-8'
options.sro = options.sro.decode(encoding)
if options.tagfile == '-':
if sys.version_info[0] == 2:
output = sys.stdout
else:
output = sys.stdout.buffer
else:
output = open(options.tagfile, 'wb')
gen_tags_header(output, options.sort)
all_sections = []
try:
for filename in args:
if sys.version_info[0] == 2:
filename = filename.decode(sys.getfilesystemencoding())
try:
with open_autoenc(filename, encoding=options.encoding) as f:
buf = f.read()
except IOError as e:
if e.errno == errno.EPIPE:
raise
print_warning(e)
continue
lines = buf.splitlines()
del buf
sections = find_sections(filename, lines)
all_sections.extend(sections)
finally:
# We do this to match ctags behavior... even when a file is missing,
# it'll write out the tags it has.
gen_tags_content(output,
options.sort,
sections_to_tags(all_sections, options.sro))
output.flush()
output.close()
def print_warning(e):
print("WARNING: %s" % str(e), file=sys.stderr)
def print_error(e):
print("ERROR: %s" % str(e), file=sys.stderr)
def cli_main():
try:
main()
except IOError as e:
import errno
if e.errno == errno.EPIPE:
# Exit saying we got SIGPIPE.
sys.exit(141)
raise
except ScriptError as e:
print("ERROR: %s" % str(e), file=sys.stderr)
sys.exit(1)
if __name__ == '__main__':
cli_main()