2011-11-24 06:56:57 +00:00
|
|
|
/* macos.c */
|
|
|
|
/* implements Mac OS X specific functions */
|
2013-02-09 09:36:02 +00:00
|
|
|
#include <stdlib.h>
|
2013-09-17 09:18:52 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <fnmatch.h>
|
2012-09-09 16:06:44 +00:00
|
|
|
#include "dive.h"
|
2013-05-03 20:32:23 +00:00
|
|
|
#include "display.h"
|
2011-11-24 06:56:57 +00:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
2013-02-28 12:19:27 +00:00
|
|
|
#include <CoreServices/CoreServices.h>
|
2011-12-28 23:57:36 +00:00
|
|
|
#include <mach-o/dyld.h>
|
2013-03-04 01:53:43 +00:00
|
|
|
#include <sys/syslimits.h>
|
2013-12-19 13:00:50 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
2012-01-01 21:41:47 +00:00
|
|
|
|
2011-11-24 06:56:57 +00:00
|
|
|
/* macos defines CFSTR to create a CFString object from a constant,
|
|
|
|
* but no similar macros if a C string variable is supposed to be
|
|
|
|
* the argument. We add this here (hardcoding the default allocator
|
|
|
|
* and MacRoman encoding */
|
|
|
|
#define CFSTR_VAR(_var) CFStringCreateWithCStringNoCopy(kCFAllocatorDefault, \
|
|
|
|
(_var), kCFStringEncodingMacRoman, \
|
|
|
|
kCFAllocatorNull)
|
|
|
|
|
2012-01-02 14:14:42 +00:00
|
|
|
#define SUBSURFACE_PREFERENCES CFSTR("org.hohndel.subsurface")
|
2012-01-02 16:26:24 +00:00
|
|
|
#define ICON_NAME "Subsurface.icns"
|
2013-02-04 08:50:43 +00:00
|
|
|
#define UI_FONT "Arial 12"
|
2013-01-12 01:07:22 +00:00
|
|
|
|
2013-02-04 08:50:43 +00:00
|
|
|
const char system_divelist_default_font[] = "Arial 10";
|
2012-01-01 21:41:47 +00:00
|
|
|
|
2013-01-12 01:07:22 +00:00
|
|
|
const char *system_default_filename(void)
|
2012-09-09 16:06:44 +00:00
|
|
|
{
|
2013-01-12 01:07:22 +00:00
|
|
|
const char *home, *user;
|
|
|
|
char *buffer;
|
|
|
|
int len;
|
|
|
|
|
2013-10-05 07:29:09 +00:00
|
|
|
home = getenv("HOME");
|
|
|
|
user = getenv("LOGNAME");
|
2013-01-12 01:07:22 +00:00
|
|
|
len = strlen(home) + strlen(user) + 45;
|
|
|
|
buffer = malloc(len);
|
|
|
|
snprintf(buffer, len, "%s/Library/Application Support/Subsurface/%s.xml", home, user);
|
|
|
|
return buffer;
|
2012-09-09 16:06:44 +00:00
|
|
|
}
|
|
|
|
|
2013-09-16 21:04:42 +00:00
|
|
|
int enumerate_devices (device_callback_t callback, void *userdata)
|
|
|
|
{
|
|
|
|
int index = -1;
|
|
|
|
DIR *dp = NULL;
|
|
|
|
struct dirent *ep = NULL;
|
|
|
|
size_t i;
|
|
|
|
const char *dirname = "/dev";
|
|
|
|
const char *patterns[] = {
|
|
|
|
"tty.*",
|
|
|
|
"usbserial",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
dp = opendir (dirname);
|
|
|
|
if (dp == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((ep = readdir (dp)) != NULL) {
|
|
|
|
for (i = 0; patterns[i] != NULL; ++i) {
|
|
|
|
if (fnmatch (patterns[i], ep->d_name, 0) == 0) {
|
|
|
|
char filename[1024];
|
2013-09-17 09:18:52 +00:00
|
|
|
int n = snprintf (filename, sizeof (filename), "%s/%s", dirname, ep->d_name);
|
2013-09-16 21:04:42 +00:00
|
|
|
if (n >= sizeof (filename)) {
|
|
|
|
closedir (dp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
callback (filename, userdata);
|
|
|
|
if (is_default_dive_computer_device(filename))
|
|
|
|
index = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: list UEMIS mount point from /proc/mounts
|
|
|
|
|
|
|
|
closedir (dp);
|
|
|
|
return index;
|
|
|
|
}
|
2013-12-19 13:00:50 +00:00
|
|
|
|
|
|
|
/* NOP wrappers to comform with windows.c */
|
|
|
|
int subsurface_open(const char *path, int oflags, mode_t mode)
|
|
|
|
{
|
|
|
|
return open(path, oflags, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *subsurface_fopen(const char *path, const char *mode)
|
|
|
|
{
|
|
|
|
return fopen(path, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *subsurface_opendir(const char *path)
|
|
|
|
{
|
|
|
|
return (void *)opendir(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct zip *subsurface_zip_open_readonly(const char *path, int flags, int *errorp)
|
|
|
|
{
|
|
|
|
return zip_open(path, flags, errorp);
|
|
|
|
}
|
|
|
|
|
|
|
|
int subsurface_zip_close(struct zip *zip)
|
|
|
|
{
|
|
|
|
return zip_close(zip);
|
|
|
|
}
|