1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 16:24:02 +00:00

"open torrent file" now works.

This commit is contained in:
Charles Kerr 2007-07-25 05:37:12 +00:00
parent 95313e077a
commit 2d0ba91d5f

View file

@ -47,6 +47,55 @@ extern "C"
#include "torrent-filter.h" #include "torrent-filter.h"
#include "torrent-list.h" #include "torrent-list.h"
/***
****
***/
namespace
{
int bestDecimal( double num ) {
if ( num < 10 ) return 2;
if ( num < 100 ) return 1;
return 0;
}
wxString toWxStr( const char * s )
{
return wxString( s, wxConvUTF8 );
}
std::string toStr( const wxString& xstr )
{
return std::string( xstr.mb_str( *wxConvCurrent ) );
}
wxString getReadableSize( uint64_t size )
{
int i;
static const char *sizestrs[] = { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB" };
for ( i=0; size>>10; ++i ) size = size>>10;
char buf[512];
snprintf( buf, sizeof(buf), "%.*f %s", bestDecimal(size), (double)size, sizestrs[i] );
return toWxStr( buf );
}
wxString getReadableSize( float f )
{
return getReadableSize( (uint64_t)f );
}
wxString getReadableSpeed( float f )
{
wxString xstr = getReadableSize(f);
xstr += _T("/s");
return xstr;
}
}
/***
****
***/
class MyApp : public wxApp class MyApp : public wxApp
{ {
virtual bool OnInit(); virtual bool OnInit();
@ -54,6 +103,8 @@ class MyApp : public wxApp
namespace namespace
{ {
const char * destination = "/home/charles/torrents";
tr_handle_t * handle = NULL; tr_handle_t * handle = NULL;
typedef std::vector<tr_torrent_t*> torrents_v; typedef std::vector<tr_torrent_t*> torrents_v;
@ -71,11 +122,12 @@ public:
void OnOpen( wxCommandEvent& ); void OnOpen( wxCommandEvent& );
void OnRecheck( wxCommandEvent& ); void OnRecheck( wxCommandEvent& );
void OnTimer( wxTimerEvent& ); void OnTimer( wxTimerEvent& );
void OnItemSelected( wxListEvent& ); void OnFilterSelected( wxListEvent& );
virtual void OnTorrentListSelectionChanged( TorrentListCtrl*, const std::set<tr_torrent_t*>& ); virtual void OnTorrentListSelectionChanged( TorrentListCtrl*, const std::set<tr_torrent_t*>& );
private: private:
void RefreshFilterCounts( ); void RefreshFilterCounts( );
void ApplyCurrentFilter( );
protected: protected:
wxConfig * myConfig; wxConfig * myConfig;
@ -89,6 +141,7 @@ private:
wxIcon myTrayIconIcon; wxIcon myTrayIconIcon;
torrents_v myTorrents; torrents_v myTorrents;
torrents_v mySelectedTorrents; torrents_v mySelectedTorrents;
int myFilter;
private: private:
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
@ -110,7 +163,7 @@ enum
}; };
BEGIN_EVENT_TABLE(MyFrame, wxFrame) BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_LIST_ITEM_SELECTED( ID_Filter, MyFrame::OnItemSelected ) EVT_LIST_ITEM_SELECTED( ID_Filter, MyFrame::OnFilterSelected )
EVT_MENU( wxID_REFRESH, MyFrame::OnRecheck ) EVT_MENU( wxID_REFRESH, MyFrame::OnRecheck )
END_EVENT_TABLE() END_EVENT_TABLE()
@ -134,9 +187,16 @@ void MyFrame :: OnOpen( wxCommandEvent& event )
size_t nPaths = paths.GetCount(); size_t nPaths = paths.GetCount();
for( size_t i=0; i<nPaths; ++i ) for( size_t i=0; i<nPaths; ++i )
{ {
const wxString& w = paths[i]; const std::string filename = toStr( paths[i] );
std::cerr << w.ToAscii() << std::endl; tr_torrent_t * tor = tr_torrentInit( handle,
filename.c_str(),
destination,
0, NULL );
if( tor )
myTorrents.push_back( tor );
} }
ApplyCurrentFilter( );
myConfig->Write( key, w->GetDirectory() ); myConfig->Write( key, w->GetDirectory() );
} }
@ -166,42 +226,6 @@ bool MyApp::OnInit()
**** ****
***/ ***/
namespace
{
int bestDecimal( double num ) {
if ( num < 10 ) return 2;
if ( num < 100 ) return 1;
return 0;
}
wxString toWxStr( const char * s )
{
return wxString( s, wxConvUTF8 );
}
wxString getReadableSize( uint64_t size )
{
int i;
static const char *sizestrs[] = { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB" };
for ( i=0; size>>10; ++i ) size = size>>10;
char buf[512];
snprintf( buf, sizeof(buf), "%.*f %s", bestDecimal(size), (double)size, sizestrs[i] );
return toWxStr( buf );
}
wxString getReadableSize( float f )
{
return getReadableSize( (uint64_t)f );
}
wxString getReadableSpeed( float f )
{
wxString xstr = getReadableSize(f);
xstr += _T("/s");
return xstr;
}
}
void void
MyFrame :: RefreshFilterCounts( ) MyFrame :: RefreshFilterCounts( )
{ {
@ -216,14 +240,20 @@ MyFrame :: RefreshFilterCounts( )
} }
void void
MyFrame :: OnItemSelected( wxListEvent& event ) MyFrame :: ApplyCurrentFilter( )
{ {
const int item = event.GetIndex ();
torrents_v tmp( myTorrents ); torrents_v tmp( myTorrents );
TorrentFilter :: RemoveFailures( item, tmp ); TorrentFilter :: RemoveFailures( myFilter, tmp );
myTorrentList->Assign( tmp ); myTorrentList->Assign( tmp );
} }
void
MyFrame :: OnFilterSelected( wxListEvent& event )
{
myFilter = event.GetIndex( );
ApplyCurrentFilter( );
}
void void
MyFrame :: OnRecheck( wxCommandEvent& unused ) MyFrame :: OnRecheck( wxCommandEvent& unused )
{ {
@ -270,7 +300,8 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size):
myConfig( new wxConfig( _T("xmission") ) ), myConfig( new wxConfig( _T("xmission") ) ),
myPulseTimer( this, ID_Pulse ), myPulseTimer( this, ID_Pulse ),
myLogoIcon( transmission_xpm ), myLogoIcon( transmission_xpm ),
myTrayIconIcon( systray_xpm ) myTrayIconIcon( systray_xpm ),
myFilter( TorrentFilter::SHOW_ALL )
{ {
/** /**
*** Menu *** Menu
@ -391,7 +422,6 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size):
**/ **/
const int flags = TR_FLAG_PAUSED; const int flags = TR_FLAG_PAUSED;
const char * destination = "/home/charles/torrents";
int count = 0; int count = 0;
tr_torrent_t ** torrents = tr_loadTorrents ( handle, destination, flags, &count ); tr_torrent_t ** torrents = tr_loadTorrents ( handle, destination, flags, &count );
myTorrents.insert( myTorrents.end(), torrents, torrents+count ); myTorrents.insert( myTorrents.end(), torrents, torrents+count );