Skip to content

Commit

Permalink
path: add mp_path_is_absolute()
Browse files Browse the repository at this point in the history
Just move it from mp_path_join_bstr() to this new function.
  • Loading branch information
wm4 committed Feb 6, 2020
1 parent 31acec5 commit 1dc3507
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 10 deletions.
28 changes: 18 additions & 10 deletions options/path.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,23 +254,31 @@ char *mp_splitext(const char *path, bstr *root)
return (char *)split + 1;
}

char *mp_path_join_bstr(void *talloc_ctx, struct bstr p1, struct bstr p2)
bool mp_path_is_absolute(struct bstr path)
{
if (p1.len == 0)
return bstrdup0(talloc_ctx, p2);
if (p2.len == 0)
return bstrdup0(talloc_ctx, p1);
if (path.len && strchr(mp_path_separators, path.start[0]))
return true;

bool is_absolute = strchr(mp_path_separators, p2.start[0]);
#if HAVE_DOS_PATHS
// Note: "X:filename" is a path relative to the current working directory
// of drive X, and thus is not an absolute path. It needs to be
// followed by \ or /.
if (p2.len >= 3 && p2.start[1] == ':' &&
strchr(mp_path_separators, p2.start[2]))
is_absolute = true;
if (path.len >= 3 && path.start[1] == ':' &&
strchr(mp_path_separators, path.start[2]))
return true;
#endif
if (is_absolute)

return false;
}

char *mp_path_join_bstr(void *talloc_ctx, struct bstr p1, struct bstr p2)
{
if (p1.len == 0)
return bstrdup0(talloc_ctx, p2);
if (p2.len == 0)
return bstrdup0(talloc_ctx, p1);

if (mp_path_is_absolute(p2))
return bstrdup0(talloc_ctx, p2);

bool have_separator = strchr(mp_path_separators, p1.start[p1.len - 1]);
Expand Down
3 changes: 3 additions & 0 deletions options/path.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ void mp_path_strip_trailing_separator(char *path);
char *mp_path_join(void *talloc_ctx, const char *p1, const char *p2);
char *mp_path_join_bstr(void *talloc_ctx, struct bstr p1, struct bstr p2);

// Return whether the path is absolute.
bool mp_path_is_absolute(struct bstr path);

char *mp_getcwd(void *talloc_ctx);

bool mp_path_exists(const char *path);
Expand Down
20 changes: 20 additions & 0 deletions test/paths.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,25 @@ static void test_join(char *file, int line, char *a, char *b, char *c)
talloc_free(res);
}

static void test_abs(char *file, int line, bool abs, char *a)
{
if (mp_path_is_absolute(bstr0(a)) != abs) {
printf("%s:%d: mp_path_is_absolute('%s') => %d, expected %d\n",
file, line, a, !abs, abs);
abort();
}
}

#define TEST_JOIN(a, b, c) \
test_join(__FILE__, __LINE__, a, b, c);

#define TEST_ABS(abs, a) \
test_abs(__FILE__, __LINE__, abs, a)

static void run(struct test_ctx *ctx)
{
TEST_ABS(true, "/ab");
TEST_ABS(false, "ab");
TEST_JOIN("", "", "");
TEST_JOIN("a", "", "a");
TEST_JOIN("/a", "", "/a");
Expand All @@ -29,6 +43,12 @@ static void run(struct test_ctx *ctx)
TEST_JOIN("ab/", "/cd", "/cd");
// Note: we prefer "/" on win32, but tolerate "\".
#if HAVE_DOS_PATHS
TEST_ABS(true, "\\ab");
TEST_ABS(true, "c:\\");
TEST_ABS(true, "c:/");
TEST_ABS(false, "c:");
TEST_ABS(false, "c:a");
TEST_ABS(false, "c:a\\");
TEST_JOIN("ab\\", "cd", "ab\\cd");
TEST_JOIN("ab\\", "\\cd", "\\cd");
TEST_JOIN("c:/", "de", "c:/de");
Expand Down

0 comments on commit 1dc3507

Please sign in to comment.