2007-07-27 23:09:09 +00:00
|
|
|
/*
|
2007-08-14 13:53:03 +00:00
|
|
|
* Xmission - a cross-platform bittorrent client
|
|
|
|
* Copyright (C) 2007 Charles Kerr <charles@rebelbase.com>
|
2007-07-27 23:09:09 +00:00
|
|
|
*
|
2007-08-14 13:53:03 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2007-08-18 17:19:49 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
2007-07-27 23:09:09 +00:00
|
|
|
*/
|
|
|
|
|
2007-08-22 19:49:24 +00:00
|
|
|
#include <wx/dcclient.h>
|
|
|
|
#include <wx/dcmemory.h>
|
|
|
|
#include <wx/event.h>
|
2007-07-27 23:09:09 +00:00
|
|
|
#include <wx/gbsizer.h>
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/intl.h>
|
2007-08-22 19:49:24 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
#include "foreach.h"
|
2007-07-27 23:09:09 +00:00
|
|
|
#include "speed-stats.h"
|
|
|
|
|
2007-08-24 01:31:26 +00:00
|
|
|
#define SNAPSHOT_PIXEL_WIDTH 2
|
2007-08-22 19:49:24 +00:00
|
|
|
|
2007-07-27 23:09:09 +00:00
|
|
|
BEGIN_EVENT_TABLE( SpeedStats, wxPanel )
|
2007-08-22 19:49:24 +00:00
|
|
|
EVT_SIZE( SpeedStats::OnSize )
|
|
|
|
EVT_PAINT( SpeedStats::OnPaint )
|
2007-07-27 23:09:09 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
SpeedStats :: SpeedStats( wxWindow * parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint & pos,
|
|
|
|
const wxSize & size,
|
|
|
|
long style,
|
|
|
|
const wxString & name ):
|
2007-08-22 19:49:24 +00:00
|
|
|
wxPanel( parent, id, pos, size, style|wxFULL_REPAINT_ON_RESIZE, name ),
|
|
|
|
myBitmap( 0 ),
|
|
|
|
myTorrent( 0 ),
|
|
|
|
myMaxSpeed( -1 ),
|
|
|
|
myHistory( 0 )
|
|
|
|
{
|
|
|
|
myColors[BACKGROUND] = wxColour( 0, 0, 0 ); // black
|
|
|
|
myColors[FRAME] = wxColour( 34, 139, 34 ); // forest green
|
|
|
|
myColors[ALL_UP] = wxColour( 255, 0, 0 );
|
|
|
|
myColors[TORRENT_UP] = wxColour( 255, 255, 0 );
|
|
|
|
|
|
|
|
myColors[ALL_DOWN] = wxColour( 255, 0, 255 );
|
|
|
|
myColors[TORRENT_DOWN] = wxColour( 0, 255, 128 );
|
|
|
|
}
|
|
|
|
|
|
|
|
SpeedStats :: ~SpeedStats()
|
2007-07-27 23:09:09 +00:00
|
|
|
{
|
2007-08-22 19:49:24 +00:00
|
|
|
delete myBitmap;
|
2007-07-27 23:09:09 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 16:38:58 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
|
|
|
void
|
|
|
|
SpeedStats :: SetColor( int i, const wxColour& c )
|
|
|
|
{
|
|
|
|
assert( 0<=i && i<N_COLORS );
|
|
|
|
|
|
|
|
myColors[i] = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxString
|
|
|
|
SpeedStats :: GetColorName( int i )
|
|
|
|
{
|
|
|
|
static const wxString xstr[N_COLORS] = {
|
|
|
|
_T("background"), _T("frame"),
|
|
|
|
_T("torrent-up"), _T("torrent-down"),
|
|
|
|
_T("all-up"), _T("all-down")
|
|
|
|
};
|
|
|
|
|
|
|
|
wxString ret = _T("speed-color-");
|
|
|
|
ret += xstr[i];
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
|
|
|
|
2007-07-27 23:09:09 +00:00
|
|
|
void
|
2007-08-22 19:49:24 +00:00
|
|
|
SpeedStats :: OnSize( wxSizeEvent& event )
|
2007-07-27 23:09:09 +00:00
|
|
|
{
|
2007-08-22 19:49:24 +00:00
|
|
|
delete myBitmap;
|
|
|
|
|
|
|
|
const wxSize size = event.GetSize();
|
|
|
|
myBitmap = new wxBitmap( size.GetWidth(), size.GetHeight() );
|
|
|
|
myHistory = size.GetWidth() / SNAPSHOT_PIXEL_WIDTH;
|
2007-07-27 23:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SpeedStats :: OnPaint( wxPaintEvent& WXUNUSED(event) )
|
|
|
|
{
|
2007-08-22 19:49:24 +00:00
|
|
|
const int draw_width = myBitmap->GetWidth();
|
|
|
|
const int draw_height = myBitmap->GetHeight();
|
|
|
|
|
|
|
|
const int top = (((int)myMaxSpeed + 11) / 10) * 10;
|
|
|
|
const double y_scale = (double)draw_height / top;
|
|
|
|
const int num_bars = 4;
|
|
|
|
const int per_bar = top / num_bars;
|
|
|
|
|
|
|
|
// clear
|
2007-08-23 02:54:34 +00:00
|
|
|
wxMemoryDC memDC;
|
|
|
|
memDC.SelectObject( *myBitmap );
|
2007-08-22 19:49:24 +00:00
|
|
|
memDC.SetBackground( myColors[BACKGROUND] );
|
|
|
|
memDC.Clear( );
|
|
|
|
|
|
|
|
// draw the frame
|
|
|
|
|
|
|
|
memDC.SetPen( wxPen ( myColors[FRAME] ) );
|
|
|
|
memDC.SetTextForeground( myColors[FRAME] );
|
|
|
|
|
|
|
|
const int fontsize = 10;
|
|
|
|
const int dely = int( draw_height / num_bars );
|
|
|
|
|
|
|
|
wxString xstr;
|
|
|
|
|
|
|
|
memDC.SetFont( wxFont ( fontsize, wxFONTFAMILY_SWISS,
|
|
|
|
wxFONTSTYLE_NORMAL,
|
|
|
|
wxFONTWEIGHT_NORMAL ) );
|
|
|
|
|
|
|
|
for( int i=0; i<=num_bars; ++i )
|
|
|
|
{
|
|
|
|
const int y = (int)(draw_height - (i*dely+0.5));
|
|
|
|
|
|
|
|
// line
|
|
|
|
memDC.DrawLine( wxCoord(0), wxCoord(draw_height - (i*dely+0.5)),
|
|
|
|
wxCoord(draw_width), wxCoord(draw_height - (i*dely+0.5)) );
|
|
|
|
|
|
|
|
xstr.Printf( _("%d KiB/s"), (per_bar*i) );
|
|
|
|
memDC.DrawText( xstr, wxCoord(0), wxCoord(y+2) );
|
|
|
|
}
|
|
|
|
|
|
|
|
const int n = myStats.size( );
|
|
|
|
if( n )
|
|
|
|
{
|
|
|
|
wxPoint * points = new wxPoint[ n ];
|
|
|
|
|
|
|
|
int x = draw_width - (n * SNAPSHOT_PIXEL_WIDTH);
|
|
|
|
for( int i=0; i<n; ++i ) {
|
|
|
|
points[i].x = x;
|
|
|
|
x += SNAPSHOT_PIXEL_WIDTH;
|
|
|
|
}
|
|
|
|
|
|
|
|
// torrent upload
|
|
|
|
for( int i=0; i<n; ++i )
|
|
|
|
points[i].y = draw_height - 10 - int(myStats[i].torrentUp * y_scale);
|
2007-08-24 01:31:26 +00:00
|
|
|
wxPen pen( myColors[TORRENT_UP] );
|
|
|
|
memDC.SetPen( pen );
|
2007-08-22 19:49:24 +00:00
|
|
|
memDC.DrawLines( n, points, 0, 0 );
|
|
|
|
|
|
|
|
// torrent download
|
|
|
|
for( int i=0; i<n; ++i )
|
|
|
|
points[i].y = draw_height - int(myStats[i].torrentDown * y_scale);
|
2007-08-24 01:31:26 +00:00
|
|
|
pen.SetColour( myColors[TORRENT_DOWN] );
|
|
|
|
memDC.SetPen( pen );
|
2007-08-22 19:49:24 +00:00
|
|
|
memDC.DrawLines( n, points, 0, 0 );
|
|
|
|
|
|
|
|
// all upload
|
|
|
|
for( int i=0; i<n; ++i )
|
2007-08-24 01:31:26 +00:00
|
|
|
points[i].y = draw_height - int(myStats[i].allUp * y_scale);
|
|
|
|
pen.SetColour( myColors[ALL_UP] );
|
|
|
|
memDC.SetPen( pen );
|
2007-08-22 19:49:24 +00:00
|
|
|
memDC.DrawLines( n, points, 0, 0 );
|
|
|
|
|
|
|
|
// all download
|
|
|
|
for( int i=0; i<n; ++i )
|
2007-08-24 01:31:26 +00:00
|
|
|
points[i].y = draw_height - int(myStats[i].allDown * y_scale);
|
|
|
|
pen.SetColour( myColors[ALL_DOWN] );
|
|
|
|
memDC.SetPen( pen );
|
2007-08-22 19:49:24 +00:00
|
|
|
memDC.DrawLines( n, points, 0, 0 );
|
|
|
|
|
|
|
|
delete [] points;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxPaintDC dc( this );
|
|
|
|
dc.Blit( 0, 0, draw_width, draw_height, &memDC, 0, 0 );
|
|
|
|
memDC.SelectObject( wxNullBitmap );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-09-20 19:47:19 +00:00
|
|
|
SpeedStats :: SetTorrent( tr_torrent * tor )
|
2007-08-22 19:49:24 +00:00
|
|
|
{
|
|
|
|
if( tor != myTorrent )
|
|
|
|
{
|
|
|
|
myTorrent = tor;
|
|
|
|
|
|
|
|
myMaxSpeed = 0;
|
|
|
|
foreach( stats_t, myStats, it )
|
|
|
|
{
|
|
|
|
it->torrentUp = 0;
|
|
|
|
it->torrentDown = 0;
|
|
|
|
myMaxSpeed = std::max( myMaxSpeed, it->allUp );
|
|
|
|
myMaxSpeed = std::max( myMaxSpeed, it->allDown );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-09-20 19:47:19 +00:00
|
|
|
SpeedStats :: Pulse( tr_handle * handle )
|
2007-08-22 19:49:24 +00:00
|
|
|
{
|
|
|
|
// add a new record
|
|
|
|
float allUp, allDown;
|
|
|
|
tr_torrentRates( handle, &allDown, &allUp );
|
|
|
|
Speed s;
|
|
|
|
s.time = time( NULL );
|
2007-08-24 01:31:26 +00:00
|
|
|
s.allUp = allUp;
|
2007-08-23 02:54:34 +00:00
|
|
|
s.allDown = allDown;
|
|
|
|
if( myTorrent ) {
|
2007-09-20 19:47:19 +00:00
|
|
|
const tr_stat * stat = tr_torrentStat( myTorrent );
|
2007-08-23 02:54:34 +00:00
|
|
|
s.torrentUp = stat->rateUpload;
|
|
|
|
s.torrentDown = stat->rateDownload;
|
|
|
|
}
|
2007-08-22 19:49:24 +00:00
|
|
|
myStats.push_back( s );
|
|
|
|
|
|
|
|
// age off old data
|
|
|
|
const int eraseCount = myStats.size() - myHistory;
|
|
|
|
if( eraseCount > 0 )
|
|
|
|
myStats.erase( myStats.begin(),
|
|
|
|
myStats.begin() + eraseCount );
|
|
|
|
|
|
|
|
// update max
|
|
|
|
myMaxSpeed = std::max( myMaxSpeed, s.allUp );
|
|
|
|
myMaxSpeed = std::max( myMaxSpeed, s.allDown );
|
|
|
|
myMaxSpeed = std::max( myMaxSpeed, s.torrentUp );
|
|
|
|
myMaxSpeed = std::max( myMaxSpeed, s.torrentDown );
|
|
|
|
|
|
|
|
Refresh( false );
|
2007-07-27 23:09:09 +00:00
|
|
|
}
|