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 | def reactivate_local_pixi(
*,
task_group_activity_id: int,
task_group_id: int,
) -> None:
"""
Reactivate a task group venv.
This function is run as a background task, therefore exceptions must be
handled.
Arguments:
task_group_id:
task_group_activity_id:
"""
LOGGER_NAME = f"{__name__}.ID{task_group_activity_id}"
with TemporaryDirectory() as tmpdir:
log_file_path = get_log_path(Path(tmpdir))
logger = set_logger(
logger_name=LOGGER_NAME,
log_file_path=log_file_path,
)
logger.debug("START")
with next(get_sync_db()) as db:
db_objects_ok, task_group, activity = get_activity_and_task_group(
task_group_activity_id=task_group_activity_id,
task_group_id=task_group_id,
db=db,
logger_name=LOGGER_NAME,
)
if not db_objects_ok:
return
source_dir = Path(task_group.path, SOURCE_DIR_NAME).as_posix()
if Path(source_dir).exists():
error_msg = f"{source_dir} already exists."
logger.error(error_msg)
fail_and_cleanup(
task_group=task_group,
task_group_activity=activity,
logger_name=LOGGER_NAME,
log_file_path=log_file_path,
exception=FileExistsError(error_msg),
db=db,
)
return
try:
activity.status = TaskGroupActivityStatusV2.ONGOING
activity = add_commit_refresh(obj=activity, db=db)
settings = Inject(get_settings)
common_args = dict(
replacements={
(
"__PIXI_HOME__",
settings.pixi.versions[task_group.pixi_version],
),
("__PACKAGE_DIR__", task_group.path),
("__TAR_GZ_PATH__", task_group.archive_path),
(
"__IMPORT_PACKAGE_NAME__",
task_group.pkg_name.replace("-", "_"),
),
("__SOURCE_DIR_NAME__", SOURCE_DIR_NAME),
("__FROZEN_OPTION__", "--frozen"),
(
"__TOKIO_WORKER_THREADS__",
str(settings.pixi.TOKIO_WORKER_THREADS),
),
(
"__PIXI_CONCURRENT_SOLVES__",
str(settings.pixi.PIXI_CONCURRENT_SOLVES),
),
(
"__PIXI_CONCURRENT_DOWNLOADS__",
str(settings.pixi.PIXI_CONCURRENT_DOWNLOADS),
),
},
script_dir=Path(
task_group.path, SCRIPTS_SUBFOLDER
).as_posix(),
prefix=(
f"{int(time.time())}_"
f"{TaskGroupActivityActionV2.REACTIVATE}"
),
logger_name=LOGGER_NAME,
)
# Run script 1 - extract tar.gz into `source_dir`
_customize_and_run_template(
template_filename="pixi_1_extract.sh",
**common_args,
)
activity.log = get_current_log(log_file_path)
activity = add_commit_refresh(obj=activity, db=db)
# Write pixi.lock into `source_dir`
logger.debug(f"start - writing {source_dir}/pixi.lock")
with Path(source_dir, "pixi.lock").open("w") as f:
f.write(task_group.env_info)
logger.debug(f"end - writing {source_dir}/pixi.lock")
# Run script 2 - run pixi-install command
_customize_and_run_template(
template_filename="pixi_2_install.sh",
**common_args,
)
activity.log = get_current_log(log_file_path)
activity = add_commit_refresh(obj=activity, db=db)
# Run script 3 - post-install
_customize_and_run_template(
template_filename="pixi_3_post_install.sh",
**common_args,
)
activity.log = get_current_log(log_file_path)
activity = add_commit_refresh(obj=activity, db=db)
# Make task folder 755
source_dir = Path(task_group.path, SOURCE_DIR_NAME).as_posix()
command = f"chmod 755 {source_dir} -R"
execute_command_sync(
command=command,
logger_name=LOGGER_NAME,
)
activity.log = get_current_log(log_file_path)
activity.status = TaskGroupActivityStatusV2.OK
activity.timestamp_ended = get_timestamp()
activity = add_commit_refresh(obj=activity, db=db)
task_group.active = True
task_group = add_commit_refresh(obj=task_group, db=db)
logger.debug("END")
reset_logger_handlers(logger)
except Exception as reactivate_e:
# Delete corrupted source_dir
try:
logger.info(f"Now delete folder {source_dir}")
shutil.rmtree(source_dir)
logger.info(f"Deleted folder {source_dir}")
except Exception as rm_e:
logger.error(
"Removing folder failed. "
f"Original error: {str(rm_e)}"
)
fail_and_cleanup(
task_group=task_group,
task_group_activity=activity,
logger_name=LOGGER_NAME,
log_file_path=log_file_path,
exception=reactivate_e,
db=db,
)
return
|