- Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy pathFileSystemSupport_md.c
172 lines (155 loc) · 5.13 KB
/
FileSystemSupport_md.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include"FileSystemSupport_md.h"
/*
* Solaris/Linux implementation of the file system support functions.
*/
#defineslash '/'
char*basePath(constchar*path) {
char*last=strrchr(path, slash);
if (last==NULL) {
return (char*)path;
} else {
intlen=last-path;
char*str= (char*)malloc(len+1);
if (str==NULL) {
fprintf(stderr, "OOM error in native tmp buffer allocation");
returnNULL;
}
if (len>0) {
memcpy(str, path, len);
}
str[len] ='\0';
returnstr;
}
}
intisAbsolute(constchar*path) {
return (path[0] ==slash) ? 1 : 0;
}
/* Ported from src/solaris/classes/java/io/UnixFileSystem.java */
/* A normal Unix pathname contains no duplicate slashes and does not end
with a slash. It may be the empty string. */
/* Normalize the given pathname, whose length is len, starting at the given
offset; everything before this offset is already normal. */
staticchar*normalizePath(constchar*pathname, intlen, intoff) {
char*sb;
intsbLen, i, n;
charprevChar;
if (len==0) return (char*)pathname;
n=len;
while ((n>0) && (pathname[n-1] ==slash)) n--;
if (n==0) returnstrdup("/");
sb= (char*)malloc(strlen(pathname)+1);
if (sb==NULL) {
fprintf(stderr, "OOM error in native tmp buffer allocation");
returnNULL;
}
sbLen=0;
if (off>0) {
memcpy(sb, pathname, off);
sbLen=off;
}
prevChar=0;
for (i=off; i<n; i++) {
charc=pathname[i];
if ((prevChar==slash) && (c==slash)) continue;
sb[sbLen++] =c;
prevChar=c;
}
returnsb;
}
/* Check that the given pathname is normal. If not, invoke the real
normalizer on the part of the pathname that requires normalization.
This way we iterate through the whole pathname string only once. */
char*normalize_path(constchar*pathname) {
inti;
intn=strlen(pathname);
charprevChar=0;
for (i=0; i<n; i++) {
charc=pathname[i];
if ((prevChar==slash) && (c==slash))
returnnormalizePath(pathname, n, i-1);
prevChar=c;
}
if (prevChar==slash) returnnormalizePath(pathname, n, n-1);
return (char*)pathname;
}
char*resolve(constchar*parent, constchar*child) {
intlen;
char*theChars;
intpn=strlen(parent);
intcn=strlen(child);
intchildStart=0;
intparentEnd=pn;
if (pn>0&&parent[pn-1] ==slash) {
parentEnd--;
}
len=parentEnd+cn-childStart;
if (child[0] ==slash) {
theChars= (char*)malloc(len+1);
if (theChars==NULL) {
fprintf(stderr, "OOM error in native tmp buffer allocation");
returnNULL;
}
if (parentEnd>0)
memcpy(theChars, parent, parentEnd);
if (cn>0)
memcpy(theChars+parentEnd, child, cn);
theChars[len] ='\0';
} else {
theChars= (char*)malloc(len+2);
if (theChars==NULL) {
fprintf(stderr, "OOM error in native tmp buffer allocation");
returnNULL;
}
if (parentEnd>0)
memcpy(theChars, parent, parentEnd);
theChars[parentEnd] =slash;
if (cn>0)
memcpy(theChars+parentEnd+1, child, cn);
theChars[len+1] ='\0';
}
returntheChars;
}
char*fromURIPath(constchar*path) {
intlen=strlen(path);
if (len>1&&path[len-1] ==slash) {
// "/foo/" --> "/foo", but "/" --> "/"
char*str= (char*)malloc(len);
if (str==NULL)
{
fprintf(stderr, "OOM error in native tmp buffer allocation");
returnNULL;
}
memcpy(str, path, len-1);
str[len-1] ='\0';
returnstr;
} else {
return (char*)path;
}
}