mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-08 11:08:53 +00:00
322ceb7ab4
The old test needs to be changed because $XDG_DATA_HOME can be relative. Fixes #7574
110 lines
3.8 KiB
C++
110 lines
3.8 KiB
C++
// Implementation of the realpath builtin.
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
#include "builtin_realpath.h"
|
|
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
#include "builtin.h"
|
|
#include "common.h"
|
|
#include "fallback.h" // IWYU pragma: keep
|
|
#include "io.h"
|
|
#include "wcstringutil.h"
|
|
#include "wgetopt.h"
|
|
#include "wutil.h" // IWYU pragma: keep
|
|
|
|
struct realpath_cmd_opts_t {
|
|
bool print_help = false;
|
|
bool no_symlinks = false;
|
|
};
|
|
|
|
static const wchar_t *const short_options = L"+:hs";
|
|
static const struct woption long_options[] = {{L"no-symlinks", no_argument, nullptr, 's'},
|
|
{L"help", no_argument, nullptr, 'h'},
|
|
{nullptr, 0, nullptr, 0}};
|
|
|
|
static int parse_cmd_opts(realpath_cmd_opts_t &opts, int *optind, //!OCLINT(high ncss method)
|
|
int argc, wchar_t **argv, parser_t &parser, io_streams_t &streams) {
|
|
const wchar_t *cmd = argv[0];
|
|
int opt;
|
|
wgetopter_t w;
|
|
while ((opt = w.wgetopt_long(argc, argv, short_options, long_options, nullptr)) != -1) {
|
|
switch (opt) {
|
|
case 's': {
|
|
opts.no_symlinks = true;
|
|
break;
|
|
}
|
|
case 'h': {
|
|
opts.print_help = true;
|
|
break;
|
|
}
|
|
case ':': {
|
|
builtin_missing_argument(parser, streams, cmd, argv[w.woptind - 1]);
|
|
return STATUS_INVALID_ARGS;
|
|
}
|
|
case '?': {
|
|
builtin_unknown_option(parser, streams, cmd, argv[w.woptind - 1]);
|
|
return STATUS_INVALID_ARGS;
|
|
}
|
|
default: {
|
|
DIE("unexpected retval from wgetopt_long");
|
|
}
|
|
}
|
|
}
|
|
|
|
*optind = w.woptind;
|
|
return STATUS_CMD_OK;
|
|
}
|
|
/// An implementation of the external realpath command. Doesn't support any options.
|
|
/// In general scripts shouldn't invoke this directly. They should just use `realpath` which
|
|
/// will fallback to this builtin if an external command cannot be found.
|
|
maybe_t<int> builtin_realpath(parser_t &parser, io_streams_t &streams, wchar_t **argv) {
|
|
const wchar_t *cmd = argv[0];
|
|
realpath_cmd_opts_t opts;
|
|
int argc = builtin_count_args(argv);
|
|
int optind;
|
|
|
|
int retval = parse_cmd_opts(opts, &optind, argc, argv, parser, streams);
|
|
if (retval != STATUS_CMD_OK) return retval;
|
|
|
|
if (opts.print_help) {
|
|
builtin_print_help(parser, streams, cmd);
|
|
return STATUS_CMD_OK;
|
|
}
|
|
|
|
if (optind + 1 != argc) { // TODO: allow arbitrary args. `realpath *` should print many paths
|
|
streams.err.append_format(BUILTIN_ERR_ARG_COUNT1, cmd, 1, argc - optind);
|
|
builtin_print_help(parser, streams, cmd);
|
|
return STATUS_INVALID_ARGS;
|
|
}
|
|
|
|
const wchar_t *arg = argv[optind];
|
|
|
|
if (!opts.no_symlinks) {
|
|
if (auto real_path = wrealpath(arg)) {
|
|
streams.out.append(*real_path);
|
|
} else {
|
|
if (errno) {
|
|
// realpath() just couldn't do it. Report the error and make it clear
|
|
// this is an error from our builtin, not the system's realpath.
|
|
streams.err.append_format(L"builtin %ls: %ls: %s\n", cmd, arg,
|
|
std::strerror(errno));
|
|
} else {
|
|
// Who knows. Probably a bug in our wrealpath() implementation.
|
|
streams.err.append_format(_(L"builtin %ls: Invalid arg: %ls\n"), cmd, arg);
|
|
}
|
|
|
|
return STATUS_CMD_ERROR;
|
|
}
|
|
} else {
|
|
wcstring absolute_arg = string_prefixes_string(L"/", arg) ? arg : wgetcwd() + L"/" + arg;
|
|
streams.out.append(normalize_path(absolute_arg, /* allow leading double slashes */ false));
|
|
}
|
|
|
|
streams.out.append(L"\n");
|
|
|
|
return STATUS_CMD_OK;
|
|
}
|