transmission/gtk/conf.c

562 lines
15 KiB
C
Raw Normal View History

2006-01-12 18:32:29 +00:00
/*
Copyright (c) 2005-2006 Joshua Elsasser. All rights reserved.
2006-01-12 18:32:29 +00:00
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <pwd.h>
#include <stdio.h>
2006-01-12 18:32:29 +00:00
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>
#include <glib.h>
#include <glib/gi18n.h>
2006-01-12 18:32:29 +00:00
#include "conf.h"
#include "transmission.h"
2006-01-12 18:40:47 +00:00
#include "util.h"
2006-01-12 18:32:29 +00:00
#define CONF_SUBDIR "gtk"
#define FILE_LOCK "lock"
#define FILE_SOCKET "socket"
#define FILE_PREFS "prefs"
#define FILE_PREFS_TMP "prefs.tmp"
#define FILE_STATE "state"
#define FILE_STATE_TMP "state.tmp"
#define OLD_FILE_LOCK "gtk_lock" /* remove this after next release */
#define OLD_FILE_PREFS "gtk_prefs"
#define OLD_FILE_STATE "gtk_state"
2006-01-12 18:32:29 +00:00
#define PREF_SEP_KEYVAL '\t'
#define PREF_SEP_LINE '\n'
#define STATE_SEP '\n'
static int
lockfile(const char *file, char **errstr);
static void
cf_removelocks(void);
2006-01-12 18:32:29 +00:00
static gboolean
writefile_traverse(gpointer key, gpointer value, gpointer data);
static char *
getstateval(struct cf_torrentstate *state, char *line);
static char *gl_confdir = NULL;
static char *gl_old_confdir = NULL;
static GTree *gl_prefs = NULL;
static char *gl_lockpath = NULL;
static char *gl_old_lockpath = NULL;
2006-01-12 18:32:29 +00:00
/* errstr may be NULL, this might be called before GTK is initialized */
2006-01-12 18:32:29 +00:00
static int
lockfile(const char *file, char **errstr) {
int fd, savederr;
struct flock lk;
if(NULL != errstr)
*errstr = NULL;
2006-01-12 18:32:29 +00:00
if(0 > (fd = open(file, O_RDWR | O_CREAT, 0666))) {
savederr = errno;
if(NULL != errstr)
*errstr = g_strdup_printf(_("Failed to open the file %s for writing:\n%s"),
file, strerror(errno));
2006-01-12 18:32:29 +00:00
errno = savederr;
return -1;
}
bzero(&lk, sizeof(lk));
lk.l_start = 0;
lk.l_len = 0;
lk.l_type = F_WRLCK;
lk.l_whence = SEEK_SET;
if(-1 == fcntl(fd, F_SETLK, &lk)) {
savederr = errno;
if(NULL != errstr) {
if(EAGAIN == errno)
*errstr = g_strdup_printf(_("Another copy of %s is already running."),
g_get_application_name());
else
*errstr = g_strdup_printf(_("Failed to lock the file %s:\n%s"),
file, strerror(errno));
}
2006-01-12 18:32:29 +00:00
close(fd);
errno = savederr;
return -1;
}
return fd;
}
/* errstr may be NULL, this might be called before GTK is initialized */
2006-01-12 18:32:29 +00:00
gboolean
cf_init(const char *dir, char **errstr) {
if(NULL != errstr)
*errstr = NULL;
gl_old_confdir = g_strdup(dir);
gl_confdir = g_build_filename(dir, CONF_SUBDIR, NULL);
2006-01-12 18:32:29 +00:00
if(mkdir_p(gl_confdir, 0777))
2006-01-12 18:32:29 +00:00
return TRUE;
if(NULL != errstr)
*errstr = g_strdup_printf(_("Failed to create the directory %s:\n%s"),
gl_confdir, strerror(errno));
2006-01-12 18:32:29 +00:00
return FALSE;
}
/* errstr may be NULL, this might be called before GTK is initialized */
2006-01-12 18:32:29 +00:00
gboolean
cf_lock(char **errstr) {
char *path = g_build_filename(gl_old_confdir, OLD_FILE_LOCK, NULL);
2006-01-12 18:32:29 +00:00
int fd = lockfile(path, errstr);
if(0 > fd)
g_free(path);
else {
gl_old_lockpath = path;
path = g_build_filename(gl_confdir, FILE_LOCK, NULL);
fd = lockfile(path, errstr);
if(0 > fd)
g_free(path);
else
gl_lockpath = path;
}
g_atexit(cf_removelocks);
2006-01-12 18:32:29 +00:00
return 0 <= fd;
}
static void
cf_removelocks(void) {
if(NULL != gl_lockpath) {
unlink(gl_lockpath);
g_free(gl_lockpath);
}
if(NULL != gl_old_lockpath) {
unlink(gl_old_lockpath);
g_free(gl_old_lockpath);
}
}
char *
cf_sockname(void) {
return g_build_filename(gl_confdir, FILE_SOCKET, NULL);
}
2006-01-12 18:32:29 +00:00
gboolean
cf_loadprefs(char **errstr) {
char *path = g_build_filename(gl_confdir, FILE_PREFS, NULL);
char *oldpath;
2006-01-12 18:32:29 +00:00
GIOChannel *io;
GError *err;
char *line, *sep;
gsize len, termpos;
char term = PREF_SEP_LINE;
*errstr = NULL;
if(NULL != gl_prefs)
g_tree_destroy(gl_prefs);
2006-01-12 18:32:29 +00:00
gl_prefs = g_tree_new_full((GCompareDataFunc)g_ascii_strcasecmp, NULL,
2006-01-12 18:32:29 +00:00
g_free, g_free);
err = NULL;
io = g_io_channel_new_file(path, "r", &err);
if(NULL != err) {
if(!g_error_matches(err, G_FILE_ERROR, G_FILE_ERROR_NOENT))
*errstr = g_strdup_printf(
_("Failed to open the file %s for reading:\n%s"), path, err->message);
else {
g_error_free(err);
err = NULL;
oldpath = g_build_filename(gl_old_confdir, OLD_FILE_PREFS, NULL);
io = g_io_channel_new_file(oldpath, "r", &err);
g_free(oldpath);
}
if(NULL != err)
goto done;
2006-01-12 18:32:29 +00:00
}
g_io_channel_set_line_term(io, &term, 1);
err = NULL;
for(;;) {
assert(NULL == err) ;
switch(g_io_channel_read_line(io, &line, &len, &termpos, &err)) {
case G_IO_STATUS_ERROR:
*errstr = g_strdup_printf(
_("Error while reading from the file %s:\n%s"), path, err->message);
2006-01-12 18:32:29 +00:00
goto done;
case G_IO_STATUS_NORMAL:
if(NULL != line) {
if(g_utf8_validate(line, len, NULL) &&
NULL != (sep = strchr(line, PREF_SEP_KEYVAL)) && sep > line) {
2006-01-12 18:32:29 +00:00
*sep = '\0';
line[termpos] = '\0';
g_tree_insert(gl_prefs, g_strcompress(line), g_strcompress(sep + 1));
2006-01-12 18:32:29 +00:00
}
g_free(line);
}
break;
case G_IO_STATUS_EOF:
goto done;
default:
assert(!"unknown return code");
goto done;
}
}
done:
if(NULL != err)
g_error_free(err);
if(NULL != io)
g_io_channel_unref(io);
g_free(path);
2006-01-12 18:32:29 +00:00
return NULL == *errstr;
}
const char *
cf_getpref(const char *name) {
assert(NULL != gl_prefs);
2006-01-12 18:32:29 +00:00
return g_tree_lookup(gl_prefs, name);
2006-01-12 18:32:29 +00:00
}
void
cf_setpref(const char *name, const char *value) {
assert(NULL != gl_prefs);
2006-01-12 18:32:29 +00:00
g_tree_insert(gl_prefs, g_strdup(name), g_strdup(value));
2006-01-12 18:32:29 +00:00
}
struct writeinfo {
GIOChannel *io;
GError *err;
};
gboolean
cf_saveprefs(char **errstr) {
char *file = g_build_filename(gl_confdir, FILE_PREFS, NULL);
char *tmpfile = g_build_filename(gl_confdir, FILE_PREFS_TMP, NULL);
2006-01-12 18:32:29 +00:00
GIOChannel *io = NULL;
struct writeinfo info;
int fd;
assert(NULL != gl_prefs);
assert(NULL != errstr);
2006-01-12 18:32:29 +00:00
*errstr = NULL;
if(0 > (fd = lockfile(tmpfile, errstr))) {
g_free(errstr);
*errstr = g_strdup_printf(_("Failed to open or lock the file %s:\n%s"),
tmpfile, strerror(errno));
2006-01-12 18:32:29 +00:00
goto done;
}
2006-01-12 18:40:47 +00:00
#ifdef NDEBUG
ftruncate(fd, 0);
#else
assert(0 == ftruncate(fd, 0));
#endif
2006-01-12 18:32:29 +00:00
info.err = NULL;
io = g_io_channel_unix_new(fd);
g_io_channel_set_close_on_unref(io, TRUE);
info.io = io;
info.err = NULL;
g_tree_foreach(gl_prefs, writefile_traverse, &info);
2006-01-12 18:32:29 +00:00
if(NULL != info.err ||
G_IO_STATUS_ERROR == g_io_channel_shutdown(io, TRUE, &info.err)) {
*errstr = g_strdup_printf(_("Error while writing to the file %s:\n%s"),
tmpfile, info.err->message);
2006-01-12 18:32:29 +00:00
g_error_free(info.err);
goto done;
}
if(0 > rename(tmpfile, file)) {
*errstr = g_strdup_printf(_("Failed to rename the file %s to %s:\n%s"),
tmpfile, file, strerror(errno));
2006-01-12 18:32:29 +00:00
goto done;
}
done:
g_free(file);
g_free(tmpfile);
if(NULL != io)
g_io_channel_unref(io);
return NULL == *errstr;
}
static gboolean
writefile_traverse(gpointer key, gpointer value, gpointer data) {
struct writeinfo *info = data;
char *ekey, *eval, *line;
char sep[2];
int len;
ekey = g_strescape(key, NULL);
eval = g_strescape(value, NULL);
sep[0] = PREF_SEP_KEYVAL;
sep[1] = '\0';
line = g_strjoin(sep, ekey, eval, NULL);
len = strlen(line);
line[len] = PREF_SEP_LINE;
switch(g_io_channel_write_chars(info->io, line, len + 1, NULL, &info->err)) {
case G_IO_STATUS_ERROR:
goto done;
case G_IO_STATUS_NORMAL:
break;
default:
assert(!"unknown return code");
goto done;
}
done:
g_free(ekey);
g_free(eval);
g_free(line);
return NULL != info->err;
}
GList *
cf_loadstate(char **errstr) {
char *path = g_build_filename(gl_confdir, FILE_STATE, NULL);
char *oldpath;
2006-01-12 18:32:29 +00:00
GIOChannel *io;
GError *err;
char term = STATE_SEP;
GList *ret = NULL;
char *line, *ptr;
gsize len, termpos;
struct cf_torrentstate *ts;
err = NULL;
io = g_io_channel_new_file(path, "r", &err);
if(NULL != err) {
if(!g_error_matches(err, G_FILE_ERROR, G_FILE_ERROR_NOENT))
*errstr = g_strdup_printf(
_("Failed to open the file %s for reading:\n%s"), path, err->message);
else {
g_error_free(err);
err = NULL;
oldpath = g_build_filename(gl_old_confdir, OLD_FILE_STATE, NULL);
io = g_io_channel_new_file(oldpath, "r", &err);
g_free(oldpath);
}
if(NULL != err)
goto done;
2006-01-12 18:32:29 +00:00
}
g_io_channel_set_line_term(io, &term, 1);
err = NULL;
for(;;) {
assert(NULL == err);
switch(g_io_channel_read_line(io, &line, &len, &termpos, &err)) {
case G_IO_STATUS_ERROR:
*errstr = g_strdup_printf(
_("Error while reading from the file %s:\n%s"), path, err->message);
2006-01-12 18:32:29 +00:00
goto done;
case G_IO_STATUS_NORMAL:
if(NULL != line) {
if(g_utf8_validate(line, -1, NULL)) {
ts = g_new0(struct cf_torrentstate, 1);
ptr = line;
while(NULL != (ptr = getstateval(ts, ptr)))
;
if(NULL != ts->ts_torrent && NULL != ts->ts_directory)
ret = g_list_append(ret, ts);
else
cf_freestate(ts);
}
2006-01-12 18:32:29 +00:00
g_free(line);
}
break;
case G_IO_STATUS_EOF:
goto done;
default:
assert(!"unknown return code");
goto done;
}
}
done:
if(NULL != err)
g_error_free(err);
if(NULL != io)
g_io_channel_unref(io);
if(NULL != *errstr && NULL != ret) {
g_list_foreach(ret, (GFunc)g_free, NULL);
g_list_free(ret);
ret = NULL;
}
g_free(path);
2006-01-12 18:32:29 +00:00
return ret;
}
static char *
getstateval(struct cf_torrentstate *state, char *line) {
char *start, *end;
2006-01-12 18:40:47 +00:00
/* skip any leading whitespace */
while(g_ascii_isspace(*line))
2006-01-12 18:32:29 +00:00
line++;
2006-01-12 18:40:47 +00:00
/* walk over the key, which may be alphanumerics as well as - or _ */
for(start = line; g_ascii_isalnum(*start)
|| '_' == *start || '-' == *start; start++)
2006-01-12 18:32:29 +00:00
;
2006-01-12 18:40:47 +00:00
/* they key must be immediately followed by an = */
if('=' != *start)
2006-01-12 18:32:29 +00:00
return NULL;
2006-01-12 18:40:47 +00:00
*(start++) = '\0';
2006-01-12 18:32:29 +00:00
2006-01-12 18:40:47 +00:00
/* then the opening quote for the value */
if('"' != *(start++))
return NULL;
/* walk over the value */
for(end = start; '\0' != *end && '"' != *end; end++)
/* skip over escaped quotes */
2006-01-12 18:32:29 +00:00
if('\\' == *end && '\0' != *(end + 1))
end++;
2006-01-12 18:40:47 +00:00
/* make sure we didn't hit the end of the string */
2006-01-12 18:32:29 +00:00
if('"' != *end)
return NULL;
2006-01-12 18:40:47 +00:00
*end = '\0';
2006-01-12 18:32:29 +00:00
2006-01-12 18:40:47 +00:00
/* if it's a key we recognize then save the data */
if(0 == strcmp(line, "torrent"))
state->ts_torrent = g_strcompress(start);
else if(0 == strcmp(line, "dir"))
state->ts_directory = g_strcompress(start);
else if(0 == strcmp(line, "paused"))
state->ts_paused = strbool(start);
2006-01-12 18:32:29 +00:00
2006-01-12 18:40:47 +00:00
/* return a pointer to just past the end of the value */
2006-01-12 18:32:29 +00:00
return end + 1;
}
gboolean
2006-03-23 12:39:39 +00:00
cf_savestate(GList *torrents, char **errstr) {
char *file = g_build_filename(gl_confdir, FILE_STATE, NULL);
char *tmpfile = g_build_filename(gl_confdir, FILE_STATE_TMP, NULL);
2006-01-12 18:32:29 +00:00
GIOChannel *io = NULL;
GError *err;
2006-03-23 12:39:39 +00:00
int fd;
2006-01-12 18:32:29 +00:00
char *torrentfile, *torrentdir, *line;
gsize written;
gboolean paused;
GIOStatus res;
2006-03-23 12:39:39 +00:00
tr_stat_t *sb;
tr_info_t *in;
2006-01-12 18:32:29 +00:00
*errstr = NULL;
if(0 > (fd = lockfile(tmpfile, errstr))) {
g_free(errstr);
*errstr = g_strdup_printf(_("Failed to open or lock the file %s:\n%s"),
tmpfile, strerror(errno));
2006-01-12 18:32:29 +00:00
goto done;
}
2006-01-12 18:40:47 +00:00
#ifdef NDEBUG
ftruncate(fd, 0);
#else
assert(0 == ftruncate(fd, 0));
#endif
2006-01-12 18:32:29 +00:00
io = g_io_channel_unix_new(fd);
g_io_channel_set_close_on_unref(io, TRUE);
err = NULL;
2006-03-23 12:39:39 +00:00
while(NULL != torrents) {
sb = tr_torrentStat(torrents->data);
in = tr_torrentInfo(torrents->data);
paused = (TR_STATUS_INACTIVE & sb->status);
torrentfile = g_strescape(in->torrent, "");
torrentdir = g_strescape(tr_torrentGetFolder(torrents->data), "");
2006-01-12 18:32:29 +00:00
/* g_strcompress */
line = g_strdup_printf("torrent=\"%s\" dir=\"%s\" paused=\"%s\"%c",
torrentfile, torrentdir, (paused ? "yes" : "no"),
STATE_SEP);
res = g_io_channel_write_chars(io, line, strlen(line), &written, &err);
g_free(torrentfile);
g_free(torrentdir);
g_free(line);
switch(res) {
case G_IO_STATUS_ERROR:
goto done;
case G_IO_STATUS_NORMAL:
break;
default:
assert(!"unknown return code");
goto done;
}
2006-03-23 12:39:39 +00:00
torrents = torrents->next;
2006-01-12 18:32:29 +00:00
}
if(NULL != err ||
G_IO_STATUS_ERROR == g_io_channel_shutdown(io, TRUE, &err)) {
*errstr = g_strdup_printf(_("Error while writing to the file %s:\n%s"),
tmpfile, err->message);
2006-01-12 18:32:29 +00:00
g_error_free(err);
goto done;
}
if(0 > rename(tmpfile, file)) {
*errstr = g_strdup_printf(_("Failed to rename the file %s to %s:\n%s"),
tmpfile, file, strerror(errno));
2006-01-12 18:32:29 +00:00
goto done;
}
done:
g_free(file);
g_free(tmpfile);
if(NULL != io)
g_io_channel_unref(io);
return NULL == *errstr;
}
void
cf_freestate(struct cf_torrentstate *state) {
if(NULL != state->ts_torrent)
g_free(state->ts_torrent);
if(NULL != state->ts_directory)
g_free(state->ts_directory);
g_free(state);
}