2006-08-13 00:26:52 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-01 17:20:20 +00:00
|
|
|
* Copyright (c) 2006-2008 Transmission authors and contributors
|
2006-08-13 00:26:52 +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.
|
|
|
|
*****************************************************************************/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
|
2007-07-18 23:04:26 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2009-07-14 20:09:46 +00:00
|
|
|
#include <libtransmission/utils.h> /* tr_truncd() */
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-02-26 19:58:03 +00:00
|
|
|
#include "tr-prefs.h"
|
|
|
|
#include "tr-torrent.h"
|
2007-09-27 20:57:58 +00:00
|
|
|
#include "conf.h"
|
2008-02-24 15:42:31 +00:00
|
|
|
#include "notify.h"
|
2006-07-16 19:39:23 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
struct TrTorrentPrivate
|
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent * handle;
|
|
|
|
gboolean do_remove;
|
2008-02-11 15:27:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-04-04 00:32:58 +00:00
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent_init( GTypeInstance * instance,
|
|
|
|
gpointer g_class UNUSED )
|
2007-04-04 00:32:58 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
TrTorrent * self = TR_TORRENT( instance );
|
2008-02-11 15:27:36 +00:00
|
|
|
struct TrTorrentPrivate * p;
|
|
|
|
|
|
|
|
p = self->priv = G_TYPE_INSTANCE_GET_PRIVATE( self,
|
|
|
|
TR_TORRENT_TYPE,
|
|
|
|
struct TrTorrentPrivate );
|
|
|
|
p->handle = NULL;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-05-23 06:25:15 +00:00
|
|
|
#ifdef REFDBG
|
2008-02-11 15:27:36 +00:00
|
|
|
g_message( "torrent %p init", self );
|
2007-05-23 06:25:15 +00:00
|
|
|
#endif
|
2008-02-11 15:27:36 +00:00
|
|
|
}
|
2007-05-23 06:25:15 +00:00
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
static int
|
2008-06-01 05:36:23 +00:00
|
|
|
isDisposed( const TrTorrent * tor )
|
2008-02-11 15:27:36 +00:00
|
|
|
{
|
2008-06-01 05:36:23 +00:00
|
|
|
return !tor || !TR_IS_TORRENT( tor ) || !tor->priv;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-02-11 15:27:36 +00:00
|
|
|
tr_torrent_dispose( GObject * o )
|
2007-10-12 20:50:03 +00:00
|
|
|
{
|
2008-02-13 03:00:21 +00:00
|
|
|
GObjectClass * parent;
|
2008-09-23 19:11:04 +00:00
|
|
|
TrTorrent * self = TR_TORRENT( o );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
if( !isDisposed( self ) )
|
|
|
|
{
|
|
|
|
if( self->priv->handle )
|
2008-02-19 05:03:56 +00:00
|
|
|
{
|
2008-05-20 23:58:59 +00:00
|
|
|
if( self->priv->do_remove )
|
|
|
|
tr_torrentRemove( self->priv->handle );
|
2008-02-19 05:03:56 +00:00
|
|
|
else
|
2008-05-21 17:14:58 +00:00
|
|
|
tr_torrentFree( self->priv->handle );
|
2008-02-19 05:03:56 +00:00
|
|
|
}
|
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
self->priv = NULL;
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
parent = g_type_class_peek( g_type_parent( TR_TORRENT_TYPE ) );
|
2008-02-11 15:27:36 +00:00
|
|
|
parent->dispose( o );
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-12 20:50:03 +00:00
|
|
|
static void
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent_class_init( gpointer g_class,
|
|
|
|
gpointer g_class_data UNUSED )
|
2007-10-12 20:50:03 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS( g_class );
|
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
gobject_class->dispose = tr_torrent_dispose;
|
2008-02-13 03:00:21 +00:00
|
|
|
g_type_class_add_private( g_class, sizeof( struct TrTorrentPrivate ) );
|
2007-10-12 20:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GType
|
2008-02-13 03:00:21 +00:00
|
|
|
tr_torrent_get_type( void )
|
2007-10-12 20:50:03 +00:00
|
|
|
{
|
2008-09-23 19:11:04 +00:00
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if( !type )
|
|
|
|
{
|
|
|
|
static const GTypeInfo info = {
|
|
|
|
sizeof ( TrTorrentClass ),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
tr_torrent_class_init, /* class_init */
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof ( TrTorrent ),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
tr_torrent_init, /* instance_init */
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
type = g_type_register_static( G_TYPE_OBJECT, "TrTorrent", &info, 0 );
|
|
|
|
}
|
|
|
|
return type;
|
2007-10-12 20:50:03 +00:00
|
|
|
}
|
|
|
|
|
2007-09-20 20:14:13 +00:00
|
|
|
tr_torrent *
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent_handle( TrTorrent *tor )
|
2007-06-26 18:45:03 +00:00
|
|
|
{
|
2008-02-11 15:27:36 +00:00
|
|
|
return isDisposed( tor ) ? NULL : tor->priv->handle;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-09-20 20:14:13 +00:00
|
|
|
const tr_stat *
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent_stat( TrTorrent *tor )
|
2007-06-26 18:45:03 +00:00
|
|
|
{
|
2008-02-11 15:27:36 +00:00
|
|
|
tr_torrent * handle = tr_torrent_handle( tor );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
return handle ? tr_torrentStatCached( handle ) : NULL;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-09-20 20:14:13 +00:00
|
|
|
const tr_info *
|
2008-02-11 15:27:36 +00:00
|
|
|
tr_torrent_info( TrTorrent * tor )
|
|
|
|
{
|
|
|
|
tr_torrent * handle = tr_torrent_handle( tor );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-02-11 15:27:36 +00:00
|
|
|
return handle ? tr_torrentInfo( handle ) : NULL;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2008-02-24 15:42:31 +00:00
|
|
|
static gboolean
|
|
|
|
notifyInMainThread( gpointer user_data )
|
|
|
|
{
|
2008-04-01 15:48:23 +00:00
|
|
|
tr_notify_send( TR_TORRENT( user_data ) );
|
2008-02-24 15:42:31 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-02-24 15:42:31 +00:00
|
|
|
static void
|
2009-01-13 01:44:59 +00:00
|
|
|
completenessChangedCallback( tr_torrent * tor,
|
2008-10-20 17:54:56 +00:00
|
|
|
tr_completeness completeness,
|
|
|
|
void * user_data )
|
2008-02-24 15:42:31 +00:00
|
|
|
{
|
2009-01-13 01:44:59 +00:00
|
|
|
if( ( completeness != TR_LEECH ) && ( tr_torrentStat( tor )->sizeWhenDone != 0 ) )
|
2009-06-29 17:22:35 +00:00
|
|
|
gtr_idle_add( notifyInMainThread, user_data );
|
2008-02-24 15:42:31 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2007-05-23 19:26:29 +00:00
|
|
|
static TrTorrent *
|
2008-10-20 17:54:56 +00:00
|
|
|
maketorrent( tr_torrent * tor )
|
2007-05-23 19:26:29 +00:00
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
TrTorrent * gtor = g_object_new( TR_TORRENT_TYPE, NULL );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-20 17:54:56 +00:00
|
|
|
gtor->priv->handle = tor;
|
|
|
|
tr_torrentSetCompletenessCallback( tor, completenessChangedCallback, gtor );
|
|
|
|
return gtor;
|
2007-05-23 19:26:29 +00:00
|
|
|
}
|
|
|
|
|
2007-07-23 03:03:45 +00:00
|
|
|
TrTorrent*
|
2007-09-20 20:14:13 +00:00
|
|
|
tr_torrent_new_preexisting( tr_torrent * tor )
|
2007-07-23 03:03:45 +00:00
|
|
|
{
|
|
|
|
return maketorrent( tor );
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
TrTorrent *
|
2008-10-28 19:49:33 +00:00
|
|
|
tr_torrent_new_ctor( tr_session * session,
|
|
|
|
tr_ctor * ctor,
|
2009-02-09 20:08:33 +00:00
|
|
|
int * errcode )
|
2007-05-23 19:26:29 +00:00
|
|
|
{
|
2008-02-13 03:00:21 +00:00
|
|
|
tr_torrent * tor;
|
2008-09-23 19:11:04 +00:00
|
|
|
uint8_t doTrash = FALSE;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-07-02 00:51:04 +00:00
|
|
|
/* let the gtk client handle the removal, since libT
|
|
|
|
* doesn't have any concept of the glib trash API */
|
|
|
|
tr_ctorGetDeleteSource( ctor, &doTrash );
|
2008-03-09 15:27:08 +00:00
|
|
|
tr_ctorSetDeleteSource( ctor, FALSE );
|
2009-04-02 17:30:29 +00:00
|
|
|
tor = tr_torrentNew( ctor, errcode );
|
2008-03-09 15:27:08 +00:00
|
|
|
|
2008-07-02 00:51:04 +00:00
|
|
|
if( tor && doTrash )
|
2008-10-02 17:10:01 +00:00
|
|
|
{
|
2008-10-28 19:49:33 +00:00
|
|
|
const char * config = tr_sessionGetConfigDir( session );
|
2008-10-02 17:10:01 +00:00
|
|
|
const char * source = tr_ctorGetSourceFile( ctor );
|
|
|
|
const int is_internal = source && ( strstr( source, config ) == source );
|
|
|
|
|
|
|
|
/* #1294: don't delete the source .torrent file if it's our internal copy */
|
|
|
|
if( !is_internal )
|
2010-04-21 04:38:54 +00:00
|
|
|
gtr_file_trash_or_remove( source );
|
2008-10-02 17:10:01 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-02-09 20:08:33 +00:00
|
|
|
return tor ? maketorrent( tor ) : NULL;
|
2007-05-24 10:37:07 +00:00
|
|
|
}
|
|
|
|
|
2008-02-19 05:03:56 +00:00
|
|
|
void
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_torrent_set_remove_flag( TrTorrent * gtor,
|
|
|
|
gboolean do_remove )
|
2008-02-19 05:03:56 +00:00
|
|
|
{
|
|
|
|
if( !isDisposed( gtor ) )
|
2008-05-20 23:58:59 +00:00
|
|
|
gtor->priv->do_remove = do_remove;
|
2008-02-19 05:03:56 +00:00
|
|
|
}
|
|
|
|
|
2008-04-11 02:21:33 +00:00
|
|
|
void
|
|
|
|
tr_torrent_open_folder( TrTorrent * gtor )
|
|
|
|
{
|
2009-11-09 06:58:18 +00:00
|
|
|
const tr_torrent * tor = tr_torrent_handle( gtor );
|
|
|
|
const tr_info * info = tr_torrent_info( gtor );
|
|
|
|
const gboolean single = info->fileCount == 1;
|
|
|
|
char * path = single ? g_build_filename( tr_torrentGetCurrentDir( tor ), NULL )
|
|
|
|
: g_build_filename( tr_torrentGetCurrentDir( tor ), info->name, NULL );
|
|
|
|
gtr_open_file( path );
|
|
|
|
g_free( path );
|
2008-04-11 02:21:33 +00:00
|
|
|
}
|