2006-03-28 22:23:10 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <string.h>
|
2006-03-28 22:23:10 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2010-08-18 00:11:33 +04:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
2008-09-02 19:07:04 +04:00
|
|
|
|
2006-03-28 22:23:10 +04:00
|
|
|
int fileExists(char* filename)
|
|
|
|
{
|
|
|
|
#ifndef R_OK
|
2016-05-16 17:34:04 +03:00
|
|
|
#define R_OK 04
|
2006-03-28 22:23:10 +04:00
|
|
|
#endif
|
2016-05-16 17:34:04 +03:00
|
|
|
if (access(filename, R_OK) != 0) {
|
2006-03-28 22:23:10 +04:00
|
|
|
printf("Cannot find file: %s\n", filename);
|
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-28 22:23:10 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int findBundleFile(char* exec, const char* file)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
char* nexec = strdup(exec);
|
|
|
|
char* fpath = (char*)malloc(strlen(exec) + 100);
|
|
|
|
int cc;
|
|
|
|
int cnt = 0;
|
|
|
|
printf("Process executable name: %s\n", exec);
|
|
|
|
|
|
|
|
// Remove the executable name and directory name
|
2016-05-16 17:34:04 +03:00
|
|
|
for (cc = strlen(nexec) - 1; cc > 0; cc--) {
|
|
|
|
if (nexec[cc] == '/') {
|
2006-03-28 22:23:10 +04:00
|
|
|
nexec[cc] = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cnt == 1) {
|
2006-03-28 22:23:10 +04:00
|
|
|
break;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
cnt++;
|
2006-03-28 22:23:10 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-28 22:23:10 +04:00
|
|
|
printf("Process executable path: %s\n", nexec);
|
|
|
|
sprintf(fpath, "%s/%s", nexec, file);
|
|
|
|
printf("Check for file: %s\n", fpath);
|
|
|
|
res = fileExists(fpath);
|
|
|
|
free(nexec);
|
|
|
|
free(fpath);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
int foo(char* exec)
|
2006-03-28 22:23:10 +04:00
|
|
|
{
|
2010-08-18 00:11:33 +04:00
|
|
|
// Call a CoreFoundation function...
|
2008-09-02 19:07:04 +04:00
|
|
|
//
|
|
|
|
CFBundleRef br = CFBundleGetMainBundle();
|
2016-05-16 17:34:04 +03:00
|
|
|
(void)br;
|
2008-09-02 19:07:04 +04:00
|
|
|
|
2006-03-28 22:23:10 +04:00
|
|
|
int res1 = findBundleFile(exec, "Resources/randomResourceFile.plist");
|
|
|
|
int res2 = findBundleFile(exec, "MacOS/SomeRandomFile.txt");
|
2014-02-07 22:34:33 +04:00
|
|
|
int res3 = findBundleFile(exec, "MacOS/README.rst");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!res1 || !res2 || !res3) {
|
2006-03-28 22:23:10 +04:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-28 22:23:10 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|