-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared.py
108 lines (85 loc) · 2.43 KB
/
shared.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
"""Shared functions and variables."""
from __future__ import annotations
import sys
from typing import TYPE_CHECKING
from typing import Any
from typing import Iterable
from typing import Sequence
if TYPE_CHECKING:
from pathlib import Path
if sys.platform == "darwin":
STATA_COMMANDS = [
"Stata64MP",
"StataMP",
"Stata64SE",
"StataSE",
"Stata64",
"Stata",
]
elif sys.platform == "linux":
STATA_COMMANDS = ["stata-mp", "stata-se", "stata"]
elif sys.platform == "win32":
STATA_COMMANDS = [
"StataMP-64",
"StataMP-ia",
"StataMP",
"StataSE-64",
"StataSE-ia",
"StataSE",
"Stata-64",
"Stata-ia",
"Stata",
"WMPSTATA",
"WSESTATA",
"WSTATA",
]
else:
STATA_COMMANDS = []
def stata(
*,
script: str | Path | None = None,
options: str | Iterable[str] | None = None,
) -> tuple[str | Path | None, str | Iterable[str] | None]:
"""Specify command line options for Stata.
Parameters
----------
options : str | Iterable[str] | None
One or multiple command line options passed to Stata.
"""
options = [] if options is None else list(map(str, _to_list(options)))
return script, options
def convert_task_id_to_name_of_log_file(id_: str) -> str:
"""Convert task to id to name of log file.
If one passes the complete task id as the log file name, Stata would remove parent
directories and cut the string at the double colons for parametrized task. Here is
an example:
.. code-block:: none
C:/task_example.py::task_example[arg1] -> task_example.log
This function creates a new id starting from the task module and by replacing dots
and double colons with underscores.
Example
-------
>>> convert_task_id_to_name_of_log_file("C:/task_example.py::task_example[arg1]")
'task_example_py_task_example[arg1]'
"""
return id_.rsplit("/")[-1].replace(".", "_").replace("::", "_")
def _to_list(scalar_or_iter: Any) -> list[Any]:
"""Convert scalars and iterables to list.
Parameters
----------
scalar_or_iter
Returns
-------
list
Examples
--------
>>> _to_list("a")
['a']
>>> _to_list(["b"])
['b']
"""
return (
[scalar_or_iter]
if isinstance(scalar_or_iter, str) or not isinstance(scalar_or_iter, Sequence)
else list(scalar_or_iter)
)