-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpath.c
74 lines (60 loc) · 1.13 KB
/
path.c
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
#include "path.h"
#include <assert.h>
#include <limits.h>
#include <string.h>
static void path_push(struct path *p, char *dir)
{
char *c, *guard;
int terminal_slash = p->up[1] == '\0';
guard = p->path + PATH_MAX - 1;
for (c = p->up; c < guard && *c; ++c)
; /* go to end */
if (!terminal_slash && c < guard)
{
p->up = c;
*c++ = '/';
}
while (c < guard && *dir)
if ((*c++ = *dir++) == '/')
p->up = c;
*c = '\0';
assert(*p->up == '/');
}
static void path_pop(struct path *p)
{
*p->up = '\0';
while (p->up > p->path && *p->up != '/')
p->up--;
p->up[0] = '/';
p->up[1] = '\0';
assert(*p->up == '/');
}
void path_init(struct path *p)
{
strcpy(p->path, "/");
p->up = p->path;
assert(*p->up == '/');
}
void path_cpy(struct path *dst, struct path *src)
{
strcpy(dst->path, src->path);
dst->up = dst->path + (src->up - src->path);
assert(*dst->up == '/');
}
void path_relative(struct path *p, char *go)
{
char *q;
if (*go == '/')
{
path_init(p);
go++;
}
for (q = strtok(go, "/"); q; q = strtok(NULL, "/"))
{
if (strcmp(q, "..") == 0)
path_pop(p);
else
path_push(p, q);
}
assert(*p->up == '/');
}