-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathfreeze.py
More file actions
263 lines (230 loc) · 7.52 KB
/
freeze.py
File metadata and controls
263 lines (230 loc) · 7.52 KB
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
"""CLI for ``tmuxp freeze`` subcommand."""
from __future__ import annotations
import argparse
import locale
import logging
import os
import pathlib
import sys
import typing as t
from libtmux.server import Server
from tmuxp import exc, util
from tmuxp._internal.config_reader import ConfigReader
from tmuxp._internal.private_path import PrivatePath
from tmuxp.exc import TmuxpException
from tmuxp.workspace import freezer
from tmuxp.workspace.finders import get_workspace_dir
from ._colors import Colors, build_description, get_color_mode
from .utils import prompt, prompt_choices, prompt_yes_no, tmuxp_echo
logger = logging.getLogger(__name__)
FREEZE_DESCRIPTION = build_description(
"""
Freeze a live tmux session to a tmuxp workspace file.
""",
(
(
None,
[
"tmuxp freeze mysession",
"tmuxp freeze mysession -o session.yaml",
"tmuxp freeze -f json mysession",
"tmuxp freeze -y mysession",
],
),
),
)
if t.TYPE_CHECKING:
from typing import TypeGuard
CLIColorModeLiteral: t.TypeAlias = t.Literal["auto", "always", "never"]
CLIOutputFormatLiteral: t.TypeAlias = t.Literal["yaml", "json"]
class CLIFreezeNamespace(argparse.Namespace):
"""Typed :class:`argparse.Namespace` for tmuxp freeze command."""
color: CLIColorModeLiteral
session_name: str
socket_name: str | None
socket_path: str | None
workspace_format: CLIOutputFormatLiteral | None
save_to: str | None
answer_yes: bool | None
quiet: bool | None
force: bool | None
def create_freeze_subparser(
parser: argparse.ArgumentParser,
) -> argparse.ArgumentParser:
"""Augment :class:`argparse.ArgumentParser` with ``freeze`` subcommand."""
parser.add_argument(
dest="session_name",
metavar="session-name",
nargs="?",
action="store",
)
parser.add_argument(
"-S",
dest="socket_path",
metavar="socket-path",
help="pass-through for tmux -S",
)
parser.add_argument(
"-L",
dest="socket_name",
metavar="socket-name",
help="pass-through for tmux -L",
)
parser.add_argument(
"-f",
"--workspace-format",
choices=["yaml", "json"],
help="format to save in",
)
parser.add_argument(
"-o",
"--save-to",
metavar="output-path",
type=pathlib.Path,
help="file to save to",
)
parser.add_argument(
"--yes",
"-y",
dest="answer_yes",
action="store_true",
help="always answer yes",
)
parser.add_argument(
"--quiet",
"-q",
dest="quiet",
action="store_true",
help="don't prompt for confirmation",
)
parser.add_argument(
"--force",
dest="force",
action="store_true",
help="overwrite the workspace file",
)
return parser
def command_freeze(
args: CLIFreezeNamespace,
parser: argparse.ArgumentParser | None = None,
) -> None:
"""Entrypoint for ``tmuxp freeze``, snapshot a tmux session into a tmuxp workspace.
If SESSION_NAME is provided, snapshot that session. Otherwise, use the current
session.
"""
color_mode = get_color_mode(args.color)
colors = Colors(color_mode)
server = Server(socket_name=args.socket_name, socket_path=args.socket_path)
try:
if args.session_name:
session = server.sessions.get(session_name=args.session_name, default=None)
else:
session = util.get_session(server)
if not session:
raise exc.SessionNotFound
except TmuxpException as e:
tmuxp_echo(colors.error(str(e)))
return
frozen_workspace = freezer.freeze(session)
workspace = freezer.inline(frozen_workspace)
configparser = ConfigReader(workspace)
if not args.quiet:
tmuxp_echo(
colors.format_separator(63)
+ "\n"
+ colors.muted("Freeze does its best to snapshot live tmux sessions.")
+ "\n",
)
if not (
args.answer_yes
or prompt_yes_no(
"The new workspace will require adjusting afterwards. Save workspace file?",
color_mode=color_mode,
)
):
if not args.quiet:
tmuxp_echo(
colors.muted("tmuxp has examples in JSON and YAML format at ")
+ colors.info("<http://tmuxp.git-pull.com/examples.html>")
+ "\n"
+ colors.muted("View tmuxp docs at ")
+ colors.info("<http://tmuxp.git-pull.com/>")
+ ".",
)
sys.exit()
dest = args.save_to
while not dest:
save_to = os.path.abspath(
os.path.join(
get_workspace_dir(),
"{}.{}".format(
frozen_workspace.get("session_name"),
args.workspace_format or "yaml",
),
),
)
dest_prompt = prompt(
f"Save to: {PrivatePath(save_to)}",
default=save_to,
color_mode=color_mode,
)
if not args.force and os.path.exists(dest_prompt):
tmuxp_echo(
colors.warning(f"{PrivatePath(dest_prompt)} exists.")
+ " "
+ colors.muted("Pick a new filename."),
)
continue
dest = dest_prompt
dest = os.path.abspath(os.path.relpath(os.path.expanduser(dest)))
workspace_format = args.workspace_format
valid_workspace_formats: list[CLIOutputFormatLiteral] = ["json", "yaml"]
def is_valid_ext(stem: str | None) -> TypeGuard[CLIOutputFormatLiteral]:
return stem in valid_workspace_formats
if not is_valid_ext(workspace_format):
def extract_workspace_format(
val: str,
) -> CLIOutputFormatLiteral | None:
suffix = pathlib.Path(val).suffix
if isinstance(suffix, str):
suffix = suffix.lower().lstrip(".")
if is_valid_ext(suffix):
return suffix
return None
workspace_format = extract_workspace_format(dest)
if not is_valid_ext(workspace_format):
workspace_format_ = prompt_choices(
"Couldn't ascertain one of [{}] from file name. Convert to".format(
", ".join(valid_workspace_formats),
),
choices=t.cast("list[str]", valid_workspace_formats),
default="yaml",
color_mode=color_mode,
)
assert is_valid_ext(workspace_format_)
workspace_format = workspace_format_
if workspace_format == "yaml":
workspace = configparser.dump(
fmt="yaml",
indent=2,
default_flow_style=False,
safe=True,
)
elif workspace_format == "json":
workspace = configparser.dump(fmt="json", indent=2)
if args.answer_yes or prompt_yes_no(
f"Save to {PrivatePath(dest)}?",
color_mode=color_mode,
):
destdir = os.path.dirname(dest)
if not os.path.isdir(destdir):
os.makedirs(destdir)
pathlib.Path(dest).write_text(
workspace,
encoding=locale.getpreferredencoding(False),
)
logger.info("workspace saved", extra={"tmux_config_path": str(dest)})
if not args.quiet:
tmuxp_echo(
colors.success("Saved to ") + colors.info(str(PrivatePath(dest))) + ".",
)