author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 13 Apr 2009 17:09:36 -0400 | |
changeset 987 | ae7b616e7d0e |
parent 972 | 254427fc42ab |
child 990 | c25717b5c165 |
permissions | -rw-r--r-- |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* Unix support routines for PhysicsFS. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* |
809
116b8fe30371
Renamed LICENSE to LICENSE.txt
Ryan C. Gordon <icculus@icculus.org>
parents:
808
diff
changeset
|
4 |
* Please see the file LICENSE.txt in the source's root directory. |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
6 |
* This file written by Ryan C. Gordon. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
7 |
*/ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
|
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
9 |
#define __PHYSICSFS_INTERNAL__ |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
10 |
#include "physfs_platforms.h" |
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
11 |
|
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
12 |
#ifdef PHYSFS_PLATFORM_UNIX |
310
f8bca4a93fd5
Patched to compile on Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
273
diff
changeset
|
13 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
14 |
#include <stdio.h> |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
15 |
#include <stdlib.h> |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
16 |
#include <string.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
17 |
#include <ctype.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
18 |
#include <unistd.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
19 |
#include <sys/types.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
20 |
#include <pwd.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
21 |
#include <sys/stat.h> |
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
22 |
#include <sys/param.h> |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
23 |
#include <dirent.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
24 |
#include <time.h> |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
25 |
#include <errno.h> |
351
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
26 |
#include <sys/mount.h> |
188 | 27 |
|
390
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
28 |
#if (!defined PHYSFS_NO_PTHREADS_SUPPORT) |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
29 |
#include <pthread.h> |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
30 |
#endif |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
31 |
|
351
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
32 |
#ifdef PHYSFS_HAVE_SYS_UCRED_H |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
33 |
# ifdef PHYSFS_HAVE_MNTENT_H |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
34 |
# undef PHYSFS_HAVE_MNTENT_H /* don't do both... */ |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
35 |
# endif |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
36 |
# include <sys/ucred.h> |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
37 |
#endif |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
38 |
|
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
39 |
#ifdef PHYSFS_HAVE_MNTENT_H |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
40 |
#include <mntent.h> |
188 | 41 |
#endif |
42 |
||
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
43 |
#include "physfs_internal.h" |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
44 |
|
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
45 |
|
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
46 |
int __PHYSFS_platformInit(void) |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
47 |
{ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
48 |
return(1); /* always succeed. */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
49 |
} /* __PHYSFS_platformInit */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
50 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
51 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
52 |
int __PHYSFS_platformDeinit(void) |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
53 |
{ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
54 |
return(1); /* always succeed. */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
55 |
} /* __PHYSFS_platformDeinit */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
56 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
57 |
|
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
58 |
/* Stub version for platforms without CD-ROM support. */ |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
570
diff
changeset
|
59 |
void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data) |
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
60 |
{ |
987
ae7b616e7d0e
Merge all the Unix __PHYSFS_platformDetectAvailableCDs() funcs into one.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
61 |
#if (defined PHYSFS_NO_CDROM_SUPPORT) |
ae7b616e7d0e
Merge all the Unix __PHYSFS_platformDetectAvailableCDs() funcs into one.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
62 |
/* no-op. */ |
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
63 |
|
570
b331437b9ec0
Rewrote MacOSX/Darwin CD detection to use IOKit, for accurate results.
Ryan C. Gordon <icculus@icculus.org>
parents:
520
diff
changeset
|
64 |
#elif (defined PHYSFS_HAVE_SYS_UCRED_H) |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
570
diff
changeset
|
65 |
int i; |
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
66 |
struct statfs *mntbufp = NULL; |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
570
diff
changeset
|
67 |
int mounts = getmntinfo(&mntbufp, MNT_WAIT); |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
68 |
|
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
69 |
for (i = 0; i < mounts; i++) |
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
70 |
{ |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
71 |
int add_it = 0; |
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
72 |
|
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
73 |
if (strcmp(mntbufp[i].f_fstypename, "iso9660") == 0) |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
74 |
add_it = 1; |
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
75 |
else if (strcmp( mntbufp[i].f_fstypename, "cd9660") == 0) |
191 | 76 |
add_it = 1; |
225 | 77 |
|
78 |
/* add other mount types here */ |
|
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
79 |
|
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
80 |
if (add_it) |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
570
diff
changeset
|
81 |
cb(data, mntbufp[i].f_mntonname); |
381
b65d27fdc8a9
Can now disable CD-ROM code on Unix systems at build time if need be. The
Ryan C. Gordon <icculus@icculus.org>
parents:
351
diff
changeset
|
82 |
} /* for */ |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
83 |
|
570
b331437b9ec0
Rewrote MacOSX/Darwin CD detection to use IOKit, for accurate results.
Ryan C. Gordon <icculus@icculus.org>
parents:
520
diff
changeset
|
84 |
#elif (defined PHYSFS_HAVE_MNTENT_H) |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
85 |
FILE *mounts = NULL; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
86 |
struct mntent *ent = NULL; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
87 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
88 |
mounts = setmntent("/etc/mtab", "r"); |
678
73a2641375a0
Cleaned up some minor bloat with my new evil GOTO_*_MACRO macros.
Ryan C. Gordon <icculus@icculus.org>
parents:
677
diff
changeset
|
89 |
BAIL_IF_MACRO(mounts == NULL, ERR_IO_ERROR, /*return void*/); |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
90 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
91 |
while ( (ent = getmntent(mounts)) != NULL ) |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
92 |
{ |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
93 |
int add_it = 0; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
94 |
if (strcmp(ent->mnt_type, "iso9660") == 0) |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
95 |
add_it = 1; |
225 | 96 |
|
97 |
/* add other mount types here */ |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
98 |
|
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
99 |
if (add_it) |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
570
diff
changeset
|
100 |
cb(data, ent->mnt_dir); |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
101 |
} /* while */ |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
102 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
103 |
endmntent(mounts); |
987
ae7b616e7d0e
Merge all the Unix __PHYSFS_platformDetectAvailableCDs() funcs into one.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
104 |
#endif |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
105 |
} /* __PHYSFS_platformDetectAvailableCDs */ |
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
106 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
107 |
|
233
1b74a7df1ca6
Split some of the unix.c code out to posix.c for BeOS to use.
Ryan C. Gordon <icculus@icculus.org>
parents:
225
diff
changeset
|
108 |
/* this is in posix.c ... */ |
1b74a7df1ca6
Split some of the unix.c code out to posix.c for BeOS to use.
Ryan C. Gordon <icculus@icculus.org>
parents:
225
diff
changeset
|
109 |
extern char *__PHYSFS_platformCopyEnvironmentVariable(const char *varname); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
110 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
111 |
|
225 | 112 |
/* |
113 |
* See where program (bin) resides in the $PATH specified by (envr). |
|
114 |
* returns a copy of the first element in envr that contains it, or NULL |
|
115 |
* if it doesn't exist or there were other problems. PHYSFS_SetError() is |
|
116 |
* called if we have a problem. |
|
117 |
* |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
118 |
* (envr) will be scribbled over, and you are expected to allocator.Free() the |
225 | 119 |
* return value when you're done with it. |
120 |
*/ |
|
121 |
static char *findBinaryInPath(const char *bin, char *envr) |
|
122 |
{ |
|
123 |
size_t alloc_size = 0; |
|
124 |
char *exe = NULL; |
|
125 |
char *start = envr; |
|
126 |
char *ptr; |
|
127 |
||
128 |
BAIL_IF_MACRO(bin == NULL, ERR_INVALID_ARGUMENT, NULL); |
|
129 |
BAIL_IF_MACRO(envr == NULL, ERR_INVALID_ARGUMENT, NULL); |
|
130 |
||
131 |
do |
|
132 |
{ |
|
133 |
size_t size; |
|
134 |
ptr = strchr(start, ':'); /* find next $PATH separator. */ |
|
135 |
if (ptr) |
|
136 |
*ptr = '\0'; |
|
137 |
||
138 |
size = strlen(start) + strlen(bin) + 2; |
|
139 |
if (size > alloc_size) |
|
140 |
{ |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
141 |
char *x = (char *) allocator.Realloc(exe, size); |
225 | 142 |
if (x == NULL) |
143 |
{ |
|
144 |
if (exe != NULL) |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
145 |
allocator.Free(exe); |
225 | 146 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
147 |
} /* if */ |
|
148 |
||
149 |
alloc_size = size; |
|
150 |
exe = x; |
|
151 |
} /* if */ |
|
152 |
||
153 |
/* build full binary path... */ |
|
154 |
strcpy(exe, start); |
|
505
c7f7f234a156
Minor fix for odd PATH entries.
Ryan C. Gordon <icculus@icculus.org>
parents:
452
diff
changeset
|
155 |
if ((exe[0] == '\0') || (exe[strlen(exe) - 1] != '/')) |
225 | 156 |
strcat(exe, "/"); |
157 |
strcat(exe, bin); |
|
158 |
||
159 |
if (access(exe, X_OK) == 0) /* Exists as executable? We're done. */ |
|
160 |
{ |
|
161 |
strcpy(exe, start); /* i'm lazy. piss off. */ |
|
162 |
return(exe); |
|
163 |
} /* if */ |
|
164 |
||
165 |
start = ptr + 1; /* start points to beginning of next element. */ |
|
166 |
} while (ptr != NULL); |
|
167 |
||
168 |
if (exe != NULL) |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
169 |
allocator.Free(exe); |
225 | 170 |
|
171 |
return(NULL); /* doesn't exist in path. */ |
|
172 |
} /* findBinaryInPath */ |
|
173 |
||
174 |
||
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
175 |
char *__PHYSFS_platformCalcBaseDir(const char *argv0) |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
176 |
{ |
840
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
177 |
const char *PROC_SELF_EXE = "/proc/self/exe"; |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
178 |
char *retval = NULL; |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
179 |
char *envr = NULL; |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
180 |
struct stat stbuf; |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
181 |
|
840
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
182 |
/* fast path: default behaviour can handle this. */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
183 |
if ( (argv0 != NULL) && (strchr(argv0, '/') != NULL) ) |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
184 |
return(NULL); /* higher level will parse out real path from argv0. */ |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
185 |
|
840
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
186 |
/* |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
187 |
* Try to avoid using argv0 unless forced to. If there's a Linux-like |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
188 |
* /proc filesystem, you can get the full path to the current process from |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
189 |
* the /proc/self/exe symlink. |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
190 |
*/ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
191 |
if ((lstat(PROC_SELF_EXE, &stbuf) != -1) && (S_ISLNK(stbuf.st_mode))) |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
192 |
{ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
193 |
const size_t len = stbuf.st_size; |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
194 |
char *buf = (char *) allocator.Malloc(len+1); |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
195 |
if (buf != NULL) /* if NULL, maybe you'll get lucky later. */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
196 |
{ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
197 |
if (readlink(PROC_SELF_EXE, buf, len) != len) |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
198 |
allocator.Free(buf); |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
199 |
else |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
200 |
{ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
201 |
buf[len] = '\0'; /* readlink doesn't null-terminate. */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
202 |
retval = buf; /* we're good to go. */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
203 |
} /* else */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
204 |
} /* if */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
205 |
} /* if */ |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
206 |
|
840
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
207 |
if ((retval == NULL) && (argv0 != NULL)) |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
208 |
{ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
209 |
/* If there's no dirsep on argv0, then look through $PATH for it. */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
210 |
envr = __PHYSFS_platformCopyEnvironmentVariable("PATH"); |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
211 |
BAIL_IF_MACRO(!envr, NULL, NULL); |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
212 |
retval = findBinaryInPath(argv0, envr); |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
213 |
allocator.Free(envr); |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
214 |
} /* if */ |
7f071b3b121e
Try to use /proc/self/exe to determine the base dir. This lets systems with a
Ryan C. Gordon <icculus@icculus.org>
parents:
823
diff
changeset
|
215 |
|
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
216 |
return(retval); |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
217 |
} /* __PHYSFS_platformCalcBaseDir */ |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
218 |
|
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
219 |
|
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
220 |
char *__PHYSFS_platformRealPath(const char *path) |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
221 |
{ |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
222 |
char resolved_path[MAXPATHLEN]; |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
223 |
char *retval = NULL; |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
224 |
|
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
225 |
errno = 0; |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
226 |
BAIL_IF_MACRO(!realpath(path, resolved_path), strerror(errno), NULL); |
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
227 |
retval = (char *) allocator.Malloc(strlen(resolved_path) + 1); |
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
228 |
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL); |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
229 |
strcpy(retval, resolved_path); |
520
a72bbf255074
Added hack for OSX bundles, from Eric Wing.
Ryan C. Gordon <icculus@icculus.org>
parents:
505
diff
changeset
|
230 |
|
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
231 |
return(retval); |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
232 |
} /* __PHYSFS_platformRealPath */ |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
233 |
|
69
546a95cc5591
Updates, corrections and enhancements to get this ported to win32.
Ryan C. Gordon <icculus@icculus.org>
parents:
67
diff
changeset
|
234 |
|
847
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
235 |
char *__PHYSFS_platformCurrentDir(void) |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
236 |
{ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
237 |
/* |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
238 |
* This can't just do platformRealPath("."), since that would eventually |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
239 |
* just end up calling back into here. |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
240 |
*/ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
241 |
|
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
242 |
int allocSize = 0; |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
243 |
char *retval = NULL; |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
244 |
char *ptr; |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
245 |
|
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
246 |
do |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
247 |
{ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
248 |
allocSize += 100; |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
249 |
ptr = (char *) allocator.Realloc(retval, allocSize); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
250 |
if (ptr == NULL) |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
251 |
{ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
252 |
if (retval != NULL) |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
253 |
allocator.Free(retval); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
254 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
255 |
} /* if */ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
256 |
|
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
257 |
retval = ptr; |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
258 |
ptr = getcwd(retval, allocSize); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
259 |
} while (ptr == NULL && errno == ERANGE); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
260 |
|
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
261 |
if (ptr == NULL && errno) |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
262 |
{ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
263 |
/* |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
264 |
* getcwd() failed for some reason, for example current |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
265 |
* directory not existing. |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
266 |
*/ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
267 |
if (retval != NULL) |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
268 |
allocator.Free(retval); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
269 |
BAIL_MACRO(ERR_NO_SUCH_FILE, NULL); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
270 |
} /* if */ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
271 |
|
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
272 |
return(retval); |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
273 |
} /* __PHYSFS_platformCurrentDir */ |
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
274 |
|
5e5e6c067413
Split out Mac OS X code from unix.c and added some Carbon-specific code...
Ryan C. Gordon <icculus@icculus.org>
parents:
846
diff
changeset
|
275 |
|
845
3f150ffcf50c
Since all the platform layers were using the same cut-and-paste of the
Ryan C. Gordon <icculus@icculus.org>
parents:
844
diff
changeset
|
276 |
int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a) |
3f150ffcf50c
Since all the platform layers were using the same cut-and-paste of the
Ryan C. Gordon <icculus@icculus.org>
parents:
844
diff
changeset
|
277 |
{ |
3f150ffcf50c
Since all the platform layers were using the same cut-and-paste of the
Ryan C. Gordon <icculus@icculus.org>
parents:
844
diff
changeset
|
278 |
return(0); /* just use malloc() and friends. */ |
3f150ffcf50c
Since all the platform layers were using the same cut-and-paste of the
Ryan C. Gordon <icculus@icculus.org>
parents:
844
diff
changeset
|
279 |
} /* __PHYSFS_platformSetDefaultAllocator */ |
3f150ffcf50c
Since all the platform layers were using the same cut-and-paste of the
Ryan C. Gordon <icculus@icculus.org>
parents:
844
diff
changeset
|
280 |
|
3f150ffcf50c
Since all the platform layers were using the same cut-and-paste of the
Ryan C. Gordon <icculus@icculus.org>
parents:
844
diff
changeset
|
281 |
|
396
15f7ccfdd89f
Whoops; the pthread-disabling condition was flipped. Fixed.
Ryan C. Gordon <icculus@icculus.org>
parents:
392
diff
changeset
|
282 |
#if (defined PHYSFS_NO_PTHREADS_SUPPORT) |
390
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
283 |
|
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
284 |
PHYSFS_uint64 __PHYSFS_platformGetThreadID(void) { return(0x0001); } |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
285 |
void *__PHYSFS_platformCreateMutex(void) { return((void *) 0x0001); } |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
286 |
void __PHYSFS_platformDestroyMutex(void *mutex) {} |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
287 |
int __PHYSFS_platformGrabMutex(void *mutex) { return(1); } |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
288 |
void __PHYSFS_platformReleaseMutex(void *mutex) {} |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
289 |
|
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
290 |
#else |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
291 |
|
889
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
292 |
typedef struct |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
293 |
{ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
294 |
pthread_mutex_t mutex; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
295 |
pthread_t owner; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
296 |
PHYSFS_uint32 count; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
297 |
} PthreadMutex; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
298 |
|
452
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
299 |
/* Just in case; this is a panic value. */ |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
300 |
#if ((!defined SIZEOF_INT) || (SIZEOF_INT <= 0)) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
301 |
# define SIZEOF_INT 4 |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
302 |
#endif |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
303 |
|
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
304 |
#if (SIZEOF_INT == 4) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
305 |
# define PHTREAD_TO_UI64(thr) ( (PHYSFS_uint64) ((PHYSFS_uint32) (thr)) ) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
306 |
#elif (SIZEOF_INT == 2) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
307 |
# define PHTREAD_TO_UI64(thr) ( (PHYSFS_uint64) ((PHYSFS_uint16) (thr)) ) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
308 |
#elif (SIZEOF_INT == 1) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
309 |
# define PHTREAD_TO_UI64(thr) ( (PHYSFS_uint64) ((PHYSFS_uint8) (thr)) ) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
310 |
#else |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
311 |
# define PHTREAD_TO_UI64(thr) ((PHYSFS_uint64) (thr)) |
89578e99ba6e
Attempt to fix pthread-to-ui64 cast issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
396
diff
changeset
|
312 |
#endif |
392
bcc8e4dca868
First step towards getting __PHYSFS_platformGetThreadID() to work universally.
Ryan C. Gordon <icculus@icculus.org>
parents:
390
diff
changeset
|
313 |
|
390
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
314 |
PHYSFS_uint64 __PHYSFS_platformGetThreadID(void) |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
315 |
{ |
392
bcc8e4dca868
First step towards getting __PHYSFS_platformGetThreadID() to work universally.
Ryan C. Gordon <icculus@icculus.org>
parents:
390
diff
changeset
|
316 |
return(PHTREAD_TO_UI64(pthread_self())); |
390
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
317 |
} /* __PHYSFS_platformGetThreadID */ |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
318 |
|
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
319 |
|
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
320 |
void *__PHYSFS_platformCreateMutex(void) |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
321 |
{ |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
322 |
int rc; |
889
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
323 |
PthreadMutex *m = (PthreadMutex *) allocator.Malloc(sizeof (PthreadMutex)); |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
324 |
BAIL_IF_MACRO(m == NULL, ERR_OUT_OF_MEMORY, NULL); |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
325 |
rc = pthread_mutex_init(&m->mutex, NULL); |
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
326 |
if (rc != 0) |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
327 |
{ |
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
328 |
allocator.Free(m); |
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
329 |
BAIL_MACRO(strerror(rc), NULL); |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
330 |
} /* if */ |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
331 |
|
889
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
332 |
m->count = 0; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
333 |
m->owner = (pthread_t) 0xDEADBEEF; |
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
334 |
return((void *) m); |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
335 |
} /* __PHYSFS_platformCreateMutex */ |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
336 |
|
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
337 |
|
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
338 |
void __PHYSFS_platformDestroyMutex(void *mutex) |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
339 |
{ |
889
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
340 |
PthreadMutex *m = (PthreadMutex *) mutex; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
341 |
|
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
342 |
/* Destroying a locked mutex is a bug, but we'll try to be helpful. */ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
343 |
if ((m->owner == pthread_self()) && (m->count > 0)) |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
344 |
pthread_mutex_unlock(&m->mutex); |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
345 |
|
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
346 |
pthread_mutex_destroy(&m->mutex); |
757
50e6457e78be
Made unix mutexes recursive.
Ryan C. Gordon <icculus@icculus.org>
parents:
691
diff
changeset
|
347 |
allocator.Free(m); |
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
348 |
} /* __PHYSFS_platformDestroyMutex */ |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
349 |
|
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
350 |
|
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
351 |
int __PHYSFS_platformGrabMutex(void *mutex) |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
352 |
{ |
889
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
353 |
PthreadMutex *m = (PthreadMutex *) mutex; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
354 |
pthread_t tid = pthread_self(); |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
355 |
if (m->owner != tid) |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
356 |
{ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
357 |
if (pthread_mutex_lock(&m->mutex) != 0) |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
358 |
return(0); |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
359 |
m->owner = tid; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
360 |
} /* if */ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
361 |
|
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
362 |
m->count++; |
757
50e6457e78be
Made unix mutexes recursive.
Ryan C. Gordon <icculus@icculus.org>
parents:
691
diff
changeset
|
363 |
return(1); |
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
364 |
} /* __PHYSFS_platformGrabMutex */ |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
365 |
|
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
366 |
|
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
367 |
void __PHYSFS_platformReleaseMutex(void *mutex) |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
368 |
{ |
889
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
369 |
PthreadMutex *m = (PthreadMutex *) mutex; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
370 |
if (m->owner == pthread_self()) |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
371 |
{ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
372 |
if (--m->count == 0) |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
373 |
{ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
374 |
m->owner = (pthread_t) 0xDEADBEEF; |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
375 |
pthread_mutex_unlock(&m->mutex); |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
376 |
} /* if */ |
0364fa566f29
Reverted change r857:858...recursive mutex APIs sort of suck for portability.
Ryan C. Gordon <icculus@icculus.org>
parents:
847
diff
changeset
|
377 |
} /* if */ |
145
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
378 |
} /* __PHYSFS_platformReleaseMutex */ |
d6385584f6c4
First shot at thread-safety.
Ryan C. Gordon <icculus@icculus.org>
parents:
137
diff
changeset
|
379 |
|
390
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
380 |
#endif /* !PHYSFS_NO_PTHREADS_SUPPORT */ |
6649d6caecf2
Stub code for platforms without functional pthreads.
Ryan C. Gordon <icculus@icculus.org>
parents:
381
diff
changeset
|
381 |
|
818
e36f23f49042
Now compiles everything whether we need it or not, removing whole files with
Ryan C. Gordon <icculus@icculus.org>
parents:
809
diff
changeset
|
382 |
#endif /* PHYSFS_PLATFORM_UNIX */ |
233
1b74a7df1ca6
Split some of the unix.c code out to posix.c for BeOS to use.
Ryan C. Gordon <icculus@icculus.org>
parents:
225
diff
changeset
|
383 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
384 |
/* end of unix.c ... */ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
385 |