author | Ryan C. Gordon <icculus@icculus.org> |
Wed, 21 Mar 2012 23:30:50 -0400 | |
changeset 1242 | 1e6db80d2393 |
parent 1240 | 22d4d1bd4e21 |
child 1246 | 4fa9fe3e0b52 |
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 |
|
1236
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
24 |
#if PHYSFS_PLATFORM_LINUX && !defined(PHYSFS_HAVE_MNTENT_H) |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
25 |
#define PHYSFS_HAVE_MNTENT_H 1 |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
26 |
#elif PHYSFS_PLATFORM_SOLARIS && !defined(PHYSFS_HAVE_SYS_MNTTAB_H) |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
27 |
#define PHYSFS_HAVE_SYS_MNTTAB_H 1 |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
28 |
#elif PHYSFS_PLATFORM_BSD && !defined(PHYSFS_HAVE_SYS_UCRED_H) |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
29 |
#define PHYSFS_HAVE_SYS_UCRED_H 1 |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
diff
changeset
|
30 |
#endif |
ad779490c5b6
Try to make a sane default for CD detection path by platform.
Ryan C. Gordon <icculus@icculus.org>
parents:
1230
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 |
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
|
36 |
# include <sys/mount.h> |
351
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
37 |
# include <sys/ucred.h> |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
38 |
#endif |
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
39 |
|
bc4fa7896225
Generalized CD-ROM routine selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
347
diff
changeset
|
40 |
#ifdef PHYSFS_HAVE_MNTENT_H |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
41 |
#include <mntent.h> |
188 | 42 |
#endif |
43 |
||
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
|
44 |
#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
|
45 |
#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
|
46 |
#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
|
47 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
48 |
#include "physfs_internal.h" |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
49 |
|
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
50 |
int __PHYSFS_platformInit(void) |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
51 |
{ |
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
|
52 |
return 1; /* always succeed. */ |
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
53 |
} /* __PHYSFS_platformInit */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
54 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
55 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
56 |
int __PHYSFS_platformDeinit(void) |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
57 |
{ |
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
|
58 |
return 1; /* always succeed. */ |
130
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
59 |
} /* __PHYSFS_platformDeinit */ |
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
60 |
|
2deec3eb7430
Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit().
Ryan C. Gordon <icculus@icculus.org>
parents:
117
diff
changeset
|
61 |
|
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
|
62 |
/* 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
|
63 |
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
|
64 |
{ |
987
ae7b616e7d0e
Merge all the Unix __PHYSFS_platformDetectAvailableCDs() funcs into one.
Ryan C. Gordon <icculus@icculus.org>
parents:
972
diff
changeset
|
65 |
#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
|
66 |
/* 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
|
67 |
|
570
b331437b9ec0
Rewrote MacOSX/Darwin CD detection to use IOKit, for accurate results.
Ryan C. Gordon <icculus@icculus.org>
parents:
520
diff
changeset
|
68 |
#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
|
69 |
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
|
70 |
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
|
71 |
int mounts = getmntinfo(&mntbufp, MNT_WAIT); |
117
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 |
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
|
74 |
{ |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
75 |
int add_it = 0; |
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
76 |
|
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
|
77 |
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
|
78 |
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
|
79 |
else if (strcmp( mntbufp[i].f_fstypename, "cd9660") == 0) |
191 | 80 |
add_it = 1; |
225 | 81 |
|
82 |
/* add other mount types here */ |
|
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
83 |
|
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
84 |
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
|
85 |
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
|
86 |
} /* for */ |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
87 |
|
570
b331437b9ec0
Rewrote MacOSX/Darwin CD detection to use IOKit, for accurate results.
Ryan C. Gordon <icculus@icculus.org>
parents:
520
diff
changeset
|
88 |
#elif (defined PHYSFS_HAVE_MNTENT_H) |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
89 |
FILE *mounts = NULL; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
90 |
struct mntent *ent = NULL; |
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 |
mounts = setmntent("/etc/mtab", "r"); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
93 |
BAIL_IF_MACRO(mounts == NULL, PHYSFS_ERR_IO, /*return void*/); |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
94 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
95 |
while ( (ent = getmntent(mounts)) != NULL ) |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
96 |
{ |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
97 |
int add_it = 0; |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
98 |
if (strcmp(ent->mnt_type, "iso9660") == 0) |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
99 |
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
|
100 |
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
|
101 |
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
|
102 |
|
21166622a4d4
Add some more filesystem types that might be CDs or DVDs.
Ryan C. Gordon <icculus@icculus.org>
parents:
1062
diff
changeset
|
103 |
/* !!! 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
|
104 |
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
|
105 |
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
|
106 |
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
|
107 |
add_it = 1; |
225 | 108 |
|
1059 | 109 |
/* !!! FIXME: udf? automount? */ |
110 |
||
225 | 111 |
/* 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
|
112 |
|
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
113 |
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
|
114 |
cb(data, ent->mnt_dir); |
63
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
115 |
} /* while */ |
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
116 |
|
cb9a4714b844
Added CD-ROM detection code.
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
117 |
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
|
118 |
|
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 |
#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
|
120 |
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
|
121 |
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
|
122 |
|
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
123 |
BAIL_IF_MACRO(mounts == NULL, PHYSFS_ERR_IO, /*return void*/); |
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
|
124 |
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
|
125 |
{ |
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 |
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
|
127 |
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
|
128 |
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
|
129 |
|
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 |
/* 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
|
131 |
|
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 |
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
|
133 |
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
|
134 |
} /* 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
|
135 |
|
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 |
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
|
137 |
|
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
|
138 |
#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
|
139 |
#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
|
140 |
#endif |
117
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
141 |
} /* __PHYSFS_platformDetectAvailableCDs */ |
55ae10d7f2a9
Darwin support by Patrick Stein.
Ryan C. Gordon <icculus@icculus.org>
parents:
115
diff
changeset
|
142 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
143 |
|
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
|
144 |
/* 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
|
145 |
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
|
146 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
147 |
|
225 | 148 |
/* |
149 |
* See where program (bin) resides in the $PATH specified by (envr). |
|
150 |
* returns a copy of the first element in envr that contains it, or NULL |
|
151 |
* if it doesn't exist or there were other problems. PHYSFS_SetError() is |
|
152 |
* called if we have a problem. |
|
153 |
* |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
154 |
* (envr) will be scribbled over, and you are expected to allocator.Free() the |
225 | 155 |
* return value when you're done with it. |
156 |
*/ |
|
157 |
static char *findBinaryInPath(const char *bin, char *envr) |
|
158 |
{ |
|
159 |
size_t alloc_size = 0; |
|
160 |
char *exe = NULL; |
|
161 |
char *start = envr; |
|
162 |
char *ptr; |
|
163 |
||
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
164 |
assert(bin != NULL); |
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
165 |
assert(envr != NULL); |
225 | 166 |
|
167 |
do |
|
168 |
{ |
|
169 |
size_t size; |
|
170 |
ptr = strchr(start, ':'); /* find next $PATH separator. */ |
|
171 |
if (ptr) |
|
172 |
*ptr = '\0'; |
|
173 |
||
174 |
size = strlen(start) + strlen(bin) + 2; |
|
175 |
if (size > alloc_size) |
|
176 |
{ |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
678
diff
changeset
|
177 |
char *x = (char *) allocator.Realloc(exe, size); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
178 |
if (!x) |
225 | 179 |
{ |
180 |
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
|
181 |
allocator.Free(exe); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
182 |
BAIL_MACRO(PHYSFS_ERR_OUT_OF_MEMORY, NULL); |
225 | 183 |
} /* if */ |
184 |
||
185 |
alloc_size = size; |
|
186 |
exe = x; |
|
187 |
} /* if */ |
|
188 |
||
189 |
/* build full binary path... */ |
|
190 |
strcpy(exe, start); |
|
505
c7f7f234a156
Minor fix for odd PATH entries.
Ryan C. Gordon <icculus@icculus.org>
parents:
452
diff
changeset
|
191 |
if ((exe[0] == '\0') || (exe[strlen(exe) - 1] != '/')) |
225 | 192 |
strcat(exe, "/"); |
193 |
strcat(exe, bin); |
|
194 |
||
195 |
if (access(exe, X_OK) == 0) /* Exists as executable? We're done. */ |
|
196 |
{ |
|
197 |
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
|
198 |
return exe; |
225 | 199 |
} /* if */ |
200 |
||
201 |
start = ptr + 1; /* start points to beginning of next element. */ |
|
202 |
} while (ptr != NULL); |
|
203 |
||
204 |
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
|
205 |
allocator.Free(exe); |
225 | 206 |
|
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
|
207 |
return NULL; /* doesn't exist in path. */ |
225 | 208 |
} /* findBinaryInPath */ |
209 |
||
210 |
||
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
211 |
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
|
212 |
{ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
213 |
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
|
214 |
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
|
215 |
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
|
216 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
217 |
while (1) |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
218 |
{ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
219 |
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
|
220 |
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
|
221 |
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
|
222 |
retval = ptr; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
223 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
224 |
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
|
225 |
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
|
226 |
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
|
227 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
228 |
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
|
229 |
{ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
230 |
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
|
231 |
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
|
232 |
} /* else if */ |
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 |
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
|
235 |
} /* while */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
236 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
237 |
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
|
238 |
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
|
239 |
return NULL; |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
240 |
} /* readSymLink */ |
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
241 |
|
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
242 |
|
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
243 |
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
|
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 |
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
|
246 |
char *envr = NULL; |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
247 |
|
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
|
248 |
/* 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
|
249 |
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
|
250 |
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
|
251 |
|
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
|
252 |
/* |
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 |
* 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
|
254 |
* /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
|
255 |
* 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
|
256 |
*/ |
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
257 |
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
|
258 |
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
|
259 |
{ |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
260 |
/* 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
|
261 |
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
|
262 |
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
|
263 |
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
|
264 |
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
|
265 |
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
|
266 |
} /* if */ |
a28d30d275e2
Try /proc/$PID/exe if /proc/self/exe doesn't work out.
Ryan C. Gordon <icculus@icculus.org>
parents:
1002
diff
changeset
|
267 |
|
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
268 |
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
|
269 |
{ |
1001
b0c6f2f4f361
Fixed wrong readlink() usage (lstat() doesn't report dest link size!).
Ryan C. Gordon <icculus@icculus.org>
parents:
995
diff
changeset
|
270 |
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
|
271 |
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
|
272 |
*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
|
273 |
} /* if */ |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
274 |
|
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
|
275 |
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
|
276 |
{ |
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 |
/* 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
|
278 |
envr = __PHYSFS_platformCopyEnvironmentVariable("PATH"); |
1240
22d4d1bd4e21
Reworked the error reporting API. Now we use error codes instead of strings.
Ryan C. Gordon <icculus@icculus.org>
parents:
1236
diff
changeset
|
279 |
BAIL_IF_MACRO(!envr, ERRPASS, NULL); |
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
|
280 |
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
|
281 |
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
|
282 |
} /* 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
|
283 |
|
1002
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
284 |
if (retval != NULL) |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
285 |
{ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
286 |
/* try to shrink buffer... */ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
287 |
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
|
288 |
if (ptr != NULL) |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
289 |
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
|
290 |
} /* if */ |
001380a457a0
Try to shrink returned buffer's allocation.
Ryan C. Gordon <icculus@icculus.org>
parents:
1001
diff
changeset
|
291 |
|
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
|
292 |
return retval; |
23
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
293 |
} /* __PHYSFS_platformCalcBaseDir */ |
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
294 |
|
bd6ba9c8717c
Initial debugging: dropped PhysicsFS routines into the Build engine,
Ryan C. Gordon <icculus@icculus.org>
parents:
20
diff
changeset
|
295 |
|
1242
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
296 |
char *__PHYSFS_platformCalcPrefDir(const char *org, const char *app) |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
297 |
{ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
298 |
/* |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
299 |
* We use XDG's base directory spec, even if you're not on Linux. |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
300 |
* This isn't strictly correct, but the results are relatively sane |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
301 |
* in any case. |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
302 |
* |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
303 |
* http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
304 |
*/ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
305 |
const char *envr = getenv("XDG_DATA_HOME"); |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
306 |
const char *append = "/"; |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
307 |
char *retval = NULL; |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
308 |
size_t len = 0; |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
309 |
|
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
310 |
if (!envr) |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
311 |
{ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
312 |
/* You end up with "$HOME/.local/share/Game Name 2" */ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
313 |
envr = __PHYSFS_getUserDir(); |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
314 |
BAIL_IF_MACRO(!envr, ERRPASS, NULL); /* oh well. */ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
315 |
append = ".local/share/"; |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
316 |
} /* if */ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
317 |
|
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
318 |
len = strlen(envr) + strlen(append) + strlen(app) + 1; |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
319 |
retval = (char *) allocator.Malloc(len); |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
320 |
BAIL_IF_MACRO(!retval, PHYSFS_ERR_OUT_OF_MEMORY, NULL); |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
321 |
snprintf(retval, len, "%s%s%s", envr, append, app); |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
322 |
return retval; |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
323 |
} /* __PHYSFS_platformCalcPrefDir */ |
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
324 |
|
1e6db80d2393
Added PHYSFS_getPrefDir().
Ryan C. Gordon <icculus@icculus.org>
parents:
1240
diff
changeset
|
325 |
|
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
|
326 |
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
|
327 |
{ |
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
|
328 |
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
|
329 |
} /* __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
|
330 |
|
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
|
331 |
#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
|
332 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
333 |
/* end of unix.c ... */ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
334 |