-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathpsp-config.c
290 lines (251 loc) · 5.93 KB
/
psp-config.c
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#if defined(__MINGW32__) && !defined(__CYGWIN__)
#include <windows.h>
#endif
#include <stdio.h>
#include <getopt.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define PSPDEV_ENV "PSPDEV"
#define PATH_ENV "PATH"
#ifndef MAX_PATH
#define MAX_PATH 256
#endif
/***** Might need to change these for different platforms */
#define PATH_SEP ":"
#define DIR_SEP '/'
#define DIR_SEP_STR "/"
/* The suffix to the path to strip off, if this is not there then we have an error */
#ifdef __MINGW32__
#define PSPDEV_PATH_SUFFIX "/bin/psp-config.exe"
#else
#define PSPDEV_PATH_SUFFIX "/bin/psp-config"
#endif
/************************/
enum PspConfigMode
{
PSP_CONFIG_UNKNOWN,
PSP_CONFIG_PSPSDK_PATH,
PSP_CONFIG_PSPDEV_PATH,
PSP_CONFIG_PSP_PREFIX,
};
/* Specifies that the current usage is to the print the pspsdk path */
static enum PspConfigMode g_configmode;
static struct option arg_opts[] =
{
{"pspsdk-path", no_argument, NULL, 'p'},
{"pspdev-path", no_argument, NULL, 'd'},
{"psp-prefix", no_argument, NULL, 'P'},
{ NULL, 0, NULL, 0 }
};
/* Process the arguments */
int process_args(int argc, char **argv)
{
int ret = 0;
int ch;
g_configmode = PSP_CONFIG_UNKNOWN;
ch = getopt_long(argc, argv, "pdP", arg_opts, NULL);
while(ch != -1)
{
switch(ch)
{
case 'p' : g_configmode = PSP_CONFIG_PSPSDK_PATH;
ret = 1;
break;
case 'd' : g_configmode = PSP_CONFIG_PSPDEV_PATH;
ret = 1;
break;
case 'P' : g_configmode = PSP_CONFIG_PSP_PREFIX;
ret = 1;
break;
default : fprintf(stderr, "Invalid option '%c'\n", ch);
break;
};
ch = getopt_long(argc, argv, "p", arg_opts, NULL);
}
return ret;
}
void print_help(void)
{
fprintf(stderr, "Usage: psp-config [opts]\n");
fprintf(stderr, "Options:\n");
fprintf(stderr, "-p, --pspsdk-path : Print the base directory of PSPSDK\n");
fprintf(stderr, "-d, --pspdev-path : Print the base install directory\n");
fprintf(stderr, "-P, --psp-prefix : Print the prefix of PSP-hosted software\n");
}
void normalize_path (char *out)
{
int i;
int j;
/* Convert "//" to "/" */
for (i = 0; out[i + 1]; i++) {
if (out[i] == '/' && out[i + 1] == '/') {
for (j = i + 1; out[j]; j++) {
out[j] = out[j + 1];
}
i--;
}
}
}
/* Find the path to the pspdev dir (e.g. /usr/local/pspdev) */
char *find_pspdev_path(char *name)
{
static char path[MAX_PATH];
int found = 0;
/* Check if name is an absolute path, if so our job is done */
#ifdef __MINGW32__
char *writableName = malloc(strlen(name) + 2);
char *ptr = writableName;
char temp;
while (*(name)) {
temp = *(name++);
if (temp == '\\') temp = '/';
*(ptr++) = temp;
}
*(ptr) = '\0';
name = writableName;
#endif
if(name[0] == DIR_SEP
#ifdef __MINGW32__
|| name[1] == ':'
#endif
)
{
/* Absolute path */
strncpy(path, name, MAX_PATH);
/* Ensure NUL termination */
path[MAX_PATH-1] = 0;
found = 1;
}
else
{
/* relative path */
if(strchr(name, DIR_SEP) != NULL)
{
if(getcwd(path, MAX_PATH) != NULL)
{
strncat(path, DIR_SEP_STR, MAX_PATH-1);
strncat(path, name, MAX_PATH-1);
found = 1;
}
else
{
fprintf(stderr, "Error getting current working directory\n");
}
}
else
{
char *path_env;
/* Scan the PATH variable */
path_env = getenv(PATH_ENV);
if(path_env != NULL)
{
char *curr_tok;
char new_path[MAX_PATH];
/* Should really use the path separator from the
environment but who on earth changes it? */
curr_tok = strtok(path_env, PATH_SEP);
while(curr_tok != NULL)
{
strcpy(new_path, curr_tok);
strcat(new_path, DIR_SEP_STR);
strcat(new_path, name);
if(access(new_path, X_OK) == 0)
{
found = 1;
strcpy(path, new_path);
break;
}
curr_tok = strtok(NULL, PATH_SEP);
}
}
else
{
fprintf(stderr, "Error, couldn't get PATH environment variable\n");
}
}
}
normalize_path(path);
char *result = NULL;
if(found)
{
int suffix_len;
int path_len;
suffix_len = strlen(PSPDEV_PATH_SUFFIX);
path_len = strlen(path);
if(suffix_len <= path_len)
{
if(strcmp(PSPDEV_PATH_SUFFIX, &path[path_len - suffix_len]) == 0)
{
/* Oki valid path add a NUL */
path[path_len - suffix_len] = 0;
result = path;
}
else
{
fprintf(stderr, "Error, invalid suffix on the end of the path. Should be %s\n", PSPDEV_PATH_SUFFIX);
}
}
else
{
fprintf(stderr, "Error, path not large enough for creating the PSPSDK path\n");
}
}
#ifdef __MINGW32__
free(writableName);
#endif
return result;
}
void print_path(char *name)
{
char *pspdev_env;
pspdev_env = getenv(PSPDEV_ENV);
if(pspdev_env == NULL)
{
/* Could not find the PSPDEV environment variable */
/* Let's try and find where psp-config is */
pspdev_env = find_pspdev_path(name);
}
if (pspdev_env != NULL) {
switch(g_configmode)
{
case PSP_CONFIG_PSPSDK_PATH : printf("%s%c%s\n", pspdev_env, DIR_SEP, PSPSDK_TOPDIR);
break;
case PSP_CONFIG_PSPDEV_PATH : printf("%s\n", pspdev_env);
break;
case PSP_CONFIG_PSP_PREFIX : printf("%s%c%s\n", pspdev_env, DIR_SEP, "psp");
break;
default : fprintf(stderr, "Error, invalida configuration mode\n");
break;
};
}
}
int main(int argc, char **argv)
{
#if defined(__MINGW32__) && !defined(__CYGWIN__)
// this will store the fully-qualified path
char psp_config_path[MAX_PATH] = "";
// fetch the path of the executable
if(GetModuleFileName(0, psp_config_path, sizeof(psp_config_path) - 1) == 0)
{
// fall back
strcpy(psp_config_path, argv[0]);
}
#endif
if(process_args(argc, argv))
{
#if defined(__MINGW32__) && !defined(__CYGWIN__)
print_path(psp_config_path);
#else
print_path(argv[0]);
#endif
}
else
{
print_help();
}
return 0;
}