2007-05-23 00:49:31 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-01 17:20:20 +00:00
|
|
|
* Copyright (c) 2007-2008 Transmission authors and contributors
|
2007-05-23 00:49:31 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TR_CORE_H
|
|
|
|
#define TR_CORE_H
|
|
|
|
|
2007-05-23 01:47:42 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2007-05-23 00:49:31 +00:00
|
|
|
#include <glib-object.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2007-07-18 23:04:26 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2008-03-19 14:54:32 +00:00
|
|
|
#include "conf.h" /* pref_flag_t */
|
2008-02-26 19:58:03 +00:00
|
|
|
#include "tr-torrent.h"
|
2007-05-23 19:26:29 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
#define TR_CORE_TYPE ( tr_core_get_type( ) )
|
|
|
|
#define TR_CORE( o ) G_TYPE_CHECK_INSTANCE_CAST( ( o ), TR_CORE_TYPE,\
|
|
|
|
TrCore )
|
|
|
|
#define TR_IS_CORE( o ) G_TYPE_CHECK_INSTANCE_TYPE( ( o ), TR_CORE_TYPE )
|
|
|
|
#define TR_CORE_CLASS( k ) G_TYPE_CHECK_CLASS_CAST( ( k ), TR_CORE_TYPE,\
|
|
|
|
TrCoreClass )
|
|
|
|
#define TR_IS_CORE_CLASS( k ) G_TYPE_CHECK_CLASS_TYPE( ( k ), TR_CORE_TYPE )
|
|
|
|
#define TR_CORE_GET_CLASS( o ) G_TYPE_INSTANCE_GET_CLASS( ( o ),\
|
|
|
|
TR_CORE_TYPE, \
|
|
|
|
TrCoreClass )
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2008-01-16 16:03:18 +00:00
|
|
|
struct core_stats
|
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
int downloadCount;
|
|
|
|
int seedingCount;
|
|
|
|
float clientDownloadSpeed;
|
|
|
|
float clientUploadSpeed;
|
2008-01-16 16:03:18 +00:00
|
|
|
};
|
|
|
|
|
2008-02-09 17:29:05 +00:00
|
|
|
typedef struct TrCore
|
2007-05-23 00:49:31 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
GObject parent;
|
2008-02-09 17:29:05 +00:00
|
|
|
struct TrCorePrivate * priv;
|
|
|
|
}
|
|
|
|
TrCore;
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2008-02-09 17:29:05 +00:00
|
|
|
typedef struct TrCoreClass
|
2007-05-23 00:49:31 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
GObjectClass parent;
|
2008-02-09 17:29:05 +00:00
|
|
|
|
2009-04-07 20:13:08 +00:00
|
|
|
/* "blocklist-updated" signal with a callback type of
|
|
|
|
void (*callback )( TrCore*, int ruleCount, gpointer userData ). */
|
|
|
|
int blocklistSignal;
|
2008-09-02 20:59:00 +00:00
|
|
|
|
2009-04-07 20:13:08 +00:00
|
|
|
/* "port-tested" signal with a callback type of
|
|
|
|
void( *callback )( TrCore*, gboolean isOpen, gpointer userData ). */
|
|
|
|
int portSignal;
|
2008-02-09 17:29:05 +00:00
|
|
|
|
2009-04-07 20:13:08 +00:00
|
|
|
/* "error" signal with a callback type of
|
|
|
|
void( *callback )( TrCore*, enum tr_core_err, const char * humanReadable, gpointer userData ). */
|
|
|
|
int errsig;
|
|
|
|
|
|
|
|
/* "add-torrent-prompt" signal with a callback type of
|
|
|
|
void ( *callback)( TrCore *, gpointer ctor, gpointer userData )
|
2008-03-18 01:22:11 +00:00
|
|
|
The handler assumes ownership of ctor and must free when done */
|
2009-04-07 20:13:08 +00:00
|
|
|
int promptsig;
|
2008-02-09 17:29:05 +00:00
|
|
|
|
2007-05-24 03:29:23 +00:00
|
|
|
/* "quit" signal:
|
|
|
|
void handler( TrCore *, gpointer ) */
|
2009-04-07 20:13:08 +00:00
|
|
|
int quitsig;
|
2008-02-09 17:29:05 +00:00
|
|
|
|
2007-05-24 13:55:57 +00:00
|
|
|
/* "prefs-changed" signal:
|
|
|
|
void handler( TrCore *, int, gpointer ) */
|
2009-04-07 20:13:08 +00:00
|
|
|
int prefsig;
|
2008-02-09 17:29:05 +00:00
|
|
|
}
|
|
|
|
TrCoreClass;
|
2007-05-23 17:59:35 +00:00
|
|
|
|
|
|
|
enum tr_core_err
|
|
|
|
{
|
2008-07-09 16:33:00 +00:00
|
|
|
TR_CORE_ERR_ADD_TORRENT_ERR = TR_EINVALID,
|
|
|
|
TR_CORE_ERR_ADD_TORRENT_DUP = TR_EDUPLICATE,
|
|
|
|
TR_CORE_ERR_NO_MORE_TORRENTS, /* finished adding a batch */
|
|
|
|
TR_CORE_ERR_SAVE_STATE /* error saving state */
|
2007-05-23 00:49:31 +00:00
|
|
|
};
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
GType tr_core_get_type( void );
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2008-10-28 19:49:33 +00:00
|
|
|
TrCore * tr_core_new( tr_session * );
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_core_close( TrCore* );
|
2008-04-17 20:35:18 +00:00
|
|
|
|
2007-05-23 01:47:42 +00:00
|
|
|
/* Return the model used without incrementing the reference count */
|
2008-02-14 17:18:00 +00:00
|
|
|
GtkTreeModel * tr_core_model( TrCore * self );
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2008-10-28 19:49:33 +00:00
|
|
|
tr_session * tr_core_session( TrCore * self );
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_core_get_stats( const TrCore * core,
|
|
|
|
struct core_stats * setme );
|
2008-02-09 17:29:05 +00:00
|
|
|
|
2008-02-13 03:00:21 +00:00
|
|
|
/******
|
|
|
|
*******
|
|
|
|
******/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load saved state and return number of torrents added.
|
|
|
|
* May trigger one or more "error" signals with TR_CORE_ERR_ADD_TORRENT
|
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
int tr_core_load( TrCore * self,
|
|
|
|
gboolean forcepaused );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a list of torrents.
|
2008-03-18 01:22:11 +00:00
|
|
|
* This function assumes ownership of torrentFiles
|
|
|
|
*
|
|
|
|
* May pop up dialogs for each torrent if that preference is enabled.
|
2008-02-13 03:00:21 +00:00
|
|
|
* May trigger one or more "error" signals with TR_CORE_ERR_ADD_TORRENT
|
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_core_add_list( TrCore * self,
|
|
|
|
GSList * torrentFiles,
|
|
|
|
pref_flag_t start,
|
|
|
|
pref_flag_t prompt );
|
2008-03-19 14:54:32 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
#define tr_core_add_list_defaults( c, l ) \
|
|
|
|
tr_core_add_list( c, l, PREF_FLAG_DEFAULT, PREF_FLAG_DEFAULT )
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
|
|
|
|
/** Add a torrent. */
|
2009-04-07 20:13:08 +00:00
|
|
|
gboolean tr_core_add_file( TrCore*, const char * filename, gboolean * setme_success, GError ** err );
|
|
|
|
/** Add a torrent. */
|
|
|
|
void tr_core_add_torrent( TrCore*, TrTorrent* );
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2008-08-17 12:39:26 +00:00
|
|
|
/** Present the main window */
|
2009-04-07 20:13:08 +00:00
|
|
|
gboolean tr_core_present_window( TrCore*, gboolean * setme_success, GError ** err );
|
2008-08-17 12:39:26 +00:00
|
|
|
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifies listeners that torrents have been added.
|
|
|
|
* This should be called after one or more tr_core_add*() calls.
|
|
|
|
*/
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_core_torrents_added( TrCore * self );
|
2008-02-13 03:00:21 +00:00
|
|
|
|
|
|
|
/******
|
|
|
|
*******
|
|
|
|
******/
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2008-07-16 19:38:22 +00:00
|
|
|
/* we've gotten notice from RPC that a torrent has been destroyed;
|
|
|
|
update our gui accordingly */
|
2009-04-07 20:13:08 +00:00
|
|
|
void tr_core_torrent_destroyed( TrCore * self, int torrentId );
|
2008-07-16 19:38:22 +00:00
|
|
|
|
|
|
|
/* remove a torrent */
|
2009-04-07 20:13:08 +00:00
|
|
|
void tr_core_remove_torrent( TrCore * self, TrTorrent * gtor, int deleteFiles );
|
2008-02-19 03:57:03 +00:00
|
|
|
|
2007-05-23 06:25:15 +00:00
|
|
|
/* update the model with current torrent status */
|
2009-04-07 20:13:08 +00:00
|
|
|
void tr_core_update( TrCore * self );
|
2007-05-23 02:45:28 +00:00
|
|
|
|
2007-05-24 03:29:23 +00:00
|
|
|
/* emit the "quit" signal */
|
2009-04-07 20:13:08 +00:00
|
|
|
void tr_core_quit( TrCore * self );
|
|
|
|
|
|
|
|
/**
|
|
|
|
*** Set a preference value, save the prefs file, and emit the "prefs-changed" signal
|
|
|
|
**/
|
|
|
|
|
|
|
|
void tr_core_set_pref ( TrCore * self, const char * key, const char * val );
|
|
|
|
void tr_core_set_pref_bool( TrCore * self, const char * key, gboolean val );
|
|
|
|
void tr_core_set_pref_int ( TrCore * self, const char * key, int val );
|
|
|
|
void tr_core_set_pref_double( TrCore * self, const char * key, double val );
|
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
|
|
|
void tr_core_port_test( TrCore * core );
|
|
|
|
|
|
|
|
void tr_core_blocklist_update( TrCore * core );
|
2008-09-02 20:59:00 +00:00
|
|
|
|
2009-04-24 01:37:04 +00:00
|
|
|
void tr_core_exec( TrCore * core, const tr_benc * benc );
|
|
|
|
|
|
|
|
void tr_core_exec_json( TrCore * core, const char * json );
|
|
|
|
|
|
|
|
|
2008-02-14 17:18:00 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2007-05-24 13:55:57 +00:00
|
|
|
|
2007-05-23 00:49:31 +00:00
|
|
|
/* column names for the model used to store torrent information */
|
|
|
|
/* keep this in sync with the type array in tr_core_init() in tr_core.c */
|
2007-12-19 02:46:30 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
MC_NAME,
|
|
|
|
MC_NAME_COLLATED,
|
|
|
|
MC_TORRENT,
|
|
|
|
MC_TORRENT_RAW,
|
2008-10-20 17:54:56 +00:00
|
|
|
MC_ACTIVITY,
|
2007-12-19 02:46:30 +00:00
|
|
|
MC_ROW_COUNT
|
2007-05-23 00:49:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|