mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-07 02:32:32 +00:00
113 lines
3.5 KiB
C++
113 lines
3.5 KiB
C++
// rTorrent - BitTorrent client
|
|
// Copyright (C) 2005-2011, Jari Sundell
|
|
//
|
|
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
//
|
|
// In addition, as a special exception, the copyright holders give
|
|
// permission to link the code of portions of this program with the
|
|
// OpenSSL library under certain conditions as described in each
|
|
// individual source file, and distribute linked combinations
|
|
// including the two.
|
|
//
|
|
// You must obey the GNU General Public License in all respects for
|
|
// all of the code used other than OpenSSL. If you modify file(s)
|
|
// with this exception, you may extend this exception to your version
|
|
// of the file(s), but you are not obligated to do so. If you do not
|
|
// wish to do so, delete this exception statement from your version.
|
|
// If you delete this exception statement from all source files in the
|
|
// program, then also delete it here.
|
|
//
|
|
// Contact: Jari Sundell <jaris@ifi.uio.no>
|
|
//
|
|
// Skomakerveien 33
|
|
// 3185 Skoppum, NORWAY
|
|
|
|
#include "config.h"
|
|
|
|
#include <ctime>
|
|
#include <torrent/torrent.h>
|
|
#include <torrent/utils/thread_base.h>
|
|
|
|
#include "canvas.h"
|
|
#include "utils.h"
|
|
#include "window_log.h"
|
|
|
|
namespace display {
|
|
|
|
WindowLog::WindowLog(torrent::log_buffer* l) :
|
|
Window(new Canvas, 0, 0, 0, extent_full, extent_static),
|
|
m_log(l) {
|
|
|
|
m_taskUpdate.slot() = std::bind(&WindowLog::receive_update, this);
|
|
|
|
unsigned int signal_index = torrent::main_thread()->signal_bitfield()->add_signal(std::bind(&WindowLog::receive_update, this));
|
|
|
|
m_log->lock_and_set_update_slot(std::bind(&torrent::thread_base::send_event_signal, torrent::main_thread(), signal_index, false));
|
|
}
|
|
|
|
WindowLog::~WindowLog() {
|
|
priority_queue_erase(&taskScheduler, &m_taskUpdate);
|
|
}
|
|
|
|
WindowLog::iterator
|
|
WindowLog::find_older() {
|
|
return m_log->find_older(cachedTime.seconds() - 60);
|
|
// return m_log->begin();
|
|
}
|
|
|
|
void
|
|
WindowLog::redraw() {
|
|
m_canvas->erase();
|
|
|
|
int pos = m_canvas->height();
|
|
|
|
for (iterator itr = m_log->end(), last = find_older(); itr != last && pos > 0; --pos) {
|
|
itr--;
|
|
|
|
char buffer[16];
|
|
print_hhmmss_local(buffer, buffer + 16, static_cast<time_t>(itr->timestamp));
|
|
|
|
m_canvas->print(0, pos - 1, "(%s) %s", buffer, itr->message.c_str());
|
|
}
|
|
}
|
|
|
|
// When WindowLog is activated, call receive_update() to ensure it
|
|
// gets updated.
|
|
void
|
|
WindowLog::receive_update() {
|
|
if (!is_active())
|
|
return;
|
|
|
|
iterator itr = find_older();
|
|
extent_type height = std::min(std::distance(itr, (iterator)m_log->end()), (std::iterator_traits<iterator>::difference_type)10);
|
|
|
|
if (height != m_maxHeight) {
|
|
m_minHeight = height != 0 ? 1 : 0;
|
|
m_maxHeight = height;
|
|
mark_dirty();
|
|
m_slotAdjust();
|
|
|
|
} else {
|
|
mark_dirty();
|
|
}
|
|
|
|
priority_queue_erase(&taskScheduler, &m_taskUpdate);
|
|
|
|
if (height != 0)
|
|
priority_queue_insert(&taskScheduler, &m_taskUpdate, (cachedTime + rak::timer::from_seconds(5)).round_seconds());
|
|
}
|
|
|
|
}
|