1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
* Test utility for libHX's realpath
* Copyright Jan Engelhardt
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the WTF Public License version 2 or
* (at your option) any later version.
*/
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <libHX/io.h>
#include <libHX/option.h>
#include <libHX/string.h>
static unsigned int rp_flags;
static unsigned int rp_absolute;
static unsigned int rp_no_parent, rp_no_self;
static const struct HXoption rp_option_table[] = {
{.sh = 'a', .type = HXTYPE_NONE, .ptr = &rp_absolute,
.help = "Produce an absolute path"},
{.sh = 'p', .type = HXTYPE_NONE, .ptr = &rp_no_parent,
.help = "Deactivate resolution of \"..\" entries"},
{.sh = 's', .type = HXTYPE_NONE, .ptr = &rp_no_self,
.help = "Deactivate resolution of \".\" entries"},
HXOPT_AUTOHELP,
HXOPT_TABLEEND,
};
static bool rp_get_options(int *argc, const char ***argv)
{
if (HX_getopt(rp_option_table, argc, argv, HXOPT_USAGEONERR) !=
HXOPT_ERR_SUCCESS)
return false;
rp_flags = HX_REALPATH_DEFAULT;
if (rp_absolute)
rp_flags |= HX_REALPATH_ABSOLUTE;
if (rp_no_parent)
rp_flags &= ~HX_REALPATH_PARENT;
if (rp_no_self)
rp_flags &= ~HX_REALPATH_SELF;
return true;
}
static void t_1(void)
{
hxmc_t *tmp = HXmc_strinit("");
/* two components, so that HX_readlink gets called twice */
HX_realpath(&tmp, "/dev/tty", HX_REALPATH_DEFAULT);
HXmc_free(tmp);
}
int main(int argc, const char **argv)
{
hxmc_t *res;
int ret;
if (!rp_get_options(&argc, &argv))
return EXIT_FAILURE;
t_1();
res = NULL;
while (--argc > 0) {
ret = HX_realpath(&res, *++argv, rp_flags);
if (ret < 0) {
perror("HX_realpath");
printf("\n");
} else {
printf("%s\n", res);
}
}
return EXIT_SUCCESS;
}
|