-
Notifications
You must be signed in to change notification settings - Fork 5
/
filename.c
132 lines (104 loc) · 3.27 KB
/
filename.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
/* filename.c: Function manipulate file names
Was: find-suffix, extend-fname, make-suffix, remove-suffx
substring, concat3 */
/* remove-suffx.c: remove any suffix.
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program 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 for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* Def: HAVE_CONFIG_H */
#include "filename.h"
#include "xstd.h"
#include <string.h>
/* Return a fresh copy of SOURCE[START..LIMIT], or NULL if LIMIT<START.
If LIMIT>strlen(START), it is reassigned. */
static gchar* substring (gchar* source, const unsigned start, const unsigned limit);
/* Return a fresh copy of S1 followed by S2, et al. */
static gchar* concat3 (gchar*, gchar*, gchar*);
gchar*
find_suffix (gchar* name)
{
gchar* dot_pos = strrchr (name, '.');
#ifdef WIN32
gchar* slash_pos = strrchr (name, '\\');
#else
gchar* slash_pos = strrchr (name, '/');
#endif
/* If the name is `foo' or `/foo.bar/baz', we have no extension. */
return
dot_pos == NULL || dot_pos < slash_pos
? NULL
: dot_pos + 1;
}
gchar*
extend_filename (gchar* name, gchar* default_suffix)
{
gchar* new_s;
gchar* suffix = find_suffix (name);
new_s = suffix == NULL
? concat3 (name, ".", default_suffix) : name;
return new_s;
}
gchar*
make_suffix (gchar* s, gchar* new_suffix)
{
gchar* new_s;
gchar* old_suffix = find_suffix (s);
if (old_suffix == NULL)
new_s = concat3 (s, ".", new_suffix);
else
{
size_t length_through_dot = old_suffix - s;
XMALLOC (new_s, length_through_dot + strlen (new_suffix) + 1);
strncpy (new_s, s, length_through_dot);
strcpy (new_s + length_through_dot, new_suffix);
}
return new_s;
}
gchar*
remove_suffix (gchar* s)
{
gchar* suffix = find_suffix (s);
return suffix == NULL ? s : suffix - 2 - s < 0 ? NULL : substring (s, 0, (unsigned)(suffix - 2 - s));
}
/* From substring.c */
static gchar*
substring (gchar* source, const unsigned start, const unsigned limit)
{
gchar* result;
unsigned this_char;
size_t length = strlen (source);
size_t lim = limit;
/* Upper bound out of range? */
if (lim >= length)
lim = length - 1;
/* Null substring? */
if (start > lim)
return "";
/* The `2' here is one for the null and one for limit - start inclusive. */
XMALLOC (result, lim - start + 2);
for (this_char = start; this_char <= lim; this_char++)
result[this_char - start] = source[this_char];
result[this_char - start] = 0;
return result;
}
static gchar*
concat3 (gchar* s1, gchar* s2, gchar* s3)
{
gchar* answer;
XMALLOC (answer, strlen (s1) + strlen (s2) + strlen (s3) + 1);
strcpy (answer, s1);
strcat (answer, s2);
strcat (answer, s3);
return answer;
}