blob: 68a14361fd2e66d72725449ae6d47908253a5c67 [file] [log] [blame]
Larry Hastings31826802013-10-19 00:09:25 -07001#!/usr/bin/env python3
2#
3# Argument Clinic
4# Copyright 2012-2013 by Larry Hastings.
5# Licensed to the PSF under a contributor agreement.
6#
7
8import abc
9import ast
10import atexit
Larry Hastings31826802013-10-19 00:09:25 -070011import collections
12import contextlib
Larry Hastings7726ac92014-01-31 22:03:12 -080013import copy
14import cpp
Larry Hastings31826802013-10-19 00:09:25 -070015import functools
16import hashlib
17import inspect
18import io
19import itertools
20import os
Larry Hastingsbebf7352014-01-17 17:47:17 -080021import pprint
Larry Hastings31826802013-10-19 00:09:25 -070022import re
23import shlex
Larry Hastings581ee362014-01-28 05:00:08 -080024import string
Larry Hastings31826802013-10-19 00:09:25 -070025import sys
26import tempfile
27import textwrap
Georg Brandlaabebde2014-01-16 06:53:54 +010028import traceback
Larry Hastingsbebf7352014-01-17 17:47:17 -080029import uuid
Larry Hastings31826802013-10-19 00:09:25 -070030
Larry Hastings31826802013-10-19 00:09:25 -070031# TODO:
Larry Hastings31826802013-10-19 00:09:25 -070032#
33# soon:
34#
35# * allow mixing any two of {positional-only, positional-or-keyword,
36# keyword-only}
37# * dict constructor uses positional-only and keyword-only
38# * max and min use positional only with an optional group
39# and keyword-only
40#
Larry Hastings31826802013-10-19 00:09:25 -070041
Larry Hastingsebdcb502013-11-23 14:54:00 -080042version = '1'
43
Larry Hastings31826802013-10-19 00:09:25 -070044_empty = inspect._empty
45_void = inspect._void
46
Larry Hastings4a55fc52014-01-12 11:09:57 -080047NoneType = type(None)
Larry Hastings31826802013-10-19 00:09:25 -070048
49class Unspecified:
50 def __repr__(self):
51 return '<Unspecified>'
52
53unspecified = Unspecified()
54
55
56class Null:
57 def __repr__(self):
58 return '<Null>'
59
60NULL = Null()
61
62
Larry Hastings2a727912014-01-16 11:32:01 -080063class Unknown:
64 def __repr__(self):
65 return '<Unknown>'
66
67unknown = Unknown()
68
69
Larry Hastings31826802013-10-19 00:09:25 -070070def _text_accumulator():
71 text = []
72 def output():
73 s = ''.join(text)
74 text.clear()
75 return s
76 return text, text.append, output
77
78
79def text_accumulator():
80 """
81 Creates a simple text accumulator / joiner.
82
83 Returns a pair of callables:
84 append, output
85 "append" appends a string to the accumulator.
86 "output" returns the contents of the accumulator
87 joined together (''.join(accumulator)) and
88 empties the accumulator.
89 """
90 text, append, output = _text_accumulator()
91 return append, output
92
93
Larry Hastingsbebf7352014-01-17 17:47:17 -080094def warn_or_fail(fail=False, *args, filename=None, line_number=None):
Larry Hastings31826802013-10-19 00:09:25 -070095 joined = " ".join([str(a) for a in args])
96 add, output = text_accumulator()
Larry Hastingsbebf7352014-01-17 17:47:17 -080097 if fail:
98 add("Error")
99 else:
100 add("Warning")
Larry Hastings31826802013-10-19 00:09:25 -0700101 if clinic:
102 if filename is None:
103 filename = clinic.filename
Larry Hastings581ee362014-01-28 05:00:08 -0800104 if getattr(clinic, 'block_parser', None) and (line_number is None):
Larry Hastings31826802013-10-19 00:09:25 -0700105 line_number = clinic.block_parser.line_number
106 if filename is not None:
107 add(' in file "' + filename + '"')
108 if line_number is not None:
109 add(" on line " + str(line_number))
110 add(':\n')
111 add(joined)
112 print(output())
Larry Hastingsbebf7352014-01-17 17:47:17 -0800113 if fail:
114 sys.exit(-1)
Larry Hastings31826802013-10-19 00:09:25 -0700115
116
Larry Hastingsbebf7352014-01-17 17:47:17 -0800117def warn(*args, filename=None, line_number=None):
118 return warn_or_fail(False, *args, filename=filename, line_number=line_number)
119
120def fail(*args, filename=None, line_number=None):
121 return warn_or_fail(True, *args, filename=filename, line_number=line_number)
122
Larry Hastings31826802013-10-19 00:09:25 -0700123
124def quoted_for_c_string(s):
125 for old, new in (
Zachary Ware9d7849f2014-01-25 03:26:20 -0600126 ('\\', '\\\\'), # must be first!
Larry Hastings31826802013-10-19 00:09:25 -0700127 ('"', '\\"'),
128 ("'", "\\'"),
129 ):
130 s = s.replace(old, new)
131 return s
132
Larry Hastings4903e002014-01-18 00:26:16 -0800133def c_repr(s):
134 return '"' + s + '"'
135
136
Larry Hastingsdfcd4672013-10-27 02:49:39 -0700137is_legal_c_identifier = re.compile('^[A-Za-z_][A-Za-z0-9_]*$').match
138
139def is_legal_py_identifier(s):
140 return all(is_legal_c_identifier(field) for field in s.split('.'))
141
Larry Hastingsbebf7352014-01-17 17:47:17 -0800142# identifiers that are okay in Python but aren't a good idea in C.
143# so if they're used Argument Clinic will add "_value" to the end
144# of the name in C.
Larry Hastings31826802013-10-19 00:09:25 -0700145c_keywords = set("""
Larry Hastings5c661892014-01-24 06:17:25 -0800146asm auto break case char const continue default do double
147else enum extern float for goto if inline int long
148register return short signed sizeof static struct switch
Larry Hastingsbebf7352014-01-17 17:47:17 -0800149typedef typeof union unsigned void volatile while
Larry Hastings31826802013-10-19 00:09:25 -0700150""".strip().split())
151
Larry Hastingsdfcd4672013-10-27 02:49:39 -0700152def ensure_legal_c_identifier(s):
153 # for now, just complain if what we're given isn't legal
154 if not is_legal_c_identifier(s):
155 fail("Illegal C identifier: {}".format(s))
156 # but if we picked a C keyword, pick something else
Larry Hastings31826802013-10-19 00:09:25 -0700157 if s in c_keywords:
158 return s + "_value"
159 return s
160
161def rstrip_lines(s):
162 text, add, output = _text_accumulator()
163 for line in s.split('\n'):
164 add(line.rstrip())
165 add('\n')
166 text.pop()
167 return output()
168
169def linear_format(s, **kwargs):
170 """
171 Perform str.format-like substitution, except:
172 * The strings substituted must be on lines by
173 themselves. (This line is the "source line".)
174 * If the substitution text is empty, the source line
175 is removed in the output.
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800176 * If the field is not recognized, the original line
177 is passed unmodified through to the output.
Larry Hastings31826802013-10-19 00:09:25 -0700178 * If the substitution text is not empty:
179 * Each line of the substituted text is indented
180 by the indent of the source line.
181 * A newline will be added to the end.
182 """
183
184 add, output = text_accumulator()
185 for line in s.split('\n'):
186 indent, curly, trailing = line.partition('{')
187 if not curly:
188 add(line)
189 add('\n')
190 continue
191
192 name, curl, trailing = trailing.partition('}')
193 if not curly or name not in kwargs:
194 add(line)
195 add('\n')
196 continue
197
198 if trailing:
199 fail("Text found after {" + name + "} block marker! It must be on a line by itself.")
200 if indent.strip():
201 fail("Non-whitespace characters found before {" + name + "} block marker! It must be on a line by itself.")
202
203 value = kwargs[name]
204 if not value:
205 continue
206
207 value = textwrap.indent(rstrip_lines(value), indent)
208 add(value)
209 add('\n')
210
211 return output()[:-1]
212
Larry Hastingsbebf7352014-01-17 17:47:17 -0800213def indent_all_lines(s, prefix):
214 """
215 Returns 's', with 'prefix' prepended to all lines.
216
217 If the last line is empty, prefix is not prepended
218 to it. (If s is blank, returns s unchanged.)
219
220 (textwrap.indent only adds to non-blank lines.)
221 """
222 split = s.split('\n')
223 last = split.pop()
224 final = []
225 for line in split:
226 final.append(prefix)
227 final.append(line)
228 final.append('\n')
229 if last:
230 final.append(prefix)
231 final.append(last)
232 return ''.join(final)
233
234def suffix_all_lines(s, suffix):
235 """
236 Returns 's', with 'suffix' appended to all lines.
237
238 If the last line is empty, suffix is not appended
239 to it. (If s is blank, returns s unchanged.)
240 """
241 split = s.split('\n')
242 last = split.pop()
243 final = []
244 for line in split:
245 final.append(line)
246 final.append(suffix)
247 final.append('\n')
248 if last:
249 final.append(last)
250 final.append(suffix)
251 return ''.join(final)
252
253
Larry Hastingsebdcb502013-11-23 14:54:00 -0800254def version_splitter(s):
255 """Splits a version string into a tuple of integers.
256
257 The following ASCII characters are allowed, and employ
258 the following conversions:
259 a -> -3
260 b -> -2
261 c -> -1
262 (This permits Python-style version strings such as "1.4b3".)
263 """
264 version = []
265 accumulator = []
266 def flush():
267 if not accumulator:
Larry Hastings2a727912014-01-16 11:32:01 -0800268 raise ValueError('Unsupported version string: ' + repr(s))
Larry Hastingsebdcb502013-11-23 14:54:00 -0800269 version.append(int(''.join(accumulator)))
270 accumulator.clear()
271
272 for c in s:
273 if c.isdigit():
274 accumulator.append(c)
275 elif c == '.':
276 flush()
277 elif c in 'abc':
278 flush()
279 version.append('abc'.index(c) - 3)
280 else:
281 raise ValueError('Illegal character ' + repr(c) + ' in version string ' + repr(s))
282 flush()
283 return tuple(version)
284
285def version_comparitor(version1, version2):
286 iterator = itertools.zip_longest(version_splitter(version1), version_splitter(version2), fillvalue=0)
287 for i, (a, b) in enumerate(iterator):
288 if a < b:
289 return -1
290 if a > b:
291 return 1
292 return 0
293
Larry Hastings31826802013-10-19 00:09:25 -0700294
295class CRenderData:
296 def __init__(self):
297
298 # The C statements to declare variables.
299 # Should be full lines with \n eol characters.
300 self.declarations = []
301
302 # The C statements required to initialize the variables before the parse call.
303 # Should be full lines with \n eol characters.
304 self.initializers = []
305
Larry Hastingsc2047262014-01-25 20:43:29 -0800306 # The C statements needed to dynamically modify the values
307 # parsed by the parse call, before calling the impl.
308 self.modifications = []
309
Larry Hastings31826802013-10-19 00:09:25 -0700310 # The entries for the "keywords" array for PyArg_ParseTuple.
311 # Should be individual strings representing the names.
312 self.keywords = []
313
314 # The "format units" for PyArg_ParseTuple.
315 # Should be individual strings that will get
316 self.format_units = []
317
318 # The varargs arguments for PyArg_ParseTuple.
319 self.parse_arguments = []
320
321 # The parameter declarations for the impl function.
322 self.impl_parameters = []
323
324 # The arguments to the impl function at the time it's called.
325 self.impl_arguments = []
326
327 # For return converters: the name of the variable that
328 # should receive the value returned by the impl.
329 self.return_value = "return_value"
330
331 # For return converters: the code to convert the return
332 # value from the parse function. This is also where
333 # you should check the _return_value for errors, and
334 # "goto exit" if there are any.
335 self.return_conversion = []
336
337 # The C statements required to clean up after the impl call.
338 self.cleanup = []
339
340
Larry Hastings581ee362014-01-28 05:00:08 -0800341class FormatCounterFormatter(string.Formatter):
342 """
343 This counts how many instances of each formatter
344 "replacement string" appear in the format string.
345
346 e.g. after evaluating "string {a}, {b}, {c}, {a}"
347 the counts dict would now look like
348 {'a': 2, 'b': 1, 'c': 1}
349 """
350 def __init__(self):
351 self.counts = collections.Counter()
352
353 def get_value(self, key, args, kwargs):
354 self.counts[key] += 1
355 return ''
356
Larry Hastings31826802013-10-19 00:09:25 -0700357class Language(metaclass=abc.ABCMeta):
358
359 start_line = ""
360 body_prefix = ""
361 stop_line = ""
362 checksum_line = ""
363
Larry Hastings7726ac92014-01-31 22:03:12 -0800364 def __init__(self, filename):
365 pass
366
Larry Hastings31826802013-10-19 00:09:25 -0700367 @abc.abstractmethod
Larry Hastingsbebf7352014-01-17 17:47:17 -0800368 def render(self, clinic, signatures):
Larry Hastings31826802013-10-19 00:09:25 -0700369 pass
370
Larry Hastings7726ac92014-01-31 22:03:12 -0800371 def parse_line(self, line):
372 pass
373
Larry Hastings31826802013-10-19 00:09:25 -0700374 def validate(self):
Larry Hastings581ee362014-01-28 05:00:08 -0800375 def assert_only_one(attr, *additional_fields):
376 """
377 Ensures that the string found at getattr(self, attr)
378 contains exactly one formatter replacement string for
379 each valid field. The list of valid fields is
380 ['dsl_name'] extended by additional_fields.
381
382 e.g.
383 self.fmt = "{dsl_name} {a} {b}"
384
385 # this passes
386 self.assert_only_one('fmt', 'a', 'b')
387
388 # this fails, the format string has a {b} in it
389 self.assert_only_one('fmt', 'a')
390
391 # this fails, the format string doesn't have a {c} in it
392 self.assert_only_one('fmt', 'a', 'b', 'c')
393
394 # this fails, the format string has two {a}s in it,
395 # it must contain exactly one
396 self.fmt2 = '{dsl_name} {a} {a}'
397 self.assert_only_one('fmt2', 'a')
398
399 """
400 fields = ['dsl_name']
401 fields.extend(additional_fields)
402 line = getattr(self, attr)
403 fcf = FormatCounterFormatter()
404 fcf.format(line)
405 def local_fail(should_be_there_but_isnt):
406 if should_be_there_but_isnt:
407 fail("{} {} must contain {{{}}} exactly once!".format(
408 self.__class__.__name__, attr, name))
409 else:
410 fail("{} {} must not contain {{{}}}!".format(
411 self.__class__.__name__, attr, name))
412
413 for name, count in fcf.counts.items():
414 if name in fields:
415 if count > 1:
416 local_fail(True)
417 else:
418 local_fail(False)
419 for name in fields:
420 if fcf.counts.get(name) != 1:
421 local_fail(True)
422
Larry Hastings31826802013-10-19 00:09:25 -0700423 assert_only_one('start_line')
424 assert_only_one('stop_line')
Larry Hastings31826802013-10-19 00:09:25 -0700425
Larry Hastings581ee362014-01-28 05:00:08 -0800426 field = "arguments" if "{arguments}" in self.checksum_line else "checksum"
427 assert_only_one('checksum_line', field)
Larry Hastings31826802013-10-19 00:09:25 -0700428
429
430
431class PythonLanguage(Language):
432
433 language = 'Python'
Larry Hastings61272b72014-01-07 12:41:53 -0800434 start_line = "#/*[{dsl_name} input]"
Larry Hastings31826802013-10-19 00:09:25 -0700435 body_prefix = "#"
Larry Hastings61272b72014-01-07 12:41:53 -0800436 stop_line = "#[{dsl_name} start generated code]*/"
Larry Hastings581ee362014-01-28 05:00:08 -0800437 checksum_line = "#/*[{dsl_name} end generated code: {arguments}]*/"
Larry Hastings31826802013-10-19 00:09:25 -0700438
439
440def permute_left_option_groups(l):
441 """
442 Given [1, 2, 3], should yield:
443 ()
444 (3,)
445 (2, 3)
446 (1, 2, 3)
447 """
448 yield tuple()
449 accumulator = []
450 for group in reversed(l):
451 accumulator = list(group) + accumulator
452 yield tuple(accumulator)
453
454
455def permute_right_option_groups(l):
456 """
457 Given [1, 2, 3], should yield:
458 ()
459 (1,)
460 (1, 2)
461 (1, 2, 3)
462 """
463 yield tuple()
464 accumulator = []
465 for group in l:
466 accumulator.extend(group)
467 yield tuple(accumulator)
468
469
470def permute_optional_groups(left, required, right):
471 """
472 Generator function that computes the set of acceptable
473 argument lists for the provided iterables of
474 argument groups. (Actually it generates a tuple of tuples.)
475
476 Algorithm: prefer left options over right options.
477
478 If required is empty, left must also be empty.
479 """
480 required = tuple(required)
481 result = []
482
483 if not required:
484 assert not left
485
486 accumulator = []
487 counts = set()
488 for r in permute_right_option_groups(right):
489 for l in permute_left_option_groups(left):
490 t = l + required + r
491 if len(t) in counts:
492 continue
493 counts.add(len(t))
494 accumulator.append(t)
495
496 accumulator.sort(key=len)
497 return tuple(accumulator)
498
499
Larry Hastings7726ac92014-01-31 22:03:12 -0800500def strip_leading_and_trailing_blank_lines(s):
501 lines = s.rstrip().split('\n')
502 while lines:
503 line = lines[0]
504 if line.strip():
505 break
506 del lines[0]
507 return '\n'.join(lines)
508
509@functools.lru_cache()
510def normalize_snippet(s, *, indent=0):
511 """
512 Reformats s:
513 * removes leading and trailing blank lines
514 * ensures that it does not end with a newline
515 * dedents so the first nonwhite character on any line is at column "indent"
516 """
517 s = strip_leading_and_trailing_blank_lines(s)
518 s = textwrap.dedent(s)
519 if indent:
520 s = textwrap.indent(s, ' ' * indent)
521 return s
522
523
Larry Hastings31826802013-10-19 00:09:25 -0700524class CLanguage(Language):
525
Larry Hastings61272b72014-01-07 12:41:53 -0800526 body_prefix = "#"
Larry Hastings31826802013-10-19 00:09:25 -0700527 language = 'C'
Larry Hastings61272b72014-01-07 12:41:53 -0800528 start_line = "/*[{dsl_name} input]"
Larry Hastings31826802013-10-19 00:09:25 -0700529 body_prefix = ""
Larry Hastings61272b72014-01-07 12:41:53 -0800530 stop_line = "[{dsl_name} start generated code]*/"
Larry Hastings581ee362014-01-28 05:00:08 -0800531 checksum_line = "/*[{dsl_name} end generated code: {arguments}]*/"
Larry Hastings31826802013-10-19 00:09:25 -0700532
Larry Hastings7726ac92014-01-31 22:03:12 -0800533 def __init__(self, filename):
534 super().__init__(filename)
535 self.cpp = cpp.Monitor(filename)
536 self.cpp.fail = fail
537
538 def parse_line(self, line):
539 self.cpp.writeline(line)
540
Larry Hastingsbebf7352014-01-17 17:47:17 -0800541 def render(self, clinic, signatures):
Larry Hastings31826802013-10-19 00:09:25 -0700542 function = None
543 for o in signatures:
544 if isinstance(o, Function):
545 if function:
546 fail("You may specify at most one function per block.\nFound a block containing at least two:\n\t" + repr(function) + " and " + repr(o))
547 function = o
Larry Hastingsbebf7352014-01-17 17:47:17 -0800548 return self.render_function(clinic, function)
Larry Hastings31826802013-10-19 00:09:25 -0700549
550 def docstring_for_c_string(self, f):
551 text, add, output = _text_accumulator()
552 # turn docstring into a properly quoted C string
553 for line in f.docstring.split('\n'):
554 add('"')
555 add(quoted_for_c_string(line))
556 add('\\n"\n')
557
558 text.pop()
559 add('"')
560 return ''.join(text)
561
Larry Hastingsbebf7352014-01-17 17:47:17 -0800562 def output_templates(self, f):
563 parameters = list(f.parameters.values())
Larry Hastings5c661892014-01-24 06:17:25 -0800564 assert parameters
565 assert isinstance(parameters[0].converter, self_converter)
566 del parameters[0]
Larry Hastingsbebf7352014-01-17 17:47:17 -0800567 converters = [p.converter for p in parameters]
568
569 has_option_groups = parameters and (parameters[0].group or parameters[-1].group)
570 default_return_converter = (not f.return_converter or
571 f.return_converter.type == 'PyObject *')
572
573 positional = parameters and (parameters[-1].kind == inspect.Parameter.POSITIONAL_ONLY)
574 all_boring_objects = False # yes, this will be false if there are 0 parameters, it's fine
575 first_optional = len(parameters)
576 for i, p in enumerate(parameters):
577 c = p.converter
578 if type(c) != object_converter:
579 break
580 if c.format_unit != 'O':
581 break
582 if p.default is not unspecified:
583 first_optional = min(first_optional, i)
584 else:
585 all_boring_objects = True
586
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800587 new_or_init = f.kind in (METHOD_NEW, METHOD_INIT)
588
Larry Hastingsbebf7352014-01-17 17:47:17 -0800589 meth_o = (len(parameters) == 1 and
590 parameters[0].kind == inspect.Parameter.POSITIONAL_ONLY and
591 not converters[0].is_optional() and
592 isinstance(converters[0], object_converter) and
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800593 converters[0].format_unit == 'O' and
594 not new_or_init)
Larry Hastingsbebf7352014-01-17 17:47:17 -0800595
Larry Hastings7726ac92014-01-31 22:03:12 -0800596 # we have to set these things before we're done:
Larry Hastingsbebf7352014-01-17 17:47:17 -0800597 #
598 # docstring_prototype
599 # docstring_definition
600 # impl_prototype
601 # methoddef_define
602 # parser_prototype
603 # parser_definition
604 # impl_definition
Larry Hastings7726ac92014-01-31 22:03:12 -0800605 # cpp_if
606 # cpp_endif
607 # methoddef_ifndef
Larry Hastingsbebf7352014-01-17 17:47:17 -0800608
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800609 return_value_declaration = "PyObject *return_value = NULL;"
Larry Hastings31826802013-10-19 00:09:25 -0700610
Larry Hastings7726ac92014-01-31 22:03:12 -0800611 methoddef_define = normalize_snippet("""
612 #define {methoddef_name} \\
613 {{"{name}", (PyCFunction){c_basename}, {methoddef_flags}, {c_basename}__doc__}},
614 """)
Larry Hastings5c661892014-01-24 06:17:25 -0800615 if new_or_init and not f.docstring:
616 docstring_prototype = docstring_definition = ''
617 else:
Larry Hastings7726ac92014-01-31 22:03:12 -0800618 docstring_prototype = normalize_snippet("""
619 PyDoc_VAR({c_basename}__doc__);
620 """)
621 docstring_definition = normalize_snippet("""
622 PyDoc_STRVAR({c_basename}__doc__,
623 {docstring});
624 """)
625 impl_definition = normalize_snippet("""
626 static {impl_return_type}
627 {c_basename}_impl({impl_parameters})
628 """)
Larry Hastingsbebf7352014-01-17 17:47:17 -0800629 impl_prototype = parser_prototype = parser_definition = None
630
Larry Hastings7726ac92014-01-31 22:03:12 -0800631 parser_prototype_keyword = normalize_snippet("""
632 static PyObject *
633 {c_basename}({self_type}{self_name}, PyObject *args, PyObject *kwargs)
634 """)
635
636 parser_prototype_varargs = normalize_snippet("""
637 static PyObject *
638 {c_basename}({self_type}{self_name}, PyObject *args)
639 """)
640
641 # parser_body_fields remembers the fields passed in to the
642 # previous call to parser_body. this is used for an awful hack.
Larry Hastingsc2047262014-01-25 20:43:29 -0800643 parser_body_fields = ()
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800644 def parser_body(prototype, *fields):
645 nonlocal parser_body_fields
646 add, output = text_accumulator()
647 add(prototype)
648 parser_body_fields = fields
Larry Hastings7726ac92014-01-31 22:03:12 -0800649
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800650 fields = list(fields)
Larry Hastings7726ac92014-01-31 22:03:12 -0800651 fields.insert(0, normalize_snippet("""
652 {{
653 {return_value_declaration}
654 {declarations}
655 {initializers}
656 """) + "\n")
657 # just imagine--your code is here in the middle
658 fields.append(normalize_snippet("""
659 {modifications}
660 {return_value} = {c_basename}_impl({impl_arguments});
661 {return_conversion}
662
663 {exit_label}
664 {cleanup}
665 return return_value;
666 }}
667 """))
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800668 for field in fields:
669 add('\n')
Larry Hastings7726ac92014-01-31 22:03:12 -0800670 add(field)
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800671 return output()
Larry Hastingsbebf7352014-01-17 17:47:17 -0800672
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800673 def insert_keywords(s):
674 return linear_format(s, declarations="static char *_keywords[] = {{{keywords}, NULL}};\n{declarations}")
Larry Hastingsbebf7352014-01-17 17:47:17 -0800675
676 if not parameters:
677 # no parameters, METH_NOARGS
678
679 flags = "METH_NOARGS"
680
Larry Hastings7726ac92014-01-31 22:03:12 -0800681 parser_prototype = normalize_snippet("""
682 static PyObject *
683 {c_basename}({self_type}{self_name}, PyObject *Py_UNUSED(ignored))
684 """)
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800685 parser_definition = parser_prototype
Larry Hastingsbebf7352014-01-17 17:47:17 -0800686
687 if default_return_converter:
Larry Hastings7726ac92014-01-31 22:03:12 -0800688 parser_definition = parser_prototype + '\n' + normalize_snippet("""
689 {{
690 return {c_basename}_impl({impl_arguments});
691 }}
692 """)
Larry Hastingsbebf7352014-01-17 17:47:17 -0800693 else:
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800694 parser_definition = parser_body(parser_prototype)
Larry Hastings31826802013-10-19 00:09:25 -0700695
Larry Hastingsbebf7352014-01-17 17:47:17 -0800696 elif meth_o:
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800697 flags = "METH_O"
Larry Hastings7726ac92014-01-31 22:03:12 -0800698
699 meth_o_prototype = normalize_snippet("""
700 static PyObject *
701 {c_basename}({impl_parameters})
702 """)
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800703
Larry Hastingsbebf7352014-01-17 17:47:17 -0800704 if default_return_converter:
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800705 # maps perfectly to METH_O, doesn't need a return converter.
706 # so we skip making a parse function
707 # and call directly into the impl function.
Larry Hastingsbebf7352014-01-17 17:47:17 -0800708 impl_prototype = parser_prototype = parser_definition = ''
Larry Hastings7726ac92014-01-31 22:03:12 -0800709 impl_definition = meth_o_prototype
Larry Hastingsbebf7352014-01-17 17:47:17 -0800710 else:
Larry Hastings7726ac92014-01-31 22:03:12 -0800711 # SLIGHT HACK
712 # use impl_parameters for the parser here!
713 parser_prototype = meth_o_prototype
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800714 parser_definition = parser_body(parser_prototype)
Larry Hastings31826802013-10-19 00:09:25 -0700715
Larry Hastingsbebf7352014-01-17 17:47:17 -0800716 elif has_option_groups:
717 # positional parameters with option groups
718 # (we have to generate lots of PyArg_ParseTuple calls
719 # in a big switch statement)
Larry Hastings31826802013-10-19 00:09:25 -0700720
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800721 flags = "METH_VARARGS"
Larry Hastings7726ac92014-01-31 22:03:12 -0800722 parser_prototype = parser_prototype_varargs
Larry Hastings31826802013-10-19 00:09:25 -0700723
Larry Hastings7726ac92014-01-31 22:03:12 -0800724 parser_definition = parser_body(parser_prototype, ' {option_group_parsing}')
Larry Hastings31826802013-10-19 00:09:25 -0700725
Larry Hastingsbebf7352014-01-17 17:47:17 -0800726 elif positional and all_boring_objects:
727 # positional-only, but no option groups,
728 # and nothing but normal objects:
729 # PyArg_UnpackTuple!
Larry Hastings31826802013-10-19 00:09:25 -0700730
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800731 flags = "METH_VARARGS"
Larry Hastings7726ac92014-01-31 22:03:12 -0800732 parser_prototype = parser_prototype_varargs
Larry Hastings31826802013-10-19 00:09:25 -0700733
Larry Hastings7726ac92014-01-31 22:03:12 -0800734 parser_definition = parser_body(parser_prototype, normalize_snippet("""
735 if (!PyArg_UnpackTuple(args, "{name}",
736 {unpack_min}, {unpack_max},
737 {parse_arguments}))
738 goto exit;
739 """, indent=4))
Larry Hastingsbebf7352014-01-17 17:47:17 -0800740
741 elif positional:
742 # positional-only, but no option groups
743 # we only need one call to PyArg_ParseTuple
744
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800745 flags = "METH_VARARGS"
Larry Hastings7726ac92014-01-31 22:03:12 -0800746 parser_prototype = parser_prototype_varargs
Larry Hastingsbebf7352014-01-17 17:47:17 -0800747
Larry Hastings7726ac92014-01-31 22:03:12 -0800748 parser_definition = parser_body(parser_prototype, normalize_snippet("""
749 if (!PyArg_ParseTuple(args,
750 "{format_units}:{name}",
751 {parse_arguments}))
752 goto exit;
753 """, indent=4))
Larry Hastingsbebf7352014-01-17 17:47:17 -0800754
755 else:
756 # positional-or-keyword arguments
757 flags = "METH_VARARGS|METH_KEYWORDS"
758
Larry Hastings7726ac92014-01-31 22:03:12 -0800759 parser_prototype = parser_prototype_keyword
Larry Hastingsbebf7352014-01-17 17:47:17 -0800760
Larry Hastings7726ac92014-01-31 22:03:12 -0800761 body = normalize_snippet("""
762 if (!PyArg_ParseTupleAndKeywords(args, kwargs,
763 "{format_units}:{name}", _keywords,
764 {parse_arguments}))
765 goto exit;
766 """, indent=4)
767 parser_definition = parser_body(parser_prototype, normalize_snippet("""
768 if (!PyArg_ParseTupleAndKeywords(args, kwargs,
769 "{format_units}:{name}", _keywords,
770 {parse_arguments}))
771 goto exit;
772 """, indent=4))
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800773 parser_definition = insert_keywords(parser_definition)
Larry Hastings31826802013-10-19 00:09:25 -0700774
Larry Hastings31826802013-10-19 00:09:25 -0700775
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800776 if new_or_init:
777 methoddef_define = ''
778
779 if f.kind == METHOD_NEW:
Larry Hastings7726ac92014-01-31 22:03:12 -0800780 parser_prototype = parser_prototype_keyword
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800781 else:
782 return_value_declaration = "int return_value = -1;"
Larry Hastings7726ac92014-01-31 22:03:12 -0800783 parser_prototype = normalize_snippet("""
784 static int
785 {c_basename}({self_type}{self_name}, PyObject *args, PyObject *kwargs)
786 """)
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800787
788 fields = list(parser_body_fields)
789 parses_positional = 'METH_NOARGS' not in flags
790 parses_keywords = 'METH_KEYWORDS' in flags
791 if parses_keywords:
792 assert parses_positional
793
794 if not parses_keywords:
Larry Hastings7726ac92014-01-31 22:03:12 -0800795 fields.insert(0, normalize_snippet("""
796 if ({self_type_check}!_PyArg_NoKeywords("{name}", kwargs))
797 goto exit;
798 """, indent=4))
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800799 if not parses_positional:
Larry Hastings7726ac92014-01-31 22:03:12 -0800800 fields.insert(0, normalize_snippet("""
801 if ({self_type_check}!_PyArg_NoPositional("{name}", args))
802 goto exit;
803 """, indent=4))
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800804
805 parser_definition = parser_body(parser_prototype, *fields)
806 if parses_keywords:
807 parser_definition = insert_keywords(parser_definition)
808
Larry Hastings31826802013-10-19 00:09:25 -0700809
Larry Hastingsbebf7352014-01-17 17:47:17 -0800810 if f.methoddef_flags:
Larry Hastingsbebf7352014-01-17 17:47:17 -0800811 flags += '|' + f.methoddef_flags
Larry Hastings31826802013-10-19 00:09:25 -0700812
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800813 methoddef_define = methoddef_define.replace('{methoddef_flags}', flags)
Larry Hastings31826802013-10-19 00:09:25 -0700814
Larry Hastings7726ac92014-01-31 22:03:12 -0800815 methoddef_ifndef = ''
816 conditional = self.cpp.condition()
817 if not conditional:
818 cpp_if = cpp_endif = ''
819 else:
820 cpp_if = "#if " + conditional
821 cpp_endif = "#endif /* " + conditional + " */"
822
823 if methoddef_define:
824 methoddef_ifndef = normalize_snippet("""
825 #ifndef {methoddef_name}
826 #define {methoddef_name}
827 #endif /* !defined({methoddef_name}) */
828 """)
829
830
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800831 # add ';' to the end of parser_prototype and impl_prototype
832 # (they mustn't be None, but they could be an empty string.)
Larry Hastingsbebf7352014-01-17 17:47:17 -0800833 assert parser_prototype is not None
Larry Hastingsbebf7352014-01-17 17:47:17 -0800834 if parser_prototype:
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800835 assert not parser_prototype.endswith(';')
Larry Hastingsbebf7352014-01-17 17:47:17 -0800836 parser_prototype += ';'
Larry Hastings31826802013-10-19 00:09:25 -0700837
Larry Hastingsbebf7352014-01-17 17:47:17 -0800838 if impl_prototype is None:
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800839 impl_prototype = impl_definition
840 if impl_prototype:
841 impl_prototype += ";"
Larry Hastings31826802013-10-19 00:09:25 -0700842
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800843 parser_definition = parser_definition.replace("{return_value_declaration}", return_value_declaration)
Larry Hastingsbebf7352014-01-17 17:47:17 -0800844
845 d = {
846 "docstring_prototype" : docstring_prototype,
847 "docstring_definition" : docstring_definition,
848 "impl_prototype" : impl_prototype,
849 "methoddef_define" : methoddef_define,
850 "parser_prototype" : parser_prototype,
851 "parser_definition" : parser_definition,
852 "impl_definition" : impl_definition,
Larry Hastings7726ac92014-01-31 22:03:12 -0800853 "cpp_if" : cpp_if,
854 "cpp_endif" : cpp_endif,
855 "methoddef_ifndef" : methoddef_ifndef,
Larry Hastingsbebf7352014-01-17 17:47:17 -0800856 }
857
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800858 # make sure we didn't forget to assign something,
859 # and wrap each non-empty value in \n's
Larry Hastingsbebf7352014-01-17 17:47:17 -0800860 d2 = {}
861 for name, value in d.items():
Larry Hastingsb7ccb202014-01-18 23:50:21 -0800862 assert value is not None, "got a None value for template " + repr(name)
Larry Hastingsbebf7352014-01-17 17:47:17 -0800863 if value:
864 value = '\n' + value + '\n'
865 d2[name] = value
866 return d2
Larry Hastings31826802013-10-19 00:09:25 -0700867
868 @staticmethod
869 def group_to_variable_name(group):
870 adjective = "left_" if group < 0 else "right_"
871 return "group_" + adjective + str(abs(group))
872
873 def render_option_group_parsing(self, f, template_dict):
874 # positional only, grouped, optional arguments!
875 # can be optional on the left or right.
876 # here's an example:
877 #
878 # [ [ [ A1 A2 ] B1 B2 B3 ] C1 C2 ] D1 D2 D3 [ E1 E2 E3 [ F1 F2 F3 ] ]
879 #
880 # Here group D are required, and all other groups are optional.
881 # (Group D's "group" is actually None.)
882 # We can figure out which sets of arguments we have based on
883 # how many arguments are in the tuple.
884 #
885 # Note that you need to count up on both sides. For example,
886 # you could have groups C+D, or C+D+E, or C+D+E+F.
887 #
888 # What if the number of arguments leads us to an ambiguous result?
889 # Clinic prefers groups on the left. So in the above example,
890 # five arguments would map to B+C, not C+D.
891
892 add, output = text_accumulator()
893 parameters = list(f.parameters.values())
Larry Hastings5c661892014-01-24 06:17:25 -0800894 if isinstance(parameters[0].converter, self_converter):
895 del parameters[0]
Larry Hastings31826802013-10-19 00:09:25 -0700896
897 groups = []
898 group = None
899 left = []
900 right = []
901 required = []
902 last = unspecified
903
904 for p in parameters:
905 group_id = p.group
906 if group_id != last:
907 last = group_id
908 group = []
909 if group_id < 0:
910 left.append(group)
911 elif group_id == 0:
912 group = required
913 else:
914 right.append(group)
915 group.append(p)
916
917 count_min = sys.maxsize
918 count_max = -1
919
Larry Hastings2a727912014-01-16 11:32:01 -0800920 add("switch (PyTuple_GET_SIZE(args)) {{\n")
Larry Hastings31826802013-10-19 00:09:25 -0700921 for subset in permute_optional_groups(left, required, right):
922 count = len(subset)
923 count_min = min(count_min, count)
924 count_max = max(count_max, count)
925
Larry Hastings583baa82014-01-12 08:49:30 -0800926 if count == 0:
927 add(""" case 0:
928 break;
929""")
930 continue
931
Larry Hastings31826802013-10-19 00:09:25 -0700932 group_ids = {p.group for p in subset} # eliminate duplicates
933 d = {}
934 d['count'] = count
935 d['name'] = f.name
936 d['groups'] = sorted(group_ids)
937 d['format_units'] = "".join(p.converter.format_unit for p in subset)
938
939 parse_arguments = []
940 for p in subset:
941 p.converter.parse_argument(parse_arguments)
942 d['parse_arguments'] = ", ".join(parse_arguments)
943
944 group_ids.discard(0)
945 lines = [self.group_to_variable_name(g) + " = 1;" for g in group_ids]
946 lines = "\n".join(lines)
947
948 s = """
949 case {count}:
950 if (!PyArg_ParseTuple(args, "{format_units}:{name}", {parse_arguments}))
Larry Hastings46258262014-01-22 03:05:49 -0800951 goto exit;
Larry Hastings31826802013-10-19 00:09:25 -0700952 {group_booleans}
953 break;
954"""[1:]
955 s = linear_format(s, group_booleans=lines)
956 s = s.format_map(d)
957 add(s)
958
959 add(" default:\n")
960 s = ' PyErr_SetString(PyExc_TypeError, "{} requires {} to {} arguments");\n'
961 add(s.format(f.full_name, count_min, count_max))
Larry Hastings46258262014-01-22 03:05:49 -0800962 add(' goto exit;\n')
Larry Hastings31826802013-10-19 00:09:25 -0700963 add("}}")
964 template_dict['option_group_parsing'] = output()
965
Larry Hastingsbebf7352014-01-17 17:47:17 -0800966 def render_function(self, clinic, f):
Larry Hastings31826802013-10-19 00:09:25 -0700967 if not f:
968 return ""
969
970 add, output = text_accumulator()
971 data = CRenderData()
972
Larry Hastings7726ac92014-01-31 22:03:12 -0800973 assert f.parameters, "We should always have a 'self' at this point!"
974 parameters = f.render_parameters
Larry Hastings31826802013-10-19 00:09:25 -0700975 converters = [p.converter for p in parameters]
976
Larry Hastings5c661892014-01-24 06:17:25 -0800977 templates = self.output_templates(f)
978
979 f_self = parameters[0]
980 selfless = parameters[1:]
981 assert isinstance(f_self.converter, self_converter), "No self parameter in " + repr(f.full_name) + "!"
982
983 last_group = 0
984 first_optional = len(selfless)
985 positional = selfless and selfless[-1].kind == inspect.Parameter.POSITIONAL_ONLY
986 new_or_init = f.kind in (METHOD_NEW, METHOD_INIT)
987 default_return_converter = (not f.return_converter or
988 f.return_converter.type == 'PyObject *')
989 has_option_groups = False
990
991 # offset i by -1 because first_optional needs to ignore self
992 for i, p in enumerate(parameters, -1):
993 c = p.converter
994
995 if (i != -1) and (p.default is not unspecified):
996 first_optional = min(first_optional, i)
997
998 # insert group variable
999 group = p.group
1000 if last_group != group:
1001 last_group = group
1002 if group:
1003 group_name = self.group_to_variable_name(group)
1004 data.impl_arguments.append(group_name)
1005 data.declarations.append("int " + group_name + " = 0;")
1006 data.impl_parameters.append("int " + group_name)
1007 has_option_groups = True
1008
1009 c.render(p, data)
1010
1011 if has_option_groups and (not positional):
1012 fail("You cannot use optional groups ('[' and ']')\nunless all parameters are positional-only ('/').")
1013
1014 # HACK
1015 # when we're METH_O, but have a custom return converter,
1016 # we use "impl_parameters" for the parsing function
1017 # because that works better. but that means we must
1018 # supress actually declaring the impl's parameters
1019 # as variables in the parsing function. but since it's
1020 # METH_O, we have exactly one anyway, so we know exactly
1021 # where it is.
1022 if ("METH_O" in templates['methoddef_define'] and
1023 not default_return_converter):
1024 data.declarations.pop(0)
1025
Larry Hastings31826802013-10-19 00:09:25 -07001026 template_dict = {}
1027
1028 full_name = f.full_name
1029 template_dict['full_name'] = full_name
1030
Larry Hastings5c661892014-01-24 06:17:25 -08001031 if new_or_init:
1032 name = f.cls.name
1033 else:
1034 name = f.name
1035
Larry Hastings31826802013-10-19 00:09:25 -07001036 template_dict['name'] = name
1037
Larry Hastings8666e652014-01-12 14:12:59 -08001038 if f.c_basename:
1039 c_basename = f.c_basename
1040 else:
1041 fields = full_name.split(".")
1042 if fields[-1] == '__new__':
1043 fields.pop()
1044 c_basename = "_".join(fields)
Larry Hastings5c661892014-01-24 06:17:25 -08001045
Larry Hastings31826802013-10-19 00:09:25 -07001046 template_dict['c_basename'] = c_basename
1047
1048 methoddef_name = "{}_METHODDEF".format(c_basename.upper())
1049 template_dict['methoddef_name'] = methoddef_name
1050
1051 template_dict['docstring'] = self.docstring_for_c_string(f)
1052
Larry Hastingsc2047262014-01-25 20:43:29 -08001053 template_dict['self_name'] = template_dict['self_type'] = template_dict['self_type_check'] = ''
Larry Hastings5c661892014-01-24 06:17:25 -08001054 f_self.converter.set_template_dict(template_dict)
Larry Hastingsebdcb502013-11-23 14:54:00 -08001055
Larry Hastings31826802013-10-19 00:09:25 -07001056 f.return_converter.render(f, data)
1057 template_dict['impl_return_type'] = f.return_converter.type
1058
1059 template_dict['declarations'] = "\n".join(data.declarations)
1060 template_dict['initializers'] = "\n\n".join(data.initializers)
Larry Hastingsc2047262014-01-25 20:43:29 -08001061 template_dict['modifications'] = '\n\n'.join(data.modifications)
Larry Hastings31826802013-10-19 00:09:25 -07001062 template_dict['keywords'] = '"' + '", "'.join(data.keywords) + '"'
1063 template_dict['format_units'] = ''.join(data.format_units)
1064 template_dict['parse_arguments'] = ', '.join(data.parse_arguments)
1065 template_dict['impl_parameters'] = ", ".join(data.impl_parameters)
1066 template_dict['impl_arguments'] = ", ".join(data.impl_arguments)
1067 template_dict['return_conversion'] = "".join(data.return_conversion).rstrip()
1068 template_dict['cleanup'] = "".join(data.cleanup)
1069 template_dict['return_value'] = data.return_value
1070
Larry Hastings5c661892014-01-24 06:17:25 -08001071 # used by unpack tuple code generator
1072 ignore_self = -1 if isinstance(converters[0], self_converter) else 0
1073 unpack_min = first_optional
1074 unpack_max = len(selfless)
1075 template_dict['unpack_min'] = str(unpack_min)
1076 template_dict['unpack_max'] = str(unpack_max)
Larry Hastingsb7ccb202014-01-18 23:50:21 -08001077
Larry Hastingsbebf7352014-01-17 17:47:17 -08001078 if has_option_groups:
Larry Hastings31826802013-10-19 00:09:25 -07001079 self.render_option_group_parsing(f, template_dict)
Larry Hastingsbebf7352014-01-17 17:47:17 -08001080
Larry Hastingsbebf7352014-01-17 17:47:17 -08001081 for name, destination in clinic.field_destinations.items():
1082 template = templates[name]
1083 if has_option_groups:
1084 template = linear_format(template,
1085 option_group_parsing=template_dict['option_group_parsing'])
Larry Hastings31826802013-10-19 00:09:25 -07001086 template = linear_format(template,
Larry Hastingsbebf7352014-01-17 17:47:17 -08001087 declarations=template_dict['declarations'],
1088 return_conversion=template_dict['return_conversion'],
1089 initializers=template_dict['initializers'],
Larry Hastingsc2047262014-01-25 20:43:29 -08001090 modifications=template_dict['modifications'],
Larry Hastingsbebf7352014-01-17 17:47:17 -08001091 cleanup=template_dict['cleanup'],
1092 )
Larry Hastings31826802013-10-19 00:09:25 -07001093
Larry Hastingsbebf7352014-01-17 17:47:17 -08001094 # Only generate the "exit:" label
1095 # if we have any gotos
1096 need_exit_label = "goto exit;" in template
1097 template = linear_format(template,
1098 exit_label="exit:" if need_exit_label else ''
1099 )
Larry Hastings31826802013-10-19 00:09:25 -07001100
Larry Hastingsbebf7352014-01-17 17:47:17 -08001101 s = template.format_map(template_dict)
Larry Hastings31826802013-10-19 00:09:25 -07001102
Larry Hastingsbebf7352014-01-17 17:47:17 -08001103 if clinic.line_prefix:
1104 s = indent_all_lines(s, clinic.line_prefix)
1105 if clinic.line_suffix:
1106 s = suffix_all_lines(s, clinic.line_suffix)
1107
1108 destination.append(s)
1109
1110 return clinic.get_destination('block').dump()
1111
Larry Hastings31826802013-10-19 00:09:25 -07001112
1113
Larry Hastings5c661892014-01-24 06:17:25 -08001114
Larry Hastings31826802013-10-19 00:09:25 -07001115@contextlib.contextmanager
1116def OverrideStdioWith(stdout):
1117 saved_stdout = sys.stdout
1118 sys.stdout = stdout
1119 try:
1120 yield
1121 finally:
1122 assert sys.stdout is stdout
1123 sys.stdout = saved_stdout
1124
1125
Larry Hastings2623c8c2014-02-08 22:15:29 -08001126def create_regex(before, after, word=True, whole_line=True):
Larry Hastings31826802013-10-19 00:09:25 -07001127 """Create an re object for matching marker lines."""
Larry Hastings581ee362014-01-28 05:00:08 -08001128 group_re = "\w+" if word else ".+"
Larry Hastings2623c8c2014-02-08 22:15:29 -08001129 pattern = r'{}({}){}'
1130 if whole_line:
1131 pattern = '^' + pattern + '$'
Larry Hastings581ee362014-01-28 05:00:08 -08001132 pattern = pattern.format(re.escape(before), group_re, re.escape(after))
1133 return re.compile(pattern)
Larry Hastings31826802013-10-19 00:09:25 -07001134
1135
1136class Block:
1137 r"""
1138 Represents a single block of text embedded in
1139 another file. If dsl_name is None, the block represents
1140 verbatim text, raw original text from the file, in
1141 which case "input" will be the only non-false member.
1142 If dsl_name is not None, the block represents a Clinic
1143 block.
1144
1145 input is always str, with embedded \n characters.
1146 input represents the original text from the file;
1147 if it's a Clinic block, it is the original text with
1148 the body_prefix and redundant leading whitespace removed.
1149
1150 dsl_name is either str or None. If str, it's the text
1151 found on the start line of the block between the square
1152 brackets.
1153
1154 signatures is either list or None. If it's a list,
1155 it may only contain clinic.Module, clinic.Class, and
1156 clinic.Function objects. At the moment it should
1157 contain at most one of each.
1158
1159 output is either str or None. If str, it's the output
1160 from this block, with embedded '\n' characters.
1161
1162 indent is either str or None. It's the leading whitespace
1163 that was found on every line of input. (If body_prefix is
1164 not empty, this is the indent *after* removing the
1165 body_prefix.)
1166
1167 preindent is either str or None. It's the whitespace that
1168 was found in front of every line of input *before* the
1169 "body_prefix" (see the Language object). If body_prefix
1170 is empty, preindent must always be empty too.
1171
1172 To illustrate indent and preindent: Assume that '_'
1173 represents whitespace. If the block processed was in a
1174 Python file, and looked like this:
1175 ____#/*[python]
1176 ____#__for a in range(20):
1177 ____#____print(a)
1178 ____#[python]*/
1179 "preindent" would be "____" and "indent" would be "__".
1180
1181 """
1182 def __init__(self, input, dsl_name=None, signatures=None, output=None, indent='', preindent=''):
1183 assert isinstance(input, str)
1184 self.input = input
1185 self.dsl_name = dsl_name
1186 self.signatures = signatures or []
1187 self.output = output
1188 self.indent = indent
1189 self.preindent = preindent
1190
Larry Hastings581ee362014-01-28 05:00:08 -08001191 def __repr__(self):
1192 dsl_name = self.dsl_name or "text"
1193 def summarize(s):
1194 s = repr(s)
1195 if len(s) > 30:
1196 return s[:26] + "..." + s[0]
1197 return s
1198 return "".join((
1199 "<Block ", dsl_name, " input=", summarize(self.input), " output=", summarize(self.output), ">"))
1200
Larry Hastings31826802013-10-19 00:09:25 -07001201
1202class BlockParser:
1203 """
1204 Block-oriented parser for Argument Clinic.
1205 Iterator, yields Block objects.
1206 """
1207
1208 def __init__(self, input, language, *, verify=True):
1209 """
1210 "input" should be a str object
1211 with embedded \n characters.
1212
1213 "language" should be a Language object.
1214 """
1215 language.validate()
1216
1217 self.input = collections.deque(reversed(input.splitlines(keepends=True)))
1218 self.block_start_line_number = self.line_number = 0
1219
1220 self.language = language
1221 before, _, after = language.start_line.partition('{dsl_name}')
1222 assert _ == '{dsl_name}'
Larry Hastings2623c8c2014-02-08 22:15:29 -08001223 self.find_start_re = create_regex(before, after, whole_line=False)
Larry Hastings31826802013-10-19 00:09:25 -07001224 self.start_re = create_regex(before, after)
1225 self.verify = verify
1226 self.last_checksum_re = None
1227 self.last_dsl_name = None
1228 self.dsl_name = None
Larry Hastingsbebf7352014-01-17 17:47:17 -08001229 self.first_block = True
Larry Hastings31826802013-10-19 00:09:25 -07001230
1231 def __iter__(self):
1232 return self
1233
1234 def __next__(self):
Larry Hastingsbebf7352014-01-17 17:47:17 -08001235 while True:
1236 if not self.input:
1237 raise StopIteration
Larry Hastings31826802013-10-19 00:09:25 -07001238
Larry Hastingsbebf7352014-01-17 17:47:17 -08001239 if self.dsl_name:
1240 return_value = self.parse_clinic_block(self.dsl_name)
1241 self.dsl_name = None
1242 self.first_block = False
1243 return return_value
1244 block = self.parse_verbatim_block()
1245 if self.first_block and not block.input:
1246 continue
1247 self.first_block = False
1248 return block
1249
Larry Hastings31826802013-10-19 00:09:25 -07001250
1251 def is_start_line(self, line):
1252 match = self.start_re.match(line.lstrip())
1253 return match.group(1) if match else None
1254
1255 def _line(self):
1256 self.line_number += 1
Larry Hastings7726ac92014-01-31 22:03:12 -08001257 line = self.input.pop()
1258 self.language.parse_line(line)
1259 return line
Larry Hastings31826802013-10-19 00:09:25 -07001260
1261 def parse_verbatim_block(self):
1262 add, output = text_accumulator()
1263 self.block_start_line_number = self.line_number
1264
1265 while self.input:
1266 line = self._line()
1267 dsl_name = self.is_start_line(line)
1268 if dsl_name:
1269 self.dsl_name = dsl_name
1270 break
1271 add(line)
1272
1273 return Block(output())
1274
1275 def parse_clinic_block(self, dsl_name):
1276 input_add, input_output = text_accumulator()
1277 self.block_start_line_number = self.line_number + 1
Larry Hastings90261132014-01-07 12:21:08 -08001278 stop_line = self.language.stop_line.format(dsl_name=dsl_name)
Larry Hastings31826802013-10-19 00:09:25 -07001279 body_prefix = self.language.body_prefix.format(dsl_name=dsl_name)
1280
Larry Hastings90261132014-01-07 12:21:08 -08001281 def is_stop_line(line):
1282 # make sure to recognize stop line even if it
1283 # doesn't end with EOL (it could be the very end of the file)
1284 if not line.startswith(stop_line):
1285 return False
1286 remainder = line[len(stop_line):]
1287 return (not remainder) or remainder.isspace()
1288
Larry Hastings31826802013-10-19 00:09:25 -07001289 # consume body of program
1290 while self.input:
1291 line = self._line()
Larry Hastings90261132014-01-07 12:21:08 -08001292 if is_stop_line(line) or self.is_start_line(line):
Larry Hastings31826802013-10-19 00:09:25 -07001293 break
1294 if body_prefix:
1295 line = line.lstrip()
1296 assert line.startswith(body_prefix)
1297 line = line[len(body_prefix):]
1298 input_add(line)
1299
1300 # consume output and checksum line, if present.
1301 if self.last_dsl_name == dsl_name:
1302 checksum_re = self.last_checksum_re
1303 else:
Larry Hastings581ee362014-01-28 05:00:08 -08001304 before, _, after = self.language.checksum_line.format(dsl_name=dsl_name, arguments='{arguments}').partition('{arguments}')
1305 assert _ == '{arguments}'
1306 checksum_re = create_regex(before, after, word=False)
Larry Hastings31826802013-10-19 00:09:25 -07001307 self.last_dsl_name = dsl_name
1308 self.last_checksum_re = checksum_re
1309
1310 # scan forward for checksum line
1311 output_add, output_output = text_accumulator()
Larry Hastings581ee362014-01-28 05:00:08 -08001312 arguments = None
Larry Hastings31826802013-10-19 00:09:25 -07001313 while self.input:
1314 line = self._line()
1315 match = checksum_re.match(line.lstrip())
Larry Hastings581ee362014-01-28 05:00:08 -08001316 arguments = match.group(1) if match else None
1317 if arguments:
Larry Hastings31826802013-10-19 00:09:25 -07001318 break
1319 output_add(line)
1320 if self.is_start_line(line):
1321 break
1322
Larry Hastingsef3b1fb2013-10-22 23:26:23 -07001323 output = output_output()
Larry Hastings581ee362014-01-28 05:00:08 -08001324 if arguments:
1325 d = {}
1326 for field in shlex.split(arguments):
1327 name, equals, value = field.partition('=')
1328 if not equals:
1329 fail("Mangled Argument Clinic marker line: {!r}".format(line))
1330 d[name.strip()] = value.strip()
1331
Larry Hastings31826802013-10-19 00:09:25 -07001332 if self.verify:
Larry Hastings581ee362014-01-28 05:00:08 -08001333 if 'input' in d:
1334 checksum = d['output']
1335 input_checksum = d['input']
1336 else:
1337 checksum = d['checksum']
1338 input_checksum = None
1339
1340 computed = compute_checksum(output, len(checksum))
Larry Hastings31826802013-10-19 00:09:25 -07001341 if checksum != computed:
Antoine Pitroucc1d31e2014-01-14 20:52:01 +01001342 fail("Checksum mismatch!\nExpected: {}\nComputed: {}\n"
1343 "Suggested fix: remove all generated code including "
Larry Hastingsbebf7352014-01-17 17:47:17 -08001344 "the end marker,\n"
1345 "or use the '-f' option."
Antoine Pitroucc1d31e2014-01-14 20:52:01 +01001346 .format(checksum, computed))
Larry Hastings31826802013-10-19 00:09:25 -07001347 else:
1348 # put back output
Larry Hastingseb31e9d2014-01-06 11:10:08 -08001349 output_lines = output.splitlines(keepends=True)
1350 self.line_number -= len(output_lines)
1351 self.input.extend(reversed(output_lines))
Larry Hastings31826802013-10-19 00:09:25 -07001352 output = None
1353
1354 return Block(input_output(), dsl_name, output=output)
1355
1356
1357class BlockPrinter:
1358
1359 def __init__(self, language, f=None):
1360 self.language = language
1361 self.f = f or io.StringIO()
1362
1363 def print_block(self, block):
1364 input = block.input
1365 output = block.output
1366 dsl_name = block.dsl_name
1367 write = self.f.write
1368
Larry Hastings31826802013-10-19 00:09:25 -07001369 assert not ((dsl_name == None) ^ (output == None)), "you must specify dsl_name and output together, dsl_name " + repr(dsl_name)
1370
1371 if not dsl_name:
1372 write(input)
1373 return
1374
1375 write(self.language.start_line.format(dsl_name=dsl_name))
1376 write("\n")
1377
1378 body_prefix = self.language.body_prefix.format(dsl_name=dsl_name)
1379 if not body_prefix:
1380 write(input)
1381 else:
1382 for line in input.split('\n'):
1383 write(body_prefix)
1384 write(line)
1385 write("\n")
1386
1387 write(self.language.stop_line.format(dsl_name=dsl_name))
1388 write("\n")
1389
Larry Hastings581ee362014-01-28 05:00:08 -08001390 input = ''.join(block.input)
Larry Hastingsbebf7352014-01-17 17:47:17 -08001391 output = ''.join(block.output)
Larry Hastings31826802013-10-19 00:09:25 -07001392 if output:
Larry Hastings31826802013-10-19 00:09:25 -07001393 if not output.endswith('\n'):
Larry Hastingsbebf7352014-01-17 17:47:17 -08001394 output += '\n'
1395 write(output)
Larry Hastings31826802013-10-19 00:09:25 -07001396
Larry Hastings581ee362014-01-28 05:00:08 -08001397 arguments="output={} input={}".format(compute_checksum(output, 16), compute_checksum(input, 16))
1398 write(self.language.checksum_line.format(dsl_name=dsl_name, arguments=arguments))
Larry Hastings31826802013-10-19 00:09:25 -07001399 write("\n")
1400
Larry Hastingsbebf7352014-01-17 17:47:17 -08001401 def write(self, text):
1402 self.f.write(text)
1403
1404
1405class Destination:
1406 def __init__(self, name, type, clinic, *args):
1407 self.name = name
1408 self.type = type
1409 self.clinic = clinic
1410 valid_types = ('buffer', 'file', 'suppress', 'two-pass')
1411 if type not in valid_types:
1412 fail("Invalid destination type " + repr(type) + " for " + name + " , must be " + ', '.join(valid_types))
1413 extra_arguments = 1 if type == "file" else 0
1414 if len(args) < extra_arguments:
1415 fail("Not enough arguments for destination " + name + " new " + type)
1416 if len(args) > extra_arguments:
1417 fail("Too many arguments for destination " + name + " new " + type)
1418 if type =='file':
1419 d = {}
Larry Hastingsc2047262014-01-25 20:43:29 -08001420 filename = clinic.filename
1421 d['path'] = filename
1422 dirname, basename = os.path.split(filename)
1423 if not dirname:
1424 dirname = '.'
1425 d['dirname'] = dirname
1426 d['basename'] = basename
1427 d['basename_root'], d['basename_extension'] = os.path.splitext(filename)
Larry Hastingsbebf7352014-01-17 17:47:17 -08001428 self.filename = args[0].format_map(d)
1429 if type == 'two-pass':
1430 self.id = None
1431
1432 self.text, self.append, self._dump = _text_accumulator()
1433
1434 def __repr__(self):
1435 if self.type == 'file':
1436 file_repr = " " + repr(self.filename)
1437 else:
1438 file_repr = ''
1439 return "".join(("<Destination ", self.name, " ", self.type, file_repr, ">"))
1440
1441 def clear(self):
1442 if self.type != 'buffer':
1443 fail("Can't clear destination" + self.name + " , it's not of type buffer")
1444 self.text.clear()
1445
1446 def dump(self):
1447 if self.type == 'two-pass':
1448 if self.id is None:
1449 self.id = str(uuid.uuid4())
1450 return self.id
1451 fail("You can only dump a two-pass buffer exactly once!")
1452 return self._dump()
1453
Larry Hastings31826802013-10-19 00:09:25 -07001454
1455# maps strings to Language objects.
1456# "languages" maps the name of the language ("C", "Python").
1457# "extensions" maps the file extension ("c", "py").
1458languages = { 'C': CLanguage, 'Python': PythonLanguage }
Larry Hastings6d2ea212014-01-05 02:50:45 -08001459extensions = { name: CLanguage for name in "c cc cpp cxx h hh hpp hxx".split() }
1460extensions['py'] = PythonLanguage
Larry Hastings31826802013-10-19 00:09:25 -07001461
1462
1463# maps strings to callables.
1464# these callables must be of the form:
1465# def foo(name, default, *, ...)
1466# The callable may have any number of keyword-only parameters.
1467# The callable must return a CConverter object.
1468# The callable should not call builtins.print.
1469converters = {}
1470
1471# maps strings to callables.
1472# these callables follow the same rules as those for "converters" above.
1473# note however that they will never be called with keyword-only parameters.
1474legacy_converters = {}
1475
1476
1477# maps strings to callables.
1478# these callables must be of the form:
1479# def foo(*, ...)
1480# The callable may have any number of keyword-only parameters.
1481# The callable must return a CConverter object.
1482# The callable should not call builtins.print.
1483return_converters = {}
1484
Larry Hastings7726ac92014-01-31 22:03:12 -08001485clinic = None
Larry Hastings31826802013-10-19 00:09:25 -07001486class Clinic:
Larry Hastingsbebf7352014-01-17 17:47:17 -08001487
1488 presets_text = """
Larry Hastings7726ac92014-01-31 22:03:12 -08001489preset block
1490everything block
1491docstring_prototype suppress
1492parser_prototype suppress
1493cpp_if suppress
1494cpp_endif suppress
1495methoddef_ifndef buffer
1496
Larry Hastingsbebf7352014-01-17 17:47:17 -08001497preset original
1498everything block
1499docstring_prototype suppress
1500parser_prototype suppress
Larry Hastings7726ac92014-01-31 22:03:12 -08001501cpp_if suppress
1502cpp_endif suppress
1503methoddef_ifndef buffer
Larry Hastingsbebf7352014-01-17 17:47:17 -08001504
1505preset file
1506everything file
1507docstring_prototype suppress
1508parser_prototype suppress
1509impl_definition block
1510
1511preset buffer
1512everything buffer
1513docstring_prototype suppress
1514impl_prototype suppress
1515parser_prototype suppress
1516impl_definition block
1517
1518preset partial-buffer
1519everything buffer
1520docstring_prototype block
1521impl_prototype suppress
1522methoddef_define block
1523parser_prototype block
1524impl_definition block
1525
1526preset two-pass
1527everything buffer
1528docstring_prototype two-pass
1529impl_prototype suppress
1530methoddef_define two-pass
1531parser_prototype two-pass
1532impl_definition block
1533
1534"""
1535
Larry Hastings581ee362014-01-28 05:00:08 -08001536 def __init__(self, language, printer=None, *, force=False, verify=True, filename=None):
Larry Hastings31826802013-10-19 00:09:25 -07001537 # maps strings to Parser objects.
1538 # (instantiated from the "parsers" global.)
1539 self.parsers = {}
1540 self.language = language
Larry Hastingsbebf7352014-01-17 17:47:17 -08001541 if printer:
1542 fail("Custom printers are broken right now")
Larry Hastings31826802013-10-19 00:09:25 -07001543 self.printer = printer or BlockPrinter(language)
1544 self.verify = verify
Larry Hastings581ee362014-01-28 05:00:08 -08001545 self.force = force
Larry Hastings31826802013-10-19 00:09:25 -07001546 self.filename = filename
1547 self.modules = collections.OrderedDict()
Larry Hastingsed4a1c52013-11-18 09:32:13 -08001548 self.classes = collections.OrderedDict()
Larry Hastings2a727912014-01-16 11:32:01 -08001549 self.functions = []
Larry Hastings31826802013-10-19 00:09:25 -07001550
Larry Hastingsbebf7352014-01-17 17:47:17 -08001551 self.line_prefix = self.line_suffix = ''
1552
1553 self.destinations = {}
1554 self.add_destination("block", "buffer")
1555 self.add_destination("suppress", "suppress")
1556 self.add_destination("buffer", "buffer")
1557 self.add_destination("two-pass", "two-pass")
1558 if filename:
Larry Hastingsc2047262014-01-25 20:43:29 -08001559 self.add_destination("file", "file", "{dirname}/clinic/{basename}.h")
Larry Hastingsbebf7352014-01-17 17:47:17 -08001560
1561 d = self.destinations.get
1562 self.field_destinations = collections.OrderedDict((
Larry Hastings7726ac92014-01-31 22:03:12 -08001563 ('cpp_if', d('suppress')),
Larry Hastingsbebf7352014-01-17 17:47:17 -08001564 ('docstring_prototype', d('suppress')),
1565 ('docstring_definition', d('block')),
1566 ('methoddef_define', d('block')),
1567 ('impl_prototype', d('block')),
1568 ('parser_prototype', d('suppress')),
1569 ('parser_definition', d('block')),
Larry Hastings7726ac92014-01-31 22:03:12 -08001570 ('cpp_endif', d('suppress')),
1571 ('methoddef_ifndef', d('buffer')),
Larry Hastingsbebf7352014-01-17 17:47:17 -08001572 ('impl_definition', d('block')),
1573 ))
1574
1575 self.field_destinations_stack = []
1576
1577 self.presets = {}
1578 preset = None
1579 for line in self.presets_text.strip().split('\n'):
1580 line = line.strip()
1581 if not line:
1582 continue
1583 name, value = line.split()
1584 if name == 'preset':
1585 self.presets[value] = preset = collections.OrderedDict()
1586 continue
1587
1588 destination = self.get_destination(value)
1589
1590 if name == 'everything':
1591 for name in self.field_destinations:
1592 preset[name] = destination
1593 continue
1594
1595 assert name in self.field_destinations
1596 preset[name] = destination
1597
Larry Hastings31826802013-10-19 00:09:25 -07001598 global clinic
1599 clinic = self
1600
Larry Hastingsbebf7352014-01-17 17:47:17 -08001601 def get_destination(self, name, default=unspecified):
1602 d = self.destinations.get(name)
1603 if not d:
1604 if default is not unspecified:
1605 return default
1606 fail("Destination does not exist: " + repr(name))
1607 return d
1608
1609 def add_destination(self, name, type, *args):
1610 if name in self.destinations:
1611 fail("Destination already exists: " + repr(name))
1612 self.destinations[name] = Destination(name, type, self, *args)
1613
Larry Hastings31826802013-10-19 00:09:25 -07001614 def parse(self, input):
1615 printer = self.printer
1616 self.block_parser = BlockParser(input, self.language, verify=self.verify)
1617 for block in self.block_parser:
1618 dsl_name = block.dsl_name
1619 if dsl_name:
1620 if dsl_name not in self.parsers:
1621 assert dsl_name in parsers, "No parser to handle {!r} block.".format(dsl_name)
1622 self.parsers[dsl_name] = parsers[dsl_name](self)
1623 parser = self.parsers[dsl_name]
Georg Brandlaabebde2014-01-16 06:53:54 +01001624 try:
1625 parser.parse(block)
1626 except Exception:
1627 fail('Exception raised during parsing:\n' +
1628 traceback.format_exc().rstrip())
Larry Hastings31826802013-10-19 00:09:25 -07001629 printer.print_block(block)
Larry Hastingsbebf7352014-01-17 17:47:17 -08001630
1631 second_pass_replacements = {}
1632
1633 for name, destination in self.destinations.items():
1634 if destination.type == 'suppress':
1635 continue
1636 output = destination._dump()
1637
1638 if destination.type == 'two-pass':
1639 if destination.id:
1640 second_pass_replacements[destination.id] = output
1641 elif output:
1642 fail("Two-pass buffer " + repr(name) + " not empty at end of file!")
1643 continue
1644
1645 if output:
1646
1647 block = Block("", dsl_name="clinic", output=output)
1648
1649 if destination.type == 'buffer':
1650 block.input = "dump " + name + "\n"
1651 warn("Destination buffer " + repr(name) + " not empty at end of file, emptying.")
1652 printer.write("\n")
1653 printer.print_block(block)
1654 continue
1655
1656 if destination.type == 'file':
1657 try:
Larry Hastingsc2047262014-01-25 20:43:29 -08001658 dirname = os.path.dirname(destination.filename)
1659 try:
1660 os.makedirs(dirname)
1661 except FileExistsError:
1662 if not os.path.isdir(dirname):
1663 fail("Can't write to destination {}, "
1664 "can't make directory {}!".format(
1665 destination.filename, dirname))
Larry Hastings581ee362014-01-28 05:00:08 -08001666 if self.verify:
1667 with open(destination.filename, "rt") as f:
1668 parser_2 = BlockParser(f.read(), language=self.language)
1669 blocks = list(parser_2)
1670 if (len(blocks) != 1) or (blocks[0].input != 'preserve\n'):
1671 fail("Modified destination file " + repr(destination.filename) + ", not overwriting!")
Larry Hastingsbebf7352014-01-17 17:47:17 -08001672 except FileNotFoundError:
1673 pass
1674
1675 block.input = 'preserve\n'
1676 printer_2 = BlockPrinter(self.language)
1677 printer_2.print_block(block)
1678 with open(destination.filename, "wt") as f:
1679 f.write(printer_2.f.getvalue())
1680 continue
1681 text = printer.f.getvalue()
1682
1683 if second_pass_replacements:
1684 printer_2 = BlockPrinter(self.language)
1685 parser_2 = BlockParser(text, self.language)
1686 changed = False
1687 for block in parser_2:
1688 if block.dsl_name:
1689 for id, replacement in second_pass_replacements.items():
1690 if id in block.output:
1691 changed = True
1692 block.output = block.output.replace(id, replacement)
1693 printer_2.print_block(block)
1694 if changed:
1695 text = printer_2.f.getvalue()
1696
1697 return text
1698
Larry Hastings31826802013-10-19 00:09:25 -07001699
1700 def _module_and_class(self, fields):
1701 """
1702 fields should be an iterable of field names.
1703 returns a tuple of (module, class).
1704 the module object could actually be self (a clinic object).
1705 this function is only ever used to find the parent of where
1706 a new class/module should go.
1707 """
1708 in_classes = False
1709 parent = module = self
1710 cls = None
1711 so_far = []
1712
1713 for field in fields:
1714 so_far.append(field)
1715 if not in_classes:
1716 child = parent.modules.get(field)
1717 if child:
Larry Hastingsed4a1c52013-11-18 09:32:13 -08001718 parent = module = child
Larry Hastings31826802013-10-19 00:09:25 -07001719 continue
1720 in_classes = True
1721 if not hasattr(parent, 'classes'):
1722 return module, cls
1723 child = parent.classes.get(field)
1724 if not child:
1725 fail('Parent class or module ' + '.'.join(so_far) + " does not exist.")
1726 cls = parent = child
1727
1728 return module, cls
1729
1730
Larry Hastings581ee362014-01-28 05:00:08 -08001731def parse_file(filename, *, force=False, verify=True, output=None, encoding='utf-8'):
Larry Hastings31826802013-10-19 00:09:25 -07001732 extension = os.path.splitext(filename)[1][1:]
1733 if not extension:
1734 fail("Can't extract file type for file " + repr(filename))
1735
1736 try:
Larry Hastings7726ac92014-01-31 22:03:12 -08001737 language = extensions[extension](filename)
Larry Hastings31826802013-10-19 00:09:25 -07001738 except KeyError:
1739 fail("Can't identify file type for file " + repr(filename))
1740
Larry Hastings31826802013-10-19 00:09:25 -07001741 with open(filename, 'r', encoding=encoding) as f:
Larry Hastingsdcd340e2013-11-23 14:58:45 -08001742 raw = f.read()
1743
Larry Hastings2623c8c2014-02-08 22:15:29 -08001744 # exit quickly if there are no clinic markers in the file
1745 find_start_re = BlockParser("", language).find_start_re
1746 if not find_start_re.search(raw):
1747 return
1748
1749 clinic = Clinic(language, force=force, verify=verify, filename=filename)
Larry Hastingsdcd340e2013-11-23 14:58:45 -08001750 cooked = clinic.parse(raw)
Larry Hastings581ee362014-01-28 05:00:08 -08001751 if (cooked == raw) and not force:
Larry Hastingsdcd340e2013-11-23 14:58:45 -08001752 return
Larry Hastings31826802013-10-19 00:09:25 -07001753
1754 directory = os.path.dirname(filename) or '.'
1755
1756 with tempfile.TemporaryDirectory(prefix="clinic", dir=directory) as tmpdir:
Larry Hastingsdcd340e2013-11-23 14:58:45 -08001757 bytes = cooked.encode(encoding)
Larry Hastings31826802013-10-19 00:09:25 -07001758 tmpfilename = os.path.join(tmpdir, os.path.basename(filename))
1759 with open(tmpfilename, "wb") as f:
1760 f.write(bytes)
1761 os.replace(tmpfilename, output or filename)
1762
1763
Larry Hastings581ee362014-01-28 05:00:08 -08001764def compute_checksum(input, length=None):
Larry Hastings31826802013-10-19 00:09:25 -07001765 input = input or ''
Larry Hastings581ee362014-01-28 05:00:08 -08001766 s = hashlib.sha1(input.encode('utf-8')).hexdigest()
1767 if length:
1768 s = s[:length]
1769 return s
Larry Hastings31826802013-10-19 00:09:25 -07001770
1771
1772
1773
1774class PythonParser:
1775 def __init__(self, clinic):
1776 pass
1777
1778 def parse(self, block):
1779 s = io.StringIO()
1780 with OverrideStdioWith(s):
1781 exec(block.input)
1782 block.output = s.getvalue()
1783
1784
1785class Module:
1786 def __init__(self, name, module=None):
1787 self.name = name
1788 self.module = self.parent = module
1789
1790 self.modules = collections.OrderedDict()
1791 self.classes = collections.OrderedDict()
1792 self.functions = []
1793
Larry Hastingsed4a1c52013-11-18 09:32:13 -08001794 def __repr__(self):
1795 return "<clinic.Module " + repr(self.name) + " at " + str(id(self)) + ">"
1796
Larry Hastings31826802013-10-19 00:09:25 -07001797class Class:
Larry Hastingsc2047262014-01-25 20:43:29 -08001798 def __init__(self, name, module=None, cls=None, typedef=None, type_object=None):
Larry Hastings31826802013-10-19 00:09:25 -07001799 self.name = name
1800 self.module = module
1801 self.cls = cls
Larry Hastingsc2047262014-01-25 20:43:29 -08001802 self.typedef = typedef
1803 self.type_object = type_object
Larry Hastings31826802013-10-19 00:09:25 -07001804 self.parent = cls or module
1805
1806 self.classes = collections.OrderedDict()
1807 self.functions = []
1808
Larry Hastingsed4a1c52013-11-18 09:32:13 -08001809 def __repr__(self):
1810 return "<clinic.Class " + repr(self.name) + " at " + str(id(self)) + ">"
1811
Larry Hastings8666e652014-01-12 14:12:59 -08001812unsupported_special_methods = set("""
Larry Hastingsed4a1c52013-11-18 09:32:13 -08001813
Larry Hastings8666e652014-01-12 14:12:59 -08001814__abs__
1815__add__
1816__and__
1817__bytes__
1818__call__
1819__complex__
1820__delitem__
1821__divmod__
1822__eq__
1823__float__
1824__floordiv__
1825__ge__
1826__getattr__
1827__getattribute__
1828__getitem__
1829__gt__
1830__hash__
1831__iadd__
1832__iand__
1833__idivmod__
1834__ifloordiv__
1835__ilshift__
1836__imod__
1837__imul__
1838__index__
1839__int__
1840__invert__
1841__ior__
1842__ipow__
1843__irshift__
1844__isub__
1845__iter__
1846__itruediv__
1847__ixor__
1848__le__
1849__len__
1850__lshift__
1851__lt__
1852__mod__
1853__mul__
1854__neg__
1855__new__
1856__next__
1857__or__
1858__pos__
1859__pow__
1860__radd__
1861__rand__
1862__rdivmod__
1863__repr__
1864__rfloordiv__
1865__rlshift__
1866__rmod__
1867__rmul__
1868__ror__
1869__round__
1870__rpow__
1871__rrshift__
1872__rshift__
1873__rsub__
1874__rtruediv__
1875__rxor__
1876__setattr__
1877__setitem__
1878__str__
1879__sub__
1880__truediv__
1881__xor__
1882
1883""".strip().split())
1884
1885
Larry Hastings5c661892014-01-24 06:17:25 -08001886INVALID, CALLABLE, STATIC_METHOD, CLASS_METHOD, METHOD_INIT, METHOD_NEW = """
1887INVALID, CALLABLE, STATIC_METHOD, CLASS_METHOD, METHOD_INIT, METHOD_NEW
1888""".replace(",", "").strip().split()
Larry Hastings31826802013-10-19 00:09:25 -07001889
1890class Function:
1891 """
1892 Mutable duck type for inspect.Function.
1893
1894 docstring - a str containing
1895 * embedded line breaks
1896 * text outdented to the left margin
1897 * no trailing whitespace.
1898 It will always be true that
1899 (not docstring) or ((not docstring[0].isspace()) and (docstring.rstrip() == docstring))
1900 """
1901
1902 def __init__(self, parameters=None, *, name,
1903 module, cls=None, c_basename=None,
1904 full_name=None,
1905 return_converter, return_annotation=_empty,
Larry Hastings581ee362014-01-28 05:00:08 -08001906 docstring=None, kind=CALLABLE, coexist=False,
Larry Hastings2623c8c2014-02-08 22:15:29 -08001907 docstring_only=False):
Larry Hastings31826802013-10-19 00:09:25 -07001908 self.parameters = parameters or collections.OrderedDict()
1909 self.return_annotation = return_annotation
1910 self.name = name
1911 self.full_name = full_name
1912 self.module = module
1913 self.cls = cls
1914 self.parent = cls or module
1915 self.c_basename = c_basename
1916 self.return_converter = return_converter
1917 self.docstring = docstring or ''
1918 self.kind = kind
1919 self.coexist = coexist
Larry Hastingsebdcb502013-11-23 14:54:00 -08001920 self.self_converter = None
Larry Hastings2623c8c2014-02-08 22:15:29 -08001921 # docstring_only means "don't generate a machine-readable
1922 # signature, just a normal docstring". it's True for
1923 # functions with optional groups because we can't represent
1924 # those accurately with inspect.Signature in 3.4.
1925 self.docstring_only = docstring_only
Larry Hastingsebdcb502013-11-23 14:54:00 -08001926
Larry Hastings7726ac92014-01-31 22:03:12 -08001927 self.rendered_parameters = None
1928
1929 __render_parameters__ = None
1930 @property
1931 def render_parameters(self):
1932 if not self.__render_parameters__:
1933 self.__render_parameters__ = l = []
1934 for p in self.parameters.values():
1935 p = p.copy()
1936 p.converter.pre_render()
1937 l.append(p)
1938 return self.__render_parameters__
1939
Larry Hastingsebdcb502013-11-23 14:54:00 -08001940 @property
1941 def methoddef_flags(self):
Larry Hastings8666e652014-01-12 14:12:59 -08001942 if self.kind in (METHOD_INIT, METHOD_NEW):
1943 return None
Larry Hastingsebdcb502013-11-23 14:54:00 -08001944 flags = []
1945 if self.kind == CLASS_METHOD:
1946 flags.append('METH_CLASS')
1947 elif self.kind == STATIC_METHOD:
1948 flags.append('METH_STATIC')
1949 else:
1950 assert self.kind == CALLABLE, "unknown kind: " + repr(self.kind)
1951 if self.coexist:
1952 flags.append('METH_COEXIST')
1953 return '|'.join(flags)
Larry Hastings31826802013-10-19 00:09:25 -07001954
1955 def __repr__(self):
1956 return '<clinic.Function ' + self.name + '>'
1957
Larry Hastings7726ac92014-01-31 22:03:12 -08001958 def copy(self, **overrides):
1959 kwargs = {
1960 'name': self.name, 'module': self.module, 'parameters': self.parameters,
1961 'cls': self.cls, 'c_basename': self.c_basename,
1962 'full_name': self.full_name,
1963 'return_converter': self.return_converter, 'return_annotation': self.return_annotation,
1964 'docstring': self.docstring, 'kind': self.kind, 'coexist': self.coexist,
Larry Hastings2623c8c2014-02-08 22:15:29 -08001965 'docstring_only': self.docstring_only,
Larry Hastings7726ac92014-01-31 22:03:12 -08001966 }
1967 kwargs.update(overrides)
1968 f = Function(**kwargs)
1969
1970 parameters = collections.OrderedDict()
1971 for name, value in f.parameters.items():
1972 value = value.copy(function=f)
1973 parameters[name] = value
1974 f.parameters = parameters
1975 return f
1976
Larry Hastings31826802013-10-19 00:09:25 -07001977
1978class Parameter:
1979 """
1980 Mutable duck type of inspect.Parameter.
1981 """
1982
1983 def __init__(self, name, kind, *, default=_empty,
1984 function, converter, annotation=_empty,
1985 docstring=None, group=0):
1986 self.name = name
1987 self.kind = kind
1988 self.default = default
1989 self.function = function
1990 self.converter = converter
1991 self.annotation = annotation
1992 self.docstring = docstring or ''
1993 self.group = group
1994
1995 def __repr__(self):
1996 return '<clinic.Parameter ' + self.name + '>'
1997
1998 def is_keyword_only(self):
1999 return self.kind == inspect.Parameter.KEYWORD_ONLY
2000
Larry Hastings2623c8c2014-02-08 22:15:29 -08002001 def is_positional_only(self):
2002 return self.kind == inspect.Parameter.POSITIONAL_ONLY
2003
Larry Hastings7726ac92014-01-31 22:03:12 -08002004 def copy(self, **overrides):
2005 kwargs = {
2006 'name': self.name, 'kind': self.kind, 'default':self.default,
2007 'function': self.function, 'converter': self.converter, 'annotation': self.annotation,
2008 'docstring': self.docstring, 'group': self.group,
2009 }
2010 kwargs.update(overrides)
2011 if 'converter' not in overrides:
2012 converter = copy.copy(self.converter)
2013 converter.function = kwargs['function']
2014 kwargs['converter'] = converter
2015 return Parameter(**kwargs)
2016
2017
2018
2019class LandMine:
2020 # try to access any
2021 def __init__(self, message):
2022 self.__message__ = message
2023
2024 def __repr__(self):
2025 return '<LandMine ' + repr(self.__message__) + ">"
2026
2027 def __getattribute__(self, name):
2028 if name in ('__repr__', '__message__'):
2029 return super().__getattribute__(name)
2030 # raise RuntimeError(repr(name))
2031 fail("Stepped on a land mine, trying to access attribute " + repr(name) + ":\n" + self.__message__)
Larry Hastings31826802013-10-19 00:09:25 -07002032
Larry Hastings31826802013-10-19 00:09:25 -07002033
2034def add_c_converter(f, name=None):
2035 if not name:
2036 name = f.__name__
2037 if not name.endswith('_converter'):
2038 return f
2039 name = name[:-len('_converter')]
2040 converters[name] = f
2041 return f
2042
2043def add_default_legacy_c_converter(cls):
2044 # automatically add converter for default format unit
2045 # (but without stomping on the existing one if it's already
2046 # set, in case you subclass)
2047 if ((cls.format_unit != 'O&') and
2048 (cls.format_unit not in legacy_converters)):
2049 legacy_converters[cls.format_unit] = cls
Larry Hastings7726ac92014-01-31 22:03:12 -08002050 if cls.format_unit:
2051 legacy_converters[cls.format_unit] = cls
Larry Hastings31826802013-10-19 00:09:25 -07002052 return cls
2053
2054def add_legacy_c_converter(format_unit, **kwargs):
2055 """
2056 Adds a legacy converter.
2057 """
2058 def closure(f):
2059 if not kwargs:
2060 added_f = f
2061 else:
2062 added_f = functools.partial(f, **kwargs)
Larry Hastings7726ac92014-01-31 22:03:12 -08002063 if format_unit:
2064 legacy_converters[format_unit] = added_f
Larry Hastings31826802013-10-19 00:09:25 -07002065 return f
2066 return closure
2067
2068class CConverterAutoRegister(type):
2069 def __init__(cls, name, bases, classdict):
2070 add_c_converter(cls)
2071 add_default_legacy_c_converter(cls)
2072
2073class CConverter(metaclass=CConverterAutoRegister):
2074 """
2075 For the init function, self, name, function, and default
2076 must be keyword-or-positional parameters. All other
Larry Hastings2a727912014-01-16 11:32:01 -08002077 parameters must be keyword-only.
Larry Hastings31826802013-10-19 00:09:25 -07002078 """
2079
Larry Hastings7726ac92014-01-31 22:03:12 -08002080 # The C name to use for this variable.
2081 name = None
2082
2083 # The Python name to use for this variable.
2084 py_name = None
2085
Larry Hastings78cf85c2014-01-04 12:44:57 -08002086 # The C type to use for this variable.
2087 # 'type' should be a Python string specifying the type, e.g. "int".
2088 # If this is a pointer type, the type string should end with ' *'.
Larry Hastings31826802013-10-19 00:09:25 -07002089 type = None
Larry Hastings31826802013-10-19 00:09:25 -07002090
2091 # The Python default value for this parameter, as a Python value.
Larry Hastings78cf85c2014-01-04 12:44:57 -08002092 # Or the magic value "unspecified" if there is no default.
Larry Hastings2a727912014-01-16 11:32:01 -08002093 # Or the magic value "unknown" if this value is a cannot be evaluated
2094 # at Argument-Clinic-preprocessing time (but is presumed to be valid
2095 # at runtime).
Larry Hastings31826802013-10-19 00:09:25 -07002096 default = unspecified
2097
Larry Hastings4a55fc52014-01-12 11:09:57 -08002098 # If not None, default must be isinstance() of this type.
2099 # (You can also specify a tuple of types.)
2100 default_type = None
2101
Larry Hastings31826802013-10-19 00:09:25 -07002102 # "default" converted into a C value, as a string.
2103 # Or None if there is no default.
2104 c_default = None
2105
Larry Hastings2a727912014-01-16 11:32:01 -08002106 # "default" converted into a Python value, as a string.
2107 # Or None if there is no default.
2108 py_default = None
2109
Larry Hastingsabc716b2013-11-20 09:13:52 -08002110 # The default value used to initialize the C variable when
2111 # there is no default, but not specifying a default may
2112 # result in an "uninitialized variable" warning. This can
2113 # easily happen when using option groups--although
2114 # properly-written code won't actually use the variable,
2115 # the variable does get passed in to the _impl. (Ah, if
2116 # only dataflow analysis could inline the static function!)
2117 #
2118 # This value is specified as a string.
2119 # Every non-abstract subclass should supply a valid value.
2120 c_ignored_default = 'NULL'
2121
Larry Hastings31826802013-10-19 00:09:25 -07002122 # The C converter *function* to be used, if any.
2123 # (If this is not None, format_unit must be 'O&'.)
2124 converter = None
Larry Hastingsebdcb502013-11-23 14:54:00 -08002125
Larry Hastings78cf85c2014-01-04 12:44:57 -08002126 # Should Argument Clinic add a '&' before the name of
2127 # the variable when passing it into the _impl function?
Larry Hastings31826802013-10-19 00:09:25 -07002128 impl_by_reference = False
Larry Hastings78cf85c2014-01-04 12:44:57 -08002129
2130 # Should Argument Clinic add a '&' before the name of
2131 # the variable when passing it into PyArg_ParseTuple (AndKeywords)?
Larry Hastings31826802013-10-19 00:09:25 -07002132 parse_by_reference = True
Larry Hastings78cf85c2014-01-04 12:44:57 -08002133
2134 #############################################################
2135 #############################################################
2136 ## You shouldn't need to read anything below this point to ##
2137 ## write your own converter functions. ##
2138 #############################################################
2139 #############################################################
2140
2141 # The "format unit" to specify for this variable when
2142 # parsing arguments using PyArg_ParseTuple (AndKeywords).
2143 # Custom converters should always use the default value of 'O&'.
2144 format_unit = 'O&'
2145
2146 # What encoding do we want for this variable? Only used
2147 # by format units starting with 'e'.
2148 encoding = None
2149
Larry Hastings77561cc2014-01-07 12:13:13 -08002150 # Should this object be required to be a subclass of a specific type?
2151 # If not None, should be a string representing a pointer to a
2152 # PyTypeObject (e.g. "&PyUnicode_Type").
2153 # Only used by the 'O!' format unit (and the "object" converter).
2154 subclass_of = None
2155
Larry Hastings78cf85c2014-01-04 12:44:57 -08002156 # Do we want an adjacent '_length' variable for this variable?
2157 # Only used by format units ending with '#'.
Larry Hastings31826802013-10-19 00:09:25 -07002158 length = False
2159
Larry Hastings5c661892014-01-24 06:17:25 -08002160 # Should we show this parameter in the generated
2161 # __text_signature__? This is *almost* always True.
Larry Hastingsc2047262014-01-25 20:43:29 -08002162 # (It's only False for __new__, __init__, and METH_STATIC functions.)
Larry Hastings5c661892014-01-24 06:17:25 -08002163 show_in_signature = True
2164
2165 # Overrides the name used in a text signature.
2166 # The name used for a "self" parameter must be one of
2167 # self, type, or module; however users can set their own.
2168 # This lets the self_converter overrule the user-settable
2169 # name, *just* for the text signature.
2170 # Only set by self_converter.
2171 signature_name = None
2172
2173 # keep in sync with self_converter.__init__!
Larry Hastings7726ac92014-01-31 22:03:12 -08002174 def __init__(self, name, py_name, function, default=unspecified, *, c_default=None, py_default=None, annotation=unspecified, **kwargs):
Larry Hastings31826802013-10-19 00:09:25 -07002175 self.name = name
Larry Hastings7726ac92014-01-31 22:03:12 -08002176 self.py_name = py_name
Larry Hastings31826802013-10-19 00:09:25 -07002177
2178 if default is not unspecified:
Larry Hastings2a727912014-01-16 11:32:01 -08002179 if self.default_type and not isinstance(default, (self.default_type, Unknown)):
Larry Hastings4a55fc52014-01-12 11:09:57 -08002180 if isinstance(self.default_type, type):
2181 types_str = self.default_type.__name__
2182 else:
2183 types_str = ', '.join((cls.__name__ for cls in self.default_type))
2184 fail("{}: default value {!r} for field {} is not of type {}".format(
2185 self.__class__.__name__, default, name, types_str))
Larry Hastings31826802013-10-19 00:09:25 -07002186 self.default = default
Larry Hastings2a727912014-01-16 11:32:01 -08002187
Larry Hastingsb4705752014-01-18 21:54:15 -08002188 if c_default:
2189 self.c_default = c_default
2190 if py_default:
2191 self.py_default = py_default
Larry Hastings2a727912014-01-16 11:32:01 -08002192
Larry Hastings31826802013-10-19 00:09:25 -07002193 if annotation != unspecified:
2194 fail("The 'annotation' parameter is not currently permitted.")
Larry Hastings7726ac92014-01-31 22:03:12 -08002195
2196 # this is deliberate, to prevent you from caching information
2197 # about the function in the init.
2198 # (that breaks if we get cloned.)
2199 # so after this change we will noisily fail.
2200 self.function = LandMine("Don't access members of self.function inside converter_init!")
Larry Hastings31826802013-10-19 00:09:25 -07002201 self.converter_init(**kwargs)
Larry Hastings7726ac92014-01-31 22:03:12 -08002202 self.function = function
Larry Hastings31826802013-10-19 00:09:25 -07002203
2204 def converter_init(self):
2205 pass
2206
2207 def is_optional(self):
Larry Hastings2a727912014-01-16 11:32:01 -08002208 return (self.default is not unspecified)
Larry Hastings31826802013-10-19 00:09:25 -07002209
Larry Hastings5c661892014-01-24 06:17:25 -08002210 def _render_self(self, parameter, data):
2211 self.parameter = parameter
2212 original_name = self.name
2213 name = ensure_legal_c_identifier(original_name)
2214
2215 # impl_arguments
2216 s = ("&" if self.impl_by_reference else "") + name
2217 data.impl_arguments.append(s)
2218 if self.length:
2219 data.impl_arguments.append(self.length_name())
2220
2221 # impl_parameters
2222 data.impl_parameters.append(self.simple_declaration(by_reference=self.impl_by_reference))
2223 if self.length:
2224 data.impl_parameters.append("Py_ssize_clean_t " + self.length_name())
2225
2226 def _render_non_self(self, parameter, data):
Larry Hastingsabc716b2013-11-20 09:13:52 -08002227 self.parameter = parameter
Larry Hastings90261132014-01-07 12:21:08 -08002228 original_name = self.name
2229 name = ensure_legal_c_identifier(original_name)
Larry Hastings31826802013-10-19 00:09:25 -07002230
2231 # declarations
2232 d = self.declaration()
2233 data.declarations.append(d)
2234
2235 # initializers
2236 initializers = self.initialize()
2237 if initializers:
2238 data.initializers.append('/* initializers for ' + name + ' */\n' + initializers.rstrip())
2239
Larry Hastingsc2047262014-01-25 20:43:29 -08002240 # modifications
2241 modifications = self.modify()
2242 if modifications:
2243 data.modifications.append('/* modifications for ' + name + ' */\n' + modifications.rstrip())
2244
Larry Hastings31826802013-10-19 00:09:25 -07002245 # keywords
Larry Hastings7726ac92014-01-31 22:03:12 -08002246 data.keywords.append(parameter.name)
Larry Hastings31826802013-10-19 00:09:25 -07002247
2248 # format_units
2249 if self.is_optional() and '|' not in data.format_units:
2250 data.format_units.append('|')
2251 if parameter.is_keyword_only() and '$' not in data.format_units:
2252 data.format_units.append('$')
2253 data.format_units.append(self.format_unit)
2254
2255 # parse_arguments
2256 self.parse_argument(data.parse_arguments)
2257
Larry Hastings31826802013-10-19 00:09:25 -07002258 # cleanup
2259 cleanup = self.cleanup()
2260 if cleanup:
2261 data.cleanup.append('/* Cleanup for ' + name + ' */\n' + cleanup.rstrip() + "\n")
2262
Larry Hastings5c661892014-01-24 06:17:25 -08002263 def render(self, parameter, data):
2264 """
2265 parameter is a clinic.Parameter instance.
2266 data is a CRenderData instance.
2267 """
2268 self._render_self(parameter, data)
2269 self._render_non_self(parameter, data)
2270
Larry Hastingsebdcb502013-11-23 14:54:00 -08002271 def length_name(self):
2272 """Computes the name of the associated "length" variable."""
2273 if not self.length:
2274 return None
2275 return ensure_legal_c_identifier(self.name) + "_length"
2276
Larry Hastings31826802013-10-19 00:09:25 -07002277 # Why is this one broken out separately?
2278 # For "positional-only" function parsing,
2279 # which generates a bunch of PyArg_ParseTuple calls.
2280 def parse_argument(self, list):
2281 assert not (self.converter and self.encoding)
2282 if self.format_unit == 'O&':
2283 assert self.converter
2284 list.append(self.converter)
2285
2286 if self.encoding:
Larry Hastings77561cc2014-01-07 12:13:13 -08002287 list.append(c_repr(self.encoding))
2288 elif self.subclass_of:
2289 list.append(self.subclass_of)
Larry Hastings31826802013-10-19 00:09:25 -07002290
Larry Hastingsebdcb502013-11-23 14:54:00 -08002291 legal_name = ensure_legal_c_identifier(self.name)
2292 s = ("&" if self.parse_by_reference else "") + legal_name
Larry Hastings31826802013-10-19 00:09:25 -07002293 list.append(s)
2294
Larry Hastingsebdcb502013-11-23 14:54:00 -08002295 if self.length:
2296 list.append("&" + self.length_name())
2297
Larry Hastings31826802013-10-19 00:09:25 -07002298 #
2299 # All the functions after here are intended as extension points.
2300 #
2301
2302 def simple_declaration(self, by_reference=False):
2303 """
2304 Computes the basic declaration of the variable.
2305 Used in computing the prototype declaration and the
2306 variable declaration.
2307 """
2308 prototype = [self.type]
2309 if by_reference or not self.type.endswith('*'):
2310 prototype.append(" ")
2311 if by_reference:
2312 prototype.append('*')
Larry Hastingsdfcd4672013-10-27 02:49:39 -07002313 prototype.append(ensure_legal_c_identifier(self.name))
Larry Hastings31826802013-10-19 00:09:25 -07002314 return "".join(prototype)
2315
2316 def declaration(self):
2317 """
2318 The C statement to declare this variable.
2319 """
2320 declaration = [self.simple_declaration()]
Larry Hastingsabc716b2013-11-20 09:13:52 -08002321 default = self.c_default
2322 if not default and self.parameter.group:
2323 default = self.c_ignored_default
2324 if default:
Larry Hastings31826802013-10-19 00:09:25 -07002325 declaration.append(" = ")
Larry Hastingsabc716b2013-11-20 09:13:52 -08002326 declaration.append(default)
Larry Hastings31826802013-10-19 00:09:25 -07002327 declaration.append(";")
Larry Hastingsebdcb502013-11-23 14:54:00 -08002328 if self.length:
2329 declaration.append('\nPy_ssize_clean_t ')
2330 declaration.append(self.length_name())
2331 declaration.append(';')
Larry Hastings3f144c22014-01-06 10:34:00 -08002332 s = "".join(declaration)
2333 # double up curly-braces, this string will be used
2334 # as part of a format_map() template later
2335 s = s.replace("{", "{{")
2336 s = s.replace("}", "}}")
2337 return s
Larry Hastings31826802013-10-19 00:09:25 -07002338
2339 def initialize(self):
2340 """
2341 The C statements required to set up this variable before parsing.
2342 Returns a string containing this code indented at column 0.
2343 If no initialization is necessary, returns an empty string.
2344 """
2345 return ""
2346
Larry Hastingsc2047262014-01-25 20:43:29 -08002347 def modify(self):
2348 """
2349 The C statements required to modify this variable after parsing.
2350 Returns a string containing this code indented at column 0.
2351 If no initialization is necessary, returns an empty string.
2352 """
2353 return ""
2354
Larry Hastings31826802013-10-19 00:09:25 -07002355 def cleanup(self):
2356 """
2357 The C statements required to clean up after this variable.
2358 Returns a string containing this code indented at column 0.
2359 If no cleanup is necessary, returns an empty string.
2360 """
2361 return ""
2362
Larry Hastings7726ac92014-01-31 22:03:12 -08002363 def pre_render(self):
2364 """
2365 A second initialization function, like converter_init,
2366 called just before rendering.
2367 You are permitted to examine self.function here.
2368 """
2369 pass
2370
Larry Hastings31826802013-10-19 00:09:25 -07002371
2372class bool_converter(CConverter):
2373 type = 'int'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002374 default_type = bool
Larry Hastings31826802013-10-19 00:09:25 -07002375 format_unit = 'p'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002376 c_ignored_default = '0'
Larry Hastings31826802013-10-19 00:09:25 -07002377
2378 def converter_init(self):
Larry Hastings2a727912014-01-16 11:32:01 -08002379 if self.default is not unspecified:
2380 self.default = bool(self.default)
2381 self.c_default = str(int(self.default))
Larry Hastings31826802013-10-19 00:09:25 -07002382
2383class char_converter(CConverter):
2384 type = 'char'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002385 default_type = str
Larry Hastings31826802013-10-19 00:09:25 -07002386 format_unit = 'c'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002387 c_ignored_default = "'\0'"
Larry Hastings31826802013-10-19 00:09:25 -07002388
Larry Hastings4a55fc52014-01-12 11:09:57 -08002389 def converter_init(self):
Larry Hastings2a727912014-01-16 11:32:01 -08002390 if isinstance(self.default, str) and (len(self.default) != 1):
Larry Hastings4a55fc52014-01-12 11:09:57 -08002391 fail("char_converter: illegal default value " + repr(self.default))
2392
2393
Larry Hastings31826802013-10-19 00:09:25 -07002394@add_legacy_c_converter('B', bitwise=True)
Larry Hastingsb7ccb202014-01-18 23:50:21 -08002395class unsigned_char_converter(CConverter):
Serhiy Storchaka49776ef2014-01-19 00:38:36 +02002396 type = 'unsigned char'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002397 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002398 format_unit = 'b'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002399 c_ignored_default = "'\0'"
Larry Hastings31826802013-10-19 00:09:25 -07002400
2401 def converter_init(self, *, bitwise=False):
2402 if bitwise:
Larry Hastingsebdcb502013-11-23 14:54:00 -08002403 self.format_unit = 'B'
Larry Hastings31826802013-10-19 00:09:25 -07002404
Larry Hastingsb7ccb202014-01-18 23:50:21 -08002405class byte_converter(unsigned_char_converter): pass
2406
Larry Hastings31826802013-10-19 00:09:25 -07002407class short_converter(CConverter):
2408 type = 'short'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002409 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002410 format_unit = 'h'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002411 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002412
2413class unsigned_short_converter(CConverter):
2414 type = 'unsigned short'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002415 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002416 format_unit = 'H'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002417 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002418
2419 def converter_init(self, *, bitwise=False):
2420 if not bitwise:
2421 fail("Unsigned shorts must be bitwise (for now).")
2422
Larry Hastingsebdcb502013-11-23 14:54:00 -08002423@add_legacy_c_converter('C', types='str')
Larry Hastings31826802013-10-19 00:09:25 -07002424class int_converter(CConverter):
2425 type = 'int'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002426 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002427 format_unit = 'i'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002428 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002429
Larry Hastingsebdcb502013-11-23 14:54:00 -08002430 def converter_init(self, *, types='int'):
2431 if types == 'str':
2432 self.format_unit = 'C'
2433 elif types != 'int':
2434 fail("int_converter: illegal 'types' argument")
Larry Hastings31826802013-10-19 00:09:25 -07002435
2436class unsigned_int_converter(CConverter):
2437 type = 'unsigned int'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002438 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002439 format_unit = 'I'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002440 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002441
2442 def converter_init(self, *, bitwise=False):
2443 if not bitwise:
2444 fail("Unsigned ints must be bitwise (for now).")
2445
2446class long_converter(CConverter):
2447 type = 'long'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002448 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002449 format_unit = 'l'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002450 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002451
2452class unsigned_long_converter(CConverter):
2453 type = 'unsigned long'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002454 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002455 format_unit = 'k'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002456 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002457
2458 def converter_init(self, *, bitwise=False):
2459 if not bitwise:
2460 fail("Unsigned longs must be bitwise (for now).")
2461
2462class PY_LONG_LONG_converter(CConverter):
2463 type = 'PY_LONG_LONG'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002464 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002465 format_unit = 'L'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002466 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002467
2468class unsigned_PY_LONG_LONG_converter(CConverter):
2469 type = 'unsigned PY_LONG_LONG'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002470 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002471 format_unit = 'K'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002472 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002473
2474 def converter_init(self, *, bitwise=False):
2475 if not bitwise:
2476 fail("Unsigned PY_LONG_LONGs must be bitwise (for now).")
2477
2478class Py_ssize_t_converter(CConverter):
2479 type = 'Py_ssize_t'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002480 default_type = int
Larry Hastings31826802013-10-19 00:09:25 -07002481 format_unit = 'n'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002482 c_ignored_default = "0"
Larry Hastings31826802013-10-19 00:09:25 -07002483
2484
2485class float_converter(CConverter):
2486 type = 'float'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002487 default_type = float
Larry Hastings31826802013-10-19 00:09:25 -07002488 format_unit = 'f'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002489 c_ignored_default = "0.0"
Larry Hastings31826802013-10-19 00:09:25 -07002490
2491class double_converter(CConverter):
2492 type = 'double'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002493 default_type = float
Larry Hastings31826802013-10-19 00:09:25 -07002494 format_unit = 'd'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002495 c_ignored_default = "0.0"
Larry Hastings31826802013-10-19 00:09:25 -07002496
2497
2498class Py_complex_converter(CConverter):
2499 type = 'Py_complex'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002500 default_type = complex
Larry Hastings31826802013-10-19 00:09:25 -07002501 format_unit = 'D'
Larry Hastingsabc716b2013-11-20 09:13:52 -08002502 c_ignored_default = "{0.0, 0.0}"
Larry Hastings31826802013-10-19 00:09:25 -07002503
2504
2505class object_converter(CConverter):
2506 type = 'PyObject *'
2507 format_unit = 'O'
2508
Larry Hastings4a55fc52014-01-12 11:09:57 -08002509 def converter_init(self, *, converter=None, type=None, subclass_of=None):
2510 if converter:
2511 if subclass_of:
2512 fail("object: Cannot pass in both 'converter' and 'subclass_of'")
2513 self.format_unit = 'O&'
2514 self.converter = converter
2515 elif subclass_of:
Larry Hastings31826802013-10-19 00:09:25 -07002516 self.format_unit = 'O!'
Larry Hastings77561cc2014-01-07 12:13:13 -08002517 self.subclass_of = subclass_of
Larry Hastings4a55fc52014-01-12 11:09:57 -08002518
Larry Hastings77561cc2014-01-07 12:13:13 -08002519 if type is not None:
2520 self.type = type
Larry Hastings31826802013-10-19 00:09:25 -07002521
2522
Larry Hastingsebdcb502013-11-23 14:54:00 -08002523@add_legacy_c_converter('s#', length=True)
Larry Hastings2a727912014-01-16 11:32:01 -08002524@add_legacy_c_converter('y', types="bytes")
2525@add_legacy_c_converter('y#', types="bytes", length=True)
Larry Hastings31826802013-10-19 00:09:25 -07002526@add_legacy_c_converter('z', nullable=True)
Larry Hastingsebdcb502013-11-23 14:54:00 -08002527@add_legacy_c_converter('z#', nullable=True, length=True)
Larry Hastings31826802013-10-19 00:09:25 -07002528class str_converter(CConverter):
2529 type = 'const char *'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002530 default_type = (str, Null, NoneType)
Larry Hastings31826802013-10-19 00:09:25 -07002531 format_unit = 's'
2532
Larry Hastingsebdcb502013-11-23 14:54:00 -08002533 def converter_init(self, *, encoding=None, types="str",
2534 length=False, nullable=False, zeroes=False):
2535
2536 types = set(types.strip().split())
2537 bytes_type = set(("bytes",))
2538 str_type = set(("str",))
2539 all_3_type = set(("bytearray",)) | bytes_type | str_type
2540 is_bytes = types == bytes_type
2541 is_str = types == str_type
2542 is_all_3 = types == all_3_type
2543
2544 self.length = bool(length)
2545 format_unit = None
2546
2547 if encoding:
2548 self.encoding = encoding
2549
2550 if is_str and not (length or zeroes or nullable):
2551 format_unit = 'es'
2552 elif is_all_3 and not (length or zeroes or nullable):
2553 format_unit = 'et'
2554 elif is_str and length and zeroes and not nullable:
2555 format_unit = 'es#'
2556 elif is_all_3 and length and not (nullable or zeroes):
2557 format_unit = 'et#'
2558
2559 if format_unit.endswith('#'):
Larry Hastings5c661892014-01-24 06:17:25 -08002560 fail("Sorry: code using format unit ", repr(format_unit), "probably doesn't work properly yet.\nGive Larry your test case and he'll it.")
Larry Hastingsebdcb502013-11-23 14:54:00 -08002561 # TODO set pointer to NULL
2562 # TODO add cleanup for buffer
2563 pass
2564
2565 else:
2566 if zeroes:
2567 fail("str_converter: illegal combination of arguments (zeroes is only legal with an encoding)")
2568
2569 if is_bytes and not (nullable or length):
2570 format_unit = 'y'
2571 elif is_bytes and length and not nullable:
2572 format_unit = 'y#'
2573 elif is_str and not (nullable or length):
2574 format_unit = 's'
2575 elif is_str and length and not nullable:
2576 format_unit = 's#'
2577 elif is_str and nullable and not length:
2578 format_unit = 'z'
2579 elif is_str and nullable and length:
2580 format_unit = 'z#'
2581
2582 if not format_unit:
2583 fail("str_converter: illegal combination of arguments")
2584 self.format_unit = format_unit
Larry Hastings31826802013-10-19 00:09:25 -07002585
2586
2587class PyBytesObject_converter(CConverter):
2588 type = 'PyBytesObject *'
2589 format_unit = 'S'
2590
2591class PyByteArrayObject_converter(CConverter):
2592 type = 'PyByteArrayObject *'
2593 format_unit = 'Y'
2594
2595class unicode_converter(CConverter):
2596 type = 'PyObject *'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002597 default_type = (str, Null, NoneType)
Larry Hastings31826802013-10-19 00:09:25 -07002598 format_unit = 'U'
2599
Larry Hastingsebdcb502013-11-23 14:54:00 -08002600@add_legacy_c_converter('u#', length=True)
Larry Hastings31826802013-10-19 00:09:25 -07002601@add_legacy_c_converter('Z', nullable=True)
Larry Hastingsebdcb502013-11-23 14:54:00 -08002602@add_legacy_c_converter('Z#', nullable=True, length=True)
Larry Hastings31826802013-10-19 00:09:25 -07002603class Py_UNICODE_converter(CConverter):
2604 type = 'Py_UNICODE *'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002605 default_type = (str, Null, NoneType)
Larry Hastings31826802013-10-19 00:09:25 -07002606 format_unit = 'u'
2607
Larry Hastingsebdcb502013-11-23 14:54:00 -08002608 def converter_init(self, *, nullable=False, length=False):
2609 format_unit = 'Z' if nullable else 'u'
2610 if length:
2611 format_unit += '#'
2612 self.length = True
2613 self.format_unit = format_unit
Larry Hastings31826802013-10-19 00:09:25 -07002614
Larry Hastingsebdcb502013-11-23 14:54:00 -08002615#
2616# We define three string conventions for buffer types in the 'types' argument:
2617# 'buffer' : any object supporting the buffer interface
2618# 'rwbuffer': any object supporting the buffer interface, but must be writeable
2619# 'robuffer': any object supporting the buffer interface, but must not be writeable
2620#
2621@add_legacy_c_converter('s*', types='str bytes bytearray buffer')
2622@add_legacy_c_converter('z*', types='str bytes bytearray buffer', nullable=True)
2623@add_legacy_c_converter('w*', types='bytearray rwbuffer')
Larry Hastings31826802013-10-19 00:09:25 -07002624class Py_buffer_converter(CConverter):
2625 type = 'Py_buffer'
2626 format_unit = 'y*'
2627 impl_by_reference = True
Larry Hastings4a55fc52014-01-12 11:09:57 -08002628 c_ignored_default = "{NULL, NULL}"
Larry Hastings31826802013-10-19 00:09:25 -07002629
Larry Hastingsebdcb502013-11-23 14:54:00 -08002630 def converter_init(self, *, types='bytes bytearray buffer', nullable=False):
Larry Hastings4a55fc52014-01-12 11:09:57 -08002631 if self.default not in (unspecified, None):
2632 fail("The only legal default value for Py_buffer is None.")
Larry Hastings3f144c22014-01-06 10:34:00 -08002633 self.c_default = self.c_ignored_default
Larry Hastingsebdcb502013-11-23 14:54:00 -08002634 types = set(types.strip().split())
2635 bytes_type = set(('bytes',))
2636 bytearray_type = set(('bytearray',))
2637 buffer_type = set(('buffer',))
2638 rwbuffer_type = set(('rwbuffer',))
2639 robuffer_type = set(('robuffer',))
2640 str_type = set(('str',))
2641 bytes_bytearray_buffer_type = bytes_type | bytearray_type | buffer_type
2642
2643 format_unit = None
2644 if types == (str_type | bytes_bytearray_buffer_type):
2645 format_unit = 's*' if not nullable else 'z*'
Larry Hastings31826802013-10-19 00:09:25 -07002646 else:
Larry Hastingsebdcb502013-11-23 14:54:00 -08002647 if nullable:
2648 fail('Py_buffer_converter: illegal combination of arguments (nullable=True)')
2649 elif types == (bytes_bytearray_buffer_type):
2650 format_unit = 'y*'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002651 elif types == (bytearray_type | rwbuffer_type):
Larry Hastingsebdcb502013-11-23 14:54:00 -08002652 format_unit = 'w*'
2653 if not format_unit:
2654 fail("Py_buffer_converter: illegal combination of arguments")
2655
2656 self.format_unit = format_unit
Larry Hastings31826802013-10-19 00:09:25 -07002657
2658 def cleanup(self):
Larry Hastingsebdcb502013-11-23 14:54:00 -08002659 name = ensure_legal_c_identifier(self.name)
Larry Hastings4a55fc52014-01-12 11:09:57 -08002660 return "".join(["if (", name, ".obj)\n PyBuffer_Release(&", name, ");\n"])
Larry Hastingsebdcb502013-11-23 14:54:00 -08002661
2662
Larry Hastings5c661892014-01-24 06:17:25 -08002663def correct_name_for_self(f):
2664 if f.kind in (CALLABLE, METHOD_INIT):
2665 if f.cls:
2666 return "PyObject *", "self"
2667 return "PyModuleDef *", "module"
2668 if f.kind == STATIC_METHOD:
2669 return "void *", "null"
2670 if f.kind in (CLASS_METHOD, METHOD_NEW):
2671 return "PyTypeObject *", "type"
2672 raise RuntimeError("Unhandled type of function f: " + repr(f.kind))
2673
Larry Hastingsc2047262014-01-25 20:43:29 -08002674def required_type_for_self_for_parser(f):
2675 type, _ = correct_name_for_self(f)
2676 if f.kind in (METHOD_INIT, METHOD_NEW, STATIC_METHOD, CLASS_METHOD):
2677 return type
2678 return None
2679
Larry Hastings5c661892014-01-24 06:17:25 -08002680
Larry Hastingsebdcb502013-11-23 14:54:00 -08002681class self_converter(CConverter):
2682 """
2683 A special-case converter:
2684 this is the default converter used for "self".
2685 """
Larry Hastings5c661892014-01-24 06:17:25 -08002686 type = None
2687 format_unit = ''
2688
Larry Hastings78cf85c2014-01-04 12:44:57 -08002689 def converter_init(self, *, type=None):
Larry Hastings7726ac92014-01-31 22:03:12 -08002690 self.specified_type = type
2691
2692 def pre_render(self):
Larry Hastingsebdcb502013-11-23 14:54:00 -08002693 f = self.function
Larry Hastings5c661892014-01-24 06:17:25 -08002694 default_type, default_name = correct_name_for_self(f)
2695 self.signature_name = default_name
Larry Hastings7726ac92014-01-31 22:03:12 -08002696 self.type = self.specified_type or self.type or default_type
Larry Hastingsebdcb502013-11-23 14:54:00 -08002697
Larry Hastings5c661892014-01-24 06:17:25 -08002698 kind = self.function.kind
2699 new_or_init = kind in (METHOD_NEW, METHOD_INIT)
2700
2701 if (kind == STATIC_METHOD) or new_or_init:
2702 self.show_in_signature = False
2703
2704 # tp_new (METHOD_NEW) functions are of type newfunc:
2705 # typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *);
2706 # PyTypeObject is a typedef for struct _typeobject.
2707 #
2708 # tp_init (METHOD_INIT) functions are of type initproc:
2709 # typedef int (*initproc)(PyObject *, PyObject *, PyObject *);
2710 #
2711 # All other functions generated by Argument Clinic are stored in
2712 # PyMethodDef structures, in the ml_meth slot, which is of type PyCFunction:
2713 # typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
2714 # However! We habitually cast these functions to PyCFunction,
2715 # since functions that accept keyword arguments don't fit this signature
2716 # but are stored there anyway. So strict type equality isn't important
2717 # for these functions.
2718 #
2719 # So:
2720 #
2721 # * The name of the first parameter to the impl and the parsing function will always
2722 # be self.name.
2723 #
2724 # * The type of the first parameter to the impl will always be of self.type.
2725 #
2726 # * If the function is neither tp_new (METHOD_NEW) nor tp_init (METHOD_INIT):
2727 # * The type of the first parameter to the parsing function is also self.type.
2728 # This means that if you step into the parsing function, your "self" parameter
2729 # is of the correct type, which may make debugging more pleasant.
2730 #
2731 # * Else if the function is tp_new (METHOD_NEW):
2732 # * The type of the first parameter to the parsing function is "PyTypeObject *",
2733 # so the type signature of the function call is an exact match.
2734 # * If self.type != "PyTypeObject *", we cast the first parameter to self.type
2735 # in the impl call.
2736 #
2737 # * Else if the function is tp_init (METHOD_INIT):
2738 # * The type of the first parameter to the parsing function is "PyObject *",
2739 # so the type signature of the function call is an exact match.
2740 # * If self.type != "PyObject *", we cast the first parameter to self.type
2741 # in the impl call.
2742
2743 @property
2744 def parser_type(self):
Larry Hastingsc2047262014-01-25 20:43:29 -08002745 return required_type_for_self_for_parser(self.function) or self.type
Larry Hastings78cf85c2014-01-04 12:44:57 -08002746
Larry Hastingsebdcb502013-11-23 14:54:00 -08002747 def render(self, parameter, data):
Larry Hastings5c661892014-01-24 06:17:25 -08002748 """
2749 parameter is a clinic.Parameter instance.
2750 data is a CRenderData instance.
2751 """
2752 if self.function.kind == STATIC_METHOD:
2753 return
2754
2755 self._render_self(parameter, data)
2756
2757 if self.type != self.parser_type:
2758 # insert cast to impl_argument[0], aka self.
2759 # we know we're in the first slot in all the CRenderData lists,
2760 # because we render parameters in order, and self is always first.
2761 assert len(data.impl_arguments) == 1
2762 assert data.impl_arguments[0] == self.name
2763 data.impl_arguments[0] = '(' + self.type + ")" + data.impl_arguments[0]
2764
2765 def set_template_dict(self, template_dict):
2766 template_dict['self_name'] = self.name
2767 template_dict['self_type'] = self.parser_type
Larry Hastingsf0537e82014-01-25 22:01:12 -08002768 kind = self.function.kind
2769 cls = self.function.cls
2770
2771 if ((kind in (METHOD_NEW, METHOD_INIT)) and cls and cls.typedef):
2772 if kind == METHOD_NEW:
2773 passed_in_type = self.name
2774 else:
2775 passed_in_type = 'Py_TYPE({})'.format(self.name)
2776
2777 line = '({passed_in_type} == {type_object}) &&\n '
2778 d = {
2779 'type_object': self.function.cls.type_object,
2780 'passed_in_type': passed_in_type
2781 }
2782 template_dict['self_type_check'] = line.format_map(d)
Larry Hastingsebdcb502013-11-23 14:54:00 -08002783
Larry Hastings31826802013-10-19 00:09:25 -07002784
2785
2786def add_c_return_converter(f, name=None):
2787 if not name:
2788 name = f.__name__
2789 if not name.endswith('_return_converter'):
2790 return f
2791 name = name[:-len('_return_converter')]
2792 return_converters[name] = f
2793 return f
2794
2795
2796class CReturnConverterAutoRegister(type):
2797 def __init__(cls, name, bases, classdict):
2798 add_c_return_converter(cls)
2799
2800class CReturnConverter(metaclass=CReturnConverterAutoRegister):
2801
Larry Hastings78cf85c2014-01-04 12:44:57 -08002802 # The C type to use for this variable.
2803 # 'type' should be a Python string specifying the type, e.g. "int".
2804 # If this is a pointer type, the type string should end with ' *'.
Larry Hastings31826802013-10-19 00:09:25 -07002805 type = 'PyObject *'
Larry Hastings78cf85c2014-01-04 12:44:57 -08002806
2807 # The Python default value for this parameter, as a Python value.
2808 # Or the magic value "unspecified" if there is no default.
Larry Hastings31826802013-10-19 00:09:25 -07002809 default = None
2810
Larry Hastings2a727912014-01-16 11:32:01 -08002811 def __init__(self, *, py_default=None, **kwargs):
2812 self.py_default = py_default
Larry Hastings31826802013-10-19 00:09:25 -07002813 try:
2814 self.return_converter_init(**kwargs)
2815 except TypeError as e:
2816 s = ', '.join(name + '=' + repr(value) for name, value in kwargs.items())
2817 sys.exit(self.__class__.__name__ + '(' + s + ')\n' + str(e))
2818
2819 def return_converter_init(self):
2820 pass
2821
2822 def declare(self, data, name="_return_value"):
2823 line = []
2824 add = line.append
2825 add(self.type)
2826 if not self.type.endswith('*'):
2827 add(' ')
2828 add(name + ';')
2829 data.declarations.append(''.join(line))
2830 data.return_value = name
2831
2832 def err_occurred_if(self, expr, data):
2833 data.return_conversion.append('if (({}) && PyErr_Occurred())\n goto exit;\n'.format(expr))
2834
2835 def err_occurred_if_null_pointer(self, variable, data):
2836 data.return_conversion.append('if ({} == NULL)\n goto exit;\n'.format(variable))
2837
2838 def render(self, function, data):
2839 """
2840 function is a clinic.Function instance.
2841 data is a CRenderData instance.
2842 """
2843 pass
2844
2845add_c_return_converter(CReturnConverter, 'object')
2846
Larry Hastings78cf85c2014-01-04 12:44:57 -08002847class NoneType_return_converter(CReturnConverter):
2848 def render(self, function, data):
2849 self.declare(data)
2850 data.return_conversion.append('''
2851if (_return_value != Py_None)
2852 goto exit;
2853return_value = Py_None;
2854Py_INCREF(Py_None);
2855'''.strip())
2856
Larry Hastings4a55fc52014-01-12 11:09:57 -08002857class bool_return_converter(CReturnConverter):
Larry Hastings31826802013-10-19 00:09:25 -07002858 type = 'int'
2859
2860 def render(self, function, data):
2861 self.declare(data)
2862 self.err_occurred_if("_return_value == -1", data)
Larry Hastings4a55fc52014-01-12 11:09:57 -08002863 data.return_conversion.append('return_value = PyBool_FromLong((long)_return_value);\n')
Larry Hastings31826802013-10-19 00:09:25 -07002864
2865class long_return_converter(CReturnConverter):
2866 type = 'long'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002867 conversion_fn = 'PyLong_FromLong'
2868 cast = ''
Larry Hastings31826802013-10-19 00:09:25 -07002869
2870 def render(self, function, data):
2871 self.declare(data)
2872 self.err_occurred_if("_return_value == -1", data)
2873 data.return_conversion.append(
Larry Hastings4a55fc52014-01-12 11:09:57 -08002874 ''.join(('return_value = ', self.conversion_fn, '(', self.cast, '_return_value);\n')))
Larry Hastings31826802013-10-19 00:09:25 -07002875
Larry Hastings4a55fc52014-01-12 11:09:57 -08002876class int_return_converter(long_return_converter):
2877 type = 'int'
2878 cast = '(long)'
Larry Hastings31826802013-10-19 00:09:25 -07002879
Larry Hastingsb7ccb202014-01-18 23:50:21 -08002880class init_return_converter(long_return_converter):
2881 """
2882 Special return converter for __init__ functions.
2883 """
2884 type = 'int'
2885 cast = '(long)'
2886
2887 def render(self, function, data):
2888 pass
2889
Larry Hastings4a55fc52014-01-12 11:09:57 -08002890class unsigned_long_return_converter(long_return_converter):
2891 type = 'unsigned long'
2892 conversion_fn = 'PyLong_FromUnsignedLong'
2893
2894class unsigned_int_return_converter(unsigned_long_return_converter):
2895 type = 'unsigned int'
2896 cast = '(unsigned long)'
2897
2898class Py_ssize_t_return_converter(long_return_converter):
Larry Hastings31826802013-10-19 00:09:25 -07002899 type = 'Py_ssize_t'
Larry Hastings4a55fc52014-01-12 11:09:57 -08002900 conversion_fn = 'PyLong_FromSsize_t'
2901
2902class size_t_return_converter(long_return_converter):
2903 type = 'size_t'
2904 conversion_fn = 'PyLong_FromSize_t'
2905
2906
2907class double_return_converter(CReturnConverter):
2908 type = 'double'
2909 cast = ''
Larry Hastings31826802013-10-19 00:09:25 -07002910
2911 def render(self, function, data):
2912 self.declare(data)
Larry Hastings4a55fc52014-01-12 11:09:57 -08002913 self.err_occurred_if("_return_value == -1.0", data)
Larry Hastings31826802013-10-19 00:09:25 -07002914 data.return_conversion.append(
Larry Hastings4a55fc52014-01-12 11:09:57 -08002915 'return_value = PyFloat_FromDouble(' + self.cast + '_return_value);\n')
2916
2917class float_return_converter(double_return_converter):
2918 type = 'float'
2919 cast = '(double)'
Larry Hastings31826802013-10-19 00:09:25 -07002920
2921
2922class DecodeFSDefault_return_converter(CReturnConverter):
2923 type = 'char *'
2924
2925 def render(self, function, data):
2926 self.declare(data)
2927 self.err_occurred_if_null_pointer("_return_value", data)
2928 data.return_conversion.append(
2929 'return_value = PyUnicode_DecodeFSDefault(_return_value);\n')
2930
2931
2932class IndentStack:
2933 def __init__(self):
2934 self.indents = []
2935 self.margin = None
2936
2937 def _ensure(self):
2938 if not self.indents:
2939 fail('IndentStack expected indents, but none are defined.')
2940
2941 def measure(self, line):
2942 """
2943 Returns the length of the line's margin.
2944 """
2945 if '\t' in line:
Larry Hastings2623c8c2014-02-08 22:15:29 -08002946 fail('Tab characters are illegal in the Argument Clinic DSL.')
Larry Hastings31826802013-10-19 00:09:25 -07002947 stripped = line.lstrip()
2948 if not len(stripped):
2949 # we can't tell anything from an empty line
2950 # so just pretend it's indented like our current indent
2951 self._ensure()
2952 return self.indents[-1]
2953 return len(line) - len(stripped)
2954
2955 def infer(self, line):
2956 """
2957 Infer what is now the current margin based on this line.
2958 Returns:
2959 1 if we have indented (or this is the first margin)
2960 0 if the margin has not changed
2961 -N if we have dedented N times
2962 """
2963 indent = self.measure(line)
2964 margin = ' ' * indent
2965 if not self.indents:
2966 self.indents.append(indent)
2967 self.margin = margin
2968 return 1
2969 current = self.indents[-1]
2970 if indent == current:
2971 return 0
2972 if indent > current:
2973 self.indents.append(indent)
2974 self.margin = margin
2975 return 1
2976 # indent < current
2977 if indent not in self.indents:
2978 fail("Illegal outdent.")
2979 outdent_count = 0
2980 while indent != current:
2981 self.indents.pop()
2982 current = self.indents[-1]
2983 outdent_count -= 1
2984 self.margin = margin
2985 return outdent_count
2986
2987 @property
2988 def depth(self):
2989 """
2990 Returns how many margins are currently defined.
2991 """
2992 return len(self.indents)
2993
2994 def indent(self, line):
2995 """
2996 Indents a line by the currently defined margin.
2997 """
2998 return self.margin + line
2999
3000 def dedent(self, line):
3001 """
3002 Dedents a line by the currently defined margin.
3003 (The inverse of 'indent'.)
3004 """
3005 margin = self.margin
3006 indent = self.indents[-1]
3007 if not line.startswith(margin):
3008 fail('Cannot dedent, line does not start with the previous margin:')
3009 return line[indent:]
3010
3011
3012class DSLParser:
3013 def __init__(self, clinic):
3014 self.clinic = clinic
3015
3016 self.directives = {}
3017 for name in dir(self):
3018 # functions that start with directive_ are added to directives
3019 _, s, key = name.partition("directive_")
3020 if s:
3021 self.directives[key] = getattr(self, name)
3022
3023 # functions that start with at_ are too, with an @ in front
3024 _, s, key = name.partition("at_")
3025 if s:
3026 self.directives['@' + key] = getattr(self, name)
3027
3028 self.reset()
3029
3030 def reset(self):
3031 self.function = None
3032 self.state = self.state_dsl_start
3033 self.parameter_indent = None
3034 self.keyword_only = False
3035 self.group = 0
3036 self.parameter_state = self.ps_start
Larry Hastingsc2047262014-01-25 20:43:29 -08003037 self.seen_positional_with_default = False
Larry Hastings31826802013-10-19 00:09:25 -07003038 self.indent = IndentStack()
3039 self.kind = CALLABLE
3040 self.coexist = False
Larry Hastings2a727912014-01-16 11:32:01 -08003041 self.parameter_continuation = ''
Larry Hastingsbebf7352014-01-17 17:47:17 -08003042 self.preserve_output = False
Larry Hastings31826802013-10-19 00:09:25 -07003043
Larry Hastingsebdcb502013-11-23 14:54:00 -08003044 def directive_version(self, required):
3045 global version
3046 if version_comparitor(version, required) < 0:
3047 fail("Insufficient Clinic version!\n Version: " + version + "\n Required: " + required)
3048
Larry Hastings31826802013-10-19 00:09:25 -07003049 def directive_module(self, name):
3050 fields = name.split('.')
3051 new = fields.pop()
3052 module, cls = self.clinic._module_and_class(fields)
3053 if cls:
3054 fail("Can't nest a module inside a class!")
Larry Hastingsc2047262014-01-25 20:43:29 -08003055
3056 if name in module.classes:
3057 fail("Already defined module " + repr(name) + "!")
3058
Larry Hastings31826802013-10-19 00:09:25 -07003059 m = Module(name, module)
3060 module.modules[name] = m
3061 self.block.signatures.append(m)
3062
Larry Hastingsc2047262014-01-25 20:43:29 -08003063 def directive_class(self, name, typedef, type_object):
Larry Hastings31826802013-10-19 00:09:25 -07003064 fields = name.split('.')
3065 in_classes = False
3066 parent = self
3067 name = fields.pop()
3068 so_far = []
3069 module, cls = self.clinic._module_and_class(fields)
3070
Larry Hastingsc2047262014-01-25 20:43:29 -08003071 parent = cls or module
3072 if name in parent.classes:
3073 fail("Already defined class " + repr(name) + "!")
3074
3075 c = Class(name, module, cls, typedef, type_object)
3076 parent.classes[name] = c
Larry Hastings31826802013-10-19 00:09:25 -07003077 self.block.signatures.append(c)
3078
Larry Hastingsbebf7352014-01-17 17:47:17 -08003079 def directive_set(self, name, value):
3080 if name not in ("line_prefix", "line_suffix"):
3081 fail("unknown variable", repr(name))
3082
3083 value = value.format_map({
3084 'block comment start': '/*',
3085 'block comment end': '*/',
3086 })
3087
3088 self.clinic.__dict__[name] = value
3089
3090 def directive_destination(self, name, command, *args):
Zachary Ware071baa62014-01-21 23:07:12 -06003091 if command == 'new':
3092 self.clinic.add_destination(name, *args)
Larry Hastingsbebf7352014-01-17 17:47:17 -08003093 return
3094
Zachary Ware071baa62014-01-21 23:07:12 -06003095 if command == 'clear':
Larry Hastingsbebf7352014-01-17 17:47:17 -08003096 self.clinic.get_destination(name).clear()
3097 fail("unknown destination command", repr(command))
3098
3099
3100 def directive_output(self, field, destination=''):
3101 fd = self.clinic.field_destinations
3102
3103 if field == "preset":
3104 preset = self.clinic.presets.get(destination)
3105 if not preset:
3106 fail("Unknown preset " + repr(destination) + "!")
3107 fd.update(preset)
3108 return
3109
3110 if field == "push":
3111 self.clinic.field_destinations_stack.append(fd.copy())
3112 return
3113
3114 if field == "pop":
3115 if not self.clinic.field_destinations_stack:
3116 fail("Can't 'output pop', stack is empty!")
3117 previous_fd = self.clinic.field_destinations_stack.pop()
3118 fd.update(previous_fd)
3119 return
3120
3121 # secret command for debugging!
3122 if field == "print":
3123 self.block.output.append(pprint.pformat(fd))
3124 self.block.output.append('\n')
3125 return
3126
3127 d = self.clinic.get_destination(destination)
3128
3129 if field == "everything":
3130 for name in list(fd):
3131 fd[name] = d
3132 return
3133
3134 if field not in fd:
Larry Hastings7726ac92014-01-31 22:03:12 -08003135 fail("Invalid field " + repr(field) + ", must be one of:\n preset push pop print everything " + " ".join(fd))
Larry Hastingsbebf7352014-01-17 17:47:17 -08003136 fd[field] = d
3137
3138 def directive_dump(self, name):
3139 self.block.output.append(self.clinic.get_destination(name).dump())
3140
3141 def directive_print(self, *args):
3142 self.block.output.append(' '.join(args))
3143 self.block.output.append('\n')
3144
3145 def directive_preserve(self):
3146 if self.preserve_output:
3147 fail("Can't have preserve twice in one block!")
3148 self.preserve_output = True
3149
Larry Hastings31826802013-10-19 00:09:25 -07003150 def at_classmethod(self):
Larry Hastings2a727912014-01-16 11:32:01 -08003151 if self.kind is not CALLABLE:
3152 fail("Can't set @classmethod, function is not a normal callable")
Larry Hastings31826802013-10-19 00:09:25 -07003153 self.kind = CLASS_METHOD
3154
3155 def at_staticmethod(self):
Larry Hastings2a727912014-01-16 11:32:01 -08003156 if self.kind is not CALLABLE:
3157 fail("Can't set @staticmethod, function is not a normal callable")
Larry Hastings31826802013-10-19 00:09:25 -07003158 self.kind = STATIC_METHOD
3159
3160 def at_coexist(self):
Larry Hastings2a727912014-01-16 11:32:01 -08003161 if self.coexist:
3162 fail("Called @coexist twice!")
Larry Hastings31826802013-10-19 00:09:25 -07003163 self.coexist = True
3164
3165 def parse(self, block):
3166 self.reset()
3167 self.block = block
Larry Hastingsbebf7352014-01-17 17:47:17 -08003168 self.saved_output = self.block.output
3169 block.output = []
Larry Hastings31826802013-10-19 00:09:25 -07003170 block_start = self.clinic.block_parser.line_number
3171 lines = block.input.split('\n')
3172 for line_number, line in enumerate(lines, self.clinic.block_parser.block_start_line_number):
3173 if '\t' in line:
3174 fail('Tab characters are illegal in the Clinic DSL.\n\t' + repr(line), line_number=block_start)
3175 self.state(line)
3176
3177 self.next(self.state_terminal)
3178 self.state(None)
3179
Larry Hastingsbebf7352014-01-17 17:47:17 -08003180 block.output.extend(self.clinic.language.render(clinic, block.signatures))
3181
3182 if self.preserve_output:
3183 if block.output:
3184 fail("'preserve' only works for blocks that don't produce any output!")
3185 block.output = self.saved_output
Larry Hastings31826802013-10-19 00:09:25 -07003186
3187 @staticmethod
3188 def ignore_line(line):
3189 # ignore comment-only lines
3190 if line.lstrip().startswith('#'):
3191 return True
3192
3193 # Ignore empty lines too
3194 # (but not in docstring sections!)
3195 if not line.strip():
3196 return True
3197
3198 return False
3199
3200 @staticmethod
3201 def calculate_indent(line):
3202 return len(line) - len(line.strip())
3203
3204 def next(self, state, line=None):
3205 # real_print(self.state.__name__, "->", state.__name__, ", line=", line)
3206 self.state = state
3207 if line is not None:
3208 self.state(line)
3209
3210 def state_dsl_start(self, line):
3211 # self.block = self.ClinicOutputBlock(self)
3212 if self.ignore_line(line):
3213 return
Larry Hastings7726ac92014-01-31 22:03:12 -08003214
3215 # is it a directive?
3216 fields = shlex.split(line)
3217 directive_name = fields[0]
3218 directive = self.directives.get(directive_name, None)
3219 if directive:
3220 try:
3221 directive(*fields[1:])
3222 except TypeError as e:
3223 fail(str(e))
3224 return
3225
Larry Hastings31826802013-10-19 00:09:25 -07003226 self.next(self.state_modulename_name, line)
3227
3228 def state_modulename_name(self, line):
3229 # looking for declaration, which establishes the leftmost column
3230 # line should be
3231 # modulename.fnname [as c_basename] [-> return annotation]
3232 # square brackets denote optional syntax.
3233 #
Larry Hastings4a714d42014-01-14 22:22:41 -08003234 # alternatively:
3235 # modulename.fnname [as c_basename] = modulename.existing_fn_name
3236 # clones the parameters and return converter from that
3237 # function. you can't modify them. you must enter a
3238 # new docstring.
3239 #
Larry Hastings31826802013-10-19 00:09:25 -07003240 # (but we might find a directive first!)
3241 #
3242 # this line is permitted to start with whitespace.
3243 # we'll call this number of spaces F (for "function").
3244
3245 if not line.strip():
3246 return
3247
3248 self.indent.infer(line)
3249
Larry Hastings4a714d42014-01-14 22:22:41 -08003250 # are we cloning?
3251 before, equals, existing = line.rpartition('=')
3252 if equals:
3253 full_name, _, c_basename = before.partition(' as ')
3254 full_name = full_name.strip()
3255 c_basename = c_basename.strip()
3256 existing = existing.strip()
3257 if (is_legal_py_identifier(full_name) and
3258 (not c_basename or is_legal_c_identifier(c_basename)) and
3259 is_legal_py_identifier(existing)):
3260 # we're cloning!
3261 fields = [x.strip() for x in existing.split('.')]
3262 function_name = fields.pop()
3263 module, cls = self.clinic._module_and_class(fields)
3264
3265 for existing_function in (cls or module).functions:
3266 if existing_function.name == function_name:
3267 break
3268 else:
3269 existing_function = None
3270 if not existing_function:
Larry Hastings7726ac92014-01-31 22:03:12 -08003271 print("class", cls, "module", module, "existing", existing)
Larry Hastingsc2047262014-01-25 20:43:29 -08003272 print("cls. functions", cls.functions)
Larry Hastings4a714d42014-01-14 22:22:41 -08003273 fail("Couldn't find existing function " + repr(existing) + "!")
3274
3275 fields = [x.strip() for x in full_name.split('.')]
3276 function_name = fields.pop()
3277 module, cls = self.clinic._module_and_class(fields)
3278
3279 if not (existing_function.kind == self.kind and existing_function.coexist == self.coexist):
3280 fail("'kind' of function and cloned function don't match! (@classmethod/@staticmethod/@coexist)")
Larry Hastings7726ac92014-01-31 22:03:12 -08003281 self.function = existing_function.copy(name=function_name, full_name=full_name, module=module, cls=cls, c_basename=c_basename, docstring='')
Larry Hastings4a714d42014-01-14 22:22:41 -08003282
3283 self.block.signatures.append(self.function)
3284 (cls or module).functions.append(self.function)
3285 self.next(self.state_function_docstring)
3286 return
3287
Larry Hastings31826802013-10-19 00:09:25 -07003288 line, _, returns = line.partition('->')
3289
3290 full_name, _, c_basename = line.partition(' as ')
3291 full_name = full_name.strip()
3292 c_basename = c_basename.strip() or None
3293
Larry Hastingsdfcd4672013-10-27 02:49:39 -07003294 if not is_legal_py_identifier(full_name):
3295 fail("Illegal function name: {}".format(full_name))
3296 if c_basename and not is_legal_c_identifier(c_basename):
3297 fail("Illegal C basename: {}".format(c_basename))
3298
Larry Hastingsb7ccb202014-01-18 23:50:21 -08003299 return_converter = None
3300 if returns:
Larry Hastings31826802013-10-19 00:09:25 -07003301 ast_input = "def x() -> {}: pass".format(returns)
3302 module = None
3303 try:
3304 module = ast.parse(ast_input)
3305 except SyntaxError:
3306 pass
3307 if not module:
3308 fail("Badly-formed annotation for " + full_name + ": " + returns)
3309 try:
3310 name, legacy, kwargs = self.parse_converter(module.body[0].returns)
Antoine Pitroud7fb7912014-01-14 21:02:43 +01003311 if legacy:
3312 fail("Legacy converter {!r} not allowed as a return converter"
3313 .format(name))
Larry Hastings31826802013-10-19 00:09:25 -07003314 if name not in return_converters:
Antoine Pitroud7fb7912014-01-14 21:02:43 +01003315 fail("No available return converter called " + repr(name))
Larry Hastings31826802013-10-19 00:09:25 -07003316 return_converter = return_converters[name](**kwargs)
3317 except ValueError:
3318 fail("Badly-formed annotation for " + full_name + ": " + returns)
3319
3320 fields = [x.strip() for x in full_name.split('.')]
3321 function_name = fields.pop()
3322 module, cls = self.clinic._module_and_class(fields)
3323
Larry Hastings8666e652014-01-12 14:12:59 -08003324 fields = full_name.split('.')
3325 if fields[-1] == '__new__':
3326 if (self.kind != CLASS_METHOD) or (not cls):
3327 fail("__new__ must be a class method!")
3328 self.kind = METHOD_NEW
3329 elif fields[-1] == '__init__':
3330 if (self.kind != CALLABLE) or (not cls):
3331 fail("__init__ must be a normal method, not a class or static method!")
3332 self.kind = METHOD_INIT
Larry Hastingsb7ccb202014-01-18 23:50:21 -08003333 if not return_converter:
3334 return_converter = init_return_converter()
Larry Hastings8666e652014-01-12 14:12:59 -08003335 elif fields[-1] in unsupported_special_methods:
Larry Hastings5c661892014-01-24 06:17:25 -08003336 fail(fields[-1] + " is a special method and cannot be converted to Argument Clinic! (Yet.)")
Larry Hastings8666e652014-01-12 14:12:59 -08003337
Larry Hastingsb7ccb202014-01-18 23:50:21 -08003338 if not return_converter:
3339 return_converter = CReturnConverter()
3340
Larry Hastings31826802013-10-19 00:09:25 -07003341 if not module:
3342 fail("Undefined module used in declaration of " + repr(full_name.strip()) + ".")
3343 self.function = Function(name=function_name, full_name=full_name, module=module, cls=cls, c_basename=c_basename,
3344 return_converter=return_converter, kind=self.kind, coexist=self.coexist)
3345 self.block.signatures.append(self.function)
Larry Hastings5c661892014-01-24 06:17:25 -08003346
3347 # insert a self converter automatically
Larry Hastingsc2047262014-01-25 20:43:29 -08003348 type, name = correct_name_for_self(self.function)
3349 kwargs = {}
3350 if cls and type == "PyObject *":
3351 kwargs['type'] = cls.typedef
Larry Hastings7726ac92014-01-31 22:03:12 -08003352 sc = self.function.self_converter = self_converter(name, name, self.function, **kwargs)
Larry Hastings5c661892014-01-24 06:17:25 -08003353 p_self = Parameter(sc.name, inspect.Parameter.POSITIONAL_ONLY, function=self.function, converter=sc)
3354 self.function.parameters[sc.name] = p_self
3355
Larry Hastings4a714d42014-01-14 22:22:41 -08003356 (cls or module).functions.append(self.function)
Larry Hastings31826802013-10-19 00:09:25 -07003357 self.next(self.state_parameters_start)
3358
3359 # Now entering the parameters section. The rules, formally stated:
3360 #
3361 # * All lines must be indented with spaces only.
3362 # * The first line must be a parameter declaration.
3363 # * The first line must be indented.
3364 # * This first line establishes the indent for parameters.
3365 # * We'll call this number of spaces P (for "parameter").
3366 # * Thenceforth:
3367 # * Lines indented with P spaces specify a parameter.
3368 # * Lines indented with > P spaces are docstrings for the previous
3369 # parameter.
3370 # * We'll call this number of spaces D (for "docstring").
3371 # * All subsequent lines indented with >= D spaces are stored as
3372 # part of the per-parameter docstring.
3373 # * All lines will have the first D spaces of the indent stripped
3374 # before they are stored.
3375 # * It's illegal to have a line starting with a number of spaces X
3376 # such that P < X < D.
3377 # * A line with < P spaces is the first line of the function
3378 # docstring, which ends processing for parameters and per-parameter
3379 # docstrings.
3380 # * The first line of the function docstring must be at the same
3381 # indent as the function declaration.
3382 # * It's illegal to have any line in the parameters section starting
3383 # with X spaces such that F < X < P. (As before, F is the indent
3384 # of the function declaration.)
3385 #
Larry Hastings31826802013-10-19 00:09:25 -07003386 # Also, currently Argument Clinic places the following restrictions on groups:
3387 # * Each group must contain at least one parameter.
3388 # * Each group may contain at most one group, which must be the furthest
3389 # thing in the group from the required parameters. (The nested group
3390 # must be the first in the group when it's before the required
3391 # parameters, and the last thing in the group when after the required
3392 # parameters.)
3393 # * There may be at most one (top-level) group to the left or right of
3394 # the required parameters.
3395 # * You must specify a slash, and it must be after all parameters.
3396 # (In other words: either all parameters are positional-only,
3397 # or none are.)
3398 #
3399 # Said another way:
3400 # * Each group must contain at least one parameter.
3401 # * All left square brackets before the required parameters must be
3402 # consecutive. (You can't have a left square bracket followed
3403 # by a parameter, then another left square bracket. You can't
3404 # have a left square bracket, a parameter, a right square bracket,
3405 # and then a left square bracket.)
3406 # * All right square brackets after the required parameters must be
3407 # consecutive.
3408 #
3409 # These rules are enforced with a single state variable:
3410 # "parameter_state". (Previously the code was a miasma of ifs and
3411 # separate boolean state variables.) The states are:
3412 #
Larry Hastingsc2047262014-01-25 20:43:29 -08003413 # [ [ a, b, ] c, ] d, e, f=3, [ g, h, [ i ] ] / <- line
3414 # 01 2 3 4 5 6 7 <- state transitions
Larry Hastings31826802013-10-19 00:09:25 -07003415 #
3416 # 0: ps_start. before we've seen anything. legal transitions are to 1 or 3.
3417 # 1: ps_left_square_before. left square brackets before required parameters.
3418 # 2: ps_group_before. in a group, before required parameters.
Larry Hastingsc2047262014-01-25 20:43:29 -08003419 # 3: ps_required. required parameters, positional-or-keyword or positional-only
3420 # (we don't know yet). (renumber left groups!)
3421 # 4: ps_optional. positional-or-keyword or positional-only parameters that
3422 # now must have default values.
3423 # 5: ps_group_after. in a group, after required parameters.
3424 # 6: ps_right_square_after. right square brackets after required parameters.
3425 # 7: ps_seen_slash. seen slash.
Larry Hastings31826802013-10-19 00:09:25 -07003426 ps_start, ps_left_square_before, ps_group_before, ps_required, \
Larry Hastingsc2047262014-01-25 20:43:29 -08003427 ps_optional, ps_group_after, ps_right_square_after, ps_seen_slash = range(8)
Larry Hastings31826802013-10-19 00:09:25 -07003428
3429 def state_parameters_start(self, line):
3430 if self.ignore_line(line):
3431 return
3432
3433 # if this line is not indented, we have no parameters
3434 if not self.indent.infer(line):
3435 return self.next(self.state_function_docstring, line)
3436
Larry Hastings2a727912014-01-16 11:32:01 -08003437 self.parameter_continuation = ''
Larry Hastings31826802013-10-19 00:09:25 -07003438 return self.next(self.state_parameter, line)
3439
3440
3441 def to_required(self):
3442 """
3443 Transition to the "required" parameter state.
3444 """
3445 if self.parameter_state != self.ps_required:
3446 self.parameter_state = self.ps_required
3447 for p in self.function.parameters.values():
3448 p.group = -p.group
3449
3450 def state_parameter(self, line):
Larry Hastings2a727912014-01-16 11:32:01 -08003451 if self.parameter_continuation:
3452 line = self.parameter_continuation + ' ' + line.lstrip()
3453 self.parameter_continuation = ''
3454
Larry Hastings31826802013-10-19 00:09:25 -07003455 if self.ignore_line(line):
3456 return
3457
3458 assert self.indent.depth == 2
3459 indent = self.indent.infer(line)
3460 if indent == -1:
3461 # we outdented, must be to definition column
3462 return self.next(self.state_function_docstring, line)
3463
3464 if indent == 1:
3465 # we indented, must be to new parameter docstring column
3466 return self.next(self.state_parameter_docstring_start, line)
3467
Larry Hastings2a727912014-01-16 11:32:01 -08003468 line = line.rstrip()
3469 if line.endswith('\\'):
3470 self.parameter_continuation = line[:-1]
3471 return
3472
Larry Hastings31826802013-10-19 00:09:25 -07003473 line = line.lstrip()
3474
3475 if line in ('*', '/', '[', ']'):
3476 self.parse_special_symbol(line)
3477 return
3478
3479 if self.parameter_state in (self.ps_start, self.ps_required):
3480 self.to_required()
3481 elif self.parameter_state == self.ps_left_square_before:
3482 self.parameter_state = self.ps_group_before
3483 elif self.parameter_state == self.ps_group_before:
3484 if not self.group:
3485 self.to_required()
Larry Hastingsc2047262014-01-25 20:43:29 -08003486 elif self.parameter_state in (self.ps_group_after, self.ps_optional):
Larry Hastings31826802013-10-19 00:09:25 -07003487 pass
3488 else:
Larry Hastingsc2047262014-01-25 20:43:29 -08003489 fail("Function " + self.function.name + " has an unsupported group configuration. (Unexpected state " + str(self.parameter_state) + ".a)")
Larry Hastings31826802013-10-19 00:09:25 -07003490
Larry Hastings7726ac92014-01-31 22:03:12 -08003491 # handle "as" for parameters too
3492 c_name = None
3493 name, have_as_token, trailing = line.partition(' as ')
3494 if have_as_token:
3495 name = name.strip()
3496 if ' ' not in name:
3497 fields = trailing.strip().split(' ')
3498 if not fields:
3499 fail("Invalid 'as' clause!")
3500 c_name = fields[0]
3501 if c_name.endswith(':'):
3502 name += ':'
3503 c_name = c_name[:-1]
3504 fields[0] = name
3505 line = ' '.join(fields)
3506
Larry Hastings2a727912014-01-16 11:32:01 -08003507 base, equals, default = line.rpartition('=')
3508 if not equals:
3509 base = default
3510 default = None
Larry Hastingsc2047262014-01-25 20:43:29 -08003511
Larry Hastings31826802013-10-19 00:09:25 -07003512 module = None
3513 try:
Larry Hastings2a727912014-01-16 11:32:01 -08003514 ast_input = "def x({}): pass".format(base)
Larry Hastings31826802013-10-19 00:09:25 -07003515 module = ast.parse(ast_input)
3516 except SyntaxError:
Larry Hastings2a727912014-01-16 11:32:01 -08003517 try:
Larry Hastingsc2047262014-01-25 20:43:29 -08003518 # the last = was probably inside a function call, like
3519 # i: int(nullable=True)
3520 # so assume there was no actual default value.
Larry Hastings2a727912014-01-16 11:32:01 -08003521 default = None
3522 ast_input = "def x({}): pass".format(line)
3523 module = ast.parse(ast_input)
3524 except SyntaxError:
3525 pass
Larry Hastings31826802013-10-19 00:09:25 -07003526 if not module:
Larry Hastingsef3b1fb2013-10-22 23:26:23 -07003527 fail("Function " + self.function.name + " has an invalid parameter declaration:\n\t" + line)
Larry Hastings31826802013-10-19 00:09:25 -07003528
3529 function_args = module.body[0].args
3530 parameter = function_args.args[0]
3531
Larry Hastings16c51912014-01-07 11:53:01 -08003532 parameter_name = parameter.arg
3533 name, legacy, kwargs = self.parse_converter(parameter.annotation)
3534
Larry Hastings2a727912014-01-16 11:32:01 -08003535 if not default:
Larry Hastingsc2047262014-01-25 20:43:29 -08003536 if self.parameter_state == self.ps_optional:
3537 fail("Can't have a parameter without a default (" + repr(parameter_name) + ")\nafter a parameter with a default!")
Larry Hastings2a727912014-01-16 11:32:01 -08003538 value = unspecified
3539 if 'py_default' in kwargs:
3540 fail("You can't specify py_default without specifying a default value!")
3541 else:
Larry Hastingsc2047262014-01-25 20:43:29 -08003542 if self.parameter_state == self.ps_required:
3543 self.parameter_state = self.ps_optional
Larry Hastings2a727912014-01-16 11:32:01 -08003544 default = default.strip()
Zachary Ware021bb872014-01-24 22:52:30 -06003545 bad = False
Larry Hastings2a727912014-01-16 11:32:01 -08003546 ast_input = "x = {}".format(default)
Larry Hastingsc2047262014-01-25 20:43:29 -08003547 bad = False
Larry Hastings2a727912014-01-16 11:32:01 -08003548 try:
3549 module = ast.parse(ast_input)
3550
Larry Hastings5c661892014-01-24 06:17:25 -08003551 if 'c_default' not in kwargs:
3552 # we can only represent very simple data values in C.
3553 # detect whether default is okay, via a blacklist
3554 # of disallowed ast nodes.
3555 class DetectBadNodes(ast.NodeVisitor):
3556 bad = False
3557 def bad_node(self, node):
3558 self.bad = True
Larry Hastings2a727912014-01-16 11:32:01 -08003559
Larry Hastings5c661892014-01-24 06:17:25 -08003560 # inline function call
3561 visit_Call = bad_node
3562 # inline if statement ("x = 3 if y else z")
3563 visit_IfExp = bad_node
Larry Hastings2a727912014-01-16 11:32:01 -08003564
Larry Hastings5c661892014-01-24 06:17:25 -08003565 # comprehensions and generator expressions
3566 visit_ListComp = visit_SetComp = bad_node
3567 visit_DictComp = visit_GeneratorExp = bad_node
Larry Hastings2a727912014-01-16 11:32:01 -08003568
Larry Hastings5c661892014-01-24 06:17:25 -08003569 # literals for advanced types
3570 visit_Dict = visit_Set = bad_node
3571 visit_List = visit_Tuple = bad_node
Larry Hastings2a727912014-01-16 11:32:01 -08003572
Larry Hastings5c661892014-01-24 06:17:25 -08003573 # "starred": "a = [1, 2, 3]; *a"
3574 visit_Starred = bad_node
Larry Hastings2a727912014-01-16 11:32:01 -08003575
Larry Hastings5c661892014-01-24 06:17:25 -08003576 # allow ellipsis, for now
3577 # visit_Ellipsis = bad_node
Larry Hastings2a727912014-01-16 11:32:01 -08003578
Larry Hastings5c661892014-01-24 06:17:25 -08003579 blacklist = DetectBadNodes()
3580 blacklist.visit(module)
3581 bad = blacklist.bad
3582 else:
3583 # if they specify a c_default, we can be more lenient about the default value.
Zachary Ware021bb872014-01-24 22:52:30 -06003584 # but at least make an attempt at ensuring it's a valid expression.
3585 try:
3586 value = eval(default)
3587 if value == unspecified:
3588 fail("'unspecified' is not a legal default value!")
3589 except NameError:
3590 pass # probably a named constant
3591 except Exception as e:
3592 fail("Malformed expression given as default value\n"
3593 "{!r} caused {!r}".format(default, e))
Larry Hastings5c661892014-01-24 06:17:25 -08003594 if bad:
Larry Hastings2a727912014-01-16 11:32:01 -08003595 fail("Unsupported expression as default value: " + repr(default))
3596
3597 expr = module.body[0].value
3598 # mild hack: explicitly support NULL as a default value
3599 if isinstance(expr, ast.Name) and expr.id == 'NULL':
3600 value = NULL
3601 py_default = 'None'
3602 c_default = "NULL"
3603 elif (isinstance(expr, ast.BinOp) or
3604 (isinstance(expr, ast.UnaryOp) and not isinstance(expr.operand, ast.Num))):
3605 c_default = kwargs.get("c_default")
3606 if not (isinstance(c_default, str) and c_default):
3607 fail("When you specify an expression (" + repr(default) + ") as your default value,\nyou MUST specify a valid c_default.")
3608 py_default = default
3609 value = unknown
3610 elif isinstance(expr, ast.Attribute):
3611 a = []
3612 n = expr
3613 while isinstance(n, ast.Attribute):
3614 a.append(n.attr)
3615 n = n.value
3616 if not isinstance(n, ast.Name):
3617 fail("Unsupported default value " + repr(default) + " (looked like a Python constant)")
3618 a.append(n.id)
3619 py_default = ".".join(reversed(a))
3620
3621 c_default = kwargs.get("c_default")
3622 if not (isinstance(c_default, str) and c_default):
3623 fail("When you specify a named constant (" + repr(py_default) + ") as your default value,\nyou MUST specify a valid c_default.")
3624
3625 try:
3626 value = eval(py_default)
3627 except NameError:
3628 value = unknown
3629 else:
3630 value = ast.literal_eval(expr)
3631 py_default = repr(value)
3632 if isinstance(value, (bool, None.__class__)):
3633 c_default = "Py_" + py_default
3634 elif isinstance(value, str):
Larry Hastings4903e002014-01-18 00:26:16 -08003635 c_default = c_repr(value)
Larry Hastings2a727912014-01-16 11:32:01 -08003636 else:
3637 c_default = py_default
3638
3639 except SyntaxError as e:
3640 fail("Syntax error: " + repr(e.text))
3641 except (ValueError, AttributeError):
3642 value = unknown
Larry Hastings4a55fc52014-01-12 11:09:57 -08003643 c_default = kwargs.get("c_default")
Larry Hastings2a727912014-01-16 11:32:01 -08003644 py_default = default
Larry Hastings4a55fc52014-01-12 11:09:57 -08003645 if not (isinstance(c_default, str) and c_default):
3646 fail("When you specify a named constant (" + repr(py_default) + ") as your default value,\nyou MUST specify a valid c_default.")
3647
Larry Hastings2a727912014-01-16 11:32:01 -08003648 kwargs.setdefault('c_default', c_default)
3649 kwargs.setdefault('py_default', py_default)
Larry Hastings31826802013-10-19 00:09:25 -07003650
Larry Hastings31826802013-10-19 00:09:25 -07003651 dict = legacy_converters if legacy else converters
3652 legacy_str = "legacy " if legacy else ""
3653 if name not in dict:
3654 fail('{} is not a valid {}converter'.format(name, legacy_str))
Larry Hastings7726ac92014-01-31 22:03:12 -08003655 # if you use a c_name for the parameter, we just give that name to the converter
3656 # but the parameter object gets the python name
3657 converter = dict[name](c_name or parameter_name, parameter_name, self.function, value, **kwargs)
Larry Hastings31826802013-10-19 00:09:25 -07003658
3659 kind = inspect.Parameter.KEYWORD_ONLY if self.keyword_only else inspect.Parameter.POSITIONAL_OR_KEYWORD
Larry Hastings5c661892014-01-24 06:17:25 -08003660
3661 if isinstance(converter, self_converter):
3662 if len(self.function.parameters) == 1:
3663 if (self.parameter_state != self.ps_required):
3664 fail("A 'self' parameter cannot be marked optional.")
3665 if value is not unspecified:
3666 fail("A 'self' parameter cannot have a default value.")
3667 if self.group:
3668 fail("A 'self' parameter cannot be in an optional group.")
3669 kind = inspect.Parameter.POSITIONAL_ONLY
3670 self.parameter_state = self.ps_start
3671 self.function.parameters.clear()
3672 else:
3673 fail("A 'self' parameter, if specified, must be the very first thing in the parameter block.")
3674
Larry Hastings31826802013-10-19 00:09:25 -07003675 p = Parameter(parameter_name, kind, function=self.function, converter=converter, default=value, group=self.group)
Larry Hastingsbebf7352014-01-17 17:47:17 -08003676
3677 if parameter_name in self.function.parameters:
3678 fail("You can't have two parameters named " + repr(parameter_name) + "!")
Larry Hastings31826802013-10-19 00:09:25 -07003679 self.function.parameters[parameter_name] = p
3680
3681 def parse_converter(self, annotation):
3682 if isinstance(annotation, ast.Str):
3683 return annotation.s, True, {}
3684
3685 if isinstance(annotation, ast.Name):
3686 return annotation.id, False, {}
3687
Larry Hastings4a55fc52014-01-12 11:09:57 -08003688 if not isinstance(annotation, ast.Call):
3689 fail("Annotations must be either a name, a function call, or a string.")
Larry Hastings31826802013-10-19 00:09:25 -07003690
3691 name = annotation.func.id
3692 kwargs = {node.arg: ast.literal_eval(node.value) for node in annotation.keywords}
3693 return name, False, kwargs
3694
3695 def parse_special_symbol(self, symbol):
3696 if self.parameter_state == self.ps_seen_slash:
3697 fail("Function " + self.function.name + " specifies " + symbol + " after /, which is unsupported.")
3698
3699 if symbol == '*':
3700 if self.keyword_only:
3701 fail("Function " + self.function.name + " uses '*' more than once.")
3702 self.keyword_only = True
3703 elif symbol == '[':
3704 if self.parameter_state in (self.ps_start, self.ps_left_square_before):
3705 self.parameter_state = self.ps_left_square_before
3706 elif self.parameter_state in (self.ps_required, self.ps_group_after):
3707 self.parameter_state = self.ps_group_after
3708 else:
Larry Hastingsc2047262014-01-25 20:43:29 -08003709 fail("Function " + self.function.name + " has an unsupported group configuration. (Unexpected state " + str(self.parameter_state) + ".b)")
Larry Hastings31826802013-10-19 00:09:25 -07003710 self.group += 1
Larry Hastings2623c8c2014-02-08 22:15:29 -08003711 self.function.docstring_only = True
Larry Hastings31826802013-10-19 00:09:25 -07003712 elif symbol == ']':
3713 if not self.group:
3714 fail("Function " + self.function.name + " has a ] without a matching [.")
3715 if not any(p.group == self.group for p in self.function.parameters.values()):
3716 fail("Function " + self.function.name + " has an empty group.\nAll groups must contain at least one parameter.")
3717 self.group -= 1
3718 if self.parameter_state in (self.ps_left_square_before, self.ps_group_before):
3719 self.parameter_state = self.ps_group_before
3720 elif self.parameter_state in (self.ps_group_after, self.ps_right_square_after):
3721 self.parameter_state = self.ps_right_square_after
3722 else:
Larry Hastingsc2047262014-01-25 20:43:29 -08003723 fail("Function " + self.function.name + " has an unsupported group configuration. (Unexpected state " + str(self.parameter_state) + ".c)")
Larry Hastings31826802013-10-19 00:09:25 -07003724 elif symbol == '/':
Larry Hastingsc2047262014-01-25 20:43:29 -08003725 # ps_required and ps_optional are allowed here, that allows positional-only without option groups
Larry Hastings31826802013-10-19 00:09:25 -07003726 # to work (and have default values!)
Larry Hastingsc2047262014-01-25 20:43:29 -08003727 if (self.parameter_state not in (self.ps_required, self.ps_optional, self.ps_right_square_after, self.ps_group_before)) or self.group:
3728 fail("Function " + self.function.name + " has an unsupported group configuration. (Unexpected state " + str(self.parameter_state) + ".d)")
Larry Hastings31826802013-10-19 00:09:25 -07003729 if self.keyword_only:
3730 fail("Function " + self.function.name + " mixes keyword-only and positional-only parameters, which is unsupported.")
3731 self.parameter_state = self.ps_seen_slash
3732 # fixup preceeding parameters
3733 for p in self.function.parameters.values():
Larry Hastings5c661892014-01-24 06:17:25 -08003734 if (p.kind != inspect.Parameter.POSITIONAL_OR_KEYWORD and not isinstance(p.converter, self_converter)):
Larry Hastings31826802013-10-19 00:09:25 -07003735 fail("Function " + self.function.name + " mixes keyword-only and positional-only parameters, which is unsupported.")
3736 p.kind = inspect.Parameter.POSITIONAL_ONLY
3737
3738 def state_parameter_docstring_start(self, line):
3739 self.parameter_docstring_indent = len(self.indent.margin)
3740 assert self.indent.depth == 3
3741 return self.next(self.state_parameter_docstring, line)
3742
3743 # every line of the docstring must start with at least F spaces,
3744 # where F > P.
3745 # these F spaces will be stripped.
3746 def state_parameter_docstring(self, line):
3747 stripped = line.strip()
3748 if stripped.startswith('#'):
3749 return
3750
3751 indent = self.indent.measure(line)
3752 if indent < self.parameter_docstring_indent:
3753 self.indent.infer(line)
3754 assert self.indent.depth < 3
3755 if self.indent.depth == 2:
3756 # back to a parameter
3757 return self.next(self.state_parameter, line)
3758 assert self.indent.depth == 1
3759 return self.next(self.state_function_docstring, line)
3760
3761 assert self.function.parameters
3762 last_parameter = next(reversed(list(self.function.parameters.values())))
3763
3764 new_docstring = last_parameter.docstring
3765
3766 if new_docstring:
3767 new_docstring += '\n'
3768 if stripped:
3769 new_docstring += self.indent.dedent(line)
3770
3771 last_parameter.docstring = new_docstring
3772
3773 # the final stanza of the DSL is the docstring.
3774 def state_function_docstring(self, line):
Larry Hastings31826802013-10-19 00:09:25 -07003775 if self.group:
3776 fail("Function " + self.function.name + " has a ] without a matching [.")
3777
3778 stripped = line.strip()
3779 if stripped.startswith('#'):
3780 return
3781
3782 new_docstring = self.function.docstring
3783 if new_docstring:
3784 new_docstring += "\n"
3785 if stripped:
3786 line = self.indent.dedent(line).rstrip()
3787 else:
3788 line = ''
3789 new_docstring += line
3790 self.function.docstring = new_docstring
3791
3792 def format_docstring(self):
3793 f = self.function
3794
Larry Hastings5c661892014-01-24 06:17:25 -08003795 new_or_init = f.kind in (METHOD_NEW, METHOD_INIT)
3796 if new_or_init and not f.docstring:
3797 # don't render a docstring at all, no signature, nothing.
3798 return f.docstring
3799
Larry Hastings2623c8c2014-02-08 22:15:29 -08003800 text, add, output = _text_accumulator()
Larry Hastings7726ac92014-01-31 22:03:12 -08003801 parameters = f.render_parameters
Larry Hastings31826802013-10-19 00:09:25 -07003802
3803 ##
3804 ## docstring first line
3805 ##
3806
Larry Hastings2623c8c2014-02-08 22:15:29 -08003807 if new_or_init:
3808 # classes get *just* the name of the class
3809 # not __new__, not __init__, and not module.classname
3810 assert f.cls
3811 add(f.cls.name)
Larry Hastings46258262014-01-22 03:05:49 -08003812 else:
Larry Hastings2623c8c2014-02-08 22:15:29 -08003813 add(f.name)
Larry Hastings31826802013-10-19 00:09:25 -07003814 add('(')
3815
3816 # populate "right_bracket_count" field for every parameter
Larry Hastings5c661892014-01-24 06:17:25 -08003817 assert parameters, "We should always have a self parameter. " + repr(f)
3818 assert isinstance(parameters[0].converter, self_converter)
3819 parameters[0].right_bracket_count = 0
3820 parameters_after_self = parameters[1:]
3821 if parameters_after_self:
Larry Hastings31826802013-10-19 00:09:25 -07003822 # for now, the only way Clinic supports positional-only parameters
Larry Hastings5c661892014-01-24 06:17:25 -08003823 # is if all of them are positional-only...
3824 #
3825 # ... except for self! self is always positional-only.
3826
3827 positional_only_parameters = [p.kind == inspect.Parameter.POSITIONAL_ONLY for p in parameters_after_self]
3828 if parameters_after_self[0].kind == inspect.Parameter.POSITIONAL_ONLY:
Larry Hastings31826802013-10-19 00:09:25 -07003829 assert all(positional_only_parameters)
3830 for p in parameters:
3831 p.right_bracket_count = abs(p.group)
3832 else:
3833 # don't put any right brackets around non-positional-only parameters, ever.
Larry Hastings5c661892014-01-24 06:17:25 -08003834 for p in parameters_after_self:
Larry Hastings31826802013-10-19 00:09:25 -07003835 p.right_bracket_count = 0
3836
3837 right_bracket_count = 0
3838
3839 def fix_right_bracket_count(desired):
3840 nonlocal right_bracket_count
3841 s = ''
3842 while right_bracket_count < desired:
3843 s += '['
3844 right_bracket_count += 1
3845 while right_bracket_count > desired:
3846 s += ']'
3847 right_bracket_count -= 1
3848 return s
3849
Larry Hastings2623c8c2014-02-08 22:15:29 -08003850 need_slash = False
3851 added_slash = False
3852 need_a_trailing_slash = False
3853
3854 # we only need a trailing slash:
3855 # * if this is not a "docstring_only" signature
3856 # * and if the last *shown* parameter is
3857 # positional only
3858 if not f.docstring_only:
3859 for p in reversed(parameters):
3860 if not p.converter.show_in_signature:
3861 continue
3862 if p.is_positional_only():
3863 need_a_trailing_slash = True
3864 break
3865
3866
Larry Hastings31826802013-10-19 00:09:25 -07003867 added_star = False
Larry Hastings2623c8c2014-02-08 22:15:29 -08003868
3869 first_parameter = True
3870 last_p = parameters[-1]
3871 line_length = len(''.join(text))
3872 indent = " " * line_length
3873 def add_parameter(text):
3874 nonlocal line_length
3875 nonlocal first_parameter
3876 if first_parameter:
3877 s = text
3878 first_parameter = False
3879 else:
3880 s = ' ' + text
3881 if line_length + len(s) >= 72:
3882 add('\n')
3883 add(indent)
3884 line_length = len(indent)
3885 s = text
3886 line_length += len(s)
3887 add(s)
Larry Hastings31826802013-10-19 00:09:25 -07003888
3889 for p in parameters:
Larry Hastings5c661892014-01-24 06:17:25 -08003890 if not p.converter.show_in_signature:
3891 continue
Larry Hastings31826802013-10-19 00:09:25 -07003892 assert p.name
3893
Larry Hastings2623c8c2014-02-08 22:15:29 -08003894 is_self = isinstance(p.converter, self_converter)
3895 if is_self and f.docstring_only:
3896 # this isn't a real machine-parsable signature,
3897 # so let's not print the "self" parameter
3898 continue
3899
3900 if p.is_positional_only():
3901 need_slash = not f.docstring_only
3902 elif need_slash and not (added_slash or p.is_positional_only()):
3903 added_slash = True
3904 add_parameter('/,')
3905
Larry Hastings31826802013-10-19 00:09:25 -07003906 if p.is_keyword_only() and not added_star:
3907 added_star = True
Larry Hastings2623c8c2014-02-08 22:15:29 -08003908 add_parameter('*,')
3909
3910 p_add, p_output = text_accumulator()
3911 p_add(fix_right_bracket_count(p.right_bracket_count))
3912
3913 if isinstance(p.converter, self_converter):
3914 # annotate first parameter as being a "self".
3915 #
3916 # if inspect.Signature gets this function,
3917 # and it's already bound, the self parameter
3918 # will be stripped off.
3919 #
3920 # if it's not bound, it should be marked
3921 # as positional-only.
3922 #
3923 # note: we don't print "self" for __init__,
3924 # because this isn't actually the signature
3925 # for __init__. (it can't be, __init__ doesn't
3926 # have a docstring.) if this is an __init__
3927 # (or __new__), then this signature is for
3928 # calling the class to contruct a new instance.
3929 p_add('$')
Larry Hastings31826802013-10-19 00:09:25 -07003930
Larry Hastings5c661892014-01-24 06:17:25 -08003931 name = p.converter.signature_name or p.name
Larry Hastings2623c8c2014-02-08 22:15:29 -08003932 p_add(name)
Larry Hastings581ee362014-01-28 05:00:08 -08003933
Larry Hastings31826802013-10-19 00:09:25 -07003934 if p.converter.is_optional():
Larry Hastings2623c8c2014-02-08 22:15:29 -08003935 p_add('=')
Larry Hastingsc4fe0922014-01-19 02:27:34 -08003936 value = p.converter.py_default
3937 if not value:
Larry Hastings66575782014-01-19 03:01:23 -08003938 value = repr(p.converter.default)
Larry Hastings2623c8c2014-02-08 22:15:29 -08003939 p_add(value)
3940
3941 if (p != last_p) or need_a_trailing_slash:
3942 p_add(',')
3943
3944 add_parameter(p_output())
Larry Hastings31826802013-10-19 00:09:25 -07003945
3946 add(fix_right_bracket_count(0))
Larry Hastings2623c8c2014-02-08 22:15:29 -08003947 if need_a_trailing_slash:
3948 add_parameter('/')
Larry Hastings31826802013-10-19 00:09:25 -07003949 add(')')
3950
Larry Hastings2a727912014-01-16 11:32:01 -08003951 # PEP 8 says:
3952 #
3953 # The Python standard library will not use function annotations
3954 # as that would result in a premature commitment to a particular
3955 # annotation style. Instead, the annotations are left for users
3956 # to discover and experiment with useful annotation styles.
3957 #
3958 # therefore this is commented out:
3959 #
3960 # if f.return_converter.py_default:
Larry Hastings44e2eaa2013-11-23 15:37:55 -08003961 # add(' -> ')
Larry Hastings2a727912014-01-16 11:32:01 -08003962 # add(f.return_converter.py_default)
Larry Hastings31826802013-10-19 00:09:25 -07003963
Larry Hastings2623c8c2014-02-08 22:15:29 -08003964 if not f.docstring_only:
3965 add("\n--\n")
3966
Larry Hastings31826802013-10-19 00:09:25 -07003967 docstring_first_line = output()
3968
3969 # now fix up the places where the brackets look wrong
3970 docstring_first_line = docstring_first_line.replace(', ]', ',] ')
3971
Larry Hastings44e2eaa2013-11-23 15:37:55 -08003972 # okay. now we're officially building the "parameters" section.
Larry Hastings31826802013-10-19 00:09:25 -07003973 # create substitution text for {parameters}
Larry Hastings44e2eaa2013-11-23 15:37:55 -08003974 spacer_line = False
Larry Hastings31826802013-10-19 00:09:25 -07003975 for p in parameters:
3976 if not p.docstring.strip():
3977 continue
Larry Hastings44e2eaa2013-11-23 15:37:55 -08003978 if spacer_line:
3979 add('\n')
3980 else:
3981 spacer_line = True
Larry Hastings31826802013-10-19 00:09:25 -07003982 add(" ")
3983 add(p.name)
3984 add('\n')
3985 add(textwrap.indent(rstrip_lines(p.docstring.rstrip()), " "))
Larry Hastings44e2eaa2013-11-23 15:37:55 -08003986 parameters = output()
3987 if parameters:
3988 parameters += '\n'
Larry Hastings31826802013-10-19 00:09:25 -07003989
3990 ##
3991 ## docstring body
3992 ##
3993
3994 docstring = f.docstring.rstrip()
3995 lines = [line.rstrip() for line in docstring.split('\n')]
3996
3997 # Enforce the summary line!
3998 # The first line of a docstring should be a summary of the function.
3999 # It should fit on one line (80 columns? 79 maybe?) and be a paragraph
4000 # by itself.
4001 #
4002 # Argument Clinic enforces the following rule:
4003 # * either the docstring is empty,
4004 # * or it must have a summary line.
4005 #
4006 # Guido said Clinic should enforce this:
4007 # http://mail.python.org/pipermail/python-dev/2013-June/127110.html
4008
4009 if len(lines) >= 2:
4010 if lines[1]:
4011 fail("Docstring for " + f.full_name + " does not have a summary line!\n" +
4012 "Every non-blank function docstring must start with\n" +
4013 "a single line summary followed by an empty line.")
4014 elif len(lines) == 1:
4015 # the docstring is only one line right now--the summary line.
4016 # add an empty line after the summary line so we have space
Larry Hastings44e2eaa2013-11-23 15:37:55 -08004017 # between it and the {parameters} we're about to add.
Larry Hastings31826802013-10-19 00:09:25 -07004018 lines.append('')
4019
Larry Hastings44e2eaa2013-11-23 15:37:55 -08004020 parameters_marker_count = len(docstring.split('{parameters}')) - 1
4021 if parameters_marker_count > 1:
4022 fail('You may not specify {parameters} more than once in a docstring!')
4023
4024 if not parameters_marker_count:
4025 # insert after summary line
4026 lines.insert(2, '{parameters}')
4027
4028 # insert at front of docstring
4029 lines.insert(0, docstring_first_line)
Larry Hastings31826802013-10-19 00:09:25 -07004030
4031 docstring = "\n".join(lines)
4032
4033 add(docstring)
4034 docstring = output()
4035
Larry Hastings44e2eaa2013-11-23 15:37:55 -08004036 docstring = linear_format(docstring, parameters=parameters)
Larry Hastings31826802013-10-19 00:09:25 -07004037 docstring = docstring.rstrip()
4038
4039 return docstring
4040
4041 def state_terminal(self, line):
4042 """
4043 Called when processing the block is done.
4044 """
4045 assert not line
4046
4047 if not self.function:
4048 return
4049
4050 if self.keyword_only:
4051 values = self.function.parameters.values()
4052 if not values:
4053 no_parameter_after_star = True
4054 else:
4055 last_parameter = next(reversed(list(values)))
4056 no_parameter_after_star = last_parameter.kind != inspect.Parameter.KEYWORD_ONLY
4057 if no_parameter_after_star:
4058 fail("Function " + self.function.name + " specifies '*' without any parameters afterwards.")
4059
4060 # remove trailing whitespace from all parameter docstrings
4061 for name, value in self.function.parameters.items():
4062 if not value:
4063 continue
4064 value.docstring = value.docstring.rstrip()
4065
4066 self.function.docstring = self.format_docstring()
4067
4068
Larry Hastings5c661892014-01-24 06:17:25 -08004069
4070
Larry Hastings31826802013-10-19 00:09:25 -07004071# maps strings to callables.
4072# the callable should return an object
4073# that implements the clinic parser
4074# interface (__init__ and parse).
4075#
4076# example parsers:
4077# "clinic", handles the Clinic DSL
4078# "python", handles running Python code
4079#
4080parsers = {'clinic' : DSLParser, 'python': PythonParser}
4081
4082
4083clinic = None
4084
4085
4086def main(argv):
4087 import sys
4088
4089 if sys.version_info.major < 3 or sys.version_info.minor < 3:
4090 sys.exit("Error: clinic.py requires Python 3.3 or greater.")
4091
4092 import argparse
4093 cmdline = argparse.ArgumentParser()
4094 cmdline.add_argument("-f", "--force", action='store_true')
4095 cmdline.add_argument("-o", "--output", type=str)
Larry Hastings5c661892014-01-24 06:17:25 -08004096 cmdline.add_argument("-v", "--verbose", action='store_true')
Larry Hastings31826802013-10-19 00:09:25 -07004097 cmdline.add_argument("--converters", action='store_true')
Larry Hastingsdcd340e2013-11-23 14:58:45 -08004098 cmdline.add_argument("--make", action='store_true')
Larry Hastings31826802013-10-19 00:09:25 -07004099 cmdline.add_argument("filename", type=str, nargs="*")
4100 ns = cmdline.parse_args(argv)
4101
4102 if ns.converters:
4103 if ns.filename:
4104 print("Usage error: can't specify --converters and a filename at the same time.")
4105 print()
4106 cmdline.print_usage()
4107 sys.exit(-1)
4108 converters = []
4109 return_converters = []
4110 ignored = set("""
4111 add_c_converter
4112 add_c_return_converter
4113 add_default_legacy_c_converter
4114 add_legacy_c_converter
4115 """.strip().split())
4116 module = globals()
4117 for name in module:
4118 for suffix, ids in (
4119 ("_return_converter", return_converters),
4120 ("_converter", converters),
4121 ):
4122 if name in ignored:
4123 continue
4124 if name.endswith(suffix):
4125 ids.append((name, name[:-len(suffix)]))
4126 break
4127 print()
4128
4129 print("Legacy converters:")
4130 legacy = sorted(legacy_converters)
4131 print(' ' + ' '.join(c for c in legacy if c[0].isupper()))
4132 print(' ' + ' '.join(c for c in legacy if c[0].islower()))
4133 print()
4134
4135 for title, attribute, ids in (
4136 ("Converters", 'converter_init', converters),
4137 ("Return converters", 'return_converter_init', return_converters),
4138 ):
4139 print(title + ":")
4140 longest = -1
4141 for name, short_name in ids:
4142 longest = max(longest, len(short_name))
4143 for name, short_name in sorted(ids, key=lambda x: x[1].lower()):
4144 cls = module[name]
4145 callable = getattr(cls, attribute, None)
4146 if not callable:
4147 continue
4148 signature = inspect.signature(callable)
4149 parameters = []
4150 for parameter_name, parameter in signature.parameters.items():
4151 if parameter.kind == inspect.Parameter.KEYWORD_ONLY:
4152 if parameter.default != inspect.Parameter.empty:
4153 s = '{}={!r}'.format(parameter_name, parameter.default)
4154 else:
4155 s = parameter_name
4156 parameters.append(s)
4157 print(' {}({})'.format(short_name, ', '.join(parameters)))
Larry Hastings31826802013-10-19 00:09:25 -07004158 print()
Larry Hastings2a727912014-01-16 11:32:01 -08004159 print("All converters also accept (c_default=None, py_default=None, annotation=None).")
4160 print("All return converters also accept (py_default=None).")
Larry Hastings31826802013-10-19 00:09:25 -07004161 sys.exit(0)
4162
Larry Hastingsdcd340e2013-11-23 14:58:45 -08004163 if ns.make:
4164 if ns.output or ns.filename:
4165 print("Usage error: can't use -o or filenames with --make.")
4166 print()
4167 cmdline.print_usage()
4168 sys.exit(-1)
4169 for root, dirs, files in os.walk('.'):
Larry Hastings5c661892014-01-24 06:17:25 -08004170 for rcs_dir in ('.svn', '.git', '.hg', 'build'):
Larry Hastingsdcd340e2013-11-23 14:58:45 -08004171 if rcs_dir in dirs:
4172 dirs.remove(rcs_dir)
4173 for filename in files:
Larry Hastings5c661892014-01-24 06:17:25 -08004174 if not (filename.endswith('.c') or filename.endswith('.h')):
Larry Hastingsdcd340e2013-11-23 14:58:45 -08004175 continue
4176 path = os.path.join(root, filename)
Larry Hastings5c661892014-01-24 06:17:25 -08004177 if ns.verbose:
4178 print(path)
Larry Hastings581ee362014-01-28 05:00:08 -08004179 parse_file(path, force=ns.force, verify=not ns.force)
Larry Hastingsdcd340e2013-11-23 14:58:45 -08004180 return
4181
Larry Hastings31826802013-10-19 00:09:25 -07004182 if not ns.filename:
4183 cmdline.print_usage()
4184 sys.exit(-1)
4185
4186 if ns.output and len(ns.filename) > 1:
4187 print("Usage error: can't use -o with multiple filenames.")
4188 print()
4189 cmdline.print_usage()
4190 sys.exit(-1)
4191
4192 for filename in ns.filename:
Larry Hastings5c661892014-01-24 06:17:25 -08004193 if ns.verbose:
4194 print(filename)
Larry Hastings581ee362014-01-28 05:00:08 -08004195 parse_file(filename, output=ns.output, force=ns.force, verify=not ns.force)
Larry Hastings31826802013-10-19 00:09:25 -07004196
4197
4198if __name__ == "__main__":
4199 sys.exit(main(sys.argv[1:]))