-
Notifications
You must be signed in to change notification settings - Fork 0
/
c_relpath.c
502 lines (435 loc) · 12.4 KB
/
c_relpath.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
////////////////////////////////////////////////////////////////////////////////
/*
GetRelativeFilename(), by Rob Fisher.
http://come.to/robfisher
Modified by Tran Quoc Viet, [email protected]
*/
////////////////////////////////////////////////////////////////////////////////
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include "i_utils.h"
#define MAX_FILENAME_LEN MAXLEN_FILENAME
#define MAX_PATHNAME_LEN MAXLEN_PATHNAME
/*
The number of characters at the start of an absolute filename.
e.g. in DOS, absolute filenames start with
"X:\"
so this value should be
3
In UNIX they start with
"\"
so this value should be 1.
#define ABSOLUTE_NAME_START 3
*/
#define ABSOLUTE_NAME_START 1
/*
set this to '\\' for DOS or '/' for UNIX
#define SLASH '\\'
*/
#define OS_SLASH SLASH
///////////////////////////////////////////////////////////////////////////////
/*
Given the absolute current directory and an absolute file name,
returns a relative file name. For example, if the current directory is
C:\foo\bar
and the filename
C:\foo\whee\text.txt
is given, GetRelativeFilename will return
..\whee\text.txt
Should check with care!
For the symlink
~/tool ---> ~/Dropbox/viet/tool
FAILED TEST CASEs: (I fixed!)
1. Assume we are
pwd = ~/tool/mylib/src-of-lib/posix90/src/zzz
--> ~/Dropbox/viet/tool/mylib/src-of-lib/posix90/src/zzz
Input:
~/tool
Result:
../../../../../tool
WRONG!
2. Move to
~/tmp/trash
where
~/tmp/trash -> /home/tqviet/tool/mylib/test-at-here/trash
Input:
~/tool
Result:
../../../tool
WRONG!
GOOD TEST CASEs:
1. However, when we move to another symlink, say
~/tmp/tt2
where
~/tmp/tt2 --> ~/apps/tt2
Input:
~/tool
Result:
../../Dropbox/viet/tool
It's correct!
3. Particularly, move to symplink
~/tmp/Public
where
~/tmp/Public --> ~/Dropbox/Public
Input:
~/tool
Result:
../viet/tool
It's correct!
IF THE pwd IS NOT A symlink NOR INCLUDED IN A symlink, IT WORKS!
*/
// this version has a minor bug! I fixed with the new one as its next.
char* GetRelativeFilenameBAK01 ( char *currentDirectory, char *absoluteFilename )
{
/*
declarations - put here so this should work in a C compiler
NOTE:
In Debian/Linux, for variables to save size/length, the 'int' (4 bytes)
is replaced by 'size_t' kind (8 bytes), which is to ensure those values
are big enough.
*/
static char relativeFilename [ MAX_FILENAME_LEN + 1 ] ;
int levels = 0 ;
size_t afMarker = 0 ;
size_t rfMarker = 0 ;
size_t i = 0 ;
size_t cdLen = strlen(currentDirectory) ;
size_t afLen = strlen(absoluteFilename) ;
/* make sure the names are not too long or too short
*/
if ( cdLen > MAX_FILENAME_LEN ||
cdLen < ABSOLUTE_NAME_START+1 ||
afLen > MAX_FILENAME_LEN ||
afLen < ABSOLUTE_NAME_START+1 )
{
return NULL;
}
/* Handle DOS names that are on different drives:
*/
if ( currentDirectory[0] != absoluteFilename[0] )
{
/* not on the same drive, so only absolute filename will do
*/
strcpy ( relativeFilename, absoluteFilename );
return relativeFilename;
}
/* they are on the same drive, find out how much of the current directory
is in the absolute filename
*/
i = ABSOLUTE_NAME_START ;
while ( i < afLen &&
i < cdLen &&
currentDirectory[i] == absoluteFilename[i] )
{
i++;
}
if ( i == cdLen &&
( absoluteFilename[i] == OS_SLASH ||
absoluteFilename[i-1] == OS_SLASH
) )
{
/*
the whole current directory name is in the file name,
so we just trim off the current directory name to get the
current file name.
*/
if ( absoluteFilename[i] == OS_SLASH )
{
/* a directory name might have a trailing slash but a relative
file name should not have a leading one...
*/
i++;
}
strcpy ( relativeFilename, &absoluteFilename[i] );
return relativeFilename ;
}
/*
The file is not in a child directory of the current directory, so we
need to step back the appropriate number of parent directories by
using "..\"s. First find out how many levels deeper we are than the
common directory
*/
afMarker = i;
levels = 1;
/*
count the number of directory levels we have to go up to get to the
common directory
*/
while ( i < cdLen )
{
i++;
if ( currentDirectory[i] == OS_SLASH )
{
/* make sure it's not a trailing slash
*/
i++;
if ( currentDirectory[i] != '\0' )
{
levels++;
}
}
}
/* move the absolute filename marker back to the start of the directory name
that it has stopped in.
*/
while ( afMarker > 0 && absoluteFilename[afMarker-1] != OS_SLASH )
{
afMarker--;
}
/* check that the result will not be too long
*/
if(levels * 3 + afLen - afMarker > MAX_FILENAME_LEN)
{
return NULL;
}
/* add the appropriate number of "..\"s.
*/
rfMarker = 0 ;
for ( i = 0; i < levels; i++ )
{
relativeFilename[rfMarker++] = '.';
relativeFilename[rfMarker++] = '.';
relativeFilename[rfMarker++] = OS_SLASH;
}
/* copy the rest of the filename into the result string
*/
strcpy ( &relativeFilename[rfMarker], &absoluteFilename[afMarker] );
return relativeFilename ;
}
///////////////////////////////////////////////////////////////////////////////
char* GetRelativeFilename ( char *currentDirectory, char *absoluteFilename )
{
/*
declarations - put here so this should work in a C compiler
NOTE:
In Debian/Linux, for variables to save size/length, the 'int' (4 bytes)
is replaced by 'size_t' kind (8 bytes), which is to ensure those values
are big enough.
*/
static char relativeFilename [ MAX_FILENAME_LEN + 1 ] ;
int levels = 0 ;
size_t afMarker = 0 ;
size_t rfMarker = 0 ;
size_t i = 0 ;
size_t cdLen = strlen ( currentDirectory ) ;
size_t afLen = strlen ( absoluteFilename ) ;
/* make sure the names are not too long or too short
*/
if ( cdLen > MAX_FILENAME_LEN ||
cdLen < ABSOLUTE_NAME_START+1 ||
afLen > MAX_FILENAME_LEN ||
afLen < ABSOLUTE_NAME_START+1 )
{
return NULL;
}
/* Handle DOS names that are on different drives:
*/
if ( currentDirectory[0] != absoluteFilename[0] )
{
/* not on the same drive, so only absolute filename will do
*/
strcpy ( relativeFilename, absoluteFilename );
return relativeFilename;
}
// For the case:
// cd = /home/tqviet/Dropbox/viet/tool/mylib/src-of-lib/posix90/src/zzz
// ab = /home/tqviet/Dropbox/viet/tool/mylib
/* they are on the same drive, find out how much of the current directory
is in the absolute filename
*/
i = ABSOLUTE_NAME_START ;
while ( i < afLen &&
i < cdLen &&
currentDirectory[i] == absoluteFilename[i] )
{
i++;
}
// ==> i = afLen
if ( i == cdLen &&
( absoluteFilename[i] == OS_SLASH ||
absoluteFilename[i-1] == OS_SLASH
) )
{
/*
the whole current directory name is in the file name,
so we just trim off the current directory name to get the
current file name.
*/
if ( absoluteFilename[i] == OS_SLASH )
{
/* a directory name might have a trailing slash but a relative
file name should not have a leading one...
*/
i++;
}
strcpy ( relativeFilename, &absoluteFilename[i] );
return relativeFilename ;
}
/*
The file is not in a child directory of the current directory, so we
need to step back the appropriate number of parent directories by
using "..\"s. First find out how many levels deeper we are than the
common directory
*/
afMarker = i;
levels = 1;
// cd = /home/tqviet/Dropbox/viet/tool/mylib/src-of-lib/posix90/src/zzz
// ab = /home/tqviet/Dropbox/viet/tool/mylib
// ==> i = afLen = afMarker
// Fix the bug:
if ( afMarker == afLen ) levels++ ;
/*
count the number of directory levels we have to go up to get to the
common directory
*/
while ( i < cdLen )
{
i++;
if ( currentDirectory[i] == OS_SLASH )
{
/* make sure it's not a trailing slash
*/
i++;
if ( currentDirectory[i] != '\0' )
{
levels++;
}
}
}
/* move the absolute filename marker back to the start of the directory name
that it has stopped in.
*/
while ( afMarker > 0 && absoluteFilename[afMarker-1] != OS_SLASH )
{
afMarker--;
}
/* check that the result will not be too long
*/
if ( levels * 3 + afLen - afMarker > MAX_FILENAME_LEN )
{
return NULL;
}
/* add the appropriate number of "..\"s.
*/
rfMarker = 0 ;
for ( i = 0; i < levels; i++ )
{
relativeFilename[rfMarker++] = '.';
relativeFilename[rfMarker++] = '.';
relativeFilename[rfMarker++] = OS_SLASH;
}
/* copy the rest of the filename into the result string
*/
strcpy ( &relativeFilename[rfMarker], &absoluteFilename[afMarker] );
return relativeFilename ;
}
////////////////////////////////////////////////////////////////////////////////
/*
the buffer rpath should have len_rpath to be large enough, e.g.
len_path = PATH_MAX
Usage:
c_relpath_ ( '~/x1/x2/x3/txt', rpath, len_rpath, lentrim_rpath )
*/
void c_relpath_ (
const char *path, char *rpath, size_t *len_rpath, size_t *lentrim_rpath )
{
//
// if path = '/', we should exit with warnings, since we can not get
// the parent of '/', thus, cannot use '..'.
// Let's do this before this scope.
//
size_t lmax_rpath = *len_rpath ;
size_t lcut_rpath = 0 ;
/*
Obtaining the current directory
*/
char thepwd [ MAX_PATHNAME_LEN + 1 ] ;
errno = 0 ;
char *pt1 = getcwd ( thepwd, MAX_PATHNAME_LEN ) ;
if ( pt1 == NULL )
{
printf (
"ERROR: something was wrong as *pt1 = getcwd (...) in \n"
"\t c_relpath.c --> void c_relpath_, errno = %d\n", errno ) ;
lcut_rpath = 0 ;
return ;
}
/* Obtaining the absolute path of path
*/
char abspath [ MAX_PATHNAME_LEN + 1 ] ;
errno = 0 ;
char *pt2 = realpath ( path, &abspath[0] ) ;
if ( pt2 == NULL )
{
printf (
"ERROR: something was wrong as *pt2 = realpath (...) in \n"
"\t c_relpath.c --> void c_relpath_, errno = %d \n", errno ) ;
lcut_rpath = 0 ;
return ;
}
else
{
errno = 0 ;
char *pt3 = GetRelativeFilename ( &thepwd[0], &abspath[0] ) ;
if ( pt3 == NULL )
{
printf (
"ERROR: something was wrong as *pt3=GetRelativeFilename(...) in \n"
"\t c_relpath.c --> void c_relpath_, errno = %d \n", errno ) ;
lcut_rpath = 0 ;
return ;
}
else
{
lcut_rpath = strlen ( pt3 ) ;
if ( lcut_rpath > lmax_rpath )
{
lcut_rpath = lmax_rpath ;
errno = ERANGE ;
printf (
"WARNINGR: c_relpath.c --> void c_relpath_ \n"
"\t Increase length of rpath! errno = %d \n", errno ) ;
}
strncpy ( rpath, pt3, lcut_rpath ) ;
}
}
*lentrim_rpath = lcut_rpath ;
}
////////////////////////////////////////////////////////////////////////////////
//
// to work with allocatable array of character. Later on, we use this for
// str as type(string).
//
char * c_relpath_TmpBuff ;
// To obtain the length of string, i.e. len_val (not counting NULL)
void c_relpath_prep_ ( const char *path, size_t *len_val )
{
size_t lmb = MAXLEN_PATHNAME ;
size_t ltb = -1 ;
char buff [ MAXLEN_PATHNAME ] = "" ;
c_relpath_ ( path, &buff[0], &lmb, <b ) ;
if ( ltb < 1 )
{
*len_val = 0 ;
}
else
{
*len_val = ltb ;
c_relpath_TmpBuff = (char *) malloc ( sizeof(char) * (*len_val + 1) );
strncpy ( c_relpath_TmpBuff, &buff[0], *len_val + 1 ) ;
}
}
// then, copy the result in the buff c_relpath_TmpBuff to *val
void c_relpath_post_ ( size_t *len_val, char *val )
{
if ( *len_val > 0 )
{
strncpy ( val, c_relpath_TmpBuff, *len_val ) ;
free ( c_relpath_TmpBuff );
}
}
////////////////////////////////////////////////////////////////////////////////