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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
|
# -*- Mode: Python -*-
# GObject-Introspection - a framework for introspecting GObject libraries
# Copyright (C) 2008-2010 Johan Dahlin
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
#
# AnnotationParser - extract annotations from gtk-doc comments
import re
from . import message
from .odict import odict
# Tags - annotations applied to comment blocks
TAG_VFUNC = 'virtual'
TAG_SINCE = 'since'
TAG_STABILITY = 'stability'
TAG_DEPRECATED = 'deprecated'
TAG_RETURNS = 'returns'
TAG_ATTRIBUTES = 'attributes'
TAG_RENAME_TO = 'rename to'
TAG_TYPE = 'type'
TAG_UNREF_FUNC = 'unref func'
TAG_REF_FUNC = 'ref func'
TAG_SET_VALUE_FUNC = 'set value func'
TAG_GET_VALUE_FUNC = 'get value func'
TAG_TRANSFER = 'transfer'
TAG_VALUE = 'value'
_ALL_TAGS = [TAG_VFUNC,
TAG_SINCE,
TAG_STABILITY,
TAG_DEPRECATED,
TAG_RETURNS,
TAG_ATTRIBUTES,
TAG_RENAME_TO,
TAG_TYPE,
TAG_UNREF_FUNC,
TAG_REF_FUNC,
TAG_SET_VALUE_FUNC,
TAG_GET_VALUE_FUNC,
TAG_TRANSFER,
TAG_VALUE]
# Options - annotations for parameters and return values
OPT_ALLOW_NONE = 'allow-none'
OPT_ARRAY = 'array'
OPT_ATTRIBUTE = 'attribute'
OPT_CLOSURE = 'closure'
OPT_DESTROY = 'destroy'
OPT_ELEMENT_TYPE = 'element-type'
OPT_FOREIGN = 'foreign'
OPT_IN = 'in'
OPT_INOUT = 'inout'
OPT_INOUT_ALT = 'in-out'
OPT_OUT = 'out'
OPT_SCOPE = 'scope'
OPT_TRANSFER = 'transfer'
OPT_TYPE = 'type'
OPT_SKIP = 'skip'
OPT_CONSTRUCTOR = 'constructor'
OPT_METHOD = 'method'
ALL_OPTIONS = [
OPT_ALLOW_NONE,
OPT_ARRAY,
OPT_ATTRIBUTE,
OPT_CLOSURE,
OPT_DESTROY,
OPT_ELEMENT_TYPE,
OPT_FOREIGN,
OPT_IN,
OPT_INOUT,
OPT_INOUT_ALT,
OPT_OUT,
OPT_SCOPE,
OPT_TRANSFER,
OPT_TYPE,
OPT_SKIP,
OPT_CONSTRUCTOR,
OPT_METHOD]
# Array options - array specific annotations
OPT_ARRAY_FIXED_SIZE = 'fixed-size'
OPT_ARRAY_LENGTH = 'length'
OPT_ARRAY_ZERO_TERMINATED = 'zero-terminated'
# Out options
OPT_OUT_CALLER_ALLOCATES = 'caller-allocates'
OPT_OUT_CALLEE_ALLOCATES = 'callee-allocates'
# Scope options
OPT_SCOPE_ASYNC = 'async'
OPT_SCOPE_CALL = 'call'
OPT_SCOPE_NOTIFIED = 'notified'
# Transfer options
OPT_TRANSFER_NONE = 'none'
OPT_TRANSFER_CONTAINER = 'container'
OPT_TRANSFER_FULL = 'full'
OPT_TRANSFER_FLOATING = 'floating'
class DocBlock(object):
def __init__(self, name):
self.name = name
self.options = DocOptions()
self.value = None
self.tags = odict()
self.comment = None
self.params = []
self.position = None
def __cmp__(self, other):
return cmp(self.name, other.name)
def __repr__(self):
return '<DocBlock %r %r>' % (self.name, self.options)
def set_position(self, position):
self.position = position
self.options.position = position
def get(self, name):
return self.tags.get(name)
def to_gtk_doc(self):
options = ''
if self.options:
options += ' '
options += ' '.join('(%s)' % o for o in self.options)
lines = [self.name]
if 'SECTION' not in self.name:
lines[0] += ':'
lines[0] += options
tags = []
for name, tag in self.tags.iteritems():
if name in self.params:
lines.append(tag.to_gtk_doc_param())
else:
tags.append(tag)
lines.append('')
for l in self.comment.split('\n'):
lines.append(l)
if tags:
lines.append('')
for tag in tags:
lines.append(tag.to_gtk_doc_tag())
comment = ''
#comment += '# %d \"%s\"\n' % (
# self.position.line,
# self.position.filename)
comment += '/**\n'
for line in lines:
line = line.rstrip()
if line:
comment += ' * %s\n' % (line, )
else:
comment += ' *\n'
comment += ' */\n'
return comment
def validate(self):
for tag in self.tags.values():
tag.validate()
class DocTag(object):
def __init__(self, block, name):
self.block = block
self.name = name
self.options = DocOptions()
self.comment = None
self.value = ''
self.position = None
def __repr__(self):
return '<DocTag %r %r>' % (self.name, self.options)
def _validate_option(self, name, value, required=False,
n_params=None, choices=None):
if required and value is None:
message.warn('%s annotation needs a value' % (
name, ), self.position)
return
if n_params is not None:
if n_params == 0:
s = 'no value'
elif n_params == 1:
s = 'one value'
else:
s = '%d values' % (n_params, )
if ((n_params > 0 and (value is None or value.length() != n_params)) or
n_params == 0 and value is not None):
if value is None:
length = 0
else:
length = value.length()
message.warn('%s annotation needs %s, not %d' % (
name, s, length), self.position)
return
if choices is not None:
valuestr = value.one()
if valuestr not in choices:
message.warn('invalid %s annotation value: %r' % (
name, valuestr, ), self.position)
return
def set_position(self, position):
self.position = position
self.options.position = position
def _get_gtk_doc_value(self):
def serialize_one(option, value, fmt, fmt2):
if value:
if type(value) != str:
value = ' '.join((serialize_one(k, v, '%s=%s', '%s')
for k, v in value.all().iteritems()))
return fmt % (option, value)
else:
return fmt2 % (option, )
annotations = []
for option, value in self.options.iteritems():
annotations.append(
serialize_one(option, value, '(%s %s)', '(%s)'))
if annotations:
return ' '.join(annotations) + ': '
else:
return self.value
def to_gtk_doc_param(self):
return '@%s: %s%s' % (self.name, self._get_gtk_doc_value(), self.comment)
def to_gtk_doc_tag(self):
return '%s: %s%s' % (self.name.capitalize(),
self._get_gtk_doc_value(),
self.comment or '')
def validate(self):
for option in self.options:
value = self.options[option]
if option == OPT_ALLOW_NONE:
self._validate_option('allow-none', value, n_params=0)
elif option == OPT_ARRAY:
if value is None:
continue
for name, v in value.all().iteritems():
if name in [OPT_ARRAY_ZERO_TERMINATED, OPT_ARRAY_FIXED_SIZE]:
try:
int(v)
except (TypeError, ValueError):
if v is None:
message.warn(
'array option %s needs a value' % (
name, ),
positions=self.position)
else:
message.warn(
'invalid array %s option value %r, '
'must be an integer' % (name, v, ),
positions=self.position)
continue
elif name == OPT_ARRAY_LENGTH:
if v is None:
message.warn(
'array option length needs a value',
positions=self.position)
continue
else:
message.warn(
'invalid array annotation value: %r' % (
name, ), self.position)
elif option == OPT_ATTRIBUTE:
self._validate_option('attribute', value, n_params=2)
elif option == OPT_CLOSURE:
if value is not None and value.length() > 1:
message.warn(
'closure takes at maximium 1 value, %d given' % (
value.length()), self.position)
continue
elif option == OPT_DESTROY:
self._validate_option('destroy', value, n_params=1)
elif option == OPT_ELEMENT_TYPE:
self._validate_option('element-type', value, required=True)
if value is None:
message.warn(
'element-type takes at least one value, none given',
self.position)
continue
if value.length() > 2:
message.warn(
'element-type takes at maximium 2 values, %d given' % (
value.length()), self.position)
continue
elif option == OPT_FOREIGN:
self._validate_option('foreign', value, n_params=0)
elif option == OPT_IN:
self._validate_option('in', value, n_params=0)
elif option in [OPT_INOUT, OPT_INOUT_ALT]:
self._validate_option('inout', value, n_params=0)
elif option == OPT_OUT:
if value is None:
continue
if value.length() > 1:
message.warn(
'out annotation takes at maximium 1 value, %d given' % (
value.length()), self.position)
continue
value_str = value.one()
if value_str not in [OPT_OUT_CALLEE_ALLOCATES,
OPT_OUT_CALLER_ALLOCATES]:
message.warn("out annotation value is invalid: %r" % (
value_str), self.position)
continue
elif option == OPT_SCOPE:
self._validate_option(
'scope', value, required=True,
n_params=1,
choices=[OPT_SCOPE_ASYNC,
OPT_SCOPE_CALL,
OPT_SCOPE_NOTIFIED])
elif option == OPT_SKIP:
self._validate_option('skip', value, n_params=0)
elif option == OPT_TRANSFER:
self._validate_option(
'transfer', value, required=True,
n_params=1,
choices=[OPT_TRANSFER_FULL,
OPT_TRANSFER_CONTAINER,
OPT_TRANSFER_NONE,
OPT_TRANSFER_FLOATING])
elif option == OPT_TYPE:
self._validate_option('type', value, required=True,
n_params=1)
elif option == OPT_CONSTRUCTOR:
self._validate_option('constructor', value, n_params=0)
elif option == OPT_METHOD:
self._validate_option('method', value, n_params=0)
else:
message.warn('invalid annotation option: %s' % (option, ),
self.position)
class DocOptions(object):
def __init__(self):
self.values = []
def __getitem__(self, item):
for key, value in self.values:
if key == item:
return value
raise KeyError
def __nonzero__(self):
return bool(self.values)
def __iter__(self):
return (k for k, v in self.values)
def add(self, name, value):
self.values.append((name, value))
def get(self, item, default=None):
for key, value in self.values:
if key == item:
return value
return default
def getall(self, item):
for key, value in self.values:
if key == item:
yield value
def iteritems(self):
return iter(self.values)
class DocOption(object):
def __init__(self, tag, option):
self.tag = tag
self._array = []
self._dict = {}
# (annotation option1=value1 option2=value2) etc
for p in option.split(' '):
if '=' in p:
name, value = p.split('=', 1)
else:
name = p
value = None
self._dict[name] = value
if value is None:
self._array.append(name)
else:
self._array.append((name, value))
def __repr__(self):
return '<DocOption %r>' % (self._array, )
def length(self):
return len(self._array)
def one(self):
assert len(self._array) == 1
return self._array[0]
def flat(self):
return self._array
def all(self):
return self._dict
class AnnotationParser(object):
PARAM_FIELD_COUNT = 2
COMMENT_BLOCK_RE = re.compile(r'^\s*/\*\*\s')
COMMENT_BLOCK_END_RE = re.compile(r'^\s*\*+/')
COMMENT_STAR_RE = re.compile(r'^\s*\*\s?')
SYMBOL_SECTION_RE = re.compile(r'^\s*(SECTION:\s*\S+)')
SYMBOL_RE = re.compile(r'^\s*([\w:-]*\w)\s*:?\s*(\([a-z ]+\)\s*)*$')
DESCRIPTION_RE = re.compile(r'^\s*Description:')
RETURNS_RE = re.compile(r'^\s*(returns:|return\s+value:)', re.IGNORECASE)
BROKEN_RETURNS_RE = re.compile(r'^\s*(returns\b\s*)', re.IGNORECASE)
SINCE_RE = re.compile(r'^\s*since:', re.IGNORECASE)
DEPRECATED_RE = re.compile(r'^\s*deprecated:', re.IGNORECASE)
STABILITY_RE = re.compile(r'^\s*stability:', re.IGNORECASE)
EMPTY_LINE_RE = re.compile(r'^\s*$')
PARAMETER_NAME_RE = re.compile(r'^\s*@(\S+)\s*:\s*')
VARARGS_RE = re.compile(r'^.*\.\.\.$')
def __init__(self):
self._blocks = {}
def parse(self, comments):
in_comment_block = False
symbol = ''
symbol_options = ''
in_description = False
in_return = False
in_since = False
in_stability = False
in_deprecated = False
in_part = ''
description = ''
return_desc = ''
return_start = ''
return_style = ''
since_desc = ''
deprecated_desc = ''
stability_desc = ''
deprecated_desc = ''
current_param = 0
ignore_broken_returns = False
params = odict()
for comment in comments:
comment, filename, lineno = comment
for line in comment.split('\n'):
line += '\n'
# Check if we are at the start of a comment block
if not in_comment_block:
if self.COMMENT_BLOCK_RE.search(line):
in_comment_block = True
# Reset all the symbol data
symbol = ''
symbol_options = ''
in_description = False
in_return = False
in_since = False
in_stability = False
in_deprecated = False
in_part = ''
description = ''
return_desc = ''
return_start = ''
return_style = ''
since_desc = ''
deprecated_desc = ''
stability_desc = ''
deprecated_desc = ''
current_param = 0
ignore_broken_returns = False
params = odict()
continue
# Check if we are at the end of a comment block
if self.COMMENT_BLOCK_END_RE.search(line):
if not symbol:
# maybe its not even meant to be a gtk-doc comment?
pass
else:
block = DocBlock(symbol)
block.set_position(message.Position(filename, lineno))
block.comment = description.strip()
if symbol_options:
block.options = self.parse_options(block, symbol_options)
for param_name, param_desc in params.iteritems():
tag = DocTag(block, param_name)
tag.set_position(lineno)
block.tags[param_name] = tag
# Add the return value description onto the end of the params.
if return_desc:
tag = DocTag(block, TAG_RETURNS)
tag.value = return_desc.strip()
block.tags[TAG_RETURNS] = tag
if return_style == 'broken':
pass
# gtk-doc handles Section docs here, but we have no need
# for them...
if since_desc:
tag = DocTag(block, TAG_SINCE)
tag.value = since_desc.strip()
block.tags[TAG_SINCE] = tag
if stability_desc:
tag = DocTag(block, TAG_STABILITY)
tag.value = stability_desc.strip()
block.tags[TAG_STABILITY] = tag
if deprecated_desc:
tag = DocTag(block, TAG_DEPRECATED)
tag.value = deprecated_desc.strip()
block.tags[TAG_DEPRECATED] = tag
block.validate()
self._blocks[symbol] = block
in_comment_block = False
continue
# Get rid of ' * ' at start of every line in the comment block.
line = re.sub(self.COMMENT_STAR_RE, '', line)
# But make sure we don't get rid of the newline at the end.
if not line.endswith('\n'):
line += '\n'
# If we haven't found the symbol name yet, look for it.
if not symbol:
symbol_section_match = self.SECTION_RE.search(line)
symbol_match = self.SYMBOL_RE.search(line)
if symbol_section_match:
symbol = symbol_section_match.group(1)
ignore_broken_returns = True
elif symbol_match:
symbol = symbol_match.group(1).strip()
symbol_options = line[symbol_match.end(0):].strip()
continue
return_match = self.RETURNS_RE.search(line)
broken_return_match = self.BROKEN_RETURNS_RE.search(line)
since_match = self.SINCE_RE.search(line)
deprecated_match = self.DEPRECATED_RE.search(line)
stability_match = self.STABILITY_RE.search(line)
if return_match:
if return_style == 'broken':
description += return_start + return_desc
return_start = return_match.group(0)
if return_style == 'sane':
pass
return_style = 'sane'
ignore_broken_returns = True
return_desc = line[return_match.end(0):]
in_part = 'return'
continue
elif not ignore_broken_returns and broken_return_match:
return_start = broken_return_match.group(0)
return_style = 'broken'
return_desc = line[broken_return_match.end(0):]
in_part = 'return'
continue
elif since_match:
since_desc = line[since_match.end(0):]
in_part = 'since'
continue
elif deprecated_match:
deprecated_desc = line[deprecated_match.end(0):]
in_part = 'deprecated'
continue
elif stability_match:
stability_desc = line[stability_match.end(0):]
in_part = 'stability'
continue
if in_part == 'description':
# Get rid of 'Description:'
line = re.sub(self.DESCRIPTION_RE, '', line)
description += line
continue
elif in_part == 'return':
return_desc += line
continue
elif in_part == 'since':
since_desc += line
continue
elif in_part == 'stability':
stability_desc += line
continue
elif in_part == 'deprecated':
deprecated_desc += line
continue
# We must be in the parameters. Check for the empty line below them.
if self.EMPTY_LINE_RE.search(line):
in_part = 'description'
continue
# Look for a parameter name.
match = self.PARAMETER_NAME_RE.search(line)
if match:
param_name = match.group(1)
param_desc = line[match.end(0):]
# Allow varargs variations
if self.VARARGS_RE.search(param_name):
param_name = '...'
if param_name.lower() == 'returns':
return_style = 'sane'
ignore_broken_returns = True
params[param_name] = param_desc
current_param += 1
continue
# We must be in the middle of a parameter description, so add it on
# to the last element in @params.
if current_param:
params[params.keys()[-1]] += line
else:
pass
return self._blocks
@classmethod
def parse_options(cls, tag, value):
# (foo)
# (bar opt1 opt2...)
opened = -1
options = DocOptions()
options.position = tag.position
last = None
for i, c in enumerate(value):
if c == '(' and opened == -1:
opened = i+1
if c == ')' and opened != -1:
segment = value[opened:i]
parts = segment.split(' ', 1)
if len(parts) == 2:
name, option = parts
elif len(parts) == 1:
name = parts[0]
option = None
else:
raise AssertionError
if option is not None:
option = DocOption(tag, option)
options.add(name, option)
last = i + 2
opened = -1
return options
|