forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmember.py
More file actions
524 lines (422 loc) · 15.8 KB
/
member.py
File metadata and controls
524 lines (422 loc) · 15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from __future__ import annotations
from abc import ABC, abstractmethod
from enum import IntEnum
from typing import TYPE_CHECKING
from .template import Template, TemplateList
from .utils import (
Argument,
format_arguments,
format_parsed_type,
parse_arg_string,
parse_function_pointer_argstring,
parse_type_with_argstrings,
qualify_arguments,
qualify_parsed_type,
qualify_type_str,
)
if TYPE_CHECKING:
from .scope import Scope
STORE_INITIALIZERS_IN_SNAPSHOT = False
class MemberKind(IntEnum):
"""
Classification of member kinds for grouping in output.
The order here determines the output order within namespace scopes.
"""
CONSTANT = 0
TYPE_ALIAS = 1
CONCEPT = 2
FUNCTION = 3
OPERATOR = 4
VARIABLE = 5
FRIEND = 6
class Member(ABC):
def __init__(self, name: str, visibility: str) -> None:
self.name: str = name
self.visibility: str = visibility
self.template_list: TemplateList | None = None
@property
@abstractmethod
def member_kind(self) -> MemberKind:
pass
@abstractmethod
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
pass
def close(self, scope: Scope):
pass
def _get_qualified_name(self, qualification: str | None):
return f"{qualification}::{self.name}" if qualification else self.name
def add_template(self, template: Template | [Template]) -> None:
if template and self.template_list is None:
self.template_list = TemplateList()
if isinstance(template, list):
for t in template:
self.template_list.add(t)
else:
self.template_list.add(template)
class EnumMember(Member):
def __init__(self, name: str, value: str | None) -> None:
super().__init__(name, "public")
self.value: str | None = value
@property
def member_kind(self) -> MemberKind:
return MemberKind.CONSTANT
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
if not STORE_INITIALIZERS_IN_SNAPSHOT or self.value is None:
return " " * indent + f"{name}"
return " " * indent + f"{name} = {self.value}"
class VariableMember(Member):
def __init__(
self,
name: str,
type: str,
visibility: str,
is_const: bool,
is_static: bool,
is_constexpr: bool,
is_mutable: bool,
value: str | None,
definition: str,
argstring: str | None = None,
is_brace_initializer: bool = False,
) -> None:
super().__init__(name, visibility)
self.type: str = type
self.value: str | None = value
self.is_const: bool = is_const
self.is_static: bool = is_static
self.is_constexpr: bool = is_constexpr
self.is_mutable: bool = is_mutable
self.is_brace_initializer: bool = is_brace_initializer
self.definition: str = definition
self.argstring: str | None = argstring
self._fp_arguments: list[Argument] = (
parse_function_pointer_argstring(argstring) if argstring else []
)
self._parsed_type: list[str | list[Argument]] = parse_type_with_argstrings(type)
@property
def member_kind(self) -> MemberKind:
if self.is_const or self.is_constexpr:
return MemberKind.CONSTANT
return MemberKind.VARIABLE
def close(self, scope: Scope):
self._fp_arguments = qualify_arguments(self._fp_arguments, scope)
self._parsed_type = qualify_parsed_type(self._parsed_type, scope)
def _is_function_pointer(self) -> bool:
"""Check if this variable is a function pointer type."""
return self.argstring is not None and self.argstring.startswith(")(")
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
result = " " * indent
if not hide_visibility:
result += self.visibility + " "
if self.is_static:
result += "static "
if self.is_constexpr:
result += "constexpr "
if self.is_const and not self.is_constexpr:
result += "const "
if self.is_mutable:
result += "mutable "
if self._is_function_pointer():
formatted_args = format_arguments(self._fp_arguments)
qualified_type = format_parsed_type(self._parsed_type)
# Function pointer types: argstring is ")(args...)"
# If type already contains "(*", e.g. "void *(*" or "void(*", use directly
# Otherwise add "(*" to form proper function pointer syntax
if "(*" in qualified_type:
result += f"{qualified_type}{name})({formatted_args})"
else:
result += f"{qualified_type} (*{name})({formatted_args})"
else:
result += f"{format_parsed_type(self._parsed_type)} {name}"
if STORE_INITIALIZERS_IN_SNAPSHOT and self.value is not None:
if self.is_brace_initializer:
result += f"{{{self.value}}}"
else:
result += f" = {self.value}"
result += ";"
return result
class FunctionMember(Member):
def __init__(
self,
name: str,
type: str,
visibility: str,
arg_string: str,
is_virtual: bool,
is_pure_virtual: bool,
is_static: bool,
doxygen_params: list[Argument] | None = None,
is_constexpr: bool = False,
) -> None:
super().__init__(name, visibility)
self.type: str = type
self.is_virtual: bool = is_virtual
self.is_static: bool = is_static
self.is_constexpr: bool = is_constexpr
parsed_arguments, self.modifiers = parse_arg_string(arg_string)
self.arguments = (
doxygen_params if doxygen_params is not None else parsed_arguments
)
# Doxygen signals pure-virtual via the virt attribute, but the arg string
# may not contain "= 0" (e.g. trailing return type syntax), so the
# modifiers parsed from the arg string may miss it. Propagate the flag.
if is_pure_virtual:
self.modifiers.is_pure_virtual = True
self.is_const = self.modifiers.is_const
self.is_override = self.modifiers.is_override
@property
def member_kind(self) -> MemberKind:
if self.name.startswith("operator"):
return MemberKind.OPERATOR
return MemberKind.FUNCTION
def close(self, scope: Scope):
self.type = qualify_type_str(self.type, scope)
self.arguments = qualify_arguments(self.arguments, scope)
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
result = ""
if self.template_list is not None:
result += " " * indent + self.template_list.to_string() + "\n"
result += " " * indent
if not hide_visibility:
result += self.visibility + " "
if self.is_virtual:
result += "virtual "
if self.is_static:
result += "static "
if self.is_constexpr:
result += "constexpr "
if self.type:
result += f"{self.type} "
result += f"{name}({format_arguments(self.arguments)})"
if self.modifiers.is_const:
result += " const"
if self.modifiers.is_noexcept:
if self.modifiers.noexcept_expr:
result += f" noexcept({self.modifiers.noexcept_expr})"
else:
result += " noexcept"
if self.modifiers.is_override:
result += " override"
if self.modifiers.is_final:
result += " final"
if self.modifiers.is_pure_virtual:
result += " = 0"
elif self.modifiers.is_default:
result += " = default"
elif self.modifiers.is_delete:
result += " = delete"
result += ";"
return result
class TypedefMember(Member):
def __init__(
self, name: str, type: str, argstring: str | None, visibility: str, keyword: str
) -> None:
super().__init__(name, visibility)
self.keyword: str = keyword
self.argstring: str | None = argstring
# Parse function pointer argstrings (e.g. ")(int x, float y)")
self._fp_arguments: list[Argument] = (
parse_function_pointer_argstring(argstring) if argstring else []
)
# Parse inline function signatures in the type so that argument
# lists are stored as structured data, not raw strings.
self._parsed_type: list[str | list[Argument]] = parse_type_with_argstrings(type)
self.type: str = type
@property
def member_kind(self) -> MemberKind:
return MemberKind.TYPE_ALIAS
def close(self, scope: Scope):
self._fp_arguments = qualify_arguments(self._fp_arguments, scope)
self._parsed_type = qualify_parsed_type(self._parsed_type, scope)
def _is_function_pointer(self) -> bool:
"""Check if this typedef is a function pointer type."""
return self.argstring is not None and self.argstring.startswith(")(")
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
result = " " * indent
if self.keyword == "using" and self.template_list is not None:
result += self.template_list.to_string() + "\n" + " " * indent
if not hide_visibility:
result += self.visibility + " "
result += self.keyword
if self.keyword == "using":
result += f" {name} = {format_parsed_type(self._parsed_type)};"
elif self._is_function_pointer():
formatted_args = format_arguments(self._fp_arguments)
qualified_type = format_parsed_type(self._parsed_type)
# Function pointer typedef: "typedef return_type (*name)(args);"
# type is e.g. "void(*", argstring is ")(args...)"
if "(*" in qualified_type:
result += f" {qualified_type}{name})({formatted_args});"
else:
result += f" {qualified_type}(*{name})({formatted_args});"
else:
result += f" {self.type} {name};"
return result
class PropertyMember(Member):
def __init__(
self,
name: str,
type: str,
visibility: str,
is_static: bool,
accessor: str | None,
is_readable: bool,
is_writable: bool,
) -> None:
super().__init__(name, visibility)
self.type: str = type
self.is_static: bool = is_static
self.accessor: str | None = accessor
self.is_readable: bool = is_readable
self.is_writable: bool = is_writable
@property
def member_kind(self) -> MemberKind:
return MemberKind.VARIABLE
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
result = " " * indent
if not hide_visibility:
result += self.visibility + " "
attributes = []
if self.accessor:
attributes.append(self.accessor)
if not self.is_writable and self.is_readable:
attributes.append("readonly")
attrs_str = f"({', '.join(attributes)}) " if attributes else ""
if self.is_static:
result += "static "
# For block properties, name is embedded in the type (e.g., "void(^eventInterceptor)(args)")
if name:
result += f"@property {attrs_str}{self.type} {name};"
else:
result += f"@property {attrs_str}{self.type};"
return result
class FriendMember(Member):
def __init__(self, name: str, visibility: str = "public") -> None:
super().__init__(name, visibility)
@property
def member_kind(self) -> MemberKind:
return MemberKind.FRIEND
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
result = " " * indent
if not hide_visibility:
result += self.visibility + " "
result += f"friend {name};"
return result
class ConceptMember(Member):
def __init__(
self,
name: str,
constraint: str,
) -> None:
super().__init__(name, "public")
self.constraint: str = self._normalize_constraint(constraint)
@property
def member_kind(self) -> MemberKind:
return MemberKind.CONCEPT
@staticmethod
def _normalize_constraint(constraint: str) -> str:
"""
Normalize the whitespace in a concept constraint expression.
Doxygen preserves original source indentation, which becomes
inconsistent when we flatten namespaces and use qualified names.
This method normalizes the indentation by dedenting all lines
to the minimum non-empty indentation level.
"""
if not constraint:
return constraint
lines = constraint.split("\n")
if len(lines) <= 1:
return constraint.strip()
# Find minimum indentation (excluding the first line and empty lines)
min_indent = float("inf")
for line in lines[1:]:
stripped = line.lstrip()
if stripped: # Skip empty lines
indent = len(line) - len(stripped)
min_indent = min(min_indent, indent)
if min_indent == float("inf"):
min_indent = 0
# Dedent all lines by the minimum indentation
result_lines = [lines[0].strip()]
for line in lines[1:]:
if line.strip(): # Non-empty line
# Remove the minimum indentation to normalize
dedented = (
line[int(min_indent) :]
if len(line) >= min_indent
else line.lstrip()
)
result_lines.append(dedented.rstrip())
else:
result_lines.append("")
# Check if no line is indented
if all(not line.startswith(" ") for line in result_lines):
# Re-indent all lines but the first by 2 spaces
not_indented = result_lines
result_lines = [not_indented[0]]
for line in not_indented[1:]:
if line.strip(): # Non-empty line
result_lines.append(" " + line)
else:
result_lines.append("")
return "\n".join(result_lines)
def close(self, scope: Scope):
# TODO: handle unqualified references
pass
def to_string(
self,
indent: int = 0,
qualification: str | None = None,
hide_visibility: bool = False,
) -> str:
name = self._get_qualified_name(qualification)
result = ""
if self.template_list is not None:
result += " " * indent + self.template_list.to_string() + "\n"
result += " " * indent + f"concept {name} = {self.constraint};"
return result