forked from luxonis/depthai-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_stubs.py
108 lines (86 loc) · 3.3 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
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
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", "")}'
# Test importing depthai after PYTHONPATH is specified
try:
import depthai
except Exception as ex:
print(f'Could not import depthai: {ex}')
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
json = dict
from pathlib import Path
from typing import Set
''') + 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)
# Writeout changes
file.seek(0)
file.truncate(0)
file.write(final_stubs)
# node fixes
with open(f'{DIRECTORY}/depthai/node.pyi' ,'r+') as file:
# Read
contents = file.read()
# Add imports
stubs_import = textwrap.dedent('''
from pathlib import Path
from typing import Set
''') + contents
# Remove import depthai.*
final_stubs = re.sub(r"import depthai\.\S*", "", stubs_import)
# Writeout changes
file.seek(0)
file.truncate(0)
file.write(final_stubs)
# Flush previous stdout
sys.stdout.flush()
# Check syntax (Mypy and later Pylance/Pyright)
# Windows limitation - another process cannot normally read temporary file that is opened by this process
# Close first and delete manually afterwards
try:
config = tempfile.NamedTemporaryFile(mode='w', delete=False)
config.write('[mypy]\nignore_errors = True\n')
config.close()
print(f'Mypy config file: {config.name}')
# Mypy check
subprocess.check_call([sys.executable, '-m' 'mypy', f'{DIRECTORY}/{MODULE_NAME}', f'--config-file={config.name}'], env=env)
finally:
os.unlink(config.name)
# # TODO(thamarpe) - Pylance / Pyright check
# subprocess.check_call([sys.executable, '-m' 'pyright', f'{DIRECTORY}/{MODULE_NAME}'], env=env)
except subprocess.CalledProcessError as err:
exit(err.returncode)
exit(0)