1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
* Copyright © 2004-2006 Jens Oknelid, paskharen@gmail.com
*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "hashdialog.hh"
#include <client/HashManager.h>
#include "wulformanager.hh"
Hash::Hash() : DialogEntry("Hash", "hash.glade")
{
TimerManager::getInstance()->addListener(this);
string tmp;
startTime = GET_TICK();
HashManager::getInstance()->getStats(tmp, startBytes, startFiles);
HashManager::getInstance()->setPriority(Thread::NORMAL);
updateStats_gui();
}
Hash::~Hash()
{
HashManager::getInstance()->setPriority(Thread::IDLE);
TimerManager::getInstance()->removeListener(this);
}
void Hash::updateStats_gui()
{
string file;
int64_t bytes = 0;
size_t files = 0;
u_int32_t tick = GET_TICK();
HashManager::getInstance()->getStats(file, bytes, files);
if (bytes > startBytes)
startBytes = bytes;
if (files > startFiles)
startFiles = files;
double diff = tick - startTime;
if (diff < 1000 || files == 0 || bytes == 0)
{
gtk_label_set_text(GTK_LABEL(getWidget("labelSpeed")), string("-.-- B/s, " + Util::formatBytes(bytes) + " left").c_str());
gtk_label_set_text(GTK_LABEL(getWidget("labelTime")), "-:--:-- left");
gtk_progress_bar_set_text (GTK_PROGRESS_BAR(getWidget("progressbar")), "0%");
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(getWidget("progressbar")), 0.0);
}
else
{
double speedStat = (((double)(startBytes - bytes)) * 1000) / diff;
gtk_label_set_text(GTK_LABEL(getWidget("labelSpeed")), string(Util::formatBytes((int64_t)speedStat) + "/s, " + Util::formatBytes(bytes) + " left").c_str());
if (speedStat == 0)
gtk_label_set_text(GTK_LABEL(getWidget("labelTime")),"-:--:-- left");
else
{
double ss = bytes / speedStat;
gtk_label_set_text(GTK_LABEL(getWidget("labelTime")), string(Util::formatSeconds((int64_t)ss) + " left").c_str());
}
}
if (files == 0)
gtk_label_set_text(GTK_LABEL(getWidget("labelFile")), "Done");
else
gtk_label_set_text(GTK_LABEL(getWidget("labelFile")), file.c_str());
if (startFiles == 0 || startBytes == 0)
{
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(getWidget("progressbar")), "0%");
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(getWidget("progressbar")), 0.0);
}
else
{
double progress = ((0.5 * (double)(startFiles - files)/(double)startFiles) + (0.5 * (double)(startBytes - bytes)/(double)startBytes));
char buf[16];
snprintf(buf, sizeof(buf), "%.0f", progress * 100);
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(getWidget("progressbar")), string(string(buf) + "%").c_str());
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(getWidget("progressbar")), progress);
}
}
void Hash::on(TimerManagerListener::Second, u_int32_t tics) throw()
{
WulforManager::get()->dispatchGuiFunc(new Func0<Hash>(this, &Hash::updateStats_gui));
}
|