X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/71b70599a2cd81c13cc4326499a5d0c45358cd7d..0d0253c93a64d2b5206e902c648e1e2c6bc5d510:/lib/filepart.c diff --git a/lib/filepart.c b/lib/filepart.c index c080b4d..7af7de0 100644 --- a/lib/filepart.c +++ b/lib/filepart.c @@ -25,30 +25,103 @@ #include "types.h" #include +#include +#include #include "filepart.h" #include "mem.h" +/** @brief Parse a filename + * @param path Filename to parse + * @param Where to put directory name, or NULL + * @param Where to put basename, or NULL + */ +static void parse_filename(const char *path, + char **dirnamep, + char **basenamep) { + const char *s, *e = path + strlen(path); + + /* Strip trailing slashes. We never take these into account. */ + while(e > path && e[-1] == '/') + --e; + if(e == path) { + /* The path is empty or contains only slashes */ + if(*path) { + if(dirnamep) + *dirnamep = xstrdup("/"); + if(basenamep) + *basenamep = xstrdup("/"); + } else { + if(dirnamep) + *dirnamep = xstrdup(""); + if(basenamep) + *basenamep = xstrdup(""); + } + } else { + /* The path isn't empty and has more than just slashes. e therefore now + * points at the end of the basename. */ + s = e; + while(s > path && s[-1] != '/') + --s; + /* Now s points at the start of the basename */ + if(basenamep) + *basenamep = xstrndup(s, e - s); + if(s > path) { + --s; + /* s must now be pointing at a '/' before the basename */ + assert(*s == '/'); + while(s > path && s[-1] == '/') + --s; + /* Now s must be pointing at the last '/' after the dirname */ + assert(*s == '/'); + if(s == path) { + /* If we reached the start we must be at the root */ + if(dirnamep) + *dirnamep = xstrdup("/"); + } else { + /* There's more than just the root here */ + if(dirnamep) + *dirnamep = xstrndup(path, s - path); + } + } else { + /* There wasn't a slash */ + if(dirnamep) + *dirnamep = xstrdup("."); + } + } +} + /** @brief Return the directory part of @p path * @param path Path to parse * @return Directory part of @p path * * Extracts the directory part of @p path. This is a simple lexical * transformation and no canonicalization is performed. The result will only - * ever end "/" if it is the root directory. + * ever end "/" if it is the root directory. The result will be "." if there + * is no directory part. */ char *d_dirname(const char *path) { - const char *s; + char *d = 0; - if((s = strrchr(path, '/'))) { - while(s > path && s[-1] == '/') - --s; - if(s == path) - return xstrdup("/"); - else - return xstrndup(path, s - path); - } else - return xstrdup("."); + parse_filename(path, &d, 0); + assert(d != 0); + return d; +} + +/** @brief Return the basename part of @p path + * @param Path to parse + * @return Base part of @p path + * + * Extracts the base part of @p path. This is a simple lexical transformation + * and no canonicalization is performed. The result is always newly allocated + * even if compares equal to @p path. + */ +char *d_basename(const char *path) { + char *b = 0; + + parse_filename(path, 0, &b); + assert(b != 0); + return b; } /** @brief Find the extension part of @p path