X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fpaths.c;h=68942f20265862c40923ffe64ba64fc184ef3d32;hp=040ed697c083537730a7acb278ab7a15e91fb25b;hb=f5725c14ca24988b9d8c3ad9b67c63135cdabc51;hpb=ebe0206c700963ee0ace86cc55fca6570b03cac3 diff --git a/src/paths.c b/src/paths.c index 040ed697..68942f20 100644 --- a/src/paths.c +++ b/src/paths.c @@ -25,102 +25,100 @@ # include "config.h" #endif +#include "wimlib.h" #include "wimlib/paths.h" #include "wimlib/util.h" #include /* Like the basename() function, but does not modify @path; it just returns a - * pointer to it. */ + * pointer to it. This assumes the path separator is the + * OS_PREFERRED_PATH_SEPARATOR. */ const tchar * path_basename(const tchar *path) { return path_basename_with_len(path, tstrlen(path)); } -/* Like path_basename(), but take an explicit string length. */ +/* Like path_basename(), but take an explicit string length. */ const tchar * path_basename_with_len(const tchar *path, size_t len) { - const tchar *p = &path[len] - 1; - - /* Trailing slashes. */ - while (1) { - if (p == path - 1) - return T(""); - if (*p != T('/')) - break; - p--; - } + const tchar *p = &path[len]; + + do { + if (p == path) + return &path[len]; + } while (*--p == OS_PREFERRED_PATH_SEPARATOR); - while ((p != path - 1) && *p != T('/')) - p--; + do { + if (p == path) + return &path[0]; + } while (*--p != OS_PREFERRED_PATH_SEPARATOR); - return p + 1; + return ++p; } -/* - * Returns a pointer to the part of @path following the first colon in the last - * path component, or NULL if the last path component does not contain a colon. - */ +/* Returns a pointer to the part of @path following the first colon in the last + * path component, or NULL if the last path component does not contain a colon + * or has no characters following the first colon. */ const tchar * path_stream_name(const tchar *path) { const tchar *base = path_basename(path); const tchar *stream_name = tstrchr(base, T(':')); - if (!stream_name) + if (stream_name == NULL || *(stream_name + 1) == T('\0')) return NULL; else return stream_name + 1; } - -/* Translate backslashes to forward slashes in-place. */ -void -zap_backslashes(tchar *s) -{ - if (s) { - while (*s != T('\0')) { - if (*s == T('\\')) - *s = T('/'); - s++; - } - } -} - -/* Duplicate a path; return empty string for NULL input. */ +/* Duplicate a path; return empty string for NULL input. */ tchar * canonicalize_fs_path(const tchar *fs_path) { - if (!fs_path) + if (fs_path == NULL) fs_path = T(""); return TSTRDUP(fs_path); } -/* Duplicate a path, with backslashes translated into forward slashes; return - * empty string for NULL input; also strip leading and trailing slashes. */ +/* + * canonicalize_wim_path() - Given a user-provided path to a file within a WIM + * image, translate it into a "canonical" path. + * + * To do this, translate all supported path separators (is_any_path_separator()) + * into the WIM_PATH_SEPARATOR, and strip any leading and trailing slashes. The + * returned string is allocated. Note that there still may be consecutive path + * separators within the string. Furthermore, the string may be empty, which + * indicates the root dentry of the WIM image. + */ tchar * canonicalize_wim_path(const tchar *wim_path) { - tchar *p; tchar *canonical_path; + tchar *p; if (wim_path == NULL) { wim_path = T(""); } else { - while (*wim_path == T('/') || *wim_path == T('\\')) + /* Strip leading path separators. */ + while (is_any_path_separator(*wim_path)) wim_path++; } + canonical_path = TSTRDUP(wim_path); - if (canonical_path) { - zap_backslashes(canonical_path); - for (p = tstrchr(canonical_path, T('\0')) - 1; - p >= canonical_path && *p == T('/'); - p--) - { - *p = T('\0'); - } - } + if (canonical_path == NULL) + return NULL; + + /* Translate all path separators to WIM_PATH_SEPARATOR. */ + for (p = canonical_path; *p; p++) + if (is_any_path_separator(*p)) + *p = WIM_PATH_SEPARATOR; + + /* Strip trailing path separators. */ + while (p > canonical_path && *--p == WIM_PATH_SEPARATOR) + *p = T('\0'); + return canonical_path; }