-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_to_code.py
52 lines (37 loc) · 1.27 KB
/
string_to_code.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
"""
Provides utilities related to:
- querying available target languages,
- calling proc-like functions, where target language is specified programmatically
"""
import pathlib
import importlib
def _remove_prefix(in_str: str, in_prefix: str) -> str:
assert in_str.startswith(in_prefix) # nosec B101
return in_str[len(in_prefix) :]
_MODULE_PREFIX = "to_"
_PACKAGE_PATH = pathlib.Path(__file__).parent
_LANGUAGE_IDS = frozenset(
_remove_prefix(_.stem, _MODULE_PREFIX)
for _ in _PACKAGE_PATH.glob(_MODULE_PREFIX + "*.py")
)
def get_target_languages() -> frozenset[str]:
"""
returns the set of ids of all supported target languages
"""
return _LANGUAGE_IDS
def is_language_supported(in_language_id: str) -> bool:
"""
checks is language with given id is supported
"""
return in_language_id in get_target_languages()
def _to_module_name(in_id: str) -> str:
return _MODULE_PREFIX + in_id
_ALL_MODULES_DICT = {
_: importlib.import_module("." + _to_module_name(_), "string_to_code")
for _ in get_target_languages()
}
def proc(in_target_language_id: str, in_str: str, **kwargs) -> str:
"""
returns a code in in_target_language_id displaying in_str
"""
return _ALL_MODULES_DICT[in_target_language_id].proc(in_str, **kwargs)