Skip to content

Latest commit

 

History

History
210 lines (179 loc) · 5.84 KB

SDL_sysfilesystem.c

File metadata and controls

210 lines (179 loc) · 5.84 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
#ifdef SDL_FILESYSTEM_UNIX
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* System dependent filesystem routines */
Aug 29, 2013
Aug 29, 2013
28
29
#include <errno.h>
#include <stdio.h>
Aug 24, 2013
Aug 24, 2013
31
#include <stdlib.h>
Aug 21, 2013
Aug 21, 2013
32
33
#include <sys/stat.h>
#include <sys/types.h>
Aug 24, 2013
Aug 24, 2013
34
#include <limits.h>
Aug 24, 2013
Aug 24, 2013
36
37
38
39
#ifdef __FREEBSD__
#include <sys/sysctl.h>
#endif
40
41
42
43
#include "SDL_error.h"
#include "SDL_stdinc.h"
#include "SDL_filesystem.h"
Aug 21, 2013
Aug 21, 2013
44
45
static char *
readSymLink(const char *path)
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
char *retval = NULL;
ssize_t len = 64;
ssize_t rc = -1;
while (1)
{
char *ptr = (char *) SDL_realloc(retval, (size_t) len);
if (ptr == NULL) {
SDL_OutOfMemory();
break;
}
retval = ptr;
rc = readlink(path, retval, len);
if (rc == -1) {
break; /* not a symlink, i/o error, etc. */
} else if (rc < len) {
retval[rc] = '\0'; /* readlink doesn't null-terminate. */
return retval; /* we're good to go. */
}
len *= 2; /* grow buffer, try again. */
}
Aug 29, 2013
Aug 29, 2013
72
SDL_free(retval);
73
74
75
76
77
78
79
80
81
return NULL;
}
char *
SDL_GetBasePath(void)
{
char *retval = NULL;
Aug 24, 2013
Aug 24, 2013
82
83
84
#if defined(__FREEBSD__)
char fullpath[PATH_MAX];
size_t buflen = sizeof (fullpath);
Aug 29, 2013
Aug 29, 2013
85
86
const int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
if (sysctl(mib, SDL_arraysize(mib), fullpath, &buflen, NULL, 0) != -1) {
Aug 24, 2013
Aug 24, 2013
87
88
89
90
91
92
93
94
95
retval = SDL_strdup(fullpath);
if (!retval) {
SDL_OutOfMemory();
return NULL;
}
}
#elif defined(__SOLARIS__)
const char *path = getexecname();
if ((path != NULL) && (path[0] == '/')) { /* must be absolute path... */
Aug 24, 2013
Aug 24, 2013
96
retval = SDL_strdup(path);
Aug 24, 2013
Aug 24, 2013
97
98
99
100
101
102
103
if (!retval) {
SDL_OutOfMemory();
return NULL;
}
}
#endif
104
/* is a Linux-style /proc filesystem available? */
Aug 24, 2013
Aug 24, 2013
105
if (!retval && (access("/proc", F_OK) == 0)) {
Aug 29, 2013
Aug 29, 2013
106
#if defined(__FREEBSD__)
Aug 24, 2013
Aug 24, 2013
107
retval = readSymLink("/proc/curproc/file");
Aug 29, 2013
Aug 29, 2013
108
#elif defined(__NETBSD__)
Aug 24, 2013
Aug 24, 2013
109
retval = readSymLink("/proc/curproc/exe");
Aug 29, 2013
Aug 29, 2013
110
#else
Aug 24, 2013
Aug 24, 2013
111
retval = readSymLink("/proc/self/exe"); /* linux. */
Aug 29, 2013
Aug 29, 2013
112
#endif
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
if (retval == NULL) {
/* older kernels don't have /proc/self ... try PID version... */
char path[64];
const int rc = (int) SDL_snprintf(path, sizeof(path),
"/proc/%llu/exe",
(unsigned long long) getpid());
if ( (rc > 0) && (rc < sizeof(path)) ) {
retval = readSymLink(path);
}
}
}
/* If we had access to argv[0] here, we could check it for a path,
or troll through $PATH looking for it, too. */
if (retval != NULL) { /* chop off filename. */
char *ptr = SDL_strrchr(retval, '/');
if (ptr != NULL) {
*(ptr+1) = '\0';
} else { /* shouldn't happen, but just in case... */
SDL_free(retval);
retval = NULL;
}
}
if (retval != NULL) {
/* try to shrink buffer... */
char *ptr = (char *) SDL_realloc(retval, strlen(retval) + 1);
if (ptr != NULL)
retval = ptr; /* oh well if it failed. */
}
return retval;
}
char *
SDL_GetPrefPath(const char *org, const char *app)
{
/*
* We use XDG's base directory spec, even if you're not on Linux.
* This isn't strictly correct, but the results are relatively sane
* in any case.
*
* http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
*/
const char *envr = SDL_getenv("XDG_DATA_HOME");
Aug 29, 2013
Aug 29, 2013
159
const char *append;
160
161
162
163
164
165
166
167
168
169
170
171
char *retval = NULL;
char *ptr = NULL;
size_t len = 0;
if (!envr) {
/* You end up with "$HOME/.local/share/Game Name 2" */
envr = SDL_getenv("HOME");
if (!envr) {
/* we could take heroic measures with /etc/passwd, but oh well. */
SDL_SetError("neither XDG_DATA_HOME nor HOME environment is set");
return NULL;
}
Aug 29, 2013
Aug 29, 2013
172
append = "/.local/share/";
Aug 24, 2013
Aug 24, 2013
173
} else {
Aug 29, 2013
Aug 29, 2013
174
append = "/";
Aug 29, 2013
Aug 29, 2013
175
}
Aug 29, 2013
Aug 29, 2013
177
178
179
180
181
len = SDL_strlen(envr);
if (envr[len - 1] == '/')
append += 1;
len += SDL_strlen(append) + SDL_strlen(app) + 2;
182
183
184
185
186
187
188
189
190
191
192
retval = (char *) SDL_malloc(len);
if (!retval) {
SDL_OutOfMemory();
return NULL;
}
SDL_snprintf(retval, len, "%s%s%s/", envr, append, app);
for (ptr = retval+1; *ptr; ptr++) {
if (*ptr == '/') {
*ptr = '\0';
Aug 29, 2013
Aug 29, 2013
193
194
if (mkdir(retval, 0700) != 0 && errno != EEXIST)
goto error;
195
196
197
*ptr = '/';
}
}
Aug 29, 2013
Aug 29, 2013
198
199
200
201
202
203
if (mkdir(retval, 0700) != 0 && errno != EEXIST) {
error:
SDL_SetError("Couldn't create directory '%s': ", retval, strerror(errno));
SDL_free(retval);
return NULL;
}
204
205
206
207
208
209
210
return retval;
}
#endif /* SDL_FILESYSTEM_UNIX */
/* vi: set ts=4 sw=4 expandtab: */