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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/*
* Copyright © 2004-2008 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.
*
* In addition, as a special exception, compiling, linking, and/or
* using OpenSSL with this program is allowed.
*/
#include "hashdialog.hh"
#include <dcpp/HashManager.h>
#include "wulformanager.hh"
using namespace std;
using namespace dcpp;
Hash::Hash(GtkWindow* parent):
DialogEntry(Entry::HASH_DIALOG, "hash.glade", parent)
{
string tmp;
startTime = GET_TICK();
HashManager::getInstance()->getStats(tmp, startBytes, startFiles);
HashManager::getInstance()->setPriority(Thread::NORMAL);
updateStats_gui("", 0, 0, 0);
TimerManager::getInstance()->addListener(this);
}
Hash::~Hash()
{
HashManager::getInstance()->setPriority(Thread::IDLE);
TimerManager::getInstance()->removeListener(this);
}
void Hash::updateStats_gui(string file, int64_t bytes, size_t files, uint32_t tick)
{
if (bytes > startBytes)
startBytes = bytes;
if (files > startFiles)
startFiles = files;
double diff = tick - startTime;
if (diff < 1000 || files == 0 || bytes == 0)
{
// TRANSLATORS: Hashing speed and bytes left to hash
const gchar *speed = F_("%1%/s, %2% left", % Util::formatBytes(0) % Util::formatBytes(bytes)).c_str();
// TRANSLATORS: Time left to hash the remaining files.
const gchar *time = F_("%1% left", % Util::formatSeconds(0)).c_str();
gtk_label_set_text(GTK_LABEL(getWidget("labelSpeed")), speed);
gtk_label_set_text(GTK_LABEL(getWidget("labelTime")), time);
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;
const gchar *speed = F_("%1%/s, %2% left", % Util::formatBytes((int64_t)speedStat) % Util::formatBytes(bytes)).c_str();
gtk_label_set_text(GTK_LABEL(getWidget("labelSpeed")), speed);
if (speedStat == 0)
{
gtk_label_set_text(GTK_LABEL(getWidget("labelTime")), F_("%1% left", % Util::formatSeconds(0)).c_str());
}
else
{
double ss = (double)bytes / speedStat;
const gchar *time = F_("%1% left", % Util::formatSeconds((int64_t)ss)).c_str();
gtk_label_set_text(GTK_LABEL(getWidget("labelTime")), time);
}
}
if (startFiles == 0 || startBytes == 0)
{
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(getWidget("progressbar")), "100%");
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(getWidget("progressbar")), 1.0);
}
else
{
double progress = ((0.5 * (double)(startFiles - files)/(double)startFiles) + (0.5 * (double)(startBytes - bytes)/(double)startBytes));
char buf[24];
snprintf(buf, sizeof(buf), "%.0lf%%", progress * 100);
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(getWidget("progressbar")), buf);
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(getWidget("progressbar")), progress);
}
if (files == 0)
{
gtk_label_set_text(GTK_LABEL(getWidget("labelFile")), _("Done"));
gtk_progress_bar_set_text(GTK_PROGRESS_BAR(getWidget("progressbar")), "100%");
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(getWidget("progressbar")), 1.0);
}
else
{
gtk_label_set_text(GTK_LABEL(getWidget("labelFile")), file.c_str());
}
}
void Hash::on(TimerManagerListener::Second, uint32_t tics) throw()
{
string file;
int64_t bytes = 0;
size_t files = 0;
HashManager::getInstance()->getStats(file, bytes, files);
typedef Func4<Hash, string, int64_t, size_t, uint32_t> F4;
F4 *func = new F4(this, &Hash::updateStats_gui, file, bytes, files, GET_TICK());
WulforManager::get()->dispatchGuiFunc(func);
}
|