This repository was archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsdc_info.py
189 lines (155 loc) · 6.21 KB
/
sdc_info.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
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
# -*- coding: utf-8 -*-
# *****************************************************************************
# Copyright (c) 2019-2020, Intel Corporation All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# *****************************************************************************
import logging
import sdc
from datetime import datetime
from module_info import get_submodules_of, print_modules_classes_methods_attributes, ENABLE_LOGGING, trim
from module_info import get_function, get_function_doc
# -- String for pattern matching that indicates that the docstring belongs to Intel SDC API Reference ---------------
SDC_USR_GUIDE_HEADING_STR = \
'Intel Scalable Dataframe Compiler User Guide********************************************'
SDC_DEV_GUIDE_HEADING_STR = \
'Intel Scalablle Dataframe Compiler Developer Guide**************************************************'
# -- Debug logging --------------------------------------------------------------------------------------------------
log_file_name = '../build/sdc_info.log'
# -- Submodules, classes, and methods to be excluded from API Reference ---------------------------------------------
exclude_modules = [
'sdc.chiframes',
'sdc.compiler',
'sdc.config',
'sdc.io.pio',
'sdc.io.pio_api',
'sdc.io.pio_lower',
'sdc.utilities.utils',
'sdc.utilities.sdc_typing_utils',
'sdc.hstr_ext',
'sdc.datatypes.common_functions',
'sdc.datatypes.hpat_pandas_dataframe_pass',
'sdc.decorators',
'sdc.dict_ext',
'sdc.hdict_ext',
'sdc.distributed',
'sdc.distributed_api',
'sdc.transport_seq',
'sdc.distributed_lower',
'sdc.hdist',
'sdc.distributed_analysis',
'sdc.hdatetime_ext',
'sdc.hiframes',
'sdc.io.csv_ext',
'sdc.hio',
'sdc.hiframes.join',
'sdc.io.parquet_pio',
'sdc.parquet_cpp',
'sdc.shuffle_utils',
'sdc.str_arr_ext',
'sdc.str_ext',
'sdc.timsort',
]
exclude_classes = [
]
exclude_methods = [
]
exclude_attributes = [
]
exclude_functions = [
]
# -- Implements custom skip functions for the parser ----------------------------------------------------------------
def _skip_sdc_module(mod, mod_name):
return mod_name in exclude_modules or (not mod_name.startswith('sdc') and not mod_name.startswith('hpat'))
def _skip_sdc_class(cls, cls_name):
return True # Exclude all classes
# return cls_name in exclude_classes # Explicit exclusion of the class
def _skip_sdc_method(cls, method_name):
# Exclude the method if in the exclude_methods list
if method_name in exclude_methods:
return True
# Exclude the method without docstring
try:
doc = getattr(cls, method_name).__doc__
if len(doc) < 1:
return True
except AttributeError:
return True
except TypeError:
return True
# Exclude the method that does have docstring aimed for API Reference
return not doc.startswith(SDC_USR_GUIDE_HEADING_STR)
def _skip_sdc_function(func, function_name):
# Exclude the function if in the exclude_methods list
if function_name in exclude_functions:
return True
# Exclude the function without docstring
try:
doc = func.__doc__
if len(doc) < 1:
return True
except AttributeError:
return True
except TypeError:
return True
# Include the function that has docstring aimed for API Reference
doc = ''.join(trim(doc).splitlines())
return not doc.startswith(SDC_USR_GUIDE_HEADING_STR)
def _skip_sdc_attribute(cls, attr_name):
# Exclude the attribute if in the exclude_methods list
if attr_name in exclude_attributes:
return True
# Exclude the attribute without docstring
try:
doc = getattr(cls, attr_name).__doc__
if len(doc) < 1:
return True
except AttributeError:
return True
except TypeError:
return True
# Include the attribute that has docstring aimed for API Reference
doc = ''.join(trim(doc).splitlines())
return not doc.startswith(SDC_USR_GUIDE_HEADING_STR)
def get_sdc_modules():
inspected_modules = set()
modules = []
get_submodules_of(sdc, inspected_modules, modules, _skip_sdc_module, _skip_sdc_class,
_skip_sdc_method, _skip_sdc_attribute, _skip_sdc_function)
return modules
def init_sdc_logging():
if ENABLE_LOGGING:
logging.basicConfig(filename=log_file_name, level=logging.DEBUG)
logging.debug('****************** STARTING THE LOG *************************')
logging.debug(datetime.now().strftime("%d/%m/%Y %H:%M:%S"))
if __name__ == "__main__":
# Initialize logging
init_sdc_logging()
# Execute parser for SDC
# You may uncomment this line in case you want to print out generated methods and attributes
# print_modules_classes_methods_attributes(modules)
modules = get_sdc_modules()
func = get_function('hpat_pandas_series_at', modules)
if func:
titled_sections = get_function_doc(func)
print(titled_sections)