Skip to content

Commit 62c3aeb

Browse files
committed
command: expand paths for all commands with path arguments
Follow up to be15be3 with the same reasoning.
1 parent caeda81 commit 62c3aeb

File tree

3 files changed

+29
-11
lines changed

3 files changed

+29
-11
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
all options that take filepaths as values are now properly expanded (i.e. ~/ -> /home/$USER)
2+
all commands that take filepaths as arguments are now properly expanded (i.e. ~/ -> /home/$USER)

player/command.c

+25-10
Original file line numberDiff line numberDiff line change
@@ -5138,14 +5138,17 @@ static void cmd_osd_overlay(void *p)
51385138
mp_wakeup_core(mpctx);
51395139
}
51405140

5141-
static struct track *find_track_with_url(struct MPContext *mpctx, int type,
5142-
const char *url)
5141+
static struct track *find_track_with_url(struct MPContext *mpctx, int type, char *url)
51435142
{
51445143
for (int n = 0; n < mpctx->num_tracks; n++) {
51455144
struct track *track = mpctx->tracks[n];
5146-
if (track && track->type == type && track->is_external &&
5147-
strcmp(track->external_filename, url) == 0)
5148-
return track;
5145+
if (track && track->type == type && track->is_external) {
5146+
char *normalized = mp_get_user_path(url, mpctx->global, track->external_filename);
5147+
normalized = mp_normalize_path(url, track->external_filename);
5148+
if (strcmp(normalized, url) == 0)
5149+
return track;
5150+
talloc_free(normalized);
5151+
}
51495152
}
51505153
return NULL;
51515154
}
@@ -5920,11 +5923,13 @@ static void cmd_expand_path(void *p)
59205923
static void cmd_normalize_path(void *p)
59215924
{
59225925
struct mp_cmd_ctx *cmd = p;
5926+
struct MPContext *mpctx = cmd->mpctx;
59235927
void *ctx = talloc_new(NULL);
59245928

5929+
char *path = mp_get_user_path(ctx, mpctx->global, cmd->args[0].v.s);
59255930
cmd->result = (mpv_node){
59265931
.format = MPV_FORMAT_STRING,
5927-
.u.string = talloc_strdup(NULL, mp_normalize_path(ctx, cmd->args[0].v.s)),
5932+
.u.string = talloc_steal(NULL, mp_normalize_path(ctx, path)),
59285933
};
59295934

59305935
talloc_free(ctx);
@@ -5993,7 +5998,9 @@ static void cmd_loadfile(void *p)
59935998
if (action.type == LOAD_TYPE_REPLACE)
59945999
playlist_clear(mpctx->playlist);
59956000

5996-
struct playlist_entry *entry = playlist_entry_new(filename);
6001+
char *path = mp_get_user_path(NULL, mpctx->global, filename);
6002+
struct playlist_entry *entry = playlist_entry_new(path);
6003+
talloc_free(path);
59976004
if (cmd->args[3].v.str_list) {
59986005
char **pairs = cmd->args[3].v.str_list;
59996006
for (int i = 0; pairs[i] && pairs[i + 1]; i += 2)
@@ -6026,8 +6033,11 @@ static void cmd_loadlist(void *p)
60266033

60276034
struct load_action action = get_load_action(mpctx, action_flag);
60286035

6029-
struct playlist *pl = playlist_parse_file(filename, cmd->abort->cancel,
6036+
char *path = mp_get_user_path(NULL, mpctx->global, filename);
6037+
struct playlist *pl = playlist_parse_file(path, cmd->abort->cancel,
60306038
mpctx->global);
6039+
talloc_free(path);
6040+
60316041
if (pl) {
60326042
prepare_playlist(mpctx, pl);
60336043
struct playlist_entry *new = pl->current;
@@ -6189,7 +6199,9 @@ static void cmd_track_add(void *p)
61896199
}
61906200

61916201
if (cmd->args[1].v.i == 2) {
6192-
struct track *t = find_track_with_url(mpctx, type, cmd->args[0].v.s);
6202+
char *path = mp_get_user_path(NULL, mpctx->global, cmd->args[0].v.s);
6203+
struct track *t = find_track_with_url(mpctx, type, path);
6204+
talloc_free(path);
61936205
if (t) {
61946206
if (mpctx->playback_initialized) {
61956207
mp_switch_track(mpctx, t->type, t, FLAG_MARK_SELECTION);
@@ -6891,16 +6903,19 @@ static void run_dump_cmd(struct mp_cmd_ctx *cmd, double start, double end,
68916903
return;
68926904
}
68936905

6906+
char *path = mp_get_user_path(NULL, mpctx->global, filename);
68946907
mp_cmd_msg(cmd, MSGL_INFO, "Cache dumping started.");
68956908

6896-
if (!demux_cache_dump_set(mpctx->demuxer, start, end, filename)) {
6909+
if (!demux_cache_dump_set(mpctx->demuxer, start, end, path)) {
68976910
mp_cmd_msg(cmd, MSGL_INFO, "Cache dumping stopped.");
68986911
mp_cmd_ctx_complete(cmd);
6912+
talloc_free(path);
68996913
return;
69006914
}
69016915

69026916
ctx->cache_dump_cmd = cmd;
69036917
cache_dump_poll(mpctx);
6918+
talloc_free(path);
69046919
}
69056920

69066921
static void cmd_dump_cache(void *p)

player/screenshot.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -497,8 +497,10 @@ void cmd_screenshot_to_file(void *p)
497497
cmd->success = false;
498498
return;
499499
}
500-
cmd->success = write_screenshot(cmd, image, filename, &opts, true);
500+
char *path = mp_get_user_path(NULL, mpctx->global, filename);
501+
cmd->success = write_screenshot(cmd, image, path, &opts, true);
501502
talloc_free(image);
503+
talloc_free(path);
502504
}
503505

504506
void cmd_screenshot(void *p)

0 commit comments

Comments
 (0)