-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcutils.c
203 lines (183 loc) · 4.89 KB
/
cutils.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
/*
* Various simple C utilities
*
* Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
* Copyright (c) 2002-2008 Charlie Gordon.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <string.h>
#include "config.h" /* for CONFIG_WIN32 */
#include "cutils.h"
/* these functions are duplicated from ffmpeg/libavformat/cutils.c
* conflict is resolved by redefining the symbols in cutils.h
*/
/**
* Return TRUE if val is a prefix of str. If it returns TRUE, ptr is
* set to the next character in 'str' after the prefix.
*
* @param str input string
* @param val prefix to test
* @param ptr updated after the prefix in str in there is a match
* @return TRUE if there is a match
*/
int strstart(const char *str, const char *val, const char **ptr)
{
const char *p, *q;
p = str;
q = val;
while (*q != '\0') {
if (*p != *q)
return 0;
p++;
q++;
}
if (ptr)
*ptr = p;
return 1;
}
/**
* Return TRUE if val is a suffix of str. If it returns TRUE, ptr is
* set to the first character of the suffix in 'str'.
*
* @param str input string
* @param val suffix to test
* @param ptr updated to the suffix in str in there is a match
* @return TRUE if there is a match
*/
int strend(const char *str, const char *val, const char **ptr)
{
int len1 = strlen(str);
int len2 = strlen(val);
if (len1 < len2 || memcmp(str + len1 - len2, val, len2)) {
return 0;
}
if (ptr)
*ptr = str + len1 - len2;
return 1;
}
/**
* Copy the string str to buf. If str length is bigger than buf_size -
* 1 then it is clamped to buf_size - 1.
* NOTE: this function does what strncpy should have done to be
* useful. NEVER use strncpy.
*
* @param buf destination buffer
* @param buf_size size of destination buffer
* @param str source string
*/
char *pstrcpy(char *buf, int buf_size, const char *str)
{
int c;
char *q = buf;
if (buf_size <= 0)
return buf;
for (;;) {
c = *str++;
if (c == '\0' || q >= buf + buf_size - 1)
break;
*q++ = c;
}
*q = '\0';
return buf;
}
/* strcat and truncate. */
char *pstrcat(char *buf, int buf_size, const char *s)
{
int len = strlen(buf);
if (len < buf_size)
pstrcpy(buf + len, buf_size - len, s);
return buf;
}
/* copy the n first char of a string and truncate it. */
char *pstrncpy(char *buf, int buf_size, const char *s, int len)
{
char *q;
int c;
if (buf_size > 0) {
q = buf;
if (len >= buf_size)
len = buf_size - 1;
while (len > 0) {
c = *s++;
if (c == '\0')
break;
*q++ = c;
len--;
}
*q = '\0';
}
return buf;
}
/* Get the filename portion of a path */
const char *get_basename(const char *filename)
{
const char *p;
const char *base;
base = filename;
if (base) {
for (p = base; *p; p++) {
#ifdef CONFIG_WIN32
/* Simplistic DOS/Windows filename support */
if (*p == '/' || *p == '\\' || (*p == ':' && p == filename + 1))
base = p + 1;
#else
if (*p == '/')
base = p + 1;
#endif
}
}
return base;
}
/* Return the last extension in a path, ignoring leading dots */
const char *get_extension(const char *filename)
{
const char *p, *ext;
p = get_basename(filename);
ext = NULL;
if (p) {
while (*p == '.')
p++;
for (; *p; p++) {
if (*p == '.')
ext = p;
}
if (!ext)
ext = p;
}
return ext;
}
/* Extract the directory portion of a path:
* This leaves out the trailing slash if any. The complete path is
* obtained by catenating dirname + '/' + basename.
* if the original path doesn't contain anything dirname is just "."
*/
char *get_dirname(char *dest, int size, const char *file)
{
char *p;
if (dest) {
p = dest;
if (file) {
pstrcpy(dest, size, file);
p = get_basename_nc(dest);
if (p > dest + 1 && p[-1] != ':' && p[-2] != ':')
p--;
if (p == dest)
*p++ = '.';
}
*p = '\0';
}
return dest;
}