-
Notifications
You must be signed in to change notification settings - Fork 193
/
generate_stubs.py
77 lines (61 loc) · 2.47 KB
/
generate_stubs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import sys
import subprocess
import re
import tempfile
import os
import textwrap
# Usage
if len(sys.argv) < 3:
print(f"Usage: {sys.argv[0]} [module_name] [library_dir]")
exit(-1)
MODULE_NAME = sys.argv[1]
DIRECTORY = sys.argv[2]
print(f'Generating stubs for module: "{MODULE_NAME}" in directory: "{DIRECTORY}"')
try:
# Create stubs, add PYTHONPATH to find the build module
# CWD to to extdir where the built module can be found to extract the types
env = os.environ
env['PYTHONPATH'] = f'{DIRECTORY}{os.pathsep}{env.get("PYTHONPATH", "")}'
print(f'PYTHONPATH set to {env["PYTHONPATH"]}')
subprocess.check_call(['stubgen', '-p', MODULE_NAME, '-o', f'{DIRECTORY}'], cwd=DIRECTORY, env=env)
# Add py.typed
open(f'{DIRECTORY}/depthai/py.typed', 'a').close()
# imports and overloads
with open(f'{DIRECTORY}/depthai/__init__.pyi' ,'r+') as file:
# Read
contents = file.read()
# Add imports
stubs_import = textwrap.dedent('''
# Ensures that the stubs are picked up - thanks, numpy project
from depthai import (
node as node,
)
import typing
import json
''') + contents
# Create 'create' overloads
nodes = re.findall('def \S*\(self\) -> node.(\S*):', stubs_import)
overloads = ''
for node in nodes:
overloads = overloads + f'\\1@overload\\1def create(self, arg0: typing.Type[node.{node}]) -> node.{node}: ...'
final_stubs = re.sub(r"([\s]*)def create\(self, arg0: object\) -> Node: ...", f'{overloads}', stubs_import)
# Modify "*View" naming
nodes = re.findall('View\\[(\S*)\\]', final_stubs)
final_stubs = re.sub(r"View\[(\S*)\]", f'View_\\1', final_stubs)
# Writeout changes
file.seek(0)
file.write(final_stubs)
# Flush previous stdout
sys.stdout.flush()
# Check syntax
# Windows limitation - another process cannot normally read temporary file that is opened by this process
# Close first and delete manually afterwards
config = tempfile.NamedTemporaryFile(mode='w', delete=False)
config.write('[mypy]\nignore_errors = True\n')
config.close()
print(f'Mypy config file: {config.name}')
subprocess.check_call([sys.executable, '-m' 'mypy', f'{DIRECTORY}/{MODULE_NAME}', f'--config-file={config.name}'], env=env)
os.unlink(config.name)
except subprocess.CalledProcessError as err:
exit(err.returncode)
exit(0)