2007-05-23 00:49:31 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Transmission authors and contributors
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2007-08-04 01:34:00 +00:00
|
|
|
#include <inttypes.h>
|
2007-07-19 03:55:00 +00:00
|
|
|
#include <stdio.h>
|
2007-05-23 00:49:31 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
|
2007-07-18 23:04:26 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2007-07-23 03:03:45 +00:00
|
|
|
#include <libtransmission/utils.h>
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2007-05-23 04:39:06 +00:00
|
|
|
#include "conf.h"
|
2007-05-23 00:49:31 +00:00
|
|
|
#include "tr_core.h"
|
2007-05-24 02:50:28 +00:00
|
|
|
#include "tr_prefs.h"
|
2007-05-23 00:49:31 +00:00
|
|
|
#include "tr_torrent.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
2007-05-23 17:59:35 +00:00
|
|
|
tr_core_marshal_err( GClosure * closure, GValue * ret SHUTUP, guint count,
|
|
|
|
const GValue * vals, gpointer hint SHUTUP,
|
|
|
|
gpointer marshal )
|
|
|
|
{
|
2007-05-24 02:50:28 +00:00
|
|
|
typedef void (*TRMarshalErr)
|
|
|
|
( gpointer, enum tr_core_err, const char *, gpointer );
|
2007-05-23 17:59:35 +00:00
|
|
|
TRMarshalErr callback;
|
|
|
|
GCClosure * cclosure = (GCClosure*) closure;
|
|
|
|
enum tr_core_err errcode;
|
|
|
|
const char * errstr;
|
|
|
|
gpointer inst, gdata;
|
|
|
|
|
|
|
|
g_return_if_fail( 3 == count );
|
|
|
|
|
|
|
|
inst = g_value_peek_pointer( vals );
|
|
|
|
errcode = g_value_get_int( vals + 1 );
|
|
|
|
errstr = g_value_get_string( vals + 2 );
|
|
|
|
gdata = closure->data;
|
|
|
|
|
|
|
|
callback = (TRMarshalErr) ( NULL == marshal ?
|
|
|
|
cclosure->callback : marshal );
|
|
|
|
callback( inst, errcode, errstr, gdata );
|
2007-05-23 00:49:31 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static void
|
2007-05-24 02:50:28 +00:00
|
|
|
tr_core_marshal_prompt( GClosure * closure, GValue * ret SHUTUP, guint count,
|
|
|
|
const GValue * vals, gpointer hint SHUTUP,
|
|
|
|
gpointer marshal )
|
|
|
|
{
|
|
|
|
typedef void (*TRMarshalPrompt)
|
|
|
|
( gpointer, GList *, enum tr_torrent_action, gboolean, gpointer );
|
|
|
|
TRMarshalPrompt callback;
|
|
|
|
GCClosure * cclosure = (GCClosure*) closure;
|
|
|
|
GList * paths;
|
|
|
|
enum tr_torrent_action action;
|
|
|
|
gboolean paused;
|
|
|
|
gpointer inst, gdata;
|
|
|
|
|
|
|
|
g_return_if_fail( 4 == count );
|
|
|
|
|
|
|
|
inst = g_value_peek_pointer( vals );
|
|
|
|
paths = g_value_get_pointer( vals + 1 );
|
|
|
|
action = g_value_get_int( vals + 2 );
|
|
|
|
paused = g_value_get_boolean( vals + 3 );
|
|
|
|
gdata = closure->data;
|
|
|
|
|
|
|
|
callback = (TRMarshalPrompt) ( NULL == marshal ?
|
|
|
|
cclosure->callback : marshal );
|
|
|
|
callback( inst, paths, action, paused, gdata );
|
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static void
|
2007-05-24 10:37:07 +00:00
|
|
|
tr_core_marshal_data( GClosure * closure, GValue * ret SHUTUP, guint count,
|
|
|
|
const GValue * vals, gpointer hint SHUTUP,
|
|
|
|
gpointer marshal )
|
|
|
|
{
|
|
|
|
typedef void (*TRMarshalPrompt)
|
|
|
|
( gpointer, uint8_t *, size_t, gboolean, gpointer );
|
|
|
|
TRMarshalPrompt callback;
|
|
|
|
GCClosure * cclosure = (GCClosure*) closure;
|
|
|
|
uint8_t * data;
|
|
|
|
size_t size;
|
|
|
|
gboolean paused;
|
|
|
|
gpointer inst, gdata;
|
|
|
|
|
|
|
|
g_return_if_fail( 4 == count );
|
|
|
|
|
|
|
|
inst = g_value_peek_pointer( vals );
|
2007-05-27 16:31:16 +00:00
|
|
|
data = (uint8_t *) g_value_get_string( vals + 1 );
|
2007-05-24 10:37:07 +00:00
|
|
|
size = g_value_get_uint( vals + 2 );
|
|
|
|
paused = g_value_get_boolean( vals + 3 );
|
|
|
|
gdata = closure->data;
|
|
|
|
|
|
|
|
callback = (TRMarshalPrompt) ( NULL == marshal ?
|
|
|
|
cclosure->callback : marshal );
|
|
|
|
callback( inst, data, size, paused, gdata );
|
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static void
|
|
|
|
tr_core_dispose( GObject * obj )
|
|
|
|
{
|
|
|
|
TrCore * self = (TrCore *) obj;
|
|
|
|
GObjectClass * parent;
|
|
|
|
|
|
|
|
if( self->disposed )
|
|
|
|
return;
|
|
|
|
|
2007-11-09 16:11:10 +00:00
|
|
|
self->disposed = TRUE;
|
2007-10-16 14:16:01 +00:00
|
|
|
pref_save( NULL );
|
|
|
|
parent = g_type_class_peek( g_type_parent( TR_CORE_TYPE ) );
|
|
|
|
parent->dispose( obj );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
tr_core_class_init( gpointer g_class, gpointer g_class_data SHUTUP )
|
|
|
|
{
|
|
|
|
GObjectClass * gobject_class;
|
|
|
|
TrCoreClass * core_class;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS( g_class );
|
|
|
|
gobject_class->dispose = tr_core_dispose;
|
|
|
|
|
|
|
|
core_class = TR_CORE_CLASS( g_class );
|
|
|
|
core_class->errsig = g_signal_new( "error", G_TYPE_FROM_CLASS( g_class ),
|
|
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
|
|
|
|
tr_core_marshal_err, G_TYPE_NONE,
|
|
|
|
2, G_TYPE_INT, G_TYPE_STRING );
|
|
|
|
core_class->promptsig = g_signal_new( "directory-prompt",
|
|
|
|
G_TYPE_FROM_CLASS( g_class ),
|
|
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
|
|
|
|
tr_core_marshal_prompt, G_TYPE_NONE,
|
|
|
|
3, G_TYPE_POINTER, G_TYPE_INT,
|
|
|
|
G_TYPE_BOOLEAN );
|
|
|
|
core_class->promptdatasig = g_signal_new( "directory-prompt-data",
|
|
|
|
G_TYPE_FROM_CLASS( g_class ),
|
|
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
|
|
|
|
tr_core_marshal_data,
|
|
|
|
G_TYPE_NONE, 3, G_TYPE_STRING,
|
|
|
|
G_TYPE_UINT, G_TYPE_BOOLEAN );
|
|
|
|
core_class->quitsig = g_signal_new( "quit", G_TYPE_FROM_CLASS( g_class ),
|
|
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0 );
|
|
|
|
core_class->prefsig = g_signal_new( "prefs-changed",
|
|
|
|
G_TYPE_FROM_CLASS( g_class ),
|
|
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__STRING,
|
|
|
|
G_TYPE_NONE, 1, G_TYPE_STRING );
|
|
|
|
}
|
|
|
|
|
2007-12-19 07:10:47 +00:00
|
|
|
static int
|
|
|
|
compareDouble( double a, double b )
|
|
|
|
{
|
|
|
|
if( a < b ) return -1;
|
|
|
|
if( b > a ) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static int
|
2007-12-19 02:46:30 +00:00
|
|
|
compareByActivity( GtkTreeModel * model,
|
|
|
|
GtkTreeIter * a,
|
|
|
|
GtkTreeIter * b,
|
|
|
|
gpointer user_data UNUSED )
|
2007-10-16 14:16:01 +00:00
|
|
|
{
|
2007-12-19 07:10:47 +00:00
|
|
|
int i;
|
2007-12-19 02:46:30 +00:00
|
|
|
tr_torrent *ta, *tb;
|
|
|
|
const tr_stat *sa, *sb;
|
|
|
|
|
|
|
|
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
|
|
|
|
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
|
|
|
|
|
|
|
|
sa = tr_torrentStat( ta );
|
|
|
|
sb = tr_torrentStat( tb );
|
2007-10-16 14:16:01 +00:00
|
|
|
|
2007-12-19 07:10:47 +00:00
|
|
|
if(( i = compareDouble( sa->rateUpload + sa->rateDownload,
|
|
|
|
sb->rateUpload + sb->rateDownload ) ))
|
|
|
|
return i;
|
2007-10-16 14:16:01 +00:00
|
|
|
|
2007-12-19 02:46:30 +00:00
|
|
|
if( sa->uploadedEver != sb->uploadedEver )
|
|
|
|
return sa->uploadedEver < sa->uploadedEver ? -1 : 1;
|
2007-10-16 14:32:16 +00:00
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-19 02:46:30 +00:00
|
|
|
static int
|
|
|
|
compareByDateAdded( GtkTreeModel * model UNUSED,
|
|
|
|
GtkTreeIter * a UNUSED,
|
|
|
|
GtkTreeIter * b UNUSED,
|
|
|
|
gpointer user_data UNUSED )
|
|
|
|
{
|
2007-12-19 07:10:47 +00:00
|
|
|
return 0; /* FIXME */
|
2007-12-19 02:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
compareByName( GtkTreeModel * model,
|
|
|
|
GtkTreeIter * a,
|
|
|
|
GtkTreeIter * b,
|
|
|
|
gpointer user_data UNUSED )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char *ca, *cb;
|
|
|
|
gtk_tree_model_get( model, a, MC_NAME_COLLATED, &ca, -1 );
|
|
|
|
gtk_tree_model_get( model, b, MC_NAME_COLLATED, &cb, -1 );
|
|
|
|
ret = strcmp( ca, cb );
|
|
|
|
g_free( cb );
|
|
|
|
g_free( ca );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
compareByProgress( GtkTreeModel * model,
|
|
|
|
GtkTreeIter * a,
|
|
|
|
GtkTreeIter * b,
|
|
|
|
gpointer user_data UNUSED )
|
|
|
|
{
|
|
|
|
int ret;
|
2007-12-19 07:03:28 +00:00
|
|
|
tr_torrent *ta, *tb;
|
2007-12-19 02:46:30 +00:00
|
|
|
const tr_stat *sa, *sb;
|
2007-12-19 07:03:28 +00:00
|
|
|
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
|
|
|
|
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
|
|
|
|
sa = tr_torrentStat( ta );
|
|
|
|
sb = tr_torrentStat( tb );
|
2007-12-19 07:10:47 +00:00
|
|
|
ret = compareDouble( sa->percentDone, sb->percentDone );
|
|
|
|
if( !ret )
|
|
|
|
ret = compareDouble( sa->ratio, sa->ratio );
|
2007-12-19 02:46:30 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-12-19 07:03:28 +00:00
|
|
|
static int
|
|
|
|
compareByState( GtkTreeModel * model,
|
|
|
|
GtkTreeIter * a,
|
|
|
|
GtkTreeIter * b,
|
|
|
|
gpointer user_data UNUSED )
|
|
|
|
{
|
|
|
|
tr_torrent *ta, *tb;
|
|
|
|
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
|
|
|
|
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
|
|
|
|
return tr_torrentStat(ta)->status - tr_torrentStat(tb)->status;
|
|
|
|
}
|
|
|
|
|
2007-12-19 02:46:30 +00:00
|
|
|
static int
|
|
|
|
compareByTracker( GtkTreeModel * model,
|
|
|
|
GtkTreeIter * a,
|
|
|
|
GtkTreeIter * b,
|
|
|
|
gpointer user_data UNUSED )
|
|
|
|
{
|
2007-12-19 07:03:28 +00:00
|
|
|
const tr_torrent *ta, *tb;
|
|
|
|
gtk_tree_model_get( model, a, MC_TORRENT_RAW, &ta, -1 );
|
|
|
|
gtk_tree_model_get( model, b, MC_TORRENT_RAW, &tb, -1 );
|
|
|
|
return strcmp( tr_torrentInfo(ta)->primaryAddress,
|
|
|
|
tr_torrentInfo(tb)->primaryAddress );
|
2007-12-19 02:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2007-10-17 18:31:12 +00:00
|
|
|
|
|
|
|
static void
|
2007-12-19 02:46:30 +00:00
|
|
|
setSort( TrCore * core, const char * mode, gboolean isReversed )
|
2007-10-17 18:31:12 +00:00
|
|
|
{
|
2007-12-19 02:46:30 +00:00
|
|
|
int col = MC_TORRENT_RAW;
|
|
|
|
GtkSortType type;
|
|
|
|
GtkTreeSortable * sortable = GTK_TREE_SORTABLE( core->model );
|
|
|
|
|
|
|
|
if( !strcmp( mode, "sort-by-activity" ) )
|
|
|
|
{
|
|
|
|
type = isReversed ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING;
|
|
|
|
gtk_tree_sortable_set_sort_func( sortable, col, compareByActivity, NULL, NULL );
|
|
|
|
}
|
|
|
|
else if( !strcmp( mode, "sort-by-date-added" ) )
|
|
|
|
{
|
|
|
|
type = isReversed ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING;
|
|
|
|
gtk_tree_sortable_set_sort_func( sortable, col, compareByDateAdded, NULL, NULL );
|
|
|
|
}
|
|
|
|
else if( !strcmp( mode, "sort-by-progress" ) )
|
|
|
|
{
|
|
|
|
type = isReversed ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING;
|
|
|
|
gtk_tree_sortable_set_sort_func( sortable, col, compareByProgress, NULL, NULL );
|
|
|
|
}
|
|
|
|
else if( !strcmp( mode, "sort-by-state" ) )
|
2007-10-17 18:31:12 +00:00
|
|
|
{
|
2007-12-19 02:46:30 +00:00
|
|
|
type = isReversed ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING;
|
|
|
|
gtk_tree_sortable_set_sort_func( sortable, col, compareByState, NULL, NULL );
|
2007-10-17 18:31:12 +00:00
|
|
|
}
|
2007-12-19 02:46:30 +00:00
|
|
|
else if( !strcmp( mode, "sort-by-tracker" ) )
|
|
|
|
{
|
|
|
|
type = isReversed ? GTK_SORT_ASCENDING : GTK_SORT_DESCENDING;
|
|
|
|
gtk_tree_sortable_set_sort_func( sortable, col, compareByTracker, NULL, NULL );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
type = isReversed ? GTK_SORT_DESCENDING : GTK_SORT_ASCENDING;
|
|
|
|
gtk_tree_sortable_set_sort_func( sortable, col, compareByName, NULL, NULL );
|
|
|
|
}
|
|
|
|
gtk_tree_sortable_set_sort_column_id( sortable, col, type );
|
2007-10-17 18:31:12 +00:00
|
|
|
}
|
|
|
|
|
2007-12-19 18:42:33 +00:00
|
|
|
static void
|
|
|
|
prefsChanged( TrCore * core, const char * key, gpointer data UNUSED )
|
2007-12-19 02:46:30 +00:00
|
|
|
{
|
2007-12-19 18:42:33 +00:00
|
|
|
if( !strcmp( key, PREF_KEY_SORT_MODE ) || !strcmp( key, PREF_KEY_SORT_REVERSED ) )
|
|
|
|
{
|
|
|
|
char * mode = pref_string_get( PREF_KEY_SORT_MODE );
|
|
|
|
gboolean isReversed = pref_flag_get( PREF_KEY_SORT_REVERSED );
|
|
|
|
setSort( core, mode, isReversed );
|
|
|
|
g_free( mode );
|
|
|
|
}
|
2007-10-17 18:31:12 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static void
|
2007-05-23 00:49:31 +00:00
|
|
|
tr_core_init( GTypeInstance * instance, gpointer g_class SHUTUP )
|
|
|
|
{
|
|
|
|
TrCore * self = (TrCore *) instance;
|
|
|
|
GtkListStore * store;
|
|
|
|
|
|
|
|
/* column types for the model used to store torrent information */
|
|
|
|
/* keep this in sync with the enum near the bottom of tr_core.h */
|
2007-12-19 02:46:30 +00:00
|
|
|
GType types[] = {
|
|
|
|
G_TYPE_STRING, /* name */
|
|
|
|
G_TYPE_STRING, /* collated name */
|
|
|
|
G_TYPE_STRING, /* hash string */
|
|
|
|
TR_TORRENT_TYPE, /* TrTorrent object */
|
|
|
|
G_TYPE_POINTER, /* tr_torrent* */
|
|
|
|
G_TYPE_INT /* ID for IPC */
|
2007-05-23 00:49:31 +00:00
|
|
|
};
|
|
|
|
|
2007-05-23 06:25:15 +00:00
|
|
|
#ifdef REFDBG
|
|
|
|
fprintf( stderr, "core %p init\n", self );
|
|
|
|
#endif
|
|
|
|
|
2007-05-23 00:49:31 +00:00
|
|
|
/* create the model used to store torrent data */
|
|
|
|
g_assert( ALEN( types ) == MC_ROW_COUNT );
|
|
|
|
store = gtk_list_store_newv( MC_ROW_COUNT, types );
|
2007-10-16 14:16:01 +00:00
|
|
|
|
2007-05-23 00:49:31 +00:00
|
|
|
self->model = GTK_TREE_MODEL( store );
|
2007-05-23 04:39:06 +00:00
|
|
|
self->handle = tr_init( "gtk" );
|
2007-05-24 07:51:37 +00:00
|
|
|
self->nextid = 1;
|
2007-05-23 01:47:42 +00:00
|
|
|
self->quitting = FALSE;
|
2007-05-23 00:49:31 +00:00
|
|
|
self->disposed = FALSE;
|
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
GType
|
|
|
|
tr_core_get_type( void )
|
2007-05-23 00:49:31 +00:00
|
|
|
{
|
2007-10-16 14:16:01 +00:00
|
|
|
static GType type = 0;
|
2007-05-23 06:25:15 +00:00
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
if( 0 == type )
|
2007-05-23 04:39:06 +00:00
|
|
|
{
|
2007-10-16 14:16:01 +00:00
|
|
|
static const GTypeInfo info =
|
|
|
|
{
|
|
|
|
sizeof( TrCoreClass ),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
tr_core_class_init, /* class_init */
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof( TrCore ),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
tr_core_init, /* instance_init */
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
type = g_type_register_static( G_TYPE_OBJECT, "TrCore", &info, 0 );
|
2007-05-23 04:39:06 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
return type;
|
2007-05-23 00:49:31 +00:00
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2007-05-23 00:49:31 +00:00
|
|
|
TrCore *
|
|
|
|
tr_core_new( void )
|
|
|
|
{
|
2007-12-19 18:42:33 +00:00
|
|
|
TrCore * core = TR_CORE( g_object_new( TR_CORE_TYPE, NULL ) );
|
|
|
|
g_signal_connect( core, "prefs-changed", G_CALLBACK(prefsChanged), NULL );
|
|
|
|
return core;
|
2007-05-23 00:49:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkTreeModel *
|
|
|
|
tr_core_model( TrCore * self )
|
|
|
|
{
|
2007-06-18 03:40:41 +00:00
|
|
|
g_return_val_if_fail (TR_IS_CORE(self), NULL);
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
return self->disposed ? NULL : self->model;
|
2007-05-23 00:49:31 +00:00
|
|
|
}
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2007-09-20 20:14:13 +00:00
|
|
|
tr_handle *
|
2007-05-23 01:47:42 +00:00
|
|
|
tr_core_handle( TrCore * self )
|
|
|
|
{
|
2007-06-18 03:40:41 +00:00
|
|
|
g_return_val_if_fail (TR_IS_CORE(self), NULL);
|
2007-05-23 06:25:15 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
return self->disposed ? NULL : self->handle;
|
2007-05-23 01:47:42 +00:00
|
|
|
}
|
|
|
|
|
2007-12-19 02:46:30 +00:00
|
|
|
static char*
|
|
|
|
doCollate( const char * in )
|
|
|
|
{
|
|
|
|
const char * end = in + strlen( in );
|
|
|
|
char * casefold;
|
|
|
|
char * ret;
|
|
|
|
|
|
|
|
while( in < end ) {
|
|
|
|
const gunichar ch = g_utf8_get_char( in );
|
|
|
|
if (!g_unichar_isalnum (ch)) // eat everything before the first alnum
|
|
|
|
in += g_unichar_to_utf8( ch, NULL );
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( in == end )
|
|
|
|
return g_strdup ("");
|
|
|
|
|
|
|
|
casefold = g_utf8_casefold( in, end-in );
|
|
|
|
ret = g_utf8_collate_key( casefold, -1 );
|
|
|
|
g_free( casefold );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static void
|
|
|
|
tr_core_insert( TrCore * self, TrTorrent * tor )
|
|
|
|
{
|
2007-12-01 20:07:53 +00:00
|
|
|
const tr_info * inf = tr_torrent_info( tor );
|
2007-12-19 02:46:30 +00:00
|
|
|
char * collated = doCollate( inf->name );
|
2007-12-03 19:43:21 +00:00
|
|
|
GtkTreeIter unused;
|
|
|
|
gtk_list_store_insert_with_values( GTK_LIST_STORE( self->model ), &unused, 0,
|
2007-12-19 02:46:30 +00:00
|
|
|
MC_NAME, inf->name,
|
|
|
|
MC_NAME_COLLATED, collated,
|
|
|
|
MC_HASH, inf->hashString,
|
|
|
|
MC_TORRENT, tor,
|
|
|
|
MC_TORRENT_RAW, tor->handle,
|
|
|
|
MC_ID, self->nextid,
|
2007-12-01 20:07:53 +00:00
|
|
|
-1);
|
2007-10-16 14:16:01 +00:00
|
|
|
self->nextid++;
|
2007-12-19 02:46:30 +00:00
|
|
|
g_object_unref( tor );
|
|
|
|
g_free( collated );
|
2007-10-16 14:16:01 +00:00
|
|
|
}
|
|
|
|
|
2007-05-23 02:45:28 +00:00
|
|
|
int
|
2007-10-15 20:58:39 +00:00
|
|
|
tr_core_load( TrCore * self, gboolean paused )
|
2007-05-23 01:47:42 +00:00
|
|
|
{
|
2007-07-23 03:03:45 +00:00
|
|
|
int i;
|
2007-06-27 18:34:38 +00:00
|
|
|
int count = 0;
|
2007-09-20 20:14:13 +00:00
|
|
|
tr_torrent ** torrents;
|
2007-09-27 20:57:58 +00:00
|
|
|
char * path;
|
2007-05-23 02:45:28 +00:00
|
|
|
|
2007-05-23 01:47:42 +00:00
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
path = getdownloaddir( );
|
2007-07-23 03:03:45 +00:00
|
|
|
|
2007-10-26 03:02:23 +00:00
|
|
|
torrents = tr_loadTorrents ( self->handle, path, paused, &count );
|
2007-07-23 03:03:45 +00:00
|
|
|
for( i=0; i<count; ++i )
|
|
|
|
tr_core_insert( self, tr_torrent_new_preexisting( torrents[i] ) );
|
|
|
|
tr_free( torrents );
|
2007-05-23 02:45:28 +00:00
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
g_free( path );
|
2007-05-23 02:45:28 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2007-05-24 02:50:28 +00:00
|
|
|
tr_core_add( TrCore * self, const char * path, enum tr_torrent_action act,
|
|
|
|
gboolean paused )
|
|
|
|
{
|
|
|
|
GList * list;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
|
|
|
list = g_list_append( NULL, (void *) path );
|
|
|
|
ret = tr_core_add_list( self, list, act, paused );
|
|
|
|
g_list_free( list );
|
|
|
|
|
|
|
|
return 1 == ret;
|
|
|
|
}
|
|
|
|
|
2007-10-16 14:16:01 +00:00
|
|
|
static void
|
|
|
|
tr_core_errsig( TrCore * self, enum tr_core_err type, const char * msg )
|
|
|
|
{
|
|
|
|
TrCoreClass * class;
|
|
|
|
|
|
|
|
class = g_type_class_peek( TR_CORE_TYPE );
|
|
|
|
g_signal_emit( self, class->errsig, 0, type, msg );
|
|
|
|
}
|
|
|
|
|
2007-05-24 02:50:28 +00:00
|
|
|
gboolean
|
|
|
|
tr_core_add_dir( TrCore * self, const char * path, const char * dir,
|
|
|
|
enum tr_torrent_action act, gboolean paused )
|
2007-05-23 02:45:28 +00:00
|
|
|
{
|
|
|
|
TrTorrent * tor;
|
2007-05-23 17:59:35 +00:00
|
|
|
char * errstr;
|
2007-05-23 02:45:28 +00:00
|
|
|
|
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
2007-05-23 17:59:35 +00:00
|
|
|
errstr = NULL;
|
2007-05-23 19:26:29 +00:00
|
|
|
tor = tr_torrent_new( self->handle, path, dir, act, paused, &errstr );
|
2007-05-23 02:45:28 +00:00
|
|
|
if( NULL == tor )
|
|
|
|
{
|
2007-05-23 17:59:35 +00:00
|
|
|
tr_core_errsig( self, TR_CORE_ERR_ADD_TORRENT, errstr );
|
|
|
|
g_free( errstr );
|
2007-05-23 02:45:28 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2007-05-23 17:59:35 +00:00
|
|
|
g_assert( NULL == errstr );
|
2007-05-23 02:45:28 +00:00
|
|
|
|
|
|
|
tr_core_insert( self, tor );
|
|
|
|
|
|
|
|
return TRUE;
|
2007-05-23 01:47:42 +00:00
|
|
|
}
|
|
|
|
|
2007-05-24 02:50:28 +00:00
|
|
|
int
|
|
|
|
tr_core_add_list( TrCore * self, GList * paths, enum tr_torrent_action act,
|
|
|
|
gboolean paused )
|
|
|
|
{
|
2007-09-27 20:57:58 +00:00
|
|
|
char * dir;
|
|
|
|
int count;
|
2007-05-24 02:50:28 +00:00
|
|
|
|
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
if( pref_flag_get( PREF_KEY_DIR_ASK ) )
|
2007-05-24 02:50:28 +00:00
|
|
|
{
|
2007-09-27 20:57:58 +00:00
|
|
|
TrCoreClass * class = g_type_class_peek( TR_CORE_TYPE );
|
2007-05-24 02:50:28 +00:00
|
|
|
g_signal_emit( self, class->promptsig, 0, paths, act, paused );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
dir = getdownloaddir();
|
2007-05-24 02:50:28 +00:00
|
|
|
count = 0;
|
2007-06-27 18:34:38 +00:00
|
|
|
for( ; paths; paths=paths->next )
|
2007-09-27 20:57:58 +00:00
|
|
|
if( tr_core_add_dir( self, paths->data, dir, act, paused ) )
|
2007-05-24 02:50:28 +00:00
|
|
|
count++;
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
g_free( dir );
|
2007-05-24 02:50:28 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2007-05-24 10:37:07 +00:00
|
|
|
gboolean
|
|
|
|
tr_core_add_data( TrCore * self, uint8_t * data, size_t size, gboolean paused )
|
|
|
|
{
|
2007-09-27 20:57:58 +00:00
|
|
|
gboolean ret;
|
|
|
|
char * path;
|
2007-05-24 10:37:07 +00:00
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
if( pref_flag_get( PREF_KEY_DIR_ASK ) )
|
2007-05-24 10:37:07 +00:00
|
|
|
{
|
2007-06-27 18:34:38 +00:00
|
|
|
TrCoreClass * class = g_type_class_peek( TR_CORE_TYPE );
|
2007-05-24 10:37:07 +00:00
|
|
|
g_signal_emit( self, class->promptdatasig, 0, data, size, paused );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
path = getdownloaddir( );
|
|
|
|
ret = tr_core_add_data_dir( self, data, size, path, paused );
|
|
|
|
g_free( path );
|
|
|
|
return ret;
|
2007-05-24 10:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
tr_core_add_data_dir( TrCore * self, uint8_t * data, size_t size,
|
|
|
|
const char * dir, gboolean paused )
|
|
|
|
{
|
|
|
|
TrTorrent * tor;
|
2007-06-27 18:34:38 +00:00
|
|
|
char * errstr = NULL;
|
2007-05-24 10:37:07 +00:00
|
|
|
|
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
|
|
|
tor = tr_torrent_new_with_data( self->handle, data, size, dir,
|
|
|
|
paused, &errstr );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
tr_core_errsig( self, TR_CORE_ERR_ADD_TORRENT, errstr );
|
|
|
|
g_free( errstr );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
g_assert( NULL == errstr );
|
|
|
|
|
|
|
|
tr_core_insert( self, tor );
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-05-23 17:59:35 +00:00
|
|
|
void
|
|
|
|
tr_core_torrents_added( TrCore * self )
|
|
|
|
{
|
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
2007-05-24 02:50:28 +00:00
|
|
|
tr_core_update( self );
|
2007-05-23 17:59:35 +00:00
|
|
|
tr_core_errsig( self, TR_CORE_ERR_NO_MORE_TORRENTS, NULL );
|
|
|
|
}
|
|
|
|
|
2007-05-23 01:47:42 +00:00
|
|
|
void
|
2007-05-23 06:25:15 +00:00
|
|
|
tr_core_delete_torrent( TrCore * self, GtkTreeIter * iter )
|
2007-05-23 01:47:42 +00:00
|
|
|
{
|
2007-05-23 06:25:15 +00:00
|
|
|
TrTorrent * tor;
|
|
|
|
|
2007-05-23 01:47:42 +00:00
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
2007-05-23 06:25:15 +00:00
|
|
|
gtk_tree_model_get( self->model, iter, MC_TORRENT, &tor, -1 );
|
|
|
|
gtk_list_store_remove( GTK_LIST_STORE( self->model ), iter );
|
2007-07-23 03:03:45 +00:00
|
|
|
tr_torrentRemoveSaved( tr_torrent_handle( tor ) );
|
2007-05-23 06:25:15 +00:00
|
|
|
|
2007-06-26 18:45:03 +00:00
|
|
|
tr_torrent_sever( tor );
|
2007-05-23 01:47:42 +00:00
|
|
|
}
|
|
|
|
|
2007-11-23 15:36:31 +00:00
|
|
|
static gboolean
|
|
|
|
update_foreach( GtkTreeModel * model,
|
|
|
|
GtkTreePath * path UNUSED,
|
|
|
|
GtkTreeIter * iter,
|
|
|
|
gpointer data UNUSED)
|
2007-05-23 01:47:42 +00:00
|
|
|
{
|
2007-05-23 02:45:28 +00:00
|
|
|
TrTorrent * tor;
|
|
|
|
|
2007-11-23 15:36:31 +00:00
|
|
|
gtk_tree_model_get( model, iter, MC_TORRENT, &tor, -1 );
|
|
|
|
tr_torrent_check_seeding_cap ( tor );
|
|
|
|
g_object_unref( tor );
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2007-11-23 15:36:31 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_core_update( TrCore * self )
|
|
|
|
{
|
|
|
|
int column;
|
|
|
|
GtkSortType order;
|
|
|
|
GtkTreeSortable * sortable;
|
|
|
|
|
|
|
|
/* pause sorting */
|
|
|
|
sortable = GTK_TREE_SORTABLE( self->model );
|
|
|
|
gtk_tree_sortable_get_sort_column_id( sortable, &column, &order );
|
|
|
|
gtk_tree_sortable_set_sort_column_id( sortable, GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID, order );
|
|
|
|
|
|
|
|
/* refresh the model */
|
|
|
|
gtk_tree_model_foreach( self->model, update_foreach, NULL );
|
|
|
|
|
|
|
|
/* resume sorting */
|
|
|
|
gtk_tree_sortable_set_sort_column_id( sortable, column, order );
|
2007-05-23 01:47:42 +00:00
|
|
|
}
|
2007-05-23 17:59:35 +00:00
|
|
|
|
2007-05-24 03:29:23 +00:00
|
|
|
void
|
|
|
|
tr_core_quit( TrCore * self )
|
|
|
|
{
|
|
|
|
TrCoreClass * class;
|
|
|
|
|
|
|
|
TR_IS_CORE( self );
|
|
|
|
|
|
|
|
class = g_type_class_peek( TR_CORE_TYPE );
|
|
|
|
g_signal_emit( self, class->quitsig, 0 );
|
|
|
|
}
|
2007-05-24 13:55:57 +00:00
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
/**
|
|
|
|
*** Prefs
|
|
|
|
**/
|
2007-06-27 18:34:38 +00:00
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
static void
|
|
|
|
commitPrefsChange( TrCore * self, const char * key )
|
|
|
|
{
|
|
|
|
TrCoreClass * class = g_type_class_peek( TR_CORE_TYPE );
|
|
|
|
pref_save( NULL );
|
|
|
|
g_signal_emit( self, class->prefsig, 0, key );
|
|
|
|
}
|
2007-05-24 13:55:57 +00:00
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
void
|
|
|
|
tr_core_set_pref( TrCore * self, const char * key, const char * newval )
|
|
|
|
{
|
|
|
|
char * oldval = pref_string_get( key );
|
|
|
|
if( tr_strcmp( oldval, newval ) )
|
2007-05-24 13:55:57 +00:00
|
|
|
{
|
2007-09-27 20:57:58 +00:00
|
|
|
pref_string_set( key, newval );
|
|
|
|
commitPrefsChange( self, key );
|
2007-05-24 13:55:57 +00:00
|
|
|
}
|
2007-09-27 20:57:58 +00:00
|
|
|
g_free( oldval );
|
2007-05-24 13:55:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-09-27 20:57:58 +00:00
|
|
|
tr_core_set_pref_bool( TrCore * self, const char * key, gboolean newval )
|
2007-05-24 13:55:57 +00:00
|
|
|
{
|
2007-09-27 20:57:58 +00:00
|
|
|
const gboolean oldval = pref_flag_get( key );
|
|
|
|
if( oldval != newval )
|
|
|
|
{
|
|
|
|
pref_flag_set( key, newval );
|
|
|
|
commitPrefsChange( self, key );
|
|
|
|
}
|
2007-05-24 13:55:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-09-27 20:57:58 +00:00
|
|
|
tr_core_set_pref_int( TrCore * self, const char * key, int newval )
|
2007-05-24 13:55:57 +00:00
|
|
|
{
|
2007-09-27 20:57:58 +00:00
|
|
|
const int oldval = pref_int_get( key );
|
|
|
|
if( oldval != newval )
|
|
|
|
{
|
|
|
|
pref_int_set( key, newval );
|
|
|
|
commitPrefsChange( self, key );
|
|
|
|
}
|
2007-05-24 13:55:57 +00:00
|
|
|
}
|