2011-11-24 06:56:57 +00:00
|
|
|
/* linux.c */
|
|
|
|
/* implements Linux specific functions */
|
2012-09-09 16:06:44 +00:00
|
|
|
#include "dive.h"
|
2011-11-24 06:56:57 +00:00
|
|
|
#include "display-gtk.h"
|
|
|
|
#include <gconf/gconf-client.h>
|
2012-09-09 16:06:44 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-01-12 01:07:22 +00:00
|
|
|
const char system_divelist_default_font[] = "Sans 8";
|
2011-11-24 06:56:57 +00:00
|
|
|
|
|
|
|
GConfClient *gconf;
|
|
|
|
|
|
|
|
static char *gconf_name(char *name)
|
|
|
|
{
|
|
|
|
static char buf[255] = "/apps/subsurface/";
|
|
|
|
|
|
|
|
snprintf(buf, 255, "/apps/subsurface/%s", name);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void subsurface_open_conf(void)
|
|
|
|
{
|
|
|
|
gconf = gconf_client_get_default();
|
|
|
|
}
|
|
|
|
|
2013-01-11 01:26:10 +00:00
|
|
|
void subsurface_unset_conf(char *name)
|
|
|
|
{
|
|
|
|
gconf_client_unset(gconf, gconf_name(name), NULL);
|
|
|
|
}
|
|
|
|
|
2013-01-11 03:33:53 +00:00
|
|
|
void subsurface_set_conf(char *name, const char *value)
|
2011-11-24 06:56:57 +00:00
|
|
|
{
|
2013-01-11 03:33:53 +00:00
|
|
|
gconf_client_set_string(gconf, gconf_name(name), value, NULL);
|
2011-11-24 06:56:57 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 03:33:53 +00:00
|
|
|
void subsurface_set_conf_bool(char *name, int value)
|
2011-11-24 06:56:57 +00:00
|
|
|
{
|
2013-01-11 03:33:53 +00:00
|
|
|
gconf_client_set_bool(gconf, gconf_name(name), value > 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
const void *subsurface_get_conf(char *name)
|
|
|
|
{
|
|
|
|
return gconf_client_get_string(gconf, gconf_name(name), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int subsurface_get_conf_bool(char *name)
|
|
|
|
{
|
|
|
|
GConfValue *val;
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
val = gconf_client_get(gconf, gconf_name(name), NULL);
|
|
|
|
if (!val)
|
|
|
|
return -1;
|
|
|
|
ret = gconf_value_get_bool(val);
|
|
|
|
gconf_value_free(val);
|
|
|
|
return ret;
|
2011-11-24 06:56:57 +00:00
|
|
|
}
|
|
|
|
|
2012-05-02 17:03:48 +00:00
|
|
|
void subsurface_flush_conf(void)
|
|
|
|
{
|
|
|
|
/* this is a no-op */
|
|
|
|
}
|
|
|
|
|
2011-11-24 06:56:57 +00:00
|
|
|
void subsurface_close_conf(void)
|
|
|
|
{
|
|
|
|
/* this is a no-op */
|
|
|
|
}
|
2011-12-14 04:34:56 +00:00
|
|
|
|
2012-10-26 22:52:39 +00:00
|
|
|
int subsurface_fill_device_list(GtkListStore *store)
|
2011-12-14 04:34:56 +00:00
|
|
|
{
|
2012-10-26 22:52:39 +00:00
|
|
|
int i = 0;
|
|
|
|
int index = -1;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GDir *dev;
|
|
|
|
const char *name;
|
|
|
|
char *buffer;
|
|
|
|
gsize length;
|
|
|
|
|
|
|
|
dev = g_dir_open("/dev", 0, NULL);
|
|
|
|
while (dev && (name = g_dir_read_name(dev)) != NULL) {
|
|
|
|
if (strstr(name, "USB")) {
|
|
|
|
int len = strlen(name) + 6;
|
|
|
|
char *devicename = malloc(len);
|
|
|
|
snprintf(devicename, len, "/dev/%s", name);
|
|
|
|
gtk_list_store_append(store, &iter);
|
|
|
|
gtk_list_store_set(store, &iter,
|
|
|
|
0, devicename, -1);
|
|
|
|
if (is_default_dive_computer_device(devicename))
|
|
|
|
index = i;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dev)
|
|
|
|
g_dir_close(dev);
|
|
|
|
if (g_file_get_contents("/proc/mounts", &buffer, &length, NULL) &&
|
|
|
|
length > 0) {
|
|
|
|
char *ptr = strstr(buffer, "UEMISSDA");
|
|
|
|
if (ptr) {
|
|
|
|
char *end = ptr, *start = ptr;
|
|
|
|
while (start > buffer && *start != ' ')
|
|
|
|
start--;
|
|
|
|
if (*start == ' ')
|
|
|
|
start++;
|
|
|
|
while (*end != ' ' && *end != '\0')
|
|
|
|
end++;
|
|
|
|
*end = '\0';
|
|
|
|
name = strdup(start);
|
|
|
|
gtk_list_store_append(store, &iter);
|
|
|
|
gtk_list_store_set(store, &iter,
|
|
|
|
0, name, -1);
|
|
|
|
if (is_default_dive_computer_device(name))
|
|
|
|
index = i;
|
|
|
|
i++;
|
|
|
|
free((void *)name);
|
|
|
|
}
|
|
|
|
g_free(buffer);
|
|
|
|
}
|
|
|
|
if (i == 0) {
|
|
|
|
/* if we can't find anything, use the default */
|
|
|
|
gtk_list_store_append(store, &iter);
|
|
|
|
gtk_list_store_set(store, &iter,
|
|
|
|
0, "/dev/ttyUSB0", -1);
|
|
|
|
if (is_default_dive_computer_device("/dev/ttyUSB0"))
|
|
|
|
index = i;
|
|
|
|
}
|
|
|
|
return index;
|
2011-12-14 04:34:56 +00:00
|
|
|
}
|
2011-12-28 23:57:36 +00:00
|
|
|
|
|
|
|
const char *subsurface_icon_name()
|
|
|
|
{
|
2013-02-02 11:19:28 +00:00
|
|
|
return "subsurface-icon.svg";
|
2011-12-28 23:57:36 +00:00
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
home = g_get_home_dir();
|
|
|
|
user = g_get_user_name();
|
|
|
|
len = strlen(home) + strlen(user) + 17;
|
|
|
|
buffer = malloc(len);
|
|
|
|
snprintf(buffer, len, "%s/subsurface/%s.xml", home, user);
|
|
|
|
return buffer;
|
2012-09-09 16:06:44 +00:00
|
|
|
}
|
|
|
|
|
2012-10-18 21:30:45 +00:00
|
|
|
const char *subsurface_gettext_domainpath(char *argv0)
|
2012-10-15 12:44:01 +00:00
|
|
|
{
|
2012-10-18 21:30:45 +00:00
|
|
|
if (argv0[0] == '.') {
|
|
|
|
/* we're starting a local copy */
|
|
|
|
return "./share/locale";
|
|
|
|
} else {
|
|
|
|
/* subsurface is installed, so system dir should be fine */
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-10-15 12:44:01 +00:00
|
|
|
}
|
|
|
|
|
2012-01-01 21:41:47 +00:00
|
|
|
void subsurface_ui_setup(GtkSettings *settings, GtkWidget *menubar,
|
2012-01-03 04:49:10 +00:00
|
|
|
GtkWidget *vbox, GtkUIManager *ui_manager)
|
2012-01-01 21:41:47 +00:00
|
|
|
{
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, FALSE, 0);
|
|
|
|
}
|
2012-10-04 00:44:47 +00:00
|
|
|
|
|
|
|
void subsurface_command_line_init(gint *argc, gchar ***argv)
|
|
|
|
{
|
|
|
|
/* this is a no-op */
|
|
|
|
}
|
|
|
|
|
|
|
|
void subsurface_command_line_exit(gint *argc, gchar ***argv)
|
|
|
|
{
|
|
|
|
/* this is a no-op */
|
|
|
|
}
|
2012-10-19 23:31:06 +00:00
|
|
|
|
|
|
|
gboolean subsurface_os_feature_available(os_feature_t f)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-01-14 23:20:29 +00:00
|
|
|
|
|
|
|
gboolean subsurface_launch_for_uri(const char* uri)
|
|
|
|
{
|
|
|
|
GError *err = NULL;
|
|
|
|
gtk_show_uri(NULL, uri, gtk_get_current_event_time(), &err);
|
|
|
|
if (err) {
|
|
|
|
g_message("%s: %s", err->message, uri);
|
|
|
|
g_error_free(err);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|