-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscc_util.c
191 lines (162 loc) · 4.94 KB
/
scc_util.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
/* ScummC
* Copyright (C) 2004-2006 Alban Bedel
*
* 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
* of the License, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/**
* @file scc_util.c
* @ingroup utils
* @brief Common stuff and portabilty helpers
*/
// This file should contain generic stuff that can be helpfull anywhere.
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include <errno.h>
#include <stdarg.h>
#ifdef IS_MINGW
#include <windows.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "scc_fd.h"
#include "scc_util.h"
int scc_log_level = 2;
void scc_log(int lvl,char* fmt, ...) {
va_list ap;
if(lvl > scc_log_level) return;
va_start(ap, fmt);
vfprintf(stderr,fmt,ap);
va_end(ap);
}
// work around incomplete libc's
#ifndef HAVE_ASPRINTF
int vasprintf(char **strp, const char *fmt, va_list ap) {
/* Guess we need no more than 100 bytes. */
int n, size = 100;
char *p;
if ((p = malloc (size)) == NULL)
return -1;
while (1) {
/* Try to print in the allocated space. */
n = vsnprintf (p, size, fmt, ap);
/* If that worked, return the string. */
if (n > -1 && n < size) {
strp[0] = p;
return n;
}
/* Else try again with more space. */
if (n > -1) /* glibc 2.1 */
size = n+1; /* precisely what is needed */
else /* glibc 2.0 */
size *= 2; /* twice the old size */
if ((p = realloc (p, size)) == NULL)
return -1;
}
}
int asprintf(char **strp, const char *fmt, ...) {
va_list ap;
int n;
va_start(ap, fmt);
n = vasprintf(strp,fmt,ap);
va_end(ap);
return n;
}
#endif
// this should probably go into some common util stuff
// or in scc_fd dunno
scc_data_t* scc_data_load(char* path) {
scc_data_t* data;
scc_fd_t* fd;
int len;
fd = new_scc_fd(path,O_RDONLY,0);
if(!fd) {
scc_log(LOG_ERR,"Failed to open %s.\n",path);
return NULL;
}
// get file size
scc_fd_seek(fd,0,SEEK_END);
len = scc_fd_pos(fd);
scc_fd_seek(fd,0,SEEK_SET);
data = malloc(sizeof(scc_data_t) + len);
data->size = len;
if(scc_fd_read(fd,data->data,len) != len) {
scc_log(LOG_ERR,"Failed to load %s\n",path);
free(data);
scc_fd_close(fd);
return NULL;
}
scc_fd_close(fd);
return data;
}
//
// Windows glob implementation from MPlayer.
//
#ifdef IS_MINGW
int glob(const char *pattern, int flags,
int (*errfunc)(const char *epath, int eerrno), glob_t *pglob)
{
HANDLE searchhndl;
WIN32_FIND_DATA found_file;
if(errfunc)
scc_log(LOG_ERR,"glob():ERROR: Sorry, errfunc not supported "
"by this implementation\n");
if(flags)
scc_log(LOG_ERR,"glob():ERROR:Sorry, no flags supported "
"by this implementation\n");
//scc_log(LOG_DBG,"PATTERN \"%s\"\n",pattern);
pglob->gl_pathc = 0;
searchhndl = FindFirstFile( pattern,&found_file);
if(searchhndl == INVALID_HANDLE_VALUE) {
if(GetLastError() == ERROR_FILE_NOT_FOUND) {
pglob->gl_pathc = 0;
//scc_log(LOG_DBG,"could not find a file matching your search criteria\n");
return 1;
} else {
//scc_log(LOG_DBG,"glob():ERROR:FindFirstFile: %i\n",GetLastError());
return 1;
}
}
pglob->gl_pathv = malloc(sizeof(char*));
pglob->gl_pathv[0] = strdup(found_file.cFileName);
pglob->gl_pathc++;
while(1) {
if(!FindNextFile(searchhndl,&found_file)) {
if(GetLastError()==ERROR_NO_MORE_FILES) {
//scc_log(LOG_DBG,"glob(): no more files found\n");
break;
} else {
//scc_log(LOG_DBG,"glob():ERROR:FindNextFile:%i\n",GetLastError());
return 1;
}
} else {
//scc_log(LOG_DBG,"glob: found file %s\n",found_file.cFileName);
pglob->gl_pathc++;
pglob->gl_pathv = realloc(pglob->gl_pathv,pglob->gl_pathc * sizeof(char*));
pglob->gl_pathv[pglob->gl_pathc-1] = strdup(found_file.cFileName);
}
}
FindClose(searchhndl);
return 0;
}
void globfree(glob_t *pglob) {
int i;
for(i=0; i <pglob->gl_pathc ;i++)
free(pglob->gl_pathv[i]);
free(pglob->gl_pathv);
}
#endif // IS_MINGW