// rTorrent - BitTorrent client // Copyright (C) 2005-2006, 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 // // Skomakerveien 33 // 3185 Skoppum, NORWAY #ifndef RTORRENT_DISPLAY_TEXT_ELEMENT_HELPERS_H #define RTORRENT_DISPLAY_TEXT_ELEMENT_HELPERS_H #include #include #include #include "core/download.h" #include "text_element_string.h" #include "text_element_value.h" namespace display { namespace helpers { typedef TextElementStringBase string_base; typedef TextElementValueBase value_base; // String stuff: // template // inline TextElementStringBase* // te_string(Return (Object::*fptr)() const, const Object* object, int attributes = Attributes::a_invalid) { // return display::text_element_string_void(rak::make_mem_fun(object, fptr), attributes); // } template inline TextElementStringBase* te_string(Return (core::Download::*fptr)() const, int flags = TextElementStringBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_string_slot(std::mem_fun(fptr), flags, attributes); } template inline TextElementStringBase* te_string(Return (torrent::Download::*fptr)() const, int flags = TextElementStringBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_string_slot(rak::on(std::mem_fun(&core::Download::c_download), std::mem_fun(fptr)), flags, attributes); } template inline TextElementStringBase* te_string(Return (torrent::FileList::*fptr)() const, int flags = TextElementStringBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_string_slot(rak::on(std::mem_fun(&core::Download::file_list), std::mem_fun(fptr)), flags, attributes); } inline TextElementStringBase* te_variable_string(const std::string& variable, int flags = TextElementStringBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_string_slot(rak::bind2nd(std::mem_fun(&core::Download::variable_string), variable), flags, attributes); } // Value stuff: template inline TextElementValueBase* te_value(Return (torrent::Download::*fptr)() const, int flags = TextElementValueBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_value_slot(rak::on(std::mem_fun(&core::Download::c_download), std::mem_fun(fptr)), flags, attributes); } inline TextElementValueBase* te_variable_value(const std::string& variable, int flags = TextElementValueBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_value_slot(rak::bind2nd(std::mem_fun(&core::Download::variable_value), variable), flags, attributes); } template inline TextElementValueBase* te_value(Return (torrent::ChunkManager::*fptr)() const, int flags = TextElementValueBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_value_void(rak::make_mem_fun(torrent::chunk_manager(), fptr), flags, attributes); } template inline TextElementValueBase* te_value(Return (torrent::ConnectionManager::*fptr)() const, int flags = TextElementValueBase::flag_normal, int attributes = Attributes::a_invalid) { return display::text_element_value_void(rak::make_mem_fun(torrent::connection_manager(), fptr), flags, attributes); } // Various: inline unsigned int te_bitfield_percentage(const torrent::Bitfield* bitfield) { return bitfield != NULL ? (100 * bitfield->size_set()) / bitfield->size_bits() : 0; } inline std::string te_address(const ::sockaddr* address) { return rak::socket_address::cast_from(address)->address_str(); } inline unsigned int te_port(const ::sockaddr* address) { return rak::socket_address::cast_from(address)->port(); } } } #endif