forked from OpenBB-finance/OpenBB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_sdk.py
571 lines (483 loc) · 19.9 KB
/
generate_sdk.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
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
"""Generates the sdk files from the trailmaps."""
import os
import re
import subprocess # nosec: B404
import sys
from pathlib import Path
from typing import Any, Dict, List, Optional, TextIO
from openbb_terminal.core.sdk.sdk_helpers import get_sdk_imports_text
from openbb_terminal.core.sdk.trailmap import Trailmap, get_trailmaps
from openbb_terminal.core.session.current_system import set_system_variable
from openbb_terminal.rich_config import console
set_system_variable("TEST_MODE", True)
set_system_variable("LOG_COLLECT", False)
REPO_ROOT = Path(__file__).parent.joinpath("openbb_terminal").resolve()
sub_names = {
"defi": "DeFi",
"disc": "Discovery",
"dd": "Due Diligence",
"onchain": "OnChain",
"ov": "Overview",
"keys": "Keys",
"forecast": "Forecasting",
"alt": "Alternative",
"crypto": "Cryptocurrency",
"ba": "Behavioral Analysis",
"ca": "Comparison Analysis",
"dps": "Darkpool Shorts",
"po": "Portfolio Optimization",
"qa": "Quantitative Analysis",
"screener": "Screener",
"ta": "Technical Analysis",
"th": "Trading Hours",
"fa": "Fundamental Analysis",
"Oss": "Open Source Software",
"funds": "Mutual Funds",
"gov": "Government",
"ins": "Insiders",
"nft": "NFT",
}
sdk_openbb_var = """
class SDKLogger:
def __init__(self) -> None:
self.__check_initialize_logging()
def __check_initialize_logging(self):
if not get_current_system().LOGGING_SUPPRESS:
self.__initialize_logging()
@staticmethod
def __initialize_logging() -> None:
# pylint: disable=C0415
from openbb_terminal.core.session.current_system import set_system_variable
from openbb_terminal.core.log.generation.settings_logger import log_all_settings
from openbb_terminal.loggers import setup_logging
set_system_variable("LOGGING_SUB_APP", "sdk")
setup_logging()
log_all_settings()
@staticmethod
def _try_to_login(sdk: "OpenBBSDK"):
if is_local() and is_auth_enabled():
try:
sdk.login(silent=True)
except Exception:
pass
openbb = OpenBBSDK()\r\r
"""
disable_lines = (
"# ######### THIS FILE IS AUTO GENERATED - ANY CHANGES WILL BE VOID ######### #\r"
"# flake8: noqa\r# pylint: disable=C0301,R0902,R0903\r"
)
class BuildCategoryModelClasses:
"""Builds the command tree for the SDK."""
def __init__(self, trailmaps: List[Trailmap]) -> None:
self.trailmaps = trailmaps
self.categories: Dict[str, Any] = {}
self.import_modules: Dict[str, Any] = {}
self.root_modules: Dict[str, Any] = {}
self.import_cat_class = (
"from openbb_terminal.core.sdk.sdk_helpers import Category\r"
)
for tmap in self.trailmaps:
local = tmap.location_path
self.categories = self.add_todict(self.categories, local, tmap)
for folder in ["models", "controllers"]:
if not (REPO_ROOT / f"core/sdk/{folder}").exists():
(REPO_ROOT / f"core/sdk/{folder}").mkdir()
if not (REPO_ROOT / f"core/sdk/{folder}/__init__.py").exists():
with open(REPO_ROOT / f"core/sdk/{folder}/__init__.py", "w") as f:
f.write(
"# ######### THIS FILE IS AUTO GENERATED - ANY CHANGES WILL BE VOID ######### #\r"
"# flake8: noqa\r# pylint: disable=unused-import,wrong-import-order\r\r"
)
if not (REPO_ROOT / "core/sdk/__init__.py").exists():
with open(REPO_ROOT / "core/sdk/__init__.py", "w") as f:
f.write("")
def add_todict(self, d: dict, location_path: list, tmap: Trailmap) -> dict:
"""Add the trailmap to the dictionary.
A trailmap is a path to a function in the sdk.
This function creates the dictionary paths to the function.
"""
if location_path[0] not in d:
d[location_path[0]] = {}
if len(location_path) > 1:
self.add_todict(d[location_path[0]], location_path[1:], tmap)
else:
d[location_path[0]][tmap.class_attr] = tmap
return d
def get_nested_dict(self, d: dict) -> dict:
"""Get the nested dictionary of the category."""
nested_dict = {}
for k, v in d.items():
if isinstance(v, dict):
nested_dict[k] = self.get_nested_dict(v)
return nested_dict
def get_subcategory_fullname(self, cat: str) -> str:
"""Get the full category name from the shortened category name."""
if cat in sub_names:
return sub_names[cat]
return cat.title().replace(" ", "")
def check_submodules(self, category: str) -> bool:
"""Check if a category has submodules."""
return any(isinstance(d, dict) for d in self.categories[category].values())
def write_init_imports(self, import_string: str, file_string: str) -> None:
"""Check if a category has submodules and adds the imports to the init file."""
regex = re.compile(import_string)
with open(REPO_ROOT / file_string) as init_file:
check_init = bool(regex.search(init_file.read()))
if not check_init:
with open(REPO_ROOT / file_string, "a") as init_file:
init_file.write(f"{import_string}\r")
def write_sdk_class(
self, category: str, f: TextIO, cls_type: Optional[str] = ""
) -> None:
"""Write the sdk class to the file.
Parameters
----------
category : str
The category name.
f : TextIO
The file to write to.
cls_type : Optional[str], optional
The class type, by default ""
"""
if category in self.root_modules:
class_name = f"{category.title()}{cls_type}(model.{category.title()}Root)"
else:
class_name = f"{category.title()}{cls_type}"
f.write(
f'class {class_name}:\r """{self.get_subcategory_fullname(category)} Module.\r'
)
def write_class_property(
self, category: str, f: TextIO, subcategory: Optional[str] = ""
) -> None:
"""Write the class property to the file.
Parameters
----------
category : str
The category name.
f : TextIO
The file to write to.
subcategory : Optional[str], optional
The subcategory name, by default None
"""
def_name = subcategory if subcategory else category
if subcategory:
subcategory = f" {self.get_subcategory_fullname(subcategory)}"
category = sub_names.get(category, category.title())
f.write(
f" @property\r def {def_name}(self):\r "
f'"""{category}{subcategory} Submodule\r'
)
def write_class_attr_docs(
self,
d: dict,
f: TextIO,
module: bool = True,
sdk_root: bool = False,
trail: Optional[list] = None,
) -> None:
"""Write the class attribute docs to the category file.
Parameters
----------
d : dict
The dictionary of the category.
f : TextIO
The file to write to.
module : bool, optional
If the category is a module, by default True
sdk_root : bool, optional
If this is the sdk root file, by default False
trail : list, optional
The trail to the function, by default None
"""
add_indent = "" if module else " "
added_attributes = False
for v in d.values():
if isinstance(v, Trailmap):
if not added_attributes:
f.write(f"\r{add_indent} Attributes:\r")
added_attributes = True
for key in ["model", "view"]:
if v.func_attrs.get(key, None) and v.func_attrs[key].short_doc:
view = v.view_name if key == "view" else ""
f.write(
f"{add_indent} `{v.class_attr}{view}`: {v.func_attrs[key].short_doc}\\n\r"
)
f.write(f'{add_indent} """\r\r')
if trail:
f.write(f' _location_path = "{".".join(trail)}"\r')
if module:
f.write(" def __init__(self):\r super().__init__()\r")
elif sdk_root:
f.write(" __version__ = get_current_system().VERSION\r\r")
f.write(" def __init__(self):\r SDKLogger()\r")
def write_class_attributes(
self, d: dict, f: TextIO, cat: Optional[str] = None
) -> None:
"""Write the class attributes to the category file.
Parameters
----------
d : dict
The dictionary of the category.
f : TextIO
The file to write to.
cat : Optional[str], optional
The category name, by default None
"""
add_indent = ""
missing_deps = {
"forecast": "FORECASTING_TOOLKIT",
"po": "OPTIMIZATION_TOOLKIT",
}
if cat in missing_deps:
f.write(
f"""
if not lib.{missing_deps[cat]}_ENABLED:\r
# pylint: disable=C0415
from openbb_terminal.rich_config import console
console.print(lib.{missing_deps[cat]}_WARNING)\r\r"""
)
add_indent = " "
f.write(f" if lib.{missing_deps[cat]}_ENABLED:\r")
for v in d.values():
if isinstance(v, Trailmap):
for attr, func in zip(["", v.view_name], [v.model_func, v.view_func]):
if func:
f.write(
f"{add_indent} self.{v.class_attr}{attr} = {func}\r"
)
f.write("\r\r")
def write_category(self, category: str, d: dict, f: TextIO) -> None:
"""Write the category class to the file.
Parameters
----------
category : str
The category name
d : dict
The category dictionary
f : TextIO
The file to write to
"""
subcategory_name = self.get_subcategory_fullname(category)
# If this category has no attributes, then we don't write it to the file.
if not any(isinstance(v, Trailmap) for v in d.values()):
return
self.root_modules[category] = f"{category.title().replace(' ', '')}Root"
f.write(f"class {self.root_modules[category]}(Category):\r")
f.write(f' """{subcategory_name.title()} Module\r')
self.write_class_attr_docs(d, f, trail=[category])
self.write_class_attributes(d, f, category)
def write_nested_category(self, category: str, d: dict, f: TextIO) -> None:
"""Write the nested category classes.
Parameters
----------
category : str
The category name
d : dict
The category dictionary
f : TextIO
The file to write to
"""
for nested_category, nested_dict in d.items():
if isinstance(nested_dict, Trailmap):
continue
subcategory_name = self.get_subcategory_fullname(nested_category)
class_name = (
f"{category.title()}{subcategory_name.replace(' ', '')}(Category)"
)
f.write(f'class {class_name}:\r """{subcategory_name} Module.\r')
self.write_nested_submodule_docs(nested_dict, f)
if isinstance(nested_dict, dict):
self.write_class_attr_docs(
nested_dict, f, trail=[category, nested_category]
)
self.write_class_attributes(nested_dict, f, nested_category)
def write_submodule_doc(
self, k: str, f: TextIO, added: bool = False, indent: bool = False
) -> None:
"""Write the submodules to the class docstring.
Parameters
----------
d : dict
The category dictionary
f : TextIO
The file to write to
added : bool, optional
Whether or not "Submodules:" have been added to the docstring, by default False
indent : bool, optional
Whether or not to add an indent to the docstring, by default False
"""
add_indent = " " if indent else ""
if not added:
f.write("\r Submodules:\r")
subcategory_name = self.get_subcategory_fullname(k)
f.write(f"{add_indent} `{k}`: {subcategory_name} Module\r")
def write_nested_submodule_docs(
self, nested_dict: dict, f: TextIO, indent: bool = False
) -> None:
"""Write the nested submodule docs to the class docstring.
Parameters
----------
nested_dict : dict
The nested dictionary
f : TextIO
The file to write to
indent : bool, optional
Whether or not to add an indent to the docstring, by default False
"""
added = False
nested_subcategory = self.get_nested_dict(nested_dict)
if nested_subcategory:
for k in nested_subcategory:
if isinstance(nested_dict[k], Trailmap):
continue
self.write_submodule_doc(k, f, added, indent)
if not added:
added = True
def write_category_file(self, category: str, d: dict) -> None:
"""Write the category file.
This is the file that contains the categories and subcategories of the sdk.
Parameters
----------
category : str
The category name
d : dict
The category dictionary
"""
with open(REPO_ROOT / f"core/sdk/models/{category}_sdk_model.py", "w") as f:
import_cat_class = self.import_cat_class
if category in self.root_modules:
import_cat_class = ""
category = self.root_modules[category]
f.write(
f"{disable_lines}{import_cat_class}import openbb_terminal.core.sdk.sdk_init as lib\r\r\r"
)
if category not in self.root_modules and any(
isinstance(v, Trailmap) for v in d.values()
):
self.write_init_imports(
f"from .{category}_sdk_model import {category.title()}Root",
"core/sdk/models/__init__.py",
)
self.write_category(category, d, f)
self.write_nested_category(category, d, f)
f.seek(f.tell() - 2, os.SEEK_SET)
f.truncate()
def write_sdk_controller_file(self, category: str, d: dict) -> None:
"""Write the sdk controller file.
This is the file that contains the controller classes for the sdk.
Parameters
----------
category : str
The category name
d : dict
The category dictionary
"""
added_init_imports = []
with open(
REPO_ROOT / f"core/sdk/controllers/{category}_sdk_controller.py", "w"
) as f:
f.write(
f"{disable_lines}from openbb_terminal.core.sdk.models "
f"import {category}_sdk_model as model\r\r\r"
)
if category not in added_init_imports and any(
isinstance(v, dict) for v in d.values()
):
self.write_init_imports(
f"from .{category}_sdk_controller import {category.title()}Controller",
"core/sdk/controllers/__init__.py",
)
added_init_imports.append(category)
self.write_sdk_class(category, f, "Controller")
self.write_nested_submodule_docs(self.categories[category], f, True)
self.write_class_attr_docs(d, f, False)
for subcategory in self.categories[category]:
if isinstance(d[subcategory], Trailmap):
continue
self.write_class_property(category, f, subcategory)
self.write_nested_submodule_docs(d[subcategory], f, True)
self.write_class_attr_docs(d[subcategory], f, False)
f.write(
f" return model.{category.title()}"
f"{self.get_subcategory_fullname(subcategory).replace(' ', '')}()\r\r"
)
f.seek(f.tell() - 1, os.SEEK_SET)
f.truncate()
def write_sdk_file(self) -> None:
"""Write the main sdk file.
This is the file that we initialize the SDK with openbb.
"""
with open(REPO_ROOT / "sdk.py", "w") as f:
f.write(
f'{get_sdk_imports_text()}class OpenBBSDK:\r """OpenBB SDK Class.\r'
)
root_attrs = self.categories.pop("root")
if root_attrs:
self.write_class_attr_docs(root_attrs, f, False, True)
self.write_class_attributes(root_attrs, f)
f.seek(f.tell() - 2, os.SEEK_SET)
f.truncate()
f.write(" SDKLogger._try_to_login(self)\r\r")
for category in self.categories:
self.write_class_property(category, f)
self.write_nested_submodule_docs(self.categories[category], f, True)
self.write_class_attr_docs(self.categories[category], f, False)
if self.check_submodules(category):
f.write(f" return ctrl.{category.title()}Controller()\r\r")
else:
f.write(f" return model.{self.root_modules[category]}()\r\r")
f.write("\r".join(sdk_openbb_var.splitlines()))
def build(self) -> None:
"""Build the SDK."""
for path in ["core/sdk/models", "core/sdk/controllers"]:
for file in (REPO_ROOT / path).glob("*.py"):
if file.name == "__init__.py":
with open(file, "w") as f:
f.write(
"# ######### THIS FILE IS AUTO GENERATED - ANY CHANGES WILL BE VOID ######### #\r"
"# flake8: noqa\r"
"# pylint: disable=unused-import,wrong-import-order\r\r"
)
continue
file.unlink()
for category, d in self.categories.items():
if isinstance(d, Trailmap) or category == "root":
continue
self.write_category_file(category, d)
if self.check_submodules(category):
self.write_sdk_controller_file(category, d)
self.write_sdk_file()
for path in ["", "core/sdk", "core/sdk/models", "core/sdk/controllers"]:
pattern = "*.py" if path else "sdk.py"
for file in (REPO_ROOT / path).glob(pattern):
with open(file, "rb") as f:
content = f.read()
with open(file, "wb") as f:
f.write(content.replace(b"\r", b"\n"))
# We run black to make sure the code is formatted correctly
subprocess.check_call(["black", "openbb_terminal"]) # nosec: B603, B607
def generate_sdk(sort: bool = False) -> bool:
"""Generate the SDK.
Parameters
----------
sort : bool, optional
Whether to sort the CSVs, by default False
"""
trailmaps = get_trailmaps(sort)
try:
console.print("[yellow]Generating SDK...[/yellow]")
BuildCategoryModelClasses(trailmaps).build()
console.print("[green]SDK Generated Successfully.[/green]")
except Exception as e:
console.print(f"[red]Error generating SDK: {e}[/]")
return False
return True
if __name__ == "__main__":
sort_csv = False
if len(sys.argv) > 1:
if sys.argv[1] == "sort":
sort_csv = True
console.print("\n\n[bright_magenta]Sorting CSV...[/]\n")
else:
console.print("[red]Invalid argument.\n Accepted arguments: sort[/]")
generate_sdk(sort_csv)