author | Ryan C. Gordon <icculus@icculus.org> |
Sun, 11 Mar 2012 03:39:57 -0400 | |
changeset 1210 | cf758fec0273 |
parent 1173 | 77b2df665bd1 |
child 1211 | 09280603503b |
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 |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
14 |
#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
|
15 |
#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
|
16 |
#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
|
17 |
#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
|
18 |
#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
|
19 |
#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
|
20 |
#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
|
21 |
#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
|
22 |
#include <errno.h> |
188 | 23 |
|
351
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
24 |
#ifdef PHYSFS_HAVE_SYS_UCRED_H |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
25 |
# ifdef PHYSFS_HAVE_MNTENT_H |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
26 |
# 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
|
27 |
# endif |
995
de210c7e2b09
I think sys/mount.h is only needed in the ucred.h path.
Ryan C. Gordon <icculus@icculus.org>
parents:
990
diff
changeset
|
28 |
# include <sys/mount.h> |
351
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
29 |
# include <sys/ucred.h> |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
30 |
#endif |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
31 |
|
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
32 |
#ifdef PHYSFS_HAVE_MNTENT_H |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
33 |
#include <mntent.h> |
188 | 34 |
#endif |
35 |
||
990
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
36 |
#ifdef PHYSFS_HAVE_SYS_MNTTAB_H |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
37 |
#include <sys/mnttab.h> |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
38 |
#endif |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
39 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
40 |
#include "physfs_internal.h" |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
41 |
|
1062
a70235520141
Fix for the Hurd, from the debian project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1059
diff
changeset
|
42 |
/* !!! FIXME: we should probably remove MAXPATHLEN entirely, if we can. */ |
a70235520141
Fix for the Hurd, from the debian project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1059
diff
changeset
|
43 |
#ifndef MAXPATHLEN |
a70235520141
Fix for the Hurd, from the debian project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1059
diff
changeset
|
44 |
#define MAXPATHLEN 1024 |
a70235520141
Fix for the Hurd, from the debian project.
Ryan C. Gordon <icculus@icculus.org>
parents:
1059
diff
changeset
|
45 |
#endif |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
46 |
|
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
47 |
int __PHYSFS_platformInit(void) |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
48 |
{ |
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
49 |
return 1; /* always succeed. */ |
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
50 |
} /* __PHYSFS_platformInit */ |
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 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
53 |
int __PHYSFS_platformDeinit(void) |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
54 |
{ |
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
55 |
return 1; /* always succeed. */ |
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
56 |
} /* __PHYSFS_platformDeinit */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
57 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
58 |
|
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
|
59 |
/* 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
|
60 |
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
|
61 |
{ |
987
ae7b616e7d0e
Merge all the Unix __PHYSFS_platformDetectAvailableCDs() funcs into one.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
62 |
#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
|
63 |
/* 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
|
64 |
|
570
b331437b9ec0
Rewrote MacOSX/Darwin CD detection to use IOKit, for accurate results.
Ryan C. Gordon <icculus@icculus.org>
parents:
520
diff
changeset
|
65 |
#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
|
66 |
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
|
67 |
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
|
68 |
int mounts = getmntinfo(&mntbufp, MNT_WAIT); |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
69 |
|
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
|
70 |
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
|
71 |
{ |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
72 |
int add_it = 0; |
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
73 |
|
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
|
74 |
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
|
75 |
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
|
76 |
else if (strcmp( mntbufp[i].f_fstypename, "cd9660") == 0) |
191 | 77 |
add_it = 1; |
225 | 78 |
|
79 |
/* add other mount types here */ |
|
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
80 |
|
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
81 |
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
|
82 |
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
|
83 |
} /* for */ |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
84 |
|
570
b331437b9ec0
Rewrote MacOSX/Darwin CD detection to use IOKit, for accurate results.
Ryan C. Gordon <icculus@icculus.org>
parents:
520
diff
changeset
|
85 |
#elif (defined PHYSFS_HAVE_MNTENT_H) |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
86 |
FILE *mounts = NULL; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
87 |
struct mntent *ent = NULL; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
88 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
89 |
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
|
90 |
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
|
91 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
92 |
while ( (ent = getmntent(mounts)) != NULL ) |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
93 |
{ |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
94 |
int add_it = 0; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
95 |
if (strcmp(ent->mnt_type, "iso9660") == 0) |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
96 |
add_it = 1; |
1077
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
97 |
else if (strcmp(ent->mnt_type, "udf") == 0) |
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
98 |
add_it = 1; |
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
99 |
|
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
100 |
/* !!! FIXME: these might pick up floppy drives, right? */ |
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
101 |
else if (strcmp(ent->mnt_type, "auto") == 0) |
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
102 |
add_it = 1; |
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
103 |
else if (strcmp(ent->mnt_type, "supermount") == 0) |
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
104 |
add_it = 1; |
225 | 105 |
|
1059 | 106 |
/* !!! FIXME: udf? automount? */ |
107 |
||
225 | 108 |
/* 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
|
109 |
|
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
110 |
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
|
111 |
cb(data, ent->mnt_dir); |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
112 |
} /* while */ |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
113 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
114 |
endmntent(mounts); |
990
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
115 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
116 |
#elif (defined PHYSFS_HAVE_SYS_MNTTAB_H) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
117 |
FILE *mounts = fopen(MNTTAB, "r"); |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
118 |
struct mnttab ent; |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
119 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
120 |
BAIL_IF_MACRO(mounts == NULL, ERR_IO_ERROR, /*return void*/); |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
121 |
while (getmntent(mounts, &ent) == 0) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
122 |
{ |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
123 |
int add_it = 0; |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
124 |
if (strcmp(ent.mnt_fstype, "hsfs") == 0) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
125 |
add_it = 1; |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
126 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
127 |
/* add other mount types here */ |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
128 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
129 |
if (add_it) |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
130 |
cb(data, ent.mnt_mountp); |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
131 |
} /* while */ |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
132 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
133 |
fclose(mounts); |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
134 |
|
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
135 |
#else |
c25717b5c165
Added sys/mnttab.h CD-ROM detection. Fixes missing CD-ROM support on Solaris.
Ryan C. Gordon <icculus@icculus.org>
parents:
987
diff
changeset
|
136 |
#error Unknown platform. Should have defined PHYSFS_NO_CDROM_SUPPORT, perhaps. |
987
ae7b616e7d0e
Merge all the Unix __PHYSFS_platformDetectAvailableCDs() funcs into one.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
137 |
#endif |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
138 |
} /* __PHYSFS_platformDetectAvailableCDs */ |
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
139 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
140 |
|
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
|
141 |
/* 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
|
142 |
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
|
143 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
144 |
|
225 | 145 |
/* |
146 |
* See where program (bin) resides in the $PATH specified by (envr). |
|
147 |
* returns a copy of the first element in envr that contains it, or NULL |
|
148 |
* if it doesn't exist or there were other problems. PHYSFS_SetError() is |
|
149 |
* called if we have a problem. |
|
150 |
* |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
151 |
* (envr) will be scribbled over, and you are expected to allocator.Free() the |
225 | 152 |
* return value when you're done with it. |
153 |
*/ |
|
154 |
static char *findBinaryInPath(const char *bin, char *envr) |
|
155 |
{ |
|
156 |
size_t alloc_size = 0; |
|
157 |
char *exe = NULL; |
|
158 |
char *start = envr; |
|
159 |
char *ptr; |
|
160 |
||
161 |
BAIL_IF_MACRO(bin == NULL, ERR_INVALID_ARGUMENT, NULL); |
|
162 |
BAIL_IF_MACRO(envr == NULL, ERR_INVALID_ARGUMENT, NULL); |
|
163 |
||
164 |
do |
|
165 |
{ |
|
166 |
size_t size; |
|
167 |
ptr = strchr(start, ':'); /* find next $PATH separator. */ |
|
168 |
if (ptr) |
|
169 |
*ptr = '\0'; |
|
170 |
||
171 |
size = strlen(start) + strlen(bin) + 2; |
|
172 |
if (size > alloc_size) |
|
173 |
{ |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
174 |
char *x = (char *) allocator.Realloc(exe, size); |
225 | 175 |
if (x == NULL) |
176 |
{ |
|
177 |
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
|
178 |
allocator.Free(exe); |
225 | 179 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
180 |
} /* if */ |
|
181 |
||
182 |
alloc_size = size; |
|
183 |
exe = x; |
|
184 |
} /* if */ |
|
185 |
||
186 |
/* build full binary path... */ |
|
187 |
strcpy(exe, start); |
|
505
c7f7f234a156
Minor fix for odd PATH entries.
Ryan C. Gordon <icculus@icculus.org>
parents:
452
diff
changeset
|
188 |
if ((exe[0] == '\0') || (exe[strlen(exe) - 1] != '/')) |
225 | 189 |
strcat(exe, "/"); |
190 |
strcat(exe, bin); |
|
191 |
||
192 |
if (access(exe, X_OK) == 0) /* Exists as executable? We're done. */ |
|
193 |
{ |
|
194 |
strcpy(exe, start); /* i'm lazy. piss off. */ |
|
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
195 |
return exe; |
225 | 196 |
} /* if */ |
197 |
||
198 |
start = ptr + 1; /* start points to beginning of next element. */ |
|
199 |
} while (ptr != NULL); |
|
200 |
||
201 |
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
|
202 |
allocator.Free(exe); |
225 | 203 |
|
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
204 |
return NULL; /* doesn't exist in path. */ |
225 | 205 |
} /* findBinaryInPath */ |
206 |
||
207 |
||
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
208 |
static char *readSymLink(const char *path) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
209 |
{ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
210 |
ssize_t len = 64; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
211 |
ssize_t rc = -1; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
212 |
char *retval = NULL; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
213 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
214 |
while (1) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
215 |
{ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
216 |
char *ptr = (char *) allocator.Realloc(retval, (size_t) len); |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
217 |
if (ptr == NULL) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
218 |
break; /* out of memory. */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
219 |
retval = ptr; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
220 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
221 |
rc = readlink(path, retval, len); |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
222 |
if (rc == -1) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
223 |
break; /* not a symlink, i/o error, etc. */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
224 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
225 |
else if (rc < len) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
226 |
{ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
227 |
retval[rc] = '\0'; /* readlink doesn't null-terminate. */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
228 |
return retval; /* we're good to go. */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
229 |
} /* else if */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
230 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
231 |
len *= 2; /* grow buffer, try again. */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
232 |
} /* while */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
233 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
234 |
if (retval != NULL) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
235 |
allocator.Free(retval); |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
236 |
return NULL; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
237 |
} /* readSymLink */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
238 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
239 |
|
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
240 |
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
|
241 |
{ |
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
|
242 |
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
|
243 |
char *envr = NULL; |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
244 |
|
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
|
245 |
/* 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
|
246 |
if ( (argv0 != NULL) && (strchr(argv0, '/') != NULL) ) |
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
247 |
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
|
248 |
|
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
|
249 |
/* |
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
|
250 |
* 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
|
251 |
* /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
|
252 |
* 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
|
253 |
*/ |
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
254 |
retval = readSymLink("/proc/self/exe"); |
1003
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
255 |
if (retval == NULL) |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
256 |
{ |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
257 |
/* older kernels don't have /proc/self ... try PID version... */ |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
258 |
const unsigned long long pid = (unsigned long long) getpid(); |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
259 |
char path[64]; |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
260 |
const int rc = (int) snprintf(path,sizeof(path),"/proc/%llu/exe",pid); |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
261 |
if ( (rc > 0) && (rc < sizeof(path)) ) |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
262 |
retval = readSymLink(path); |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
263 |
} /* if */ |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
264 |
|
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
265 |
if (retval != NULL) /* chop off filename. */ |
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
|
266 |
{ |
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
267 |
char *ptr = strrchr(retval, '/'); |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
268 |
if (ptr != NULL) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
269 |
*ptr = '\0'; |
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
|
270 |
} /* if */ |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
271 |
|
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
|
272 |
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
|
273 |
{ |
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
|
274 |
/* 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
|
275 |
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
|
276 |
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
|
277 |
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
|
278 |
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
|
279 |
} /* 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
|
280 |
|
1002
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
281 |
if (retval != NULL) |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
282 |
{ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
283 |
/* try to shrink buffer... */ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
284 |
char *ptr = (char *) allocator.Realloc(retval, strlen(retval) + 1); |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
285 |
if (ptr != NULL) |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
286 |
retval = ptr; /* oh well if it failed. */ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
287 |
} /* if */ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
288 |
|
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
289 |
return retval; |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
290 |
} /* __PHYSFS_platformCalcBaseDir */ |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
291 |
|
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
292 |
|
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
293 |
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
|
294 |
{ |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
295 |
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
|
296 |
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
|
297 |
|
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
298 |
errno = 0; |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
299 |
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
|
300 |
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
|
301 |
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
|
302 |
strcpy(retval, resolved_path); |
520
a72bbf255074
Added hack for OSX bundles, from Eric Wing.
Ryan C. Gordon <icculus@icculus.org>
parents:
505
diff
changeset
|
303 |
|
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
304 |
return retval; |
39
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
305 |
} /* __PHYSFS_platformRealPath */ |
bc29e1ee7ef6
Lots of bugfixes, enhancements, and corrections due to the work on
Ryan C. Gordon <icculus@icculus.org>
parents:
28
diff
changeset
|
306 |
|
69
546a95cc5591
Updates, corrections and enhancements to get this ported to win32.
Ryan C. Gordon <icculus@icculus.org>
parents:
67
diff
changeset
|
307 |
|
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
|
308 |
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
|
309 |
{ |
1210
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
310 |
int allocSize = 64; |
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
|
311 |
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
|
312 |
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
|
313 |
|
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
|
314 |
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
|
315 |
{ |
1210
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
316 |
allocSize *= 2; |
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
|
317 |
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
|
318 |
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
|
319 |
{ |
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
|
320 |
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
|
321 |
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
|
322 |
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
|
323 |
} /* 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
|
324 |
|
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
|
325 |
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
|
326 |
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
|
327 |
} 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
|
328 |
|
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
|
329 |
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
|
330 |
{ |
1210
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
331 |
/* getcwd() failed , for example current directory not existing... */ |
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
|
332 |
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
|
333 |
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
|
334 |
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
|
335 |
} /* 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
|
336 |
|
1210
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
337 |
/* try to shrink buffer... */ |
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
338 |
ptr = (char *) allocator.Realloc(retval, strlen(retval) + 1); |
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
339 |
if (ptr != NULL) |
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
340 |
retval = ptr; /* oh well if it failed. */ |
cf758fec0273
Change how Unix version of __PHYSFS_platformCurrentDir() allocates memory.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
341 |
|
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
342 |
return retval; |
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
|
343 |
} /* __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
|
344 |
|
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
|
345 |
|
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
|
346 |
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
|
347 |
{ |
1016
957c97389257
Cleaned up returns that look like function calls for my updated coding style.
Ryan C. Gordon <icculus@icculus.org>
parents:
1012
diff
changeset
|
348 |
return 0; /* just use malloc() and friends. */ |
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
|
349 |
} /* __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
|
350 |
|
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
|
351 |
#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
|
352 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
353 |
/* end of unix.c ... */ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
354 |