Skip to content

Latest commit

 

History

History
1350 lines (1118 loc) · 39.8 KB

windows.c

File metadata and controls

1350 lines (1118 loc) · 39.8 KB
 
Aug 23, 2001
Aug 23, 2001
1
/*
Mar 11, 2007
Mar 11, 2007
2
* Windows support routines for PhysicsFS.
Aug 23, 2001
Aug 23, 2001
3
*
Mar 11, 2007
Mar 11, 2007
4
* Please see the file LICENSE.txt in the source's root directory.
Aug 23, 2001
Aug 23, 2001
5
*
Apr 13, 2002
Apr 13, 2002
6
* This file written by Ryan C. Gordon, and made sane by Gregory S. Read.
Aug 23, 2001
Aug 23, 2001
7
8
*/
Mar 11, 2007
Mar 11, 2007
9
10
11
12
#define __PHYSICSFS_INTERNAL__
#include "physfs_platforms.h"
#ifdef PHYSFS_PLATFORM_WINDOWS
Jul 10, 2002
Jul 10, 2002
13
Mar 26, 2007
Mar 26, 2007
14
15
16
17
18
/* Forcibly disable UNICODE, since we manage this ourselves. */
#ifdef UNICODE
#undef UNICODE
#endif
Aug 23, 2001
Aug 23, 2001
19
20
#include <windows.h>
#include <stdio.h>
Aug 29, 2001
Aug 29, 2001
21
#include <stdlib.h>
Jun 29, 2002
Jun 29, 2002
22
23
#include <string.h>
#include <errno.h>
Aug 29, 2001
Aug 29, 2001
24
#include <ctype.h>
Jun 7, 2002
Jun 7, 2002
25
#include <time.h>
May 6, 2002
May 6, 2002
26
Aug 23, 2001
Aug 23, 2001
27
28
#include "physfs_internal.h"
Dec 8, 2003
Dec 8, 2003
29
30
31
32
#define LOWORDER_UINT64(pos) (PHYSFS_uint32) \
(pos & 0x00000000FFFFFFFF)
#define HIGHORDER_UINT64(pos) (PHYSFS_uint32) \
(((pos & 0xFFFFFFFF00000000) >> 32) & 0x00000000FFFFFFFF)
Apr 3, 2002
Apr 3, 2002
33
Mar 25, 2007
Mar 25, 2007
34
35
36
37
38
39
/*
* Users without the platform SDK don't have this defined. The original docs
* for SetFilePointer() just said to compare with 0xFFFFFFFF, so this should
* work as desired.
*/
#define PHYSFS_INVALID_SET_FILE_POINTER 0xFFFFFFFF
Mar 25, 2007
Mar 25, 2007
40
Mar 25, 2007
Mar 25, 2007
41
42
/* just in case... */
#define PHYSFS_INVALID_FILE_ATTRIBUTES 0xFFFFFFFF
Jun 29, 2002
Jun 29, 2002
43
Mar 25, 2007
Mar 25, 2007
44
45
46
47
48
#define UTF8_TO_UNICODE_STACK_MACRO(w_assignto, str) { \
if (str == NULL) \
w_assignto = NULL; \
else { \
const PHYSFS_uint64 len = (PHYSFS_uint64) ((strlen(str) * 4) + 1); \
Mar 26, 2007
Mar 26, 2007
49
50
51
w_assignto = (WCHAR *) __PHYSFS_smallAlloc(len); \
if (w_assignto != NULL) \
PHYSFS_utf8ToUcs2(str, (PHYSFS_uint16 *) w_assignto, len); \
Mar 25, 2007
Mar 25, 2007
52
53
} \
} \
Jun 29, 2002
Jun 29, 2002
54
Mar 26, 2007
Mar 26, 2007
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
static PHYSFS_uint64 wStrLen(const WCHAR *wstr)
{
PHYSFS_uint64 len = 0;
while (*(wstr++))
len++;
return(len);
} /* wStrLen */
static char *unicodeToUtf8Heap(const WCHAR *w_str)
{
char *retval = NULL;
if (w_str != NULL)
{
void *ptr = NULL;
const PHYSFS_uint64 len = (wStrLen(w_str) * 4) + 1;
retval = allocator.Malloc(len);
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
PHYSFS_utf8FromUcs2((const PHYSFS_uint16 *) w_str, retval, len);
ptr = allocator.Realloc(retval, strlen(retval) + 1); /* shrink. */
if (ptr != NULL)
retval = (char *) ptr;
} /* if */
return(retval);
} /* unicodeToUtf8Heap */
static char *codepageToUtf8Heap(const char *cpstr)
{
char *retval = NULL;
if (cpstr != NULL)
{
const int len = (int) (strlen(cpstr) + 1);
WCHAR *wbuf = (WCHAR *) __PHYSFS_smallAlloc(len * sizeof (WCHAR));
BAIL_IF_MACRO(wbuf == NULL, ERR_OUT_OF_MEMORY, NULL);
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, cpstr, len, wbuf, len);
retval = (char *) allocator.Malloc(len * 4);
if (retval == NULL)
__PHYSFS_setError(ERR_OUT_OF_MEMORY);
else
PHYSFS_utf8FromUcs2(wbuf, retval, len * 4);
__PHYSFS_smallFree(wbuf);
} /* if */
return(retval);
} /* codepageToUtf8Heap */
Jun 29, 2002
Jun 29, 2002
101
102
103
104
typedef struct
{
HANDLE handle;
int readonly;
Mar 26, 2007
Mar 26, 2007
105
} WinApiFile;
Aug 23, 2001
Aug 23, 2001
106
Mar 26, 2007
Mar 26, 2007
107
Mar 26, 2007
Mar 26, 2007
108
static char *userDir = NULL;
Mar 26, 2007
Mar 26, 2007
109
static int osHasUnicode = 0;
Mar 25, 2007
Mar 25, 2007
110
111
112
/* pointers for APIs that may not exist on some Windows versions... */
Jun 29, 2002
Jun 29, 2002
113
static HANDLE libKernel32 = NULL;
Mar 25, 2007
Mar 25, 2007
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
static HANDLE libUserEnv = NULL;
static HANDLE libAdvApi32 = NULL;
static DWORD (WINAPI *pGetModuleFileNameW)(HMODULE, LPWCH, DWORD);
static BOOL (WINAPI *pGetUserProfileDirectoryW)(HANDLE, LPWSTR, LPDWORD);
static BOOL (WINAPI *pGetUserNameW)(LPWSTR, LPDWORD);
static DWORD (WINAPI *pGetFileAttributesW)(LPCWSTR);
static HANDLE (WINAPI *pFindFirstFileW)(LPCWSTR, LPWIN32_FIND_DATAW);
static BOOL (WINAPI *pFindNextFileW)(HANDLE, LPWIN32_FIND_DATAW);
static DWORD (WINAPI *pGetCurrentDirectoryW)(DWORD, LPWSTR);
static BOOL (WINAPI *pDeleteFileW)(LPCWSTR);
static BOOL (WINAPI *pRemoveDirectoryW)(LPCWSTR);
static BOOL (WINAPI *pCreateDirectoryW)(LPCWSTR, LPSECURITY_ATTRIBUTES);
static BOOL (WINAPI *pGetFileAttributesExA)
(LPCSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
static BOOL (WINAPI *pGetFileAttributesExW)
(LPCWSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
static DWORD (WINAPI *pFormatMessageW)
(DWORD, LPCVOID, DWORD, DWORD, LPWSTR, DWORD, va_list *);
static HANDLE (WINAPI *pCreateFileW)
(LPCWSTR, DWORD, DWORD, LPSECURITY_ATTRIBUTES, DWORD, DWORD, HANDLE);
Mar 26, 2007
Mar 26, 2007
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
/*
* Fallbacks for missing Unicode functions on Win95/98/ME. These are filled
* into the function pointers if looking up the real Unicode entry points
* in the system DLLs fails, so they're never used on WinNT/XP/Vista/etc.
* They make an earnest effort to convert to/from UTF-8 and UCS-2 to
* the user's current codepage.
*/
static BOOL WINAPI fallbackGetUserNameW(LPWSTR buf, LPDWORD len)
{
const DWORD cplen = *len;
char *cpstr = __PHYSFS_smallAlloc(cplen);
BOOL retval = GetUserNameA(cpstr, len);
if (buf != NULL)
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, cpstr, cplen, buf, *len);
__PHYSFS_smallFree(cpstr);
return(retval);
} /* fallbackGetUserNameW */
static DWORD WINAPI fallbackFormatMessageW(DWORD dwFlags, LPCVOID lpSource,
DWORD dwMessageId, DWORD dwLangId,
LPWSTR lpBuf, DWORD nSize,
va_list *Arguments)
{
char *cpbuf = (char *) __PHYSFS_smallAlloc(nSize);
DWORD retval = FormatMessageA(dwFlags, lpSource, dwMessageId, dwLangId,
cpbuf, nSize, Arguments);
if (retval > 0)
MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,cpbuf,retval,lpBuf,nSize);
__PHYSFS_smallFree(cpbuf);
return(retval);
} /* fallbackFormatMessageW */
static DWORD WINAPI fallbackGetModuleFileNameW(HMODULE hMod, LPWCH lpBuf,
DWORD nSize)
{
char *cpbuf = (char *) __PHYSFS_smallAlloc(nSize);
DWORD retval = GetModuleFileNameA(hMod, cpbuf, nSize);
if (retval > 0)
MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,cpbuf,retval,lpBuf,nSize);
__PHYSFS_smallFree(cpbuf);
return(retval);
} /* fallbackGetModuleFileNameW */
static DWORD WINAPI fallbackGetFileAttributesW(LPCWSTR fname)
{
DWORD retval = 0;
const int buflen = (int) (wStrLen(fname) + 1);
char *cpstr = (char *) __PHYSFS_smallAlloc(buflen);
WideCharToMultiByte(CP_ACP, 0, fname, buflen, cpstr, buflen, NULL, NULL);
retval = GetFileAttributesA(cpstr);
__PHYSFS_smallFree(cpstr);
return(retval);
} /* fallbackGetFileAttributesW */
static DWORD WINAPI fallbackGetCurrentDirectoryW(DWORD buflen, LPWSTR buf)
{
DWORD retval = 0;
char *cpbuf = NULL;
if (buf != NULL)
cpbuf = (char *) __PHYSFS_smallAlloc(buflen);
retval = GetCurrentDirectoryA(buflen, cpbuf);
if (cpbuf != NULL)
{
MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,cpbuf,retval,buf,buflen);
__PHYSFS_smallFree(cpbuf);
} /* if */
return(retval);
} /* fallbackGetCurrentDirectoryW */
static BOOL WINAPI fallbackRemoveDirectoryW(LPCWSTR dname)
{
BOOL retval = 0;
const int buflen = (int) (wStrLen(dname) + 1);
char *cpstr = (char *) __PHYSFS_smallAlloc(buflen);
WideCharToMultiByte(CP_ACP, 0, dname, buflen, cpstr, buflen, NULL, NULL);
retval = RemoveDirectoryA(cpstr);
__PHYSFS_smallFree(cpstr);
return(retval);
} /* fallbackRemoveDirectoryW */
static BOOL WINAPI fallbackCreateDirectoryW(LPCWSTR dname,
LPSECURITY_ATTRIBUTES attr)
{
BOOL retval = 0;
const int buflen = (int) (wStrLen(dname) + 1);
char *cpstr = (char *) __PHYSFS_smallAlloc(buflen);
WideCharToMultiByte(CP_ACP, 0, dname, buflen, cpstr, buflen, NULL, NULL);
retval = CreateDirectoryA(cpstr, attr);
__PHYSFS_smallFree(cpstr);
return(retval);
} /* fallbackCreateDirectoryW */
static BOOL WINAPI fallbackDeleteFileW(LPCWSTR fname)
{
BOOL retval = 0;
const int buflen = (int) (wStrLen(fname) + 1);
char *cpstr = (char *) __PHYSFS_smallAlloc(buflen);
WideCharToMultiByte(CP_ACP, 0, fname, buflen, cpstr, buflen, NULL, NULL);
retval = DeleteFileA(cpstr);
__PHYSFS_smallFree(cpstr);
return(retval);
} /* fallbackDeleteFileW */
static HANDLE WINAPI fallbackCreateFileW(LPCWSTR fname,
DWORD dwDesiredAccess, DWORD dwShareMode,
LPSECURITY_ATTRIBUTES lpSecurityAttrs,
DWORD dwCreationDisposition,
DWORD dwFlagsAndAttrs, HANDLE hTemplFile)
{
HANDLE retval;
const int buflen = (int) (wStrLen(fname) + 1);
char *cpstr = (char *) __PHYSFS_smallAlloc(buflen);
WideCharToMultiByte(CP_ACP, 0, fname, buflen, cpstr, buflen, NULL, NULL);
retval = CreateFileA(cpstr, dwDesiredAccess, dwShareMode, lpSecurityAttrs,
dwCreationDisposition, dwFlagsAndAttrs, hTemplFile);
__PHYSFS_smallFree(cpstr);
return(retval);
} /* fallbackCreateFileW */
Aug 23, 2001
Aug 23, 2001
255
May 6, 2002
May 6, 2002
256
Mar 25, 2007
Mar 25, 2007
257
/* A blatant abuse of pointer casting... */
Mar 26, 2007
Mar 26, 2007
258
static int symLookup(HMODULE dll, void **addr, const char *sym)
Mar 25, 2007
Mar 25, 2007
259
{
Mar 26, 2007
Mar 26, 2007
260
return( (*addr = GetProcAddress(dll, sym)) != NULL );
Mar 25, 2007
Mar 25, 2007
261
262
263
264
265
266
267
} /* symLookup */
static int findApiSymbols(void)
{
HMODULE dll = NULL;
Mar 26, 2007
Mar 26, 2007
268
269
270
271
272
273
274
275
276
#define LOOKUP_NOFALLBACK(x, reallyLook) { \
if (reallyLook) \
symLookup(dll, (void **) &p##x, #x); \
else \
p##x = NULL; \
}
#define LOOKUP(x, reallyLook) { \
if ((!reallyLook) || (!symLookup(dll, (void **) &p##x, #x))) \
Mar 26, 2007
Mar 26, 2007
277
278
p##x = fallback##x; \
}
Mar 25, 2007
Mar 25, 2007
279
Mar 26, 2007
Mar 26, 2007
280
281
282
/* Apparently Win9x HAS the Unicode entry points, they just don't WORK. */
/* ...so don't look them up unless we're on NT+. (see osHasUnicode.) */
Mar 26, 2007
Mar 26, 2007
283
dll = libUserEnv = LoadLibraryA("userenv.dll");
Mar 25, 2007
Mar 25, 2007
284
if (dll != NULL)
Mar 26, 2007
Mar 26, 2007
285
LOOKUP_NOFALLBACK(GetUserProfileDirectoryW, osHasUnicode);
Mar 25, 2007
Mar 25, 2007
286
287
/* !!! FIXME: what do they call advapi32.dll on Win64? */
Mar 26, 2007
Mar 26, 2007
288
dll = libAdvApi32 = LoadLibraryA("advapi32.dll");
Mar 25, 2007
Mar 25, 2007
289
if (dll != NULL)
Mar 26, 2007
Mar 26, 2007
290
LOOKUP(GetUserNameW, osHasUnicode);
Mar 25, 2007
Mar 25, 2007
291
292
/* !!! FIXME: what do they call kernel32.dll on Win64? */
Mar 26, 2007
Mar 26, 2007
293
dll = libKernel32 = LoadLibraryA("kernel32.dll");
Mar 25, 2007
Mar 25, 2007
294
295
if (dll != NULL)
{
Mar 26, 2007
Mar 26, 2007
296
297
298
299
300
301
302
303
304
305
306
307
LOOKUP_NOFALLBACK(GetFileAttributesExA, 1);
LOOKUP_NOFALLBACK(GetFileAttributesExW, osHasUnicode);
LOOKUP_NOFALLBACK(FindFirstFileW, osHasUnicode);
LOOKUP_NOFALLBACK(FindNextFileW, osHasUnicode);
LOOKUP(GetModuleFileNameW, osHasUnicode);
LOOKUP(FormatMessageW, osHasUnicode);
LOOKUP(GetFileAttributesW, osHasUnicode);
LOOKUP(GetCurrentDirectoryW, osHasUnicode);
LOOKUP(CreateDirectoryW, osHasUnicode);
LOOKUP(RemoveDirectoryW, osHasUnicode);
LOOKUP(CreateFileW, osHasUnicode);
LOOKUP(DeleteFileW, osHasUnicode);
Mar 25, 2007
Mar 25, 2007
308
} /* if */
Dec 8, 2003
Dec 8, 2003
309
Mar 26, 2007
Mar 26, 2007
310
#undef LOOKUP_NOFALLBACK
Mar 25, 2007
Mar 25, 2007
311
312
313
314
#undef LOOKUP
return(1);
} /* findApiSymbols */
Jun 29, 2002
Jun 29, 2002
315
316
Mar 26, 2007
Mar 26, 2007
317
318
319
const char *__PHYSFS_platformDirSeparator = "\\";
Jun 10, 2002
Jun 10, 2002
320
/*
Mar 26, 2007
Mar 26, 2007
321
* Figure out what the last failing Windows API call was, and
Jun 10, 2002
Jun 10, 2002
322
323
324
325
326
* generate a human-readable string for the error message.
*
* The return value is a static buffer that is overwritten with
* each call to this function.
*/
Mar 26, 2007
Mar 26, 2007
327
static const char *winApiStrError(void)
Jun 10, 2002
Jun 10, 2002
328
{
Mar 26, 2007
Mar 26, 2007
329
330
331
332
333
334
335
336
337
338
static char utf8buf[255];
WCHAR msgbuf[255];
WCHAR *ptr;
DWORD rc = pFormatMessageW(
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
msgbuf, __PHYSFS_ARRAYLEN(msgbuf),
NULL);
Jun 10, 2002
Jun 10, 2002
339
Mar 25, 2007
Mar 25, 2007
340
/* chop off newlines. */
Jun 29, 2002
Jun 29, 2002
341
342
343
344
for (ptr = msgbuf; *ptr; ptr++)
{
if ((*ptr == '\n') || (*ptr == '\r'))
{
Mar 26, 2007
Mar 26, 2007
345
*ptr = '\0';
Jun 29, 2002
Jun 29, 2002
346
347
348
349
break;
} /* if */
} /* for */
Mar 26, 2007
Mar 26, 2007
350
351
352
353
/* may truncate, but oh well. */
PHYSFS_utf8FromUcs2((PHYSFS_uint16 *) msgbuf, utf8buf, sizeof (utf8buf));
return((const char *) utf8buf);
} /* winApiStrError */
Jun 10, 2002
Jun 10, 2002
354
355
Mar 25, 2007
Mar 25, 2007
356
static char *getExePath(void)
Jun 7, 2002
Jun 7, 2002
357
{
Mar 25, 2007
Mar 25, 2007
358
DWORD buflen = 64;
Jun 29, 2002
Jun 29, 2002
359
int success = 0;
Mar 25, 2007
Mar 25, 2007
360
361
LPWSTR modpath = NULL;
char *retval = NULL;
Jun 29, 2002
Jun 29, 2002
362
Mar 25, 2007
Mar 25, 2007
363
while (1)
Jun 29, 2002
Jun 29, 2002
364
{
Mar 25, 2007
Mar 25, 2007
365
366
DWORD rc;
void *ptr;
Jun 29, 2002
Jun 29, 2002
367
Mar 25, 2007
Mar 25, 2007
368
if ( !(ptr = allocator.Realloc(modpath, buflen*sizeof(WCHAR))) )
Jun 29, 2002
Jun 29, 2002
369
{
Mar 25, 2007
Mar 25, 2007
370
371
372
373
allocator.Free(modpath);
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
} /* if */
modpath = (LPWSTR) ptr;
Jun 29, 2002
Jun 29, 2002
374
Mar 25, 2007
Mar 25, 2007
375
376
377
378
rc = pGetModuleFileNameW(NULL, modpath, buflen);
if (rc == 0)
{
allocator.Free(modpath);
Mar 26, 2007
Mar 26, 2007
379
BAIL_MACRO(winApiStrError(), NULL);
Mar 25, 2007
Mar 25, 2007
380
} /* if */
Jun 29, 2002
Jun 29, 2002
381
Mar 25, 2007
Mar 25, 2007
382
383
384
385
386
387
388
389
390
391
if (rc < buflen)
{
buflen = rc;
break;
} /* if */
buflen *= 2;
} /* while */
if (buflen > 0) /* just in case... */
Jun 29, 2002
Jun 29, 2002
392
{
Mar 25, 2007
Mar 25, 2007
393
394
395
396
397
398
399
400
401
402
WCHAR *ptr = (modpath + buflen) - 1;
while (ptr != modpath)
{
if (*ptr == '\\')
break;
ptr--;
} /* while */
if ((ptr == modpath) && (*ptr != '\\'))
__PHYSFS_setError(ERR_GETMODFN_NO_DIR);
Jun 29, 2002
Jun 29, 2002
403
404
else
{
Mar 25, 2007
Mar 25, 2007
405
*(ptr + 1) = '\0'; /* chop off filename. */
Mar 26, 2007
Mar 26, 2007
406
retval = unicodeToUtf8Heap(modpath);
Jun 29, 2002
Jun 29, 2002
407
} /* else */
Mar 25, 2007
Mar 25, 2007
408
409
} /* else */
allocator.Free(modpath);
Jun 29, 2002
Jun 29, 2002
410
411
412
return(retval); /* w00t. */
} /* getExePath */
Jun 7, 2002
Jun 7, 2002
413
414
415
/*
Mar 25, 2007
Mar 25, 2007
416
* Try to make use of GetUserProfileDirectoryW(), which isn't available on
Jun 29, 2002
Jun 29, 2002
417
418
* some common variants of Win32. If we can't use this, we just punt and
* use the physfs base dir for the user dir, too.
Jun 7, 2002
Jun 7, 2002
419
*
Jun 29, 2002
Jun 29, 2002
420
421
422
423
* On success, module-scope variable (userDir) will have a pointer to
* a malloc()'d string of the user's profile dir, and a non-zero value is
* returned. If we can't determine the profile dir, (userDir) will
* be NULL, and zero is returned.
Jun 7, 2002
Jun 7, 2002
424
*/
Jun 29, 2002
Jun 29, 2002
425
static int determineUserDir(void)
Jun 7, 2002
Jun 7, 2002
426
{
Mar 25, 2007
Mar 25, 2007
427
428
if (userDir != NULL)
return(1); /* already good to go. */
Jun 10, 2002
Jun 10, 2002
429
Jun 29, 2002
Jun 29, 2002
430
/*
Mar 25, 2007
Mar 25, 2007
431
* GetUserProfileDirectoryW() is only available on NT 4.0 and later.
Jun 29, 2002
Jun 29, 2002
432
433
* This means Win95/98/ME (and CE?) users have to do without, so for
* them, we'll default to the base directory when we can't get the
Mar 25, 2007
Mar 25, 2007
434
435
* function pointer. Since this is originally an NT API, we don't
* offer a non-Unicode fallback.
Jun 29, 2002
Jun 29, 2002
436
*/
Mar 25, 2007
Mar 25, 2007
437
if (pGetUserProfileDirectoryW != NULL)
Jun 29, 2002
Jun 29, 2002
438
{
Mar 25, 2007
Mar 25, 2007
439
440
441
HANDLE accessToken = NULL; /* Security handle to process */
HANDLE processHandle = GetCurrentProcess();
if (OpenProcessToken(processHandle, TOKEN_QUERY, &accessToken))
Jun 29, 2002
Jun 29, 2002
442
{
Mar 25, 2007
Mar 25, 2007
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
DWORD psize = 0;
WCHAR dummy = 0;
LPWSTR wstr = NULL;
BOOL rc = 0;
/*
* Should fail. Will write the size of the profile path in
* psize. Also note that the second parameter can't be
* NULL or the function fails.
*/
rc = pGetUserProfileDirectoryW(accessToken, &dummy, &psize);
assert(!rc); /* !!! FIXME: handle this gracefully. */
/* Allocate memory for the profile directory */
wstr = (LPWSTR) __PHYSFS_smallAlloc(psize * sizeof (WCHAR));
if (wstr != NULL)
Jun 29, 2002
Jun 29, 2002
459
{
Mar 25, 2007
Mar 25, 2007
460
if (pGetUserProfileDirectoryW(accessToken, wstr, &psize))
Mar 26, 2007
Mar 26, 2007
461
userDir = unicodeToUtf8Heap(wstr);
Mar 25, 2007
Mar 25, 2007
462
463
__PHYSFS_smallFree(wstr);
} /* else */
Jun 29, 2002
Jun 29, 2002
464
} /* if */
Jun 10, 2002
Jun 10, 2002
465
Mar 25, 2007
Mar 25, 2007
466
CloseHandle(accessToken);
Jun 10, 2002
Jun 10, 2002
467
468
} /* if */
Jun 29, 2002
Jun 29, 2002
469
if (userDir == NULL) /* couldn't get profile for some reason. */
Jun 7, 2002
Jun 7, 2002
470
{
Jun 29, 2002
Jun 29, 2002
471
/* Might just be a non-NT system; resort to the basedir. */
Mar 25, 2007
Mar 25, 2007
472
userDir = getExePath();
Jun 29, 2002
Jun 29, 2002
473
BAIL_IF_MACRO(userDir == NULL, NULL, 0); /* STILL failed?! */
Jun 10, 2002
Jun 10, 2002
474
} /* if */
Jun 7, 2002
Jun 7, 2002
475
Jun 29, 2002
Jun 29, 2002
476
477
return(1); /* We made it: hit the showers. */
} /* determineUserDir */
Jun 10, 2002
Jun 10, 2002
478
Jun 7, 2002
Jun 7, 2002
479
Jul 14, 2002
Jul 14, 2002
480
static BOOL mediaInDrive(const char *drive)
Jun 7, 2002
Jun 7, 2002
481
{
Jun 29, 2002
Jun 29, 2002
482
UINT oldErrorMode;
Jul 14, 2002
Jul 14, 2002
483
484
DWORD tmp;
BOOL retval;
Jun 7, 2002
Jun 7, 2002
485
Dec 8, 2003
Dec 8, 2003
486
/* Prevent windows warning message appearing when checking media size */
Jun 29, 2002
Jun 29, 2002
487
oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
Jun 7, 2002
Jun 7, 2002
488
489
/* If this function succeeds, there's media in the drive */
Mar 26, 2007
Mar 26, 2007
490
retval = GetVolumeInformationA(drive, NULL, 0, NULL, NULL, &tmp, NULL, 0);
Jun 7, 2002
Jun 7, 2002
491
492
/* Revert back to old windows error handler */
Jun 29, 2002
Jun 29, 2002
493
494
SetErrorMode(oldErrorMode);
Jul 14, 2002
Jul 14, 2002
495
return(retval);
Jun 29, 2002
Jun 29, 2002
496
} /* mediaInDrive */
Jun 7, 2002
Jun 7, 2002
497
Aug 23, 2001
Aug 23, 2001
498
Sep 29, 2004
Sep 29, 2004
499
void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data)
Aug 23, 2001
Aug 23, 2001
500
{
Mar 25, 2007
Mar 25, 2007
501
502
/* !!! FIXME: Can CD drives be non-drive letter paths? */
/* !!! FIXME: (so can they be Unicode paths?) */
Aug 23, 2001
Aug 23, 2001
503
char drive_str[4] = "x:\\";
Sep 29, 2004
Sep 29, 2004
504
505
char ch;
for (ch = 'A'; ch <= 'Z'; ch++)
Aug 23, 2001
Aug 23, 2001
506
{
Sep 29, 2004
Sep 29, 2004
507
drive_str[0] = ch;
Jun 29, 2002
Jun 29, 2002
508
if (GetDriveType(drive_str) == DRIVE_CDROM && mediaInDrive(drive_str))
Sep 29, 2004
Sep 29, 2004
509
cb(data, drive_str);
Aug 23, 2001
Aug 23, 2001
510
} /* for */
Sep 29, 2004
Sep 29, 2004
511
} /* __PHYSFS_platformDetectAvailableCDs */
Aug 23, 2001
Aug 23, 2001
512
513
Oct 9, 2001
Oct 9, 2001
514
515
char *__PHYSFS_platformCalcBaseDir(const char *argv0)
{
May 22, 2003
May 22, 2003
516
517
if ((argv0 != NULL) && (strchr(argv0, '\\') != NULL))
return(NULL); /* default behaviour can handle this. */
Oct 9, 2001
Oct 9, 2001
518
Mar 25, 2007
Mar 25, 2007
519
return(getExePath());
Aug 23, 2001
Aug 23, 2001
520
521
522
523
524
} /* __PHYSFS_platformCalcBaseDir */
char *__PHYSFS_platformGetUserName(void)
{
Aug 23, 2001
Aug 23, 2001
525
DWORD bufsize = 0;
Mar 26, 2007
Mar 26, 2007
526
527
528
char *retval = NULL;
if (pGetUserNameW(NULL, &bufsize) == 0) /* This SHOULD fail. */
Mar 25, 2007
Mar 25, 2007
529
{
Mar 26, 2007
Mar 26, 2007
530
531
532
533
534
535
536
LPWSTR wbuf = (LPWSTR) __PHYSFS_smallAlloc(bufsize * sizeof (WCHAR));
BAIL_IF_MACRO(wbuf == NULL, ERR_OUT_OF_MEMORY, NULL);
if (pGetUserNameW(wbuf, &bufsize) == 0) /* ?! */
__PHYSFS_setError(winApiStrError());
else
retval = unicodeToUtf8Heap(wbuf);
__PHYSFS_smallFree(wbuf);
Mar 25, 2007
Mar 25, 2007
537
538
} /* if */
Mar 26, 2007
Mar 26, 2007
539
return(retval);
Aug 23, 2001
Aug 23, 2001
540
541
542
543
544
} /* __PHYSFS_platformGetUserName */
char *__PHYSFS_platformGetUserDir(void)
{
Mar 14, 2005
Mar 14, 2005
545
char *retval = (char *) allocator.Malloc(strlen(userDir) + 1);
Jun 10, 2002
Jun 10, 2002
546
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
Jun 29, 2002
Jun 29, 2002
547
548
strcpy(retval, userDir); /* calculated at init time. */
return(retval);
Aug 23, 2001
Aug 23, 2001
549
550
551
} /* __PHYSFS_platformGetUserDir */
Apr 3, 2002
Apr 3, 2002
552
PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
Aug 23, 2001
Aug 23, 2001
553
{
Jun 29, 2002
Jun 29, 2002
554
return((PHYSFS_uint64) GetCurrentThreadId());
Aug 23, 2001
Aug 23, 2001
555
556
557
} /* __PHYSFS_platformGetThreadID */
Mar 26, 2007
Mar 26, 2007
558
static int doPlatformExists(LPWSTR wpath)
Aug 23, 2001
Aug 23, 2001
559
{
Dec 8, 2003
Dec 8, 2003
560
561
BAIL_IF_MACRO
(
Mar 26, 2007
Mar 26, 2007
562
563
pGetFileAttributesW(wpath) == PHYSFS_INVALID_FILE_ATTRIBUTES,
winApiStrError(), 0
Dec 8, 2003
Dec 8, 2003
564
);
Aug 21, 2002
Aug 21, 2002
565
return(1);
Mar 26, 2007
Mar 26, 2007
566
567
568
569
570
571
572
573
574
575
576
577
} /* doPlatformExists */
int __PHYSFS_platformExists(const char *fname)
{
int retval = 0;
LPWSTR wpath;
UTF8_TO_UNICODE_STACK_MACRO(wpath, fname);
BAIL_IF_MACRO(wpath == NULL, ERR_OUT_OF_MEMORY, 0);
retval = doPlatformExists(wpath);
__PHYSFS_smallFree(wpath);
return(retval);
Aug 23, 2001
Aug 23, 2001
578
579
580
581
582
} /* __PHYSFS_platformExists */
int __PHYSFS_platformIsSymLink(const char *fname)
{
Mar 25, 2007
Mar 25, 2007
583
/* !!! FIXME: Vista has symlinks. Recheck this. */
Aug 23, 2001
Aug 23, 2001
584
585
586
587
588
589
return(0); /* no symlinks on win32. */
} /* __PHYSFS_platformIsSymlink */
int __PHYSFS_platformIsDirectory(const char *fname)
{
Mar 26, 2007
Mar 26, 2007
590
591
592
593
594
595
596
int retval = 0;
LPWSTR wpath;
UTF8_TO_UNICODE_STACK_MACRO(wpath, fname);
BAIL_IF_MACRO(wpath == NULL, ERR_OUT_OF_MEMORY, 0);
retval = ((pGetFileAttributesW(wpath) & FILE_ATTRIBUTE_DIRECTORY) != 0);
__PHYSFS_smallFree(wpath);
return(retval);
Aug 23, 2001
Aug 23, 2001
597
598
599
600
601
602
603
604
605
606
} /* __PHYSFS_platformIsDirectory */
char *__PHYSFS_platformCvtToDependent(const char *prepend,
const char *dirName,
const char *append)
{
int len = ((prepend) ? strlen(prepend) : 0) +
((append) ? strlen(append) : 0) +
strlen(dirName) + 1;
Mar 14, 2005
Mar 14, 2005
607
char *retval = (char *) allocator.Malloc(len);
Aug 23, 2001
Aug 23, 2001
608
char *p;
Aug 23, 2001
Aug 23, 2001
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
if (prepend)
strcpy(retval, prepend);
else
retval[0] = '\0';
strcat(retval, dirName);
if (append)
strcat(retval, append);
for (p = strchr(retval, '/'); p != NULL; p = strchr(p + 1, '/'))
*p = '\\';
return(retval);
} /* __PHYSFS_platformCvtToDependent */
Sep 29, 2004
Sep 29, 2004
629
630
void __PHYSFS_platformEnumerateFiles(const char *dirname,
int omitSymLinks,
Sep 18, 2005
Sep 18, 2005
631
632
PHYSFS_EnumFilesCallback callback,
const char *origdir,
Sep 29, 2004
Sep 29, 2004
633
void *callbackdata)
Aug 23, 2001
Aug 23, 2001
634
{
Mar 26, 2007
Mar 26, 2007
635
636
const int unicode = (pFindFirstFileW != NULL) && (pFindNextFileW != NULL);
HANDLE dir = INVALID_HANDLE_VALUE;
Aug 23, 2001
Aug 23, 2001
637
WIN32_FIND_DATA ent;
Mar 26, 2007
Mar 26, 2007
638
WIN32_FIND_DATAW entw;
Jun 8, 2002
Jun 8, 2002
639
size_t len = strlen(dirname);
Mar 26, 2007
Mar 26, 2007
640
641
642
char *searchPath = NULL;
WCHAR *wSearchPath = NULL;
char *utf8 = NULL;
Jun 7, 2002
Jun 7, 2002
643
Jun 8, 2002
Jun 8, 2002
644
/* Allocate a new string for path, maybe '\\', "*", and NULL terminator */
Mar 26, 2007
Mar 26, 2007
645
646
searchPath = (char *) __PHYSFS_smallAlloc(len + 3);
if (searchPath == NULL)
Sep 29, 2004
Sep 29, 2004
647
return;
Jun 10, 2002
Jun 10, 2002
648
Jun 7, 2002
Jun 7, 2002
649
/* Copy current dirname */
Mar 26, 2007
Mar 26, 2007
650
strcpy(searchPath, dirname);
Jun 8, 2002
Jun 8, 2002
651
652
/* if there's no '\\' at the end of the path, stick one in there. */
Mar 26, 2007
Mar 26, 2007
653
if (searchPath[len - 1] != '\\')
Jun 8, 2002
Jun 8, 2002
654
{
Mar 26, 2007
Mar 26, 2007
655
656
searchPath[len++] = '\\';
searchPath[len] = '\0';
Jun 8, 2002
Jun 8, 2002
657
658
} /* if */
Jun 7, 2002
Jun 7, 2002
659
/* Append the "*" to the end of the string */
Mar 26, 2007
Mar 26, 2007
660
strcat(searchPath, "*");
Aug 23, 2001
Aug 23, 2001
661
Mar 26, 2007
Mar 26, 2007
662
663
664
UTF8_TO_UNICODE_STACK_MACRO(wSearchPath, searchPath);
if (wSearchPath == NULL)
return; /* oh well. */
Aug 23, 2001
Aug 23, 2001
665
Mar 26, 2007
Mar 26, 2007
666
667
668
if (unicode)
dir = pFindFirstFileW(wSearchPath, &entw);
else
Aug 23, 2001
Aug 23, 2001
669
{
Mar 26, 2007
Mar 26, 2007
670
671
672
673
674
675
676
677
678
const int len = (int) (wStrLen(wSearchPath) + 1);
char *cp = (char *) __PHYSFS_smallAlloc(len);
if (cp != NULL)
{
WideCharToMultiByte(CP_ACP, 0, wSearchPath, len, cp, len, 0, 0);
dir = FindFirstFileA(cp, &ent);
__PHYSFS_smallFree(cp);
} /* if */
} /* else */
Aug 23, 2001
Aug 23, 2001
679
Mar 26, 2007
Mar 26, 2007
680
681
682
683
__PHYSFS_smallFree(wSearchPath);
__PHYSFS_smallFree(searchPath);
if (dir == INVALID_HANDLE_VALUE)
return;
Aug 23, 2001
Aug 23, 2001
684
Mar 26, 2007
Mar 26, 2007
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
if (unicode)
{
do
{
const WCHAR *fn = entw.cFileName;
if ((fn[0] == '.') && (fn[1] == '\0'))
continue;
if ((fn[0] == '.') && (fn[1] == '.') && (fn[2] == '\0'))
continue;
utf8 = unicodeToUtf8Heap(entw.cFileName);
if (utf8 != NULL)
{
callback(callbackdata, origdir, utf8);
allocator.Free(utf8);
} /* if */
} while (pFindNextFileW(dir, &entw) != 0);
} /* if */
Mar 25, 2007
Mar 25, 2007
703
Mar 26, 2007
Mar 26, 2007
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
else /* ANSI fallback. */
{
do
{
const char *fn = ent.cFileName;
if ((fn[0] == '.') && (fn[1] == '\0'))
continue;
if ((fn[0] == '.') && (fn[1] == '.') && (fn[2] == '\0'))
continue;
utf8 = codepageToUtf8Heap(ent.cFileName);
if (utf8 != NULL)
{
callback(callbackdata, origdir, utf8);
allocator.Free(utf8);
} /* if */
} while (FindNextFileA(dir, &ent) != 0);
} /* else */
Aug 23, 2001
Aug 23, 2001
722
723
724
725
726
727
728
FindClose(dir);
} /* __PHYSFS_platformEnumerateFiles */
char *__PHYSFS_platformCurrentDir(void)
{
Mar 26, 2007
Mar 26, 2007
729
730
char *retval = NULL;
WCHAR *wbuf = NULL;
Aug 23, 2001
Aug 23, 2001
731
732
DWORD buflen = 0;
Mar 26, 2007
Mar 26, 2007
733
734
735
736
buflen = pGetCurrentDirectoryW(buflen, NULL);
wbuf = (WCHAR *) __PHYSFS_smallAlloc((buflen + 2) * sizeof (WCHAR));
BAIL_IF_MACRO(wbuf == NULL, ERR_OUT_OF_MEMORY, NULL);
pGetCurrentDirectoryW(buflen, wbuf);
Sep 1, 2001
Sep 1, 2001
737
Mar 26, 2007
Mar 26, 2007
738
739
740
741
742
743
744
if (wbuf[buflen - 2] == '\\')
wbuf[buflen-1] = '\0'; /* just in case... */
else
{
wbuf[buflen - 1] = '\\';
wbuf[buflen] = '\0';
} /* else */
Sep 1, 2001
Sep 1, 2001
745
Mar 26, 2007
Mar 26, 2007
746
747
748
retval = unicodeToUtf8Heap(wbuf);
__PHYSFS_smallFree(wbuf);
return(retval);
Aug 23, 2001
Aug 23, 2001
749
750
751
} /* __PHYSFS_platformCurrentDir */
Sep 1, 2001
Sep 1, 2001
752
/* this could probably use a cleanup. */
Aug 23, 2001
Aug 23, 2001
753
754
char *__PHYSFS_platformRealPath(const char *path)
{
Mar 26, 2007
Mar 26, 2007
755
/* !!! FIXME: try GetFullPathName() instead? */
Mar 25, 2007
Mar 25, 2007
756
/* this function should be UTF-8 clean. */
Sep 1, 2001
Sep 1, 2001
757
758
759
760
761
762
char *retval = NULL;
char *p = NULL;
BAIL_IF_MACRO(path == NULL, ERR_INVALID_ARGUMENT, NULL);
BAIL_IF_MACRO(*path == '\0', ERR_INVALID_ARGUMENT, NULL);
Mar 14, 2005
Mar 14, 2005
763
retval = (char *) allocator.Malloc(MAX_PATH);
Sep 1, 2001
Sep 1, 2001
764
765
766
767
768
769
770
771
772
773
774
775
776
777
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
/*
* If in \\server\path format, it's already an absolute path.
* We'll need to check for "." and ".." dirs, though, just in case.
*/
if ((path[0] == '\\') && (path[1] == '\\'))
strcpy(retval, path);
else
{
char *currentDir = __PHYSFS_platformCurrentDir();
if (currentDir == NULL)
{
Mar 14, 2005
Mar 14, 2005
778
allocator.Free(retval);
Sep 1, 2001
Sep 1, 2001
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
} /* if */
if (path[1] == ':') /* drive letter specified? */
{
/*
* Apparently, "D:mypath" is the same as "D:\\mypath" if
* D: is not the current drive. However, if D: is the
* current drive, then "D:mypath" is a relative path. Ugh.
*/
if (path[2] == '\\') /* maybe an absolute path? */
strcpy(retval, path);
else /* definitely an absolute path. */
{
if (path[0] == currentDir[0]) /* current drive; relative. */
{
strcpy(retval, currentDir);
strcat(retval, path + 2);
} /* if */
else /* not current drive; absolute. */
{
retval[0] = path[0];
retval[1] = ':';
retval[2] = '\\';
strcpy(retval + 3, path + 2);
} /* else */
} /* else */
} /* if */
else /* no drive letter specified. */
{
if (path[0] == '\\') /* absolute path. */
{
retval[0] = currentDir[0];
retval[1] = ':';
strcpy(retval + 2, path);
} /* if */
else
{
strcpy(retval, currentDir);
strcat(retval, path);
} /* else */
} /* else */
Mar 14, 2005
Mar 14, 2005
824
allocator.Free(currentDir);
Sep 1, 2001
Sep 1, 2001
825
826
827
828
829
830
831
} /* else */
/* (whew.) Ok, now take out "." and ".." path entries... */
p = retval;
while ( (p = strstr(p, "\\.")) != NULL)
{
Mar 25, 2007
Mar 25, 2007
832
/* it's a "." entry that doesn't end the string. */
Sep 1, 2001
Sep 1, 2001
833
834
835
if (p[2] == '\\')
memmove(p + 1, p + 3, strlen(p + 3) + 1);
Mar 25, 2007
Mar 25, 2007
836
/* it's a "." entry that ends the string. */
Sep 1, 2001
Sep 1, 2001
837
838
839
else if (p[2] == '\0')
p[0] = '\0';
Mar 25, 2007
Mar 25, 2007
840
/* it's a ".." entry. */
Sep 1, 2001
Sep 1, 2001
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
else if (p[2] == '.')
{
char *prevEntry = p - 1;
while ((prevEntry != retval) && (*prevEntry != '\\'))
prevEntry--;
if (prevEntry == retval) /* make it look like a "." entry. */
memmove(p + 1, p + 2, strlen(p + 2) + 1);
else
{
if (p[3] != '\0') /* doesn't end string. */
*prevEntry = '\0';
else /* ends string. */
memmove(prevEntry + 1, p + 4, strlen(p + 4) + 1);
p = prevEntry;
} /* else */
} /* else if */
else
{
p++; /* look past current char. */
} /* else */
} /* while */
Mar 25, 2007
Mar 25, 2007
866
/* shrink the retval's memory block if possible... */
Mar 14, 2005
Mar 14, 2005
867
p = (char *) allocator.Realloc(retval, strlen(retval) + 1);
Sep 1, 2001
Sep 1, 2001
868
869
870
871
if (p != NULL)
retval = p;
return(retval);
Aug 23, 2001
Aug 23, 2001
872
873
874
875
876
} /* __PHYSFS_platformRealPath */
int __PHYSFS_platformMkDir(const char *path)
{
Mar 26, 2007
Mar 26, 2007
877
878
879
880
881
882
WCHAR *wpath;
DWORD rc;
UTF8_TO_UNICODE_STACK_MACRO(wpath, path);
rc = pCreateDirectoryW(wpath, NULL);
__PHYSFS_smallFree(wpath);
BAIL_IF_MACRO(rc == 0, winApiStrError(), 0);
Aug 23, 2001
Aug 23, 2001
883
884
885
return(1);
} /* __PHYSFS_platformMkDir */
Jun 10, 2002
Jun 10, 2002
886
Mar 26, 2007
Mar 26, 2007
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
/*
* Get OS info and save the important parts.
*
* Returns non-zero if successful, otherwise it returns zero on failure.
*/
static int getOSInfo(void)
{
OSVERSIONINFO osVerInfo; /* Information about the OS */
osVerInfo.dwOSVersionInfoSize = sizeof(osVerInfo);
BAIL_IF_MACRO(!GetVersionEx(&osVerInfo), winApiStrError(), 0);
osHasUnicode = (osVerInfo.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS);
return(1);
} /* getOSInfo */
Jun 29, 2002
Jun 29, 2002
902
903
int __PHYSFS_platformInit(void)
{
Mar 26, 2007
Mar 26, 2007
904
BAIL_IF_MACRO(!getOSInfo(), NULL, 0);
Mar 25, 2007
Mar 25, 2007
905
BAIL_IF_MACRO(!findApiSymbols(), NULL, 0);
Jun 29, 2002
Jun 29, 2002
906
907
908
BAIL_IF_MACRO(!determineUserDir(), NULL, 0);
return(1); /* It's all good */
} /* __PHYSFS_platformInit */
Mar 24, 2002
Mar 24, 2002
909
910
911
912
int __PHYSFS_platformDeinit(void)
{
Mar 25, 2007
Mar 25, 2007
913
914
915
916
917
HANDLE *libs[] = { &libKernel32, &libUserEnv, &libAdvApi32, NULL };
int i;
allocator.Free(userDir);
userDir = NULL;
Mar 24, 2002
Mar 24, 2002
918
Mar 25, 2007
Mar 25, 2007
919
for (i = 0; libs[i] != NULL; i++)
Jun 29, 2002
Jun 29, 2002
920
{
Mar 25, 2007
Mar 25, 2007
921
922
923
924
925
const HANDLE lib = *(libs[i]);
if (lib)
FreeLibrary(lib);
*(libs[i]) = NULL;
} /* for */
Jun 29, 2002
Jun 29, 2002
926
Jun 29, 2002
Jun 29, 2002
927
928
929
930
931
932
933
return(1); /* It's all good */
} /* __PHYSFS_platformDeinit */
static void *doOpen(const char *fname, DWORD mode, DWORD creation, int rdonly)
{
HANDLE fileHandle;
Mar 26, 2007
Mar 26, 2007
934
935
WinApiFile *retval;
WCHAR *wfname;
Jun 29, 2002
Jun 29, 2002
936
Mar 26, 2007
Mar 26, 2007
937
938
939
940
941
UTF8_TO_UNICODE_STACK_MACRO(wfname, fname);
BAIL_IF_MACRO(wfname == NULL, ERR_OUT_OF_MEMORY, NULL);
fileHandle = pCreateFileW(wfname, mode, FILE_SHARE_READ, NULL,
creation, FILE_ATTRIBUTE_NORMAL, NULL);
__PHYSFS_smallFree(wfname);
Jun 29, 2002
Jun 29, 2002
942
Dec 8, 2003
Dec 8, 2003
943
944
BAIL_IF_MACRO
(
Dec 22, 2003
Dec 22, 2003
945
fileHandle == INVALID_HANDLE_VALUE,
Mar 26, 2007
Mar 26, 2007
946
winApiStrError(), NULL
Dec 8, 2003
Dec 8, 2003
947
);
Jun 29, 2002
Jun 29, 2002
948
Mar 26, 2007
Mar 26, 2007
949
retval = (WinApiFile *) allocator.Malloc(sizeof (WinApiFile));
Jun 29, 2002
Jun 29, 2002
950
if (retval == NULL)
Jun 10, 2002
Jun 10, 2002
951
{
Jun 29, 2002
Jun 29, 2002
952
953
CloseHandle(fileHandle);
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
Jun 10, 2002
Jun 10, 2002
954
} /* if */
Mar 24, 2002
Mar 24, 2002
955
Jun 29, 2002
Jun 29, 2002
956
957
958
959
960
retval->readonly = rdonly;
retval->handle = fileHandle;
return(retval);
} /* doOpen */
Mar 24, 2002
Mar 24, 2002
961
Apr 3, 2002
Apr 3, 2002
962
963
void *__PHYSFS_platformOpenRead(const char *filename)
{
Jun 29, 2002
Jun 29, 2002
964
965
return(doOpen(filename, GENERIC_READ, OPEN_EXISTING, 1));
} /* __PHYSFS_platformOpenRead */
Apr 3, 2002
Apr 3, 2002
966
967
968
969
void *__PHYSFS_platformOpenWrite(const char *filename)
{
Jun 29, 2002
Jun 29, 2002
970
971
return(doOpen(filename, GENERIC_WRITE, CREATE_ALWAYS, 0));
} /* __PHYSFS_platformOpenWrite */
Apr 3, 2002
Apr 3, 2002
972
973
974
975
void *__PHYSFS_platformOpenAppend(const char *filename)
{
Jun 29, 2002
Jun 29, 2002
976
977
978
void *retval = doOpen(filename, GENERIC_WRITE, OPEN_ALWAYS, 0);
if (retval != NULL)
{
Mar 26, 2007
Mar 26, 2007
979
HANDLE h = ((WinApiFile *) retval)->handle;
Dec 8, 2003
Dec 8, 2003
980
981
DWORD rc = SetFilePointer(h, 0, NULL, FILE_END);
if (rc == PHYSFS_INVALID_SET_FILE_POINTER)
Jun 29, 2002
Jun 29, 2002
982
{
Mar 26, 2007
Mar 26, 2007
983
const char *err = winApiStrError();
Jun 29, 2002
Jun 29, 2002
984
CloseHandle(h);
Mar 14, 2005
Mar 14, 2005
985
allocator.Free(retval);
Jun 29, 2002
Jun 29, 2002
986
987
988
989
990
991
BAIL_MACRO(err, NULL);
} /* if */
} /* if */
return(retval);
} /* __PHYSFS_platformOpenAppend */
Apr 3, 2002
Apr 3, 2002
992
993
994
995
996
PHYSFS_sint64 __PHYSFS_platformRead(void *opaque, void *buffer,
PHYSFS_uint32 size, PHYSFS_uint32 count)
{
Mar 26, 2007
Mar 26, 2007
997
HANDLE Handle = ((WinApiFile *) opaque)->handle;
Apr 3, 2002
Apr 3, 2002
998
999
1000
DWORD CountOfBytesRead;
PHYSFS_sint64 retval;