subsurface/linux.c
Lubomir I. Ivanov 218c0956e2 main.cpp: remove usage of subsurface_command_line_*
subsurface_command_line_* are now redundant as Qt
should handle the command line argument parsing on Windows
for which these functions where mainly used and where NOP
for other OS.

main.cpp also receives a couple of small changes to use:
QCoreApplication::arguments()
to obtain the list of expanded arguments and parse those
instead.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2013-10-08 06:26:03 -07:00

66 lines
1.3 KiB
C

/* linux.c */
/* implements Linux specific functions */
#include "dive.h"
#include "display.h"
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <fnmatch.h>
const char system_divelist_default_font[] = "Sans 8";
const char *system_default_filename(void)
{
const char *home, *user;
char *buffer;
int len;
home = getenv("HOME");
user = getenv("LOGNAME");
len = strlen(home) + strlen(user) + 17;
buffer = malloc(len);
snprintf(buffer, len, "%s/subsurface/%s.xml", home, user);
return buffer;
}
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[] = {
"ttyUSB*",
"ttyS*",
"ttyACM*",
"rfcomm*",
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];
int n = snprintf (filename, sizeof (filename), "%s/%s", dirname, ep->d_name);
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;
}