2008-12-12 16:42:44 -05:00
/****************************************************************
* RetroShare is distributed under the following license :
*
* Copyright ( C ) 2006 , 2007 crypton
*
* 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
2009-05-20 18:06:20 -04:00
* Foundation , Inc . , 51 Franklin Street , Fifth Floor ,
2008-12-12 16:42:44 -05:00
* Boston , MA 02110 - 1301 , USA .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2010-07-23 14:52:58 -04:00
# include <QMenu>
2013-02-27 11:59:16 -05:00
# include <QInputDialog>
# include <QFileDialog>
2010-07-23 14:52:58 -04:00
# include <QStandardItemModel>
# include <QTreeView>
# include <QShortcut>
# include <QFileInfo>
2013-07-01 17:03:20 -04:00
# include <QDateTime>
2012-04-04 18:45:40 -04:00
# include <QDir>
2010-07-23 14:52:58 -04:00
# include <QMessageBox>
2011-11-07 18:07:25 -05:00
# include <gui/common/RsUrlHandler.h>
2011-11-09 16:26:51 -05:00
# include <gui/common/RsCollectionFile.h>
2011-12-07 08:08:12 -05:00
# include <gui/common/FilesDefs.h>
2008-12-12 16:42:44 -05:00
2010-09-14 19:51:55 -04:00
# include <algorithm>
2013-09-01 09:56:05 -04:00
# include <limits>
2013-10-06 08:09:36 -04:00
# include <math.h>
2010-09-14 19:51:55 -04:00
2008-12-12 16:42:44 -05:00
# include "TransfersDialog.h"
2013-07-14 08:53:38 -04:00
# include <gui/RetroShareLink.h>
2010-01-05 19:10:15 -05:00
# include "DetailsDialog.h"
2008-12-12 16:42:44 -05:00
# include "DLListDelegate.h"
# include "ULListDelegate.h"
2009-11-17 07:45:06 -05:00
# include "FileTransferInfoWidget.h"
2016-01-22 09:31:40 -05:00
# include <gui/FileTransfer/SearchDialog.h>
2013-07-14 08:53:38 -04:00
# include <gui/SharedFilesDialog.h>
2010-01-11 11:00:42 -05:00
# include "xprogressbar.h"
2013-07-14 08:53:38 -04:00
# include <gui/settings/rsharesettings.h>
2011-11-25 18:46:41 -05:00
# include "util/misc.h"
2013-07-14 08:53:38 -04:00
# include <gui/common/RsCollectionFile.h>
# include "TransferUserNotify.h"
2013-10-19 09:25:06 -04:00
# include "util/QtVersion.h"
2014-04-28 19:20:29 -04:00
# include "util/RsFile.h"
2008-12-12 16:42:44 -05:00
2010-08-06 05:40:23 -04:00
# include <retroshare/rsfiles.h>
# include <retroshare/rspeers.h>
# include <retroshare/rsdisc.h>
2012-02-21 16:53:25 -05:00
# include <retroshare/rsplugin.h>
2008-12-12 16:42:44 -05:00
2017-03-10 01:27:46 -05:00
# include <retroshare/rsturtle.h>
2008-12-12 16:42:44 -05:00
/* Images for context menu icons */
# define IMAGE_INFO ": / images / fileinfo.png"
# define IMAGE_CANCEL ": / images / delete.png"
# define IMAGE_CLEARCOMPLETED ": / images / deleteall.png"
2014-05-29 10:49:45 -04:00
# define IMAGE_PLAY ": / images / player_play.png"
2009-05-18 10:23:55 -04:00
# define IMAGE_COPYLINK ": / images / copyrslink.png"
# define IMAGE_PASTELINK ": / images / pasterslink.png"
2009-07-02 19:47:38 -04:00
# define IMAGE_PAUSE ": / images / pause.png"
# define IMAGE_RESUME ": / images / resume.png"
# define IMAGE_OPENFOLDER ": / images / folderopen.png"
# define IMAGE_OPENFILE ": / images / fileopen.png"
# define IMAGE_STOP ": / images / stop.png"
2009-07-04 19:36:04 -04:00
# define IMAGE_PREVIEW ": / images / preview.png"
2009-07-27 07:57:58 -04:00
# define IMAGE_PRIORITY ": / images / filepriority.png"
# define IMAGE_PRIORITYLOW ": / images / prioritylow.png"
# define IMAGE_PRIORITYNORMAL ": / images / prioritynormal.png"
# define IMAGE_PRIORITYHIGH ": / images / priorityhigh.png"
# define IMAGE_PRIORITYAUTO ": / images / priorityauto.png"
2016-08-30 11:18:27 -04:00
# define IMAGE_SEARCH ": / icons / svg / magnifying-glass.svg"
2014-05-29 10:49:45 -04:00
# define IMAGE_EXPAND ": / images / edit_add24.png"
# define IMAGE_COLLAPSE ": / images / edit_remove24.png"
# define IMAGE_LIBRARY ": / images / library.png"
# define IMAGE_COLLCREATE ": / images / library_add.png"
# define IMAGE_COLLMODIF ": / images / library_edit.png"
# define IMAGE_COLLVIEW ": / images / library_view.png"
# define IMAGE_COLLOPEN ": / images / library.png"
2016-08-30 11:18:27 -04:00
# define IMAGE_FRIENDSFILES ": / icons / svg / folders.svg"
# define IMAGE_MYFILES ":icons / svg / folders1.svg"
2014-05-29 10:49:45 -04:00
# define IMAGE_RENAMEFILE ":images / filecomments.png"
2013-10-22 12:07:31 -04:00
# define IMAGE_STREAMING ":images / streaming.png"
2009-07-04 19:36:04 -04:00
2010-01-11 11:00:42 -05:00
Q_DECLARE_METATYPE ( FileProgressInfo )
2011-02-07 19:41:13 -05:00
class SortByNameItem : public QStandardItem
2010-10-04 16:15:52 -04:00
{
public :
2011-02-07 19:41:13 -05:00
SortByNameItem ( QHeaderView * header ) : QStandardItem ( )
{
this - > header = header ;
}
2010-10-04 16:15:52 -04:00
2011-02-07 19:41:13 -05:00
virtual bool operator < ( const QStandardItem & other ) const
{
QStandardItemModel * m = model ( ) ;
if ( m = = NULL ) {
return QStandardItem : : operator < ( other ) ;
}
2010-10-04 16:15:52 -04:00
2011-02-07 19:41:13 -05:00
QStandardItem * myParent = parent ( ) ;
QStandardItem * otherParent = other . parent ( ) ;
2010-10-04 16:15:52 -04:00
2011-02-07 19:41:13 -05:00
if ( myParent = = NULL | | otherParent = = NULL ) {
return QStandardItem : : operator < ( other ) ;
}
2013-07-01 17:03:20 -04:00
QStandardItem * myName = myParent - > child ( index ( ) . row ( ) , COLUMN_NAME ) ;
QStandardItem * otherName = otherParent - > child ( other . index ( ) . row ( ) , COLUMN_NAME ) ;
2011-02-07 19:41:13 -05:00
if ( header = = NULL | | header - > sortIndicatorOrder ( ) = = Qt : : AscendingOrder ) {
/* Ascending */
return * myName < * otherName ;
}
/* Descending, sort peers in ascending order */
return ! ( * myName < * otherName ) ;
}
private :
QHeaderView * header ;
} ;
class ProgressItem : public SortByNameItem
{
public :
ProgressItem ( QHeaderView * header ) : SortByNameItem ( header ) { }
virtual bool operator < ( const QStandardItem & other ) const
{
const int role = model ( ) ? model ( ) - > sortRole ( ) : Qt : : DisplayRole ;
FileProgressInfo l = data ( role ) . value < FileProgressInfo > ( ) ;
FileProgressInfo r = other . data ( role ) . value < FileProgressInfo > ( ) ;
if ( l < r ) {
return true ;
}
if ( l > r ) {
return false ;
}
return SortByNameItem : : operator < ( other ) ;
}
2010-10-04 16:15:52 -04:00
} ;
2011-09-26 17:39:28 -04:00
class PriorityItem : public SortByNameItem
{
public :
PriorityItem ( QHeaderView * header ) : SortByNameItem ( header ) { }
virtual bool operator < ( const QStandardItem & other ) const
{
const int role = model ( ) ? model ( ) - > sortRole ( ) : Qt : : DisplayRole ;
QString l = data ( role ) . value < QString > ( ) ;
QString r = other . data ( role ) . value < QString > ( ) ;
bool bl , br ;
int nl = l . toInt ( & bl ) ;
int nr = r . toInt ( & br ) ;
if ( bl & & br )
return nl < nr ;
if ( bl ^ br )
return br ;
return SortByNameItem : : operator < ( other ) ;
}
} ;
2008-12-12 16:42:44 -05:00
/** Constructor */
TransfersDialog : : TransfersDialog ( QWidget * parent )
2009-11-17 07:45:06 -05:00
: RsAutoUpdatePage ( 1000 , parent )
2008-12-12 16:42:44 -05:00
{
/* Invoke the Qt Designer generated object setup routine */
ui . setupUi ( this ) ;
2010-09-14 19:51:55 -04:00
m_bProcessSettings = false ;
2013-02-27 11:59:16 -05:00
connect ( ui . downloadList , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( downloadListCustomPopupMenu ( QPoint ) ) ) ;
2008-12-12 16:42:44 -05:00
// Set Download list model
2013-07-01 17:03:20 -04:00
DLListModel = new QStandardItemModel ( 0 , COLUMN_COUNT ) ;
DLListModel - > setHeaderData ( COLUMN_NAME , Qt : : Horizontal , tr ( " Name " , " i.e: file name " ) ) ;
DLListModel - > setHeaderData ( COLUMN_SIZE , Qt : : Horizontal , tr ( " Size " , " i.e: file size " ) ) ;
DLListModel - > setHeaderData ( COLUMN_COMPLETED , Qt : : Horizontal , tr ( " Completed " , " " ) ) ;
DLListModel - > setHeaderData ( COLUMN_DLSPEED , Qt : : Horizontal , tr ( " Speed " , " i.e: Download speed " ) ) ;
DLListModel - > setHeaderData ( COLUMN_PROGRESS , Qt : : Horizontal , tr ( " Progress / Availability " , " i.e: % downloaded " ) ) ;
DLListModel - > setHeaderData ( COLUMN_SOURCES , Qt : : Horizontal , tr ( " Sources " , " i.e: Sources " ) ) ;
DLListModel - > setHeaderData ( COLUMN_STATUS , Qt : : Horizontal , tr ( " Status " ) ) ;
DLListModel - > setHeaderData ( COLUMN_PRIORITY , Qt : : Horizontal , tr ( " Speed / Queue position " ) ) ;
DLListModel - > setHeaderData ( COLUMN_REMAINING , Qt : : Horizontal , tr ( " Remaining " ) ) ;
DLListModel - > setHeaderData ( COLUMN_DOWNLOADTIME , Qt : : Horizontal , tr ( " Download time " , " i.e: Estimated Time of Arrival / Time left " ) ) ;
2013-07-06 15:34:34 -04:00
DLListModel - > setHeaderData ( COLUMN_ID , Qt : : Horizontal , tr ( " Hash " ) ) ;
2013-07-01 17:03:20 -04:00
DLListModel - > setHeaderData ( COLUMN_LASTDL , Qt : : Horizontal , tr ( " Last Time Seen " , " i.e: Last Time Receiced Data " ) ) ;
2013-08-25 16:35:29 -04:00
DLListModel - > setHeaderData ( COLUMN_PATH , Qt : : Horizontal , tr ( " Path " , " i.e: Where file is saved " ) ) ;
2008-12-12 16:42:44 -05:00
ui . downloadList - > setModel ( DLListModel ) ;
2013-07-01 17:03:20 -04:00
//ui.downloadList->hideColumn(ID);
2008-12-12 16:42:44 -05:00
DLDelegate = new DLListDelegate ( ) ;
ui . downloadList - > setItemDelegate ( DLDelegate ) ;
2009-05-20 18:06:20 -04:00
2013-07-06 15:34:34 -04:00
QHeaderView * qhvDLList = ui . downloadList - > header ( ) ;
qhvDLList - > setContextMenuPolicy ( Qt : : CustomContextMenu ) ;
connect ( qhvDLList , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( downloadListHeaderCustomPopupMenu ( QPoint ) ) ) ;
2010-09-15 15:26:25 -04:00
// Why disable autoscroll ?
// With disabled autoscroll, the treeview doesn't scroll with cursor move
// ui.downloadList->setAutoScroll(false) ;
2009-05-20 18:06:20 -04:00
2010-05-06 10:39:50 -04:00
// workaround for Qt bug, should be solved in next Qt release 4.7.0
// http://bugreports.qt.nokia.com/browse/QTBUG-8270
2016-04-22 18:49:42 -04:00
mShortcut = new QShortcut ( QKeySequence ( Qt : : Key_Delete ) , ui . downloadList , 0 , 0 , Qt : : WidgetShortcut ) ;
connect ( mShortcut , SIGNAL ( activated ( ) ) , this , SLOT ( cancel ( ) ) ) ;
2010-05-06 10:39:50 -04:00
2008-12-12 16:42:44 -05:00
//Selection Setup
2009-05-07 18:40:57 -04:00
selection = ui . downloadList - > selectionModel ( ) ;
2009-05-20 18:06:20 -04:00
2009-05-07 18:40:57 -04:00
ui . downloadList - > setSelectionMode ( QAbstractItemView : : ExtendedSelection ) ;
2009-05-20 18:06:20 -04:00
ui . downloadList - > setRootIsDecorated ( true ) ;
2008-12-12 16:42:44 -05:00
/* Set header resize modes and initial section sizes Downloads TreeView*/
2009-05-07 18:40:57 -04:00
QHeaderView * _header = ui . downloadList - > header ( ) ;
2015-06-26 04:14:09 -04:00
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_NAME , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_SIZE , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_COMPLETED , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_DLSPEED , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_PROGRESS , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_SOURCES , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_STATUS , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_PRIORITY , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_REMAINING , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_DOWNLOADTIME , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_ID , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_LASTDL , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( _header , COLUMN_PATH , QHeaderView : : Interactive ) ;
2013-07-01 17:03:20 -04:00
_header - > resizeSection ( COLUMN_NAME , 170 ) ;
_header - > resizeSection ( COLUMN_SIZE , 70 ) ;
_header - > resizeSection ( COLUMN_COMPLETED , 75 ) ;
_header - > resizeSection ( COLUMN_DLSPEED , 75 ) ;
_header - > resizeSection ( COLUMN_PROGRESS , 170 ) ;
_header - > resizeSection ( COLUMN_SOURCES , 90 ) ;
_header - > resizeSection ( COLUMN_STATUS , 100 ) ;
_header - > resizeSection ( COLUMN_PRIORITY , 100 ) ;
_header - > resizeSection ( COLUMN_REMAINING , 100 ) ;
_header - > resizeSection ( COLUMN_DOWNLOADTIME , 100 ) ;
_header - > resizeSection ( COLUMN_ID , 100 ) ;
_header - > resizeSection ( COLUMN_LASTDL , 100 ) ;
2013-08-25 16:35:29 -04:00
_header - > resizeSection ( COLUMN_PATH , 100 ) ;
2009-05-20 18:06:20 -04:00
2010-09-14 07:37:50 -04:00
// set default column and sort order for download
2013-07-01 17:03:20 -04:00
ui . downloadList - > sortByColumn ( COLUMN_NAME , Qt : : AscendingOrder ) ;
2010-09-14 07:37:50 -04:00
2013-08-23 16:46:11 -04:00
connect ( ui . uploadsList , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( uploadsListCustomPopupMenu ( QPoint ) ) ) ;
2009-05-07 18:40:57 -04:00
// Set Upload list model
2013-07-01 17:03:20 -04:00
ULListModel = new QStandardItemModel ( 0 , COLUMN_UCOUNT ) ;
ULListModel - > setHeaderData ( COLUMN_UNAME , Qt : : Horizontal , tr ( " Name " , " i.e: file name " ) ) ;
ULListModel - > setHeaderData ( COLUMN_USIZE , Qt : : Horizontal , tr ( " Size " , " i.e: file size " ) ) ;
ULListModel - > setHeaderData ( COLUMN_USERNAME , Qt : : Horizontal , tr ( " Peer " , " i.e: user name " ) ) ;
ULListModel - > setHeaderData ( COLUMN_UPROGRESS , Qt : : Horizontal , tr ( " Progress " , " i.e: % uploaded " ) ) ;
ULListModel - > setHeaderData ( COLUMN_ULSPEED , Qt : : Horizontal , tr ( " Speed " , " i.e: upload speed " ) ) ;
ULListModel - > setHeaderData ( COLUMN_USTATUS , Qt : : Horizontal , tr ( " Status " ) ) ;
ULListModel - > setHeaderData ( COLUMN_UTRANSFERRED , Qt : : Horizontal , tr ( " Transferred " , " " ) ) ;
ULListModel - > setHeaderData ( COLUMN_UHASH , Qt : : Horizontal , tr ( " Hash " , " " ) ) ;
ULListModel - > setHeaderData ( COLUMN_UUSERID , Qt : : Horizontal , tr ( " UserID " , " " ) ) ;
2008-12-12 16:42:44 -05:00
ui . uploadsList - > setModel ( ULListModel ) ;
2013-07-01 17:03:20 -04:00
//ULListModel->insertColumn(COLUMN_UUSERID);
//ui.uploadsList->hideColumn(COLUMN_UUSERID);
2008-12-12 16:42:44 -05:00
ULDelegate = new ULListDelegate ( ) ;
ui . uploadsList - > setItemDelegate ( ULDelegate ) ;
2009-05-20 18:06:20 -04:00
2010-09-15 15:26:25 -04:00
// Why disable autoscroll ?
// With disabled autoscroll, the treeview doesn't scroll with cursor move
// ui.uploadsList->setAutoScroll(false) ;
2009-05-20 18:06:20 -04:00
2008-12-12 16:42:44 -05:00
ui . uploadsList - > setRootIsDecorated ( false ) ;
2009-05-20 18:06:20 -04:00
2008-12-12 16:42:44 -05:00
//Selection Setup
2013-08-23 16:46:11 -04:00
selectionUp = ui . uploadsList - > selectionModel ( ) ;
2010-09-14 07:37:50 -04:00
ui . uploadsList - > setSelectionMode ( QAbstractItemView : : ExtendedSelection ) ;
2009-07-24 18:39:34 -04:00
/* Set header resize modes and initial section sizes Uploads TreeView*/
QHeaderView * upheader = ui . uploadsList - > header ( ) ;
2015-06-26 04:14:09 -04:00
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_UNAME , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_USIZE , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_UTRANSFERRED , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_ULSPEED , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_UPROGRESS , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_USTATUS , QHeaderView : : Interactive ) ;
QHeaderView_setSectionResizeModeColumn ( upheader , COLUMN_USERNAME , QHeaderView : : Interactive ) ;
2013-07-01 17:03:20 -04:00
2014-01-07 15:58:56 -05:00
upheader - > resizeSection ( COLUMN_UNAME , 260 ) ;
2013-07-01 17:03:20 -04:00
upheader - > resizeSection ( COLUMN_USIZE , 70 ) ;
upheader - > resizeSection ( COLUMN_UTRANSFERRED , 75 ) ;
upheader - > resizeSection ( COLUMN_ULSPEED , 75 ) ;
upheader - > resizeSection ( COLUMN_UPROGRESS , 170 ) ;
upheader - > resizeSection ( COLUMN_USTATUS , 100 ) ;
upheader - > resizeSection ( COLUMN_USERNAME , 120 ) ;
2009-07-26 11:02:16 -04:00
2010-09-14 07:37:50 -04:00
// set default column and sort order for upload
2013-07-01 17:03:20 -04:00
ui . uploadsList - > sortByColumn ( COLUMN_UNAME , Qt : : AscendingOrder ) ;
2010-09-14 07:37:50 -04:00
2013-02-22 16:42:27 -05:00
// FileTransferInfoWidget *ftiw = new FileTransferInfoWidget();
// ui.fileTransferInfoWidget->setWidget(ftiw);
// ui.fileTransferInfoWidget->setWidgetResizable(true);
// ui.fileTransferInfoWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
// ui.fileTransferInfoWidget->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
// ui.fileTransferInfoWidget->viewport()->setBackgroundRole(QPalette::NoRole);
// ui.fileTransferInfoWidget->setFrameStyle(QFrame::NoFrame);
// ui.fileTransferInfoWidget->setFocusPolicy(Qt::NoFocus);
2009-09-15 14:37:03 -04:00
2010-05-03 18:44:53 -04:00
QObject : : connect ( ui . downloadList - > selectionModel ( ) , SIGNAL ( selectionChanged ( const QItemSelection & , const QItemSelection & ) ) , this , SLOT ( showFileDetails ( ) ) ) ;
2008-12-12 16:42:44 -05:00
2013-02-22 16:42:27 -05:00
ui . tabWidget - > insertTab ( 2 , searchDialog = new SearchDialog ( ) , QIcon ( IMAGE_SEARCH ) , tr ( " Search " ) ) ;
2013-08-15 12:20:14 -04:00
ui . tabWidget - > insertTab ( 3 , remoteSharedFiles = new RemoteSharedFilesDialog ( ) , QIcon ( IMAGE_FRIENDSFILES ) , tr ( " Friends files " ) ) ;
2013-02-22 16:42:27 -05:00
2013-08-15 12:20:14 -04:00
ui . tabWidget - > addTab ( localSharedFiles = new LocalSharedFilesDialog ( ) , QIcon ( IMAGE_MYFILES ) , tr ( " My files " ) ) ;
2011-05-31 17:39:44 -04:00
2013-02-22 16:42:27 -05:00
//ui.tabWidget->addTab( new TurtleRouterStatistics(), tr("Router Statistics")) ;
//ui.tabWidget->addTab( new TurtleRouterDialog(), tr("Router Requests")) ;
2011-08-03 13:45:03 -04:00
2012-02-21 16:53:25 -05:00
for ( int i = 0 ; i < rsPlugins - > nbPlugins ( ) ; + + i )
if ( rsPlugins - > plugin ( i ) ! = NULL & & rsPlugins - > plugin ( i ) - > qt_transfers_tab ( ) ! = NULL )
2012-02-28 13:25:57 -05:00
ui . tabWidget - > addTab ( rsPlugins - > plugin ( i ) - > qt_transfers_tab ( ) , QString : : fromUtf8 ( rsPlugins - > plugin ( i ) - > qt_transfers_tab_name ( ) . c_str ( ) ) ) ;
2011-05-28 18:25:42 -04:00
2012-06-01 16:51:14 -04:00
ui . tabWidget - > setCurrentWidget ( ui . uploadsTab ) ;
2011-05-28 18:25:42 -04:00
// TurtleRouterDialog *trdl = new TurtleRouterDialog();
// ui.tunnelInfoWidget->setWidget(trdl);
// ui.tunnelInfoWidget->setWidgetResizable(true);
// ui.tunnelInfoWidget->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
// ui.tunnelInfoWidget->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
// ui.tunnelInfoWidget->viewport()->setBackgroundRole(QPalette::NoRole);
// ui.tunnelInfoWidget->setFrameStyle(QFrame::NoFrame);
// ui.tunnelInfoWidget->setFocusPolicy(Qt::NoFocus);
2010-02-14 04:06:37 -05:00
2013-07-06 15:34:34 -04:00
/** Setup the actions for the context menu */
2013-02-22 16:42:27 -05:00
// Actions. Only need to be defined once.
2010-03-28 16:46:45 -04:00
pauseAct = new QAction ( QIcon ( IMAGE_PAUSE ) , tr ( " Pause " ) , this ) ;
connect ( pauseAct , SIGNAL ( triggered ( ) ) , this , SLOT ( pauseFileTransfer ( ) ) ) ;
resumeAct = new QAction ( QIcon ( IMAGE_RESUME ) , tr ( " Resume " ) , this ) ;
connect ( resumeAct , SIGNAL ( triggered ( ) ) , this , SLOT ( resumeFileTransfer ( ) ) ) ;
2012-06-17 09:45:17 -04:00
//#ifdef USE_NEW_CHUNK_CHECKING_CODE
2012-03-15 15:55:43 -04:00
// *********WARNING**********
// csoler: this has been suspended because it needs the file transfer to consider a file as complete only if all chunks are
// verified by hash. As users are goign to slowly switch to new checking code, this will not be readily available.
//
2010-07-21 19:14:10 -04:00
forceCheckAct = new QAction ( QIcon ( IMAGE_CANCEL ) , tr ( " Force Check " ) , this ) ;
connect ( forceCheckAct , SIGNAL ( triggered ( ) ) , this , SLOT ( forceCheck ( ) ) ) ;
2012-06-17 09:45:17 -04:00
//#endif
2010-07-21 19:14:10 -04:00
2010-03-28 16:46:45 -04:00
cancelAct = new QAction ( QIcon ( IMAGE_CANCEL ) , tr ( " Cancel " ) , this ) ;
connect ( cancelAct , SIGNAL ( triggered ( ) ) , this , SLOT ( cancel ( ) ) ) ;
2013-08-23 16:46:11 -04:00
openFolderAct = new QAction ( QIcon ( IMAGE_OPENFOLDER ) , tr ( " Open Folder " ) , this ) ;
connect ( openFolderAct , SIGNAL ( triggered ( ) ) , this , SLOT ( openFolderTransfer ( ) ) ) ;
2010-03-28 16:46:45 -04:00
2013-08-23 16:46:11 -04:00
openFileAct = new QAction ( QIcon ( IMAGE_OPENFILE ) , tr ( " Open File " ) , this ) ;
connect ( openFileAct , SIGNAL ( triggered ( ) ) , this , SLOT ( openTransfer ( ) ) ) ;
2010-03-28 16:46:45 -04:00
2013-08-23 16:46:11 -04:00
previewFileAct = new QAction ( QIcon ( IMAGE_PREVIEW ) , tr ( " Preview File " ) , this ) ;
connect ( previewFileAct , SIGNAL ( triggered ( ) ) , this , SLOT ( previewTransfer ( ) ) ) ;
2010-03-28 16:46:45 -04:00
2013-08-23 16:46:11 -04:00
detailsFileAct = new QAction ( QIcon ( IMAGE_INFO ) , tr ( " Details... " ) , this ) ;
connect ( detailsFileAct , SIGNAL ( triggered ( ) ) , this , SLOT ( showDetailsDialog ( ) ) ) ;
2010-03-28 16:46:45 -04:00
2013-08-23 16:46:11 -04:00
clearCompletedAct = new QAction ( QIcon ( IMAGE_CLEARCOMPLETED ) , tr ( " Clear Completed " ) , this ) ;
connect ( clearCompletedAct , SIGNAL ( triggered ( ) ) , this , SLOT ( clearcompleted ( ) ) ) ;
2010-03-28 16:46:45 -04:00
2010-04-10 10:56:34 -04:00
2013-08-23 16:46:11 -04:00
copyLinkAct = new QAction ( QIcon ( IMAGE_COPYLINK ) , tr ( " Copy RetroShare Link " ) , this ) ;
connect ( copyLinkAct , SIGNAL ( triggered ( ) ) , this , SLOT ( copyLink ( ) ) ) ;
pasteLinkAct = new QAction ( QIcon ( IMAGE_PASTELINK ) , tr ( " Paste RetroShare Link " ) , this ) ;
connect ( pasteLinkAct , SIGNAL ( triggered ( ) ) , this , SLOT ( pasteLink ( ) ) ) ;
2010-03-28 16:46:45 -04:00
queueDownAct = new QAction ( QIcon ( " :/images/go-down.png " ) , tr ( " Down " ) , this ) ;
connect ( queueDownAct , SIGNAL ( triggered ( ) ) , this , SLOT ( priorityQueueDown ( ) ) ) ;
queueUpAct = new QAction ( QIcon ( " :/images/go-up.png " ) , tr ( " Up " ) , this ) ;
connect ( queueUpAct , SIGNAL ( triggered ( ) ) , this , SLOT ( priorityQueueUp ( ) ) ) ;
queueTopAct = new QAction ( QIcon ( " :/images/go-top.png " ) , tr ( " Top " ) , this ) ;
connect ( queueTopAct , SIGNAL ( triggered ( ) ) , this , SLOT ( priorityQueueTop ( ) ) ) ;
queueBottomAct = new QAction ( QIcon ( " :/images/go-bottom.png " ) , tr ( " Bottom " ) , this ) ;
connect ( queueBottomAct , SIGNAL ( triggered ( ) ) , this , SLOT ( priorityQueueBottom ( ) ) ) ;
2013-10-22 12:07:31 -04:00
chunkStreamingAct = new QAction ( QIcon ( IMAGE_STREAMING ) , tr ( " Streaming " ) , this ) ;
2010-03-28 16:46:45 -04:00
connect ( chunkStreamingAct , SIGNAL ( triggered ( ) ) , this , SLOT ( chunkStreaming ( ) ) ) ;
prioritySlowAct = new QAction ( QIcon ( IMAGE_PRIORITYLOW ) , tr ( " Slower " ) , this ) ;
connect ( prioritySlowAct , SIGNAL ( triggered ( ) ) , this , SLOT ( speedSlow ( ) ) ) ;
priorityMediumAct = new QAction ( QIcon ( IMAGE_PRIORITYNORMAL ) , tr ( " Average " ) , this ) ;
connect ( priorityMediumAct , SIGNAL ( triggered ( ) ) , this , SLOT ( speedAverage ( ) ) ) ;
priorityFastAct = new QAction ( QIcon ( IMAGE_PRIORITYHIGH ) , tr ( " Faster " ) , this ) ;
connect ( priorityFastAct , SIGNAL ( triggered ( ) ) , this , SLOT ( speedFast ( ) ) ) ;
chunkRandomAct = new QAction ( QIcon ( IMAGE_PRIORITYAUTO ) , tr ( " Random " ) , this ) ;
connect ( chunkRandomAct , SIGNAL ( triggered ( ) ) , this , SLOT ( chunkRandom ( ) ) ) ;
2013-02-28 15:42:01 -05:00
chunkProgressiveAct = new QAction ( QIcon ( IMAGE_PRIORITYAUTO ) , tr ( " Progressive " ) , this ) ;
connect ( chunkProgressiveAct , SIGNAL ( triggered ( ) ) , this , SLOT ( chunkProgressive ( ) ) ) ;
2010-03-28 16:46:45 -04:00
playAct = new QAction ( QIcon ( IMAGE_PLAY ) , tr ( " Play " ) , this ) ;
connect ( playAct , SIGNAL ( triggered ( ) ) , this , SLOT ( openTransfer ( ) ) ) ;
2014-05-29 10:49:45 -04:00
renameFileAct = new QAction ( QIcon ( IMAGE_RENAMEFILE ) , tr ( " Rename file... " ) , this ) ;
connect ( renameFileAct , SIGNAL ( triggered ( ) ) , this , SLOT ( renameFile ( ) ) ) ;
specifyDestinationDirectoryAct = new QAction ( QIcon ( IMAGE_SEARCH ) , tr ( " Specify... " ) , this ) ;
connect ( specifyDestinationDirectoryAct , SIGNAL ( triggered ( ) ) , this , SLOT ( chooseDestinationDirectory ( ) ) ) ;
expandAllAct = new QAction ( QIcon ( IMAGE_EXPAND ) , tr ( " Expand all " ) , this ) ;
connect ( expandAllAct , SIGNAL ( triggered ( ) ) , this , SLOT ( expandAll ( ) ) ) ;
collapseAllAct = new QAction ( QIcon ( IMAGE_COLLAPSE ) , tr ( " Collapse all " ) , this ) ;
connect ( collapseAllAct , SIGNAL ( triggered ( ) ) , this , SLOT ( collapseAll ( ) ) ) ;
collCreateAct = new QAction ( QIcon ( IMAGE_COLLCREATE ) , tr ( " Create Collection... " ) , this ) ;
connect ( collCreateAct , SIGNAL ( triggered ( ) ) , this , SLOT ( collCreate ( ) ) ) ;
collModifAct = new QAction ( QIcon ( IMAGE_COLLMODIF ) , tr ( " Modify Collection... " ) , this ) ;
connect ( collModifAct , SIGNAL ( triggered ( ) ) , this , SLOT ( collModif ( ) ) ) ;
collViewAct = new QAction ( QIcon ( IMAGE_COLLVIEW ) , tr ( " View Collection... " ) , this ) ;
connect ( collViewAct , SIGNAL ( triggered ( ) ) , this , SLOT ( collView ( ) ) ) ;
collOpenAct = new QAction ( QIcon ( IMAGE_COLLOPEN ) , tr ( " Download from collection file... " ) , this ) ;
connect ( collOpenAct , SIGNAL ( triggered ( ) ) , this , SLOT ( collOpen ( ) ) ) ;
2010-09-14 19:51:55 -04:00
2013-07-06 15:34:34 -04:00
/** Setup the actions for the header context menu */
showDLSizeAct = new QAction ( tr ( " Size " ) , this ) ;
showDLSizeAct - > setCheckable ( true ) ; showDLSizeAct - > setToolTip ( tr ( " Show Size Column " ) ) ;
connect ( showDLSizeAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLSizeColumn ( bool ) ) ) ;
showDLCompleteAct = new QAction ( tr ( " Completed " ) , this ) ;
showDLCompleteAct - > setCheckable ( true ) ; showDLCompleteAct - > setToolTip ( tr ( " Show Completed Column " ) ) ;
connect ( showDLCompleteAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLCompleteColumn ( bool ) ) ) ;
showDLDLSpeedAct = new QAction ( tr ( " Speed " ) , this ) ;
showDLDLSpeedAct - > setCheckable ( true ) ; showDLDLSpeedAct - > setToolTip ( tr ( " Show Speed Column " ) ) ;
connect ( showDLDLSpeedAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLDLSpeedColumn ( bool ) ) ) ;
showDLProgressAct = new QAction ( tr ( " Progress / Availability " ) , this ) ;
showDLProgressAct - > setCheckable ( true ) ; showDLProgressAct - > setToolTip ( tr ( " Show Progress / Availability Column " ) ) ;
connect ( showDLProgressAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLProgressColumn ( bool ) ) ) ;
showDLSourcesAct = new QAction ( tr ( " Sources " ) , this ) ;
showDLSourcesAct - > setCheckable ( true ) ; showDLSourcesAct - > setToolTip ( tr ( " Show Sources Column " ) ) ;
connect ( showDLSourcesAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLSourcesColumn ( bool ) ) ) ;
showDLStatusAct = new QAction ( tr ( " Status " ) , this ) ;
showDLStatusAct - > setCheckable ( true ) ; showDLStatusAct - > setToolTip ( tr ( " Show Status Column " ) ) ;
connect ( showDLStatusAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLStatusColumn ( bool ) ) ) ;
showDLPriorityAct = new QAction ( tr ( " Speed / Queue position " ) , this ) ;
showDLPriorityAct - > setCheckable ( true ) ; showDLPriorityAct - > setToolTip ( tr ( " Show Speed / Queue position Column " ) ) ;
connect ( showDLPriorityAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLPriorityColumn ( bool ) ) ) ;
showDLRemainingAct = new QAction ( tr ( " Remaining " ) , this ) ;
showDLRemainingAct - > setCheckable ( true ) ; showDLRemainingAct - > setToolTip ( tr ( " Show Remaining Column " ) ) ;
connect ( showDLRemainingAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLRemainingColumn ( bool ) ) ) ;
showDLDownloadTimeAct = new QAction ( tr ( " Download time " ) , this ) ;
showDLDownloadTimeAct - > setCheckable ( true ) ; showDLDownloadTimeAct - > setToolTip ( tr ( " Show Download time Column " ) ) ;
connect ( showDLDownloadTimeAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLDownloadTimeColumn ( bool ) ) ) ;
showDLIDAct = new QAction ( tr ( " Hash " ) , this ) ;
showDLIDAct - > setCheckable ( true ) ; showDLIDAct - > setToolTip ( tr ( " Show Hash Column " ) ) ;
connect ( showDLIDAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLIDColumn ( bool ) ) ) ;
showDLLastDLAct = new QAction ( tr ( " Last Time Seen " ) , this ) ;
showDLLastDLAct - > setCheckable ( true ) ; showDLLastDLAct - > setToolTip ( tr ( " Show Last Time Seen Column " ) ) ;
connect ( showDLLastDLAct , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLLastDLColumn ( bool ) ) ) ;
2013-08-25 16:35:29 -04:00
showDLPath = new QAction ( tr ( " Path " ) , this ) ;
showDLPath - > setCheckable ( true ) ; showDLPath - > setToolTip ( tr ( " Show Path Column " ) ) ;
connect ( showDLPath , SIGNAL ( triggered ( bool ) ) , this , SLOT ( setShowDLPath ( bool ) ) ) ;
2013-07-06 15:34:34 -04:00
2013-08-23 16:46:11 -04:00
/** Setup the actions for the upload context menu */
ulOpenFolderAct = new QAction ( QIcon ( IMAGE_OPENFOLDER ) , tr ( " Open Folder " ) , this ) ;
connect ( ulOpenFolderAct , SIGNAL ( triggered ( ) ) , this , SLOT ( ulOpenFolder ( ) ) ) ;
ulCopyLinkAct = new QAction ( QIcon ( IMAGE_COPYLINK ) , tr ( " Copy RetroShare Link " ) , this ) ;
connect ( ulCopyLinkAct , SIGNAL ( triggered ( ) ) , this , SLOT ( ulCopyLink ( ) ) ) ;
2010-09-14 19:51:55 -04:00
// load settings
processSettings ( true ) ;
2013-07-19 14:36:09 -04:00
2015-06-30 12:44:58 -04:00
int S = QFontMetricsF ( font ( ) ) . height ( ) ;
2013-09-08 11:08:36 -04:00
QString help_str = tr (
2015-06-30 12:44:58 -04:00
" <h1><img width= \" %1 \" src= \" :/icons/help_64.png \" > File Transfer</h1> \
2013-09-08 11:08:36 -04:00
< p > Retroshare brings two ways of transferring files : direct transfers from your friends , and \
distant anonymous tunnelled transfers . In addition , file transfer is multi - source and allows swarming \
( you can be a source while downloading ) < / p > \
2015-06-30 12:44:58 -04:00
< p > You can share files using the < img src = \ " :/images/directoryadd_24x24_shadow.png \" width=%2 /> icon from the left side bar. \
2013-09-08 11:08:36 -04:00
These files will be listed in the My Files tab . You can decide for each friend group whether they can or not see these files \
in their Friends Files tab < / p > \
< p > The search tab reports files from your friends ' file lists , and distant files that can be reached \
anonymously using the multi - hop tunnelling system . < / p > \
2015-06-30 12:44:58 -04:00
" ).arg(QString::number(2*S)).arg(QString::number(S)) ;
2013-07-19 14:36:09 -04:00
2017-02-25 17:52:57 -05:00
registerHelpButton ( ui . helpButton , help_str , " TransfersDialog " ) ;
2010-09-14 19:51:55 -04:00
}
TransfersDialog : : ~ TransfersDialog ( )
{
// save settings
processSettings ( false ) ;
}
2013-02-23 09:29:36 -05:00
void TransfersDialog : : activatePage ( TransfersDialog : : Page page )
{
switch ( page )
{
case TransfersDialog : : SearchTab : ui . tabWidget - > setCurrentWidget ( searchDialog ) ;
break ;
case TransfersDialog : : LocalSharedFilesTab : ui . tabWidget - > setCurrentWidget ( localSharedFiles ) ;
break ;
case TransfersDialog : : RemoteSharedFilesTab : ui . tabWidget - > setCurrentWidget ( remoteSharedFiles ) ;
break ;
}
}
2012-08-05 16:12:55 -04:00
UserNotify * TransfersDialog : : getUserNotify ( QObject * parent )
{
return new TransferUserNotify ( parent ) ;
}
2010-09-14 19:51:55 -04:00
void TransfersDialog : : processSettings ( bool bLoad )
{
m_bProcessSettings = true ;
QHeaderView * DLHeader = ui . downloadList - > header ( ) ;
QHeaderView * ULHeader = ui . uploadsList - > header ( ) ;
Settings - > beginGroup ( QString ( " TransfersDialog " ) ) ;
if ( bLoad ) {
// load settings
// state of the lists
DLHeader - > restoreState ( Settings - > value ( " downloadList " ) . toByteArray ( ) ) ;
ULHeader - > restoreState ( Settings - > value ( " uploadList " ) . toByteArray ( ) ) ;
// state of splitter
2014-01-04 14:54:07 -05:00
ui . splitter - > restoreState ( Settings - > value ( " Splitter " ) . toByteArray ( ) ) ;
2011-08-10 18:47:18 -04:00
2013-07-06 15:34:34 -04:00
setShowDLSizeColumn ( Settings - > value ( " showDLSizeColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_SIZE ) ) . toBool ( ) ) ;
setShowDLCompleteColumn ( Settings - > value ( " showDLCompleteColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_COMPLETED ) ) . toBool ( ) ) ;
setShowDLDLSpeedColumn ( Settings - > value ( " showDLDLSpeedColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_DLSPEED ) ) . toBool ( ) ) ;
setShowDLProgressColumn ( Settings - > value ( " showDLProgressColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_PROGRESS ) ) . toBool ( ) ) ;
setShowDLSourcesColumn ( Settings - > value ( " showDLSourcesColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_SOURCES ) ) . toBool ( ) ) ;
setShowDLStatusColumn ( Settings - > value ( " showDLStatusColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_STATUS ) ) . toBool ( ) ) ;
setShowDLPriorityColumn ( Settings - > value ( " showDLPriorityColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_PRIORITY ) ) . toBool ( ) ) ;
setShowDLRemainingColumn ( Settings - > value ( " showDLRemainingColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_REMAINING ) ) . toBool ( ) ) ;
setShowDLDownloadTimeColumn ( Settings - > value ( " showDLDownloadTimeColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_DOWNLOADTIME ) ) . toBool ( ) ) ;
setShowDLIDColumn ( Settings - > value ( " showDLIDColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_ID ) ) . toBool ( ) ) ;
setShowDLLastDLColumn ( Settings - > value ( " showDLLastDLColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_LASTDL ) ) . toBool ( ) ) ;
2013-08-25 16:35:29 -04:00
setShowDLPath ( Settings - > value ( " showDLPath " , ! ui . downloadList - > isColumnHidden ( COLUMN_PATH ) ) . toBool ( ) ) ;
2013-07-06 15:34:34 -04:00
2011-08-10 18:47:18 -04:00
// selected tab
ui . tabWidget - > setCurrentIndex ( Settings - > value ( " selectedTab " ) . toInt ( ) ) ;
2010-09-14 19:51:55 -04:00
} else {
// save settings
// state of the lists
Settings - > setValue ( " downloadList " , DLHeader - > saveState ( ) ) ;
Settings - > setValue ( " uploadList " , ULHeader - > saveState ( ) ) ;
// state of splitter
2014-01-04 14:54:07 -05:00
Settings - > setValue ( " Splitter " , ui . splitter - > saveState ( ) ) ;
2011-08-10 18:47:18 -04:00
2013-07-06 15:34:34 -04:00
Settings - > setValue ( " showDLSizeColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_SIZE ) ) ;
Settings - > setValue ( " showDLCompleteColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_COMPLETED ) ) ;
Settings - > setValue ( " showDLDLSpeedColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_DLSPEED ) ) ;
Settings - > setValue ( " showDLProgressColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_PROGRESS ) ) ;
Settings - > setValue ( " showDLSourcesColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_SOURCES ) ) ;
Settings - > setValue ( " showDLStatusColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_STATUS ) ) ;
Settings - > setValue ( " showDLPriorityColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_PRIORITY ) ) ;
Settings - > setValue ( " showDLRemainingColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_REMAINING ) ) ;
Settings - > setValue ( " showDLDownloadTimeColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_DOWNLOADTIME ) ) ;
Settings - > setValue ( " showDLIDColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_ID ) ) ;
Settings - > setValue ( " showDLLastDLColumn " , ! ui . downloadList - > isColumnHidden ( COLUMN_LASTDL ) ) ;
2013-08-25 16:35:29 -04:00
Settings - > setValue ( " showDLPath " , ! ui . downloadList - > isColumnHidden ( COLUMN_PATH ) ) ;
2013-07-06 15:34:34 -04:00
2011-08-10 18:47:18 -04:00
// selected tab
Settings - > setValue ( " selectedTab " , ui . tabWidget - > currentIndex ( ) ) ;
2010-09-14 19:51:55 -04:00
}
Settings - > endGroup ( ) ;
m_bProcessSettings = false ;
2008-12-12 16:42:44 -05:00
}
2010-05-06 10:39:50 -04:00
// replaced by shortcut
//void TransfersDialog::keyPressEvent(QKeyEvent *e)
//{
// if(e->key() == Qt::Key_Delete)
// {
// cancel() ;
// e->accept() ;
// }
// else
// RsAutoUpdatePage::keyPressEvent(e) ;
//}
2009-05-07 18:40:57 -04:00
2013-02-27 11:59:16 -05:00
void TransfersDialog : : downloadListCustomPopupMenu ( QPoint /*point*/ )
2008-12-12 16:42:44 -05:00
{
2014-05-29 10:49:45 -04:00
std : : set < RsFileHash > items ;
getSelectedItems ( & items , NULL ) ;
2008-12-12 16:42:44 -05:00
2010-01-22 18:23:37 -05:00
bool single = ( items . size ( ) = = 1 ) ;
2008-12-12 16:42:44 -05:00
2014-05-29 10:49:45 -04:00
bool atLeastOne_Waiting = false ;
bool atLeastOne_Downloading = false ;
bool atLeastOne_Complete = false ;
bool atLeastOne_Queued = false ;
bool atLeastOne_Paused = false ;
bool add_PlayOption = false ;
bool add_PreviewOption = false ;
bool add_OpenFileOption = false ;
bool add_CopyLink = false ;
bool add_PasteLink = false ;
bool add_CollActions = false ;
2013-08-26 13:56:30 -04:00
2010-02-19 20:52:44 -05:00
FileInfo info ;
2010-03-28 16:46:45 -04:00
QMenu priorityQueueMenu ( tr ( " Move in Queue... " ) , this ) ;
priorityQueueMenu . setIcon ( QIcon ( IMAGE_PRIORITY ) ) ;
priorityQueueMenu . addAction ( queueTopAct ) ;
priorityQueueMenu . addAction ( queueUpAct ) ;
priorityQueueMenu . addAction ( queueDownAct ) ;
priorityQueueMenu . addAction ( queueBottomAct ) ;
2010-01-26 18:25:00 -05:00
2010-03-28 16:46:45 -04:00
QMenu prioritySpeedMenu ( tr ( " Priority (Speed) . . . " ), this) ;
prioritySpeedMenu . setIcon ( QIcon ( IMAGE_PRIORITY ) ) ;
prioritySpeedMenu . addAction ( prioritySlowAct ) ;
prioritySpeedMenu . addAction ( priorityMediumAct ) ;
prioritySpeedMenu . addAction ( priorityFastAct ) ;
2010-01-26 18:25:00 -05:00
2010-03-28 16:46:45 -04:00
QMenu chunkMenu ( tr ( " Chunk strategy " ) , this ) ;
chunkMenu . setIcon ( QIcon ( IMAGE_PRIORITY ) ) ;
chunkMenu . addAction ( chunkStreamingAct ) ;
2013-02-28 15:42:01 -05:00
chunkMenu . addAction ( chunkProgressiveAct ) ;
2010-03-28 16:46:45 -04:00
chunkMenu . addAction ( chunkRandomAct ) ;
2010-01-22 18:23:37 -05:00
2014-05-29 10:49:45 -04:00
QMenu collectionMenu ( tr ( " Collection " ) , this ) ;
collectionMenu . setIcon ( QIcon ( IMAGE_LIBRARY ) ) ;
collectionMenu . addAction ( collCreateAct ) ;
collectionMenu . addAction ( collModifAct ) ;
collectionMenu . addAction ( collViewAct ) ;
collectionMenu . addAction ( collOpenAct ) ;
2013-02-27 11:59:16 -05:00
QMenu contextMnu ( this ) ;
2010-01-26 18:25:00 -05:00
2014-05-29 10:49:45 -04:00
if ( ! RSLinkClipboard : : empty ( RetroShareLink : : TYPE_FILE ) ) add_PasteLink = true ;
2010-01-22 18:23:37 -05:00
if ( ! items . empty ( ) )
{
2014-05-29 10:49:45 -04:00
add_CopyLink = true ;
2010-01-22 18:23:37 -05:00
QModelIndexList lst = ui . downloadList - > selectionModel ( ) - > selectedIndexes ( ) ;
2014-05-29 10:49:45 -04:00
//Look for all selected items
2014-10-21 18:33:02 -04:00
for ( int i = 0 ; i < lst . count ( ) ; + + i ) {
2014-05-29 10:49:45 -04:00
//Look only for first column == File List
if ( lst [ i ] . column ( ) = = 0 ) {
//Get Info for current item
if ( rsFiles - > FileDetails ( RsFileHash ( getID ( lst [ i ] . row ( ) , DLListModel ) . toStdString ( ) )
, RS_FILE_HINTS_DOWNLOAD , info ) ) {
/*const uint32_t FT_STATE_FAILED = 0x0000;
* const uint32_t FT_STATE_OKAY = 0x0001 ;
* const uint32_t FT_STATE_WAITING = 0x0002 ;
* const uint32_t FT_STATE_DOWNLOADING = 0x0003 ;
* const uint32_t FT_STATE_COMPLETE = 0x0004 ;
* const uint32_t FT_STATE_QUEUED = 0x0005 ;
* const uint32_t FT_STATE_PAUSED = 0x0006 ;
* const uint32_t FT_STATE_CHECKING_HASH = 0x0007 ;
*/
if ( info . downloadStatus = = FT_STATE_WAITING ) {
atLeastOne_Waiting = true ;
} //if (info.downloadStatus == FT_STATE_WAITING)
if ( info . downloadStatus = = FT_STATE_DOWNLOADING ) {
atLeastOne_Downloading = true ;
} //if (info.downloadStatus == FT_STATE_DOWNLOADING)
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
atLeastOne_Complete = true ;
add_OpenFileOption = single ;
} //if (info.downloadStatus == FT_STATE_COMPLETE)
if ( info . downloadStatus = = FT_STATE_QUEUED ) {
atLeastOne_Queued = true ;
} //if(info.downloadStatus == FT_STATE_QUEUED)
if ( info . downloadStatus = = FT_STATE_PAUSED ) {
atLeastOne_Paused = true ;
} //if (info.downloadStatus == FT_STATE_PAUSED)
size_t pos = info . fname . find_last_of ( ' . ' ) ;
if ( pos ! = std : : string : : npos ) {
// Check if the file is a media file
if ( misc : : isPreviewable ( info . fname . substr ( pos + 1 ) . c_str ( ) ) ) {
add_PreviewOption = ( info . downloadStatus ! = FT_STATE_COMPLETE ) ;
add_PlayOption = ! add_PreviewOption ;
} // if (misc::isPreviewable(info.fname.substr(pos + 1).c_str()))
// Check if the file is a collection
if ( RsCollectionFile : : ExtensionString = = info . fname . substr ( pos + 1 ) . c_str ( ) ) {
add_CollActions = ( info . downloadStatus = = FT_STATE_COMPLETE ) ;
} //if (RsCollectionFile::ExtensionString == info
} // if(pos != std::string::npos)
} // if (rsFiles->FileDetails(lst[i].data(COLUMN_ID), RS_FILE_HINTS_DOWNLOAD, info))
} // if (lst[i].column() == 0)
2014-10-21 18:33:02 -04:00
} // for (int i = 0; i < lst.count(); ++i)
2014-05-29 10:49:45 -04:00
} // if (!items.empty())
2015-10-02 13:40:08 -04:00
if ( atLeastOne_Waiting | | atLeastOne_Downloading | | atLeastOne_Queued | | atLeastOne_Paused ) {
2014-05-29 10:49:45 -04:00
contextMnu . addMenu ( & prioritySpeedMenu ) ;
2015-10-02 13:40:08 -04:00
}
2014-05-29 10:49:45 -04:00
if ( atLeastOne_Queued ) {
contextMnu . addMenu ( & priorityQueueMenu ) ;
} //if (atLeastOne_Queued)
if ( ( ! items . empty ( ) )
& & ( atLeastOne_Downloading | | atLeastOne_Queued | | atLeastOne_Waiting | | atLeastOne_Paused ) ) {
contextMnu . addMenu ( & chunkMenu ) ;
if ( single ) {
contextMnu . addAction ( renameFileAct ) ;
} //if (single)
QMenu * directoryMenu = contextMnu . addMenu ( QIcon ( IMAGE_OPENFOLDER ) , tr ( " Set destination directory " ) ) ;
directoryMenu - > addAction ( specifyDestinationDirectoryAct ) ;
// Now get the list of existing directories.
std : : list < SharedDirInfo > dirs ;
rsFiles - > getSharedDirectories ( dirs ) ;
for ( std : : list < SharedDirInfo > : : const_iterator it ( dirs . begin ( ) ) ; it ! = dirs . end ( ) ; + + it ) {
// Check for existence of directory name
QFile directory ( QString : : fromUtf8 ( ( * it ) . filename . c_str ( ) ) ) ;
if ( ! directory . exists ( ) ) continue ;
if ( ! ( directory . permissions ( ) & QFile : : WriteOwner ) ) continue ;
QAction * act = new QAction ( QString : : fromUtf8 ( ( * it ) . virtualname . c_str ( ) ) , directoryMenu ) ;
act - > setData ( QString : : fromUtf8 ( ( * it ) . filename . c_str ( ) ) ) ;
connect ( act , SIGNAL ( triggered ( ) ) , this , SLOT ( setDestinationDirectory ( ) ) ) ;
directoryMenu - > addAction ( act ) ;
} //for (std::list<SharedDirInfo>::const_iterator it
} //if ( (!items.empty()) &&
if ( atLeastOne_Paused ) {
contextMnu . addAction ( resumeAct ) ;
} //if (atLeastOne_Paused)
if ( atLeastOne_Downloading | | atLeastOne_Queued | | atLeastOne_Waiting ) {
contextMnu . addAction ( pauseAct ) ;
} //if (atLeastOne_Downloading || atLeastOne_Queued || atLeastOne_Waiting)
if ( ! atLeastOne_Complete & & ! items . empty ( ) ) {
contextMnu . addAction ( forceCheckAct ) ;
contextMnu . addAction ( cancelAct ) ;
} //if (!atLeastOne_Complete && !items.empty())
if ( add_PlayOption ) {
contextMnu . addAction ( playAct ) ;
} //if (add_PlayOption)
if ( atLeastOne_Paused | | atLeastOne_Downloading | | atLeastOne_Complete | | add_PlayOption ) {
contextMnu . addSeparator ( ) ; //------------------------------------------------
} //if (atLeastOne_Paused ||
if ( single ) {
if ( add_OpenFileOption ) contextMnu . addAction ( openFileAct ) ;
if ( add_PreviewOption ) contextMnu . addAction ( previewFileAct ) ;
contextMnu . addAction ( openFolderAct ) ;
contextMnu . addAction ( detailsFileAct ) ;
contextMnu . addSeparator ( ) ; //--------------------------------------------
} //if (single)
contextMnu . addAction ( clearCompletedAct ) ;
contextMnu . addSeparator ( ) ; //------------------------------------------------
if ( add_CopyLink ) {
contextMnu . addAction ( copyLinkAct ) ;
} //if (add_CopyLink)
if ( add_PasteLink ) {
contextMnu . addAction ( pasteLinkAct ) ;
} //if (add_PasteLink)
if ( add_CopyLink | | add_PasteLink ) {
contextMnu . addSeparator ( ) ; //--------------------------------------------
} //if (add_CopyLink || add_PasteLink)
2010-01-22 18:23:37 -05:00
2013-07-06 11:48:40 -04:00
if ( DLListModel - > rowCount ( ) > 0 ) {
contextMnu . addAction ( expandAllAct ) ;
contextMnu . addAction ( collapseAllAct ) ;
}
2014-05-29 10:49:45 -04:00
contextMnu . addSeparator ( ) ; //-----------------------------------------------
2013-07-06 11:48:40 -04:00
2014-05-29 10:49:45 -04:00
collCreateAct - > setEnabled ( true ) ;
collModifAct - > setEnabled ( single & & add_CollActions ) ;
collViewAct - > setEnabled ( single & & add_CollActions ) ;
collOpenAct - > setEnabled ( true ) ;
contextMnu . addMenu ( & collectionMenu ) ;
contextMnu . exec ( QCursor : : pos ( ) ) ;
2008-12-12 16:42:44 -05:00
}
2013-07-06 15:34:34 -04:00
void TransfersDialog : : downloadListHeaderCustomPopupMenu ( QPoint /*point*/ )
{
std : : cerr < < " TransfersDialog::downloadListHeaderCustomPopupMenu() " < < std : : endl ;
QMenu contextMnu ( this ) ;
showDLSizeAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_SIZE ) ) ;
showDLCompleteAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_COMPLETED ) ) ;
showDLDLSpeedAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_DLSPEED ) ) ;
showDLProgressAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_PROGRESS ) ) ;
showDLSourcesAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_SOURCES ) ) ;
showDLStatusAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_STATUS ) ) ;
showDLPriorityAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_PRIORITY ) ) ;
showDLRemainingAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_REMAINING ) ) ;
showDLDownloadTimeAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_DOWNLOADTIME ) ) ;
showDLIDAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_ID ) ) ;
showDLLastDLAct - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_LASTDL ) ) ;
2013-08-25 16:35:29 -04:00
showDLPath - > setChecked ( ! ui . downloadList - > isColumnHidden ( COLUMN_PATH ) ) ;
2013-07-06 15:34:34 -04:00
QMenu * menu = contextMnu . addMenu ( tr ( " Columns " ) ) ;
menu - > addAction ( showDLSizeAct ) ;
menu - > addAction ( showDLCompleteAct ) ;
menu - > addAction ( showDLDLSpeedAct ) ;
menu - > addAction ( showDLProgressAct ) ;
menu - > addAction ( showDLSourcesAct ) ;
menu - > addAction ( showDLStatusAct ) ;
menu - > addAction ( showDLPriorityAct ) ;
menu - > addAction ( showDLRemainingAct ) ;
menu - > addAction ( showDLDownloadTimeAct ) ;
menu - > addAction ( showDLIDAct ) ;
menu - > addAction ( showDLLastDLAct ) ;
2013-08-25 16:35:29 -04:00
menu - > addAction ( showDLPath ) ;
2013-07-06 15:34:34 -04:00
contextMnu . exec ( QCursor : : pos ( ) ) ;
}
2013-08-23 16:46:11 -04:00
void TransfersDialog : : uploadsListCustomPopupMenu ( QPoint /*point*/ )
{
std : : cerr < < " TransfersDialog::uploadsListCustomPopupMenu() " < < std : : endl ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
2013-08-23 16:46:11 -04:00
getULSelectedItems ( & items , NULL ) ;
bool single = ( items . size ( ) = = 1 ) ;
bool add_CopyLink = false ;
QMenu contextMnu ( this ) ;
if ( ! items . empty ( ) )
{
add_CopyLink = true ;
} //if(!items.empty())
if ( single )
{
contextMnu . addAction ( ulOpenFolderAct ) ;
}
if ( add_CopyLink )
contextMnu . addAction ( ulCopyLinkAct ) ;
contextMnu . exec ( QCursor : : pos ( ) ) ;
}
2013-02-27 11:59:16 -05:00
void TransfersDialog : : chooseDestinationDirectory ( )
{
QString dest_dir = QFileDialog : : getExistingDirectory ( this , tr ( " Choose directory " ) ) ;
if ( dest_dir . isNull ( ) )
return ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
2013-02-27 11:59:16 -05:00
getSelectedItems ( & items , NULL ) ;
2014-03-17 16:56:06 -04:00
for ( std : : set < RsFileHash > : : const_iterator it ( items . begin ( ) ) ; it ! = items . end ( ) ; + + it )
2013-02-27 11:59:16 -05:00
{
std : : cerr < < " Setting new directory " < < dest_dir . toUtf8 ( ) . data ( ) < < " to file " < < * it < < std : : endl ;
2014-03-17 16:56:06 -04:00
rsFiles - > setDestinationDirectory ( * it , dest_dir . toUtf8 ( ) . data ( ) ) ;
2013-02-27 11:59:16 -05:00
}
}
void TransfersDialog : : setDestinationDirectory ( )
{
std : : string dest_dir ( qobject_cast < QAction * > ( sender ( ) ) - > data ( ) . toString ( ) . toUtf8 ( ) . data ( ) ) ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
2013-02-27 11:59:16 -05:00
getSelectedItems ( & items , NULL ) ;
2014-03-17 16:56:06 -04:00
for ( std : : set < RsFileHash > : : const_iterator it ( items . begin ( ) ) ; it ! = items . end ( ) ; + + it )
2013-02-27 11:59:16 -05:00
{
std : : cerr < < " Setting new directory " < < dest_dir < < " to file " < < * it < < std : : endl ;
rsFiles - > setDestinationDirectory ( * it , dest_dir ) ;
}
}
2013-09-29 03:10:19 -04:00
int TransfersDialog : : addItem ( int row , const FileInfo & fileInfo )
2008-12-12 16:42:44 -05:00
{
2014-03-17 16:56:06 -04:00
QString fileHash = QString : : fromStdString ( fileInfo . hash . toStdString ( ) ) ;
2012-06-01 16:51:14 -04:00
double fileDlspeed = ( fileInfo . downloadStatus = = FT_STATE_DOWNLOADING ) ? ( fileInfo . tfRate * 1024.0 ) : 0.0 ;
QString status ;
switch ( fileInfo . downloadStatus ) {
case FT_STATE_FAILED : status = tr ( " Failed " ) ; break ;
case FT_STATE_OKAY : status = tr ( " Okay " ) ; break ;
case FT_STATE_WAITING : status = tr ( " Waiting " ) ; break ;
case FT_STATE_DOWNLOADING : status = tr ( " Downloading " ) ; break ;
case FT_STATE_COMPLETE : status = tr ( " Complete " ) ; break ;
case FT_STATE_QUEUED : status = tr ( " Queued " ) ; break ;
case FT_STATE_PAUSED : status = tr ( " Paused " ) ; break ;
case FT_STATE_CHECKING_HASH : status = tr ( " Checking... " ) ; break ;
default : status = tr ( " Unknown " ) ; break ;
}
2010-07-29 17:07:07 -04:00
2012-06-01 16:51:14 -04:00
QString priority ;
if ( fileInfo . downloadStatus = = FT_STATE_QUEUED ) {
priority = QString : : number ( fileInfo . queue_position ) ;
} else {
switch ( fileInfo . priority ) {
case SPEED_LOW : priority = tr ( " Slower " ) ; break ;
case SPEED_NORMAL : priority = tr ( " Average " ) ; break ;
case SPEED_HIGH : priority = tr ( " Faster " ) ; break ;
default : priority = tr ( " Average " ) ; break ;
}
}
qlonglong completed = fileInfo . transfered ;
qlonglong remaining = fileInfo . size - fileInfo . transfered ;
2016-04-21 12:58:48 -04:00
qlonglong downloadtime = ( fileInfo . tfRate > 0 ) ? ( ( fileInfo . size - fileInfo . transfered ) / ( fileInfo . tfRate * 1024.0 ) ) : 0 ;
2013-11-28 14:43:14 -05:00
qint64 qi64LastDL = fileInfo . lastTS ; //std::numeric_limits<qint64>::max();
2013-09-01 09:56:05 -04:00
2013-11-28 14:43:14 -05:00
if ( qi64LastDL = = 0 ) // file is complete, or any raison why the time has not been set properly
{
QFileInfo file ;
if ( fileInfo . downloadStatus = = FT_STATE_COMPLETE )
file = QFileInfo ( QString : : fromUtf8 ( fileInfo . path . c_str ( ) ) , QString : : fromUtf8 ( fileInfo . fname . c_str ( ) ) ) ;
else
2014-03-17 16:56:06 -04:00
file = QFileInfo ( QString : : fromUtf8 ( rsFiles - > getPartialsDirectory ( ) . c_str ( ) ) , QString : : fromUtf8 ( fileInfo . hash . toStdString ( ) . c_str ( ) ) ) ;
2013-11-28 14:43:14 -05:00
/*Get Last Access on File */
if ( file . exists ( ) )
qi64LastDL = file . lastModified ( ) . toTime_t ( ) ;
}
QString strPath = QString : : fromUtf8 ( fileInfo . path . c_str ( ) ) ;
QString strPathAfterDL = strPath ;
strPathAfterDL . replace ( QString : : fromUtf8 ( rsFiles - > getDownloadDirectory ( ) . c_str ( ) ) , " " ) ;
QStringList qslPath = strPathAfterDL . split ( " / " ) ;
2012-06-01 16:51:14 -04:00
FileChunksInfo fcinfo ;
if ( ! rsFiles - > FileDownloadChunksDetails ( fileInfo . hash , fcinfo ) ) {
return - 1 ;
}
FileProgressInfo pinfo ;
pinfo . cmap = fcinfo . chunks ;
pinfo . type = FileProgressInfo : : DOWNLOAD_LINE ;
pinfo . progress = ( fileInfo . size = = 0 ) ? 0 : ( completed * 100.0 / fileInfo . size ) ;
pinfo . nb_chunks = pinfo . cmap . _map . empty ( ) ? 0 : fcinfo . chunks . size ( ) ;
2012-06-19 17:36:10 -04:00
for ( uint32_t i = 0 ; i < fcinfo . chunks . size ( ) ; + + i )
switch ( fcinfo . chunks [ i ] )
{
case FileChunksInfo : : CHUNK_CHECKING : pinfo . chunks_in_checking . push_back ( i ) ;
break ;
case FileChunksInfo : : CHUNK_ACTIVE : pinfo . chunks_in_progress . push_back ( i ) ;
break ;
2013-06-10 09:27:24 -04:00
case FileChunksInfo : : CHUNK_DONE :
case FileChunksInfo : : CHUNK_OUTSTANDING :
break ;
2012-06-19 17:36:10 -04:00
}
2012-06-01 16:51:14 -04:00
QString tooltip ;
if ( fileInfo . downloadStatus = = FT_STATE_CHECKING_HASH ) {
tooltip = tr ( " If the hash of the downloaded data does \n not correspond to the hash announced \n by the file source. The data is likely \n to be corrupted. \n \n RetroShare will ask the source a detailed \n map of the data; it will compare and invalidate \n bad blocks, and download them again \n \n Try to be patient! " ) ;
}
if ( row < 0 ) {
row = DLListModel - > rowCount ( ) ;
2010-07-29 17:07:07 -04:00
DLListModel - > insertRow ( row ) ;
2010-10-04 16:15:52 -04:00
// change progress column to own class for sorting
2013-07-01 17:03:20 -04:00
DLListModel - > setItem ( row , COLUMN_PROGRESS , new ProgressItem ( NULL ) ) ;
DLListModel - > setItem ( row , COLUMN_PRIORITY , new PriorityItem ( NULL ) ) ;
2012-06-01 16:51:14 -04:00
2013-07-01 17:03:20 -04:00
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_SIZE ) , QVariant ( ( qlonglong ) fileInfo . size ) ) ;
2013-09-10 14:33:22 -04:00
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_ID ) , fileHash , Qt : : DisplayRole ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_ID ) , fileHash , Qt : : UserRole ) ;
2010-07-29 17:07:07 -04:00
}
2013-02-27 11:59:16 -05:00
QString fileName = QString : : fromUtf8 ( fileInfo . fname . c_str ( ) ) ;
2013-07-01 17:03:20 -04:00
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_NAME ) , fileName ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_NAME ) , FilesDefs : : getIconFromFilename ( fileName ) , Qt : : DecorationRole ) ;
2010-02-16 21:10:25 -05:00
2013-07-01 17:03:20 -04:00
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_COMPLETED ) , QVariant ( ( qlonglong ) completed ) ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_DLSPEED ) , QVariant ( ( double ) fileDlspeed ) ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_PROGRESS ) , QVariant : : fromValue ( pinfo ) ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_STATUS ) , QVariant ( status ) ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_PRIORITY ) , QVariant ( priority ) ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_REMAINING ) , QVariant ( ( qlonglong ) remaining ) ) ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_DOWNLOADTIME ) , QVariant ( ( qlonglong ) downloadtime ) ) ;
2013-09-01 09:56:05 -04:00
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_LASTDL ) , QVariant ( qi64LastDL ) ) ;
2013-08-25 16:35:29 -04:00
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_PATH ) , QVariant ( strPathAfterDL ) ) ;
DLListModel - > item ( row , COLUMN_PATH ) - > setToolTip ( strPath ) ;
2013-07-01 17:03:20 -04:00
DLListModel - > item ( row , COLUMN_STATUS ) - > setToolTip ( tooltip ) ;
2010-07-29 17:07:07 -04:00
2012-06-01 16:51:14 -04:00
QStandardItem * dlItem = DLListModel - > item ( row ) ;
2010-07-27 12:05:21 -04:00
2012-06-01 16:51:14 -04:00
std : : map < std : : string , std : : string > : : const_iterator vit ;
2009-05-20 18:06:20 -04:00
2012-06-01 16:51:14 -04:00
std : : set < int > used_rows ;
int active = 0 ;
if ( fileInfo . downloadStatus ! = FT_STATE_COMPLETE ) {
std : : list < TransferInfo > : : const_iterator pit ;
for ( pit = fileInfo . peers . begin ( ) ; pit ! = fileInfo . peers . end ( ) ; + + pit ) {
const TransferInfo & transferInfo = * pit ;
QString peerName = getPeerName ( transferInfo . peerId ) ;
//unique combination: fileHash + peerId, variant: hash + peerName (too long)
2014-03-17 16:56:06 -04:00
QString hashFileAndPeerId = fileHash + QString : : fromStdString ( transferInfo . peerId . toStdString ( ) ) ;
2012-06-01 16:51:14 -04:00
QString version ;
2013-09-29 03:10:19 -04:00
std : : string rsversion ;
if ( rsDisc - > getPeerVersion ( transferInfo . peerId , rsversion ) )
{
2015-06-12 04:27:26 -04:00
version = tr ( " version: " ) + " " + QString : : fromStdString ( rsversion ) ;
2012-06-01 16:51:14 -04:00
}
double peerDlspeed = 0 ;
if ( ( uint32_t ) transferInfo . status = = FT_STATE_DOWNLOADING & & fileInfo . downloadStatus ! = FT_STATE_PAUSED & & fileInfo . downloadStatus ! = FT_STATE_COMPLETE )
peerDlspeed = transferInfo . tfRate * 1024.0 ;
2010-04-10 10:56:34 -04:00
2012-06-01 16:51:14 -04:00
FileProgressInfo peerpinfo ;
peerpinfo . cmap = fcinfo . compressed_peer_availability_maps [ transferInfo . peerId ] ;
peerpinfo . type = FileProgressInfo : : DOWNLOAD_SOURCE ;
peerpinfo . progress = 0.0 ; // we don't display completion for sources.
peerpinfo . nb_chunks = peerpinfo . cmap . _map . empty ( ) ? 0 : fcinfo . chunks . size ( ) ;
2010-04-10 10:56:34 -04:00
2012-06-01 16:51:14 -04:00
int row_id = addPeerToItem ( dlItem , peerName , hashFileAndPeerId , peerDlspeed , transferInfo . status , peerpinfo ) ;
2010-04-10 10:56:34 -04:00
2012-06-01 16:51:14 -04:00
used_rows . insert ( row_id ) ;
2010-04-10 10:56:34 -04:00
2012-06-01 16:51:14 -04:00
/* get the sources (number of online peers) */
if ( transferInfo . tfRate > 0 & & fileInfo . downloadStatus = = FT_STATE_DOWNLOADING )
2014-10-21 18:33:02 -04:00
+ + active ;
2012-06-01 16:51:14 -04:00
}
}
2010-04-10 10:56:34 -04:00
2013-10-06 08:09:36 -04:00
float fltSources = active + ( float ) fileInfo . peers . size ( ) / 1000 ;
DLListModel - > setData ( DLListModel - > index ( row , COLUMN_SOURCES ) , fltSources ) ;
2010-04-10 10:56:34 -04:00
2012-06-01 16:51:14 -04:00
// This is not optimal, but we deal with a small number of elements. The reverse order is really important,
// because rows after the deleted rows change positions !
//
for ( int r = dlItem - > rowCount ( ) - 1 ; r > = 0 ; - - r ) {
if ( used_rows . find ( r ) = = used_rows . end ( ) ) {
dlItem - > removeRow ( r ) ;
}
}
2010-04-10 10:56:34 -04:00
2012-06-01 16:51:14 -04:00
return row ;
2015-11-24 13:41:13 -05:00
2009-05-20 18:06:20 -04:00
}
2012-06-01 16:51:14 -04:00
int TransfersDialog : : addPeerToItem ( QStandardItem * dlItem , const QString & name , const QString & coreID , double dlspeed , uint32_t status , const FileProgressInfo & peerInfo )
{
// try to find the item
int childRow = - 1 ;
int count = 0 ;
QStandardItem * childId = NULL ;
2013-07-01 17:03:20 -04:00
for ( count = 0 ; ( childId = dlItem - > child ( count , COLUMN_ID ) ) ! = NULL ; + + count ) {
2013-09-10 14:33:22 -04:00
if ( childId - > data ( Qt : : UserRole ) . toString ( ) = = coreID ) {
2012-06-01 16:51:14 -04:00
childRow = count ;
break ;
}
}
2013-08-25 16:35:29 -04:00
QStandardItem * siName = NULL ;
QStandardItem * siStatus = NULL ;
2012-06-01 16:51:14 -04:00
if ( childRow = = - 1 ) {
// set this false if you want to expand on double click
dlItem - > setEditable ( false ) ;
QHeaderView * header = ui . downloadList - > header ( ) ;
2013-08-25 16:35:29 -04:00
QStandardItem * iName = new QStandardItem ( ) ;
QStandardItem * iSize = new SortByNameItem ( header ) ;
QStandardItem * iCompleted = new SortByNameItem ( header ) ;
QStandardItem * iDlSpeed = new SortByNameItem ( header ) ;
QStandardItem * iProgress = new ProgressItem ( header ) ;
QStandardItem * iSource = new SortByNameItem ( header ) ;
QStandardItem * iStatus = new SortByNameItem ( header ) ;
QStandardItem * iPriority = new SortByNameItem ( header ) ;
QStandardItem * iRemaining = new SortByNameItem ( header ) ;
QStandardItem * iDownloadTime = new SortByNameItem ( header ) ;
QStandardItem * iID = new SortByNameItem ( header ) ;
siName = iName ;
siStatus = iStatus ;
2012-06-01 16:51:14 -04:00
QList < QStandardItem * > items ;
2013-08-25 16:35:29 -04:00
iName - > setData ( QVariant ( " " + name ) , Qt : : DisplayRole ) ;
iSize - > setData ( QVariant ( QString ( ) ) , Qt : : DisplayRole ) ;
iCompleted - > setData ( QVariant ( QString ( ) ) , Qt : : DisplayRole ) ;
iDlSpeed - > setData ( QVariant ( ( double ) dlspeed ) , Qt : : DisplayRole ) ;
iProgress - > setData ( QVariant : : fromValue ( peerInfo ) , Qt : : DisplayRole ) ;
iSource - > setData ( QVariant ( QString ( ) ) , Qt : : DisplayRole ) ;
iPriority - > setData ( QVariant ( QString ( ) ) , Qt : : DisplayRole ) ; // blank field for priority
iRemaining - > setData ( QVariant ( QString ( ) ) , Qt : : DisplayRole ) ;
iDownloadTime - > setData ( QVariant ( QString ( ) ) , Qt : : DisplayRole ) ;
2013-09-10 14:33:22 -04:00
iID - > setData ( QVariant ( ) , Qt : : DisplayRole ) ;
iID - > setData ( QVariant ( coreID ) , Qt : : UserRole ) ;
2013-08-25 16:35:29 -04:00
items . append ( iName ) ;
items . append ( iSize ) ;
items . append ( iCompleted ) ;
items . append ( iDlSpeed ) ;
items . append ( iProgress ) ;
items . append ( iSource ) ;
items . append ( iStatus ) ;
items . append ( iPriority ) ;
items . append ( iRemaining ) ;
items . append ( iDownloadTime ) ;
items . append ( iID ) ;
2012-06-01 16:51:14 -04:00
dlItem - > appendRow ( items ) ;
childRow = dlItem - > rowCount ( ) - 1 ;
} else {
// just update the child (peer)
2013-07-01 17:03:20 -04:00
dlItem - > child ( childRow , COLUMN_DLSPEED ) - > setData ( QVariant ( ( double ) dlspeed ) , Qt : : DisplayRole ) ;
dlItem - > child ( childRow , COLUMN_PROGRESS ) - > setData ( QVariant : : fromValue ( peerInfo ) , Qt : : DisplayRole ) ;
2012-06-01 16:51:14 -04:00
2013-08-25 16:35:29 -04:00
siName = dlItem - > child ( childRow , COLUMN_NAME ) ;
siStatus = dlItem - > child ( childRow , COLUMN_STATUS ) ;
2012-06-01 16:51:14 -04:00
}
switch ( status ) {
case FT_STATE_FAILED :
2013-08-25 16:35:29 -04:00
siStatus - > setData ( QVariant ( tr ( " Failed " ) ) ) ;
siName - > setData ( QIcon ( " :/images/Client1.png " ) , Qt : : DecorationRole ) ;
2012-06-01 16:51:14 -04:00
break ;
case FT_STATE_OKAY :
2013-08-25 16:35:29 -04:00
siStatus - > setData ( QVariant ( tr ( " Okay " ) ) ) ;
siName - > setData ( QIcon ( " :/images/Client2.png " ) , Qt : : DecorationRole ) ;
2012-06-01 16:51:14 -04:00
break ;
case FT_STATE_WAITING :
2013-08-25 16:35:29 -04:00
siStatus - > setData ( QVariant ( tr ( " " ) ) ) ;
siName - > setData ( QIcon ( " :/images/Client3.png " ) , Qt : : DecorationRole ) ;
2012-06-01 16:51:14 -04:00
break ;
case FT_STATE_DOWNLOADING :
2013-08-25 16:35:29 -04:00
siStatus - > setData ( QVariant ( tr ( " Transferring " ) ) ) ;
siName - > setData ( QIcon ( " :/images/Client0.png " ) , Qt : : DecorationRole ) ;
2012-06-01 16:51:14 -04:00
break ;
case FT_STATE_COMPLETE :
2013-08-25 16:35:29 -04:00
siStatus - > setData ( QVariant ( tr ( " Complete " ) ) ) ;
siName - > setData ( QIcon ( " :/images/Client0.png " ) , Qt : : DecorationRole ) ;
2012-06-01 16:51:14 -04:00
break ;
default :
2013-08-25 16:35:29 -04:00
siStatus - > setData ( QVariant ( tr ( " " ) ) ) ;
siName - > setData ( QIcon ( " :/images/Client4.png " ) , Qt : : DecorationRole ) ;
2012-06-01 16:51:14 -04:00
}
return childRow ;
}
2008-12-12 16:42:44 -05:00
2010-07-27 12:05:21 -04:00
int TransfersDialog : : addUploadItem ( const QString & , const QString & name , const QString & coreID ,
qlonglong fileSize , const FileProgressInfo & pinfo , double dlspeed ,
const QString & source , const QString & peer_id , const QString & status , qlonglong completed , qlonglong )
2008-12-12 16:42:44 -05:00
{
2010-07-27 12:05:21 -04:00
// Find items does not work reliably, because it (apparently) needs Qt to flush pending events to work, so we can't call it
// on a table that was just filled in.
//
int row ;
for ( row = 0 ; row < ULListModel - > rowCount ( ) ; + + row )
2013-07-01 17:03:20 -04:00
if ( ULListModel - > item ( row , COLUMN_UUSERID ) - > data ( Qt : : EditRole ) . toString ( ) = = peer_id & & ULListModel - > item ( row , COLUMN_UHASH ) - > data ( Qt : : EditRole ) . toString ( ) = = coreID )
2010-07-27 12:05:21 -04:00
break ;
2010-02-16 21:10:25 -05:00
2010-07-27 12:05:21 -04:00
if ( row > = ULListModel - > rowCount ( ) )
{
row = ULListModel - > rowCount ( ) ;
ULListModel - > insertRow ( row ) ;
2010-10-04 16:15:52 -04:00
// change progress column to own class for sorting
2013-07-01 17:03:20 -04:00
ULListModel - > setItem ( row , COLUMN_UPROGRESS , new ProgressItem ( NULL ) ) ;
2012-06-01 16:51:14 -04:00
2013-07-01 17:03:20 -04:00
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_UNAME ) , QVariant ( ( QString ) " " + name ) , Qt : : DisplayRole ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_USERNAME ) , QVariant ( ( QString ) source ) ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_UHASH ) , QVariant ( ( QString ) coreID ) ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_UUSERID ) , QVariant ( ( QString ) peer_id ) ) ;
2012-06-01 16:51:14 -04:00
2013-07-01 17:03:20 -04:00
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_UNAME ) , FilesDefs : : getIconFromFilename ( name ) , Qt : : DecorationRole ) ;
2010-07-27 12:05:21 -04:00
}
2013-07-01 17:03:20 -04:00
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_USIZE ) , QVariant ( ( qlonglong ) fileSize ) ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_UTRANSFERRED ) , QVariant ( ( qlonglong ) completed ) ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_ULSPEED ) , QVariant ( ( double ) dlspeed ) ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_UPROGRESS ) , QVariant : : fromValue ( pinfo ) ) ;
ULListModel - > setData ( ULListModel - > index ( row , COLUMN_USTATUS ) , QVariant ( ( QString ) status ) ) ;
2010-02-16 21:10:25 -05:00
2010-07-27 12:05:21 -04:00
return row ;
2008-12-12 16:42:44 -05:00
}
2009-05-20 18:06:20 -04:00
2012-06-01 16:51:14 -04:00
/* get the list of Transfers from the RsIface. **/
2009-11-17 07:45:06 -05:00
void TransfersDialog : : updateDisplay ( )
{
insertTransfers ( ) ;
2012-06-01 16:51:14 -04:00
updateDetailsDialog ( ) ;
2009-11-17 07:45:06 -05:00
}
2010-05-03 18:44:53 -04:00
2010-03-06 18:29:47 -05:00
void TransfersDialog : : insertTransfers ( )
{
2010-09-14 07:37:50 -04:00
/* disable for performance issues, enable after insert all transfers */
ui . downloadList - > setSortingEnabled ( false ) ;
2010-03-06 18:29:47 -05:00
/* get the download lists */
2014-03-17 16:56:06 -04:00
std : : list < RsFileHash > downHashes ;
2010-02-16 21:10:25 -05:00
rsFiles - > FileDownloads ( downHashes ) ;
2009-05-20 18:06:20 -04:00
2012-06-01 16:51:14 -04:00
/* build set for quick search */
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > hashs ;
std : : list < RsFileHash > : : iterator it ;
2012-06-01 16:51:14 -04:00
for ( it = downHashes . begin ( ) ; it ! = downHashes . end ( ) ; + + it ) {
hashs . insert ( * it ) ;
}
2008-12-12 16:42:44 -05:00
2012-06-01 16:51:14 -04:00
/* add downloads, first iterate all rows in list */
2009-05-20 18:06:20 -04:00
2012-06-01 16:51:14 -04:00
int rowCount = DLListModel - > rowCount ( ) ;
int row ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > : : iterator hashIt ;
2012-06-01 16:51:14 -04:00
for ( row = 0 ; row < rowCount ; ) {
2014-03-17 16:56:06 -04:00
RsFileHash hash ( DLListModel - > item ( row , COLUMN_ID ) - > data ( Qt : : UserRole ) . toString ( ) . toStdString ( ) ) ;
2012-06-01 16:51:14 -04:00
hashIt = hashs . find ( hash ) ;
if ( hashIt = = hashs . end ( ) ) {
// remove not existing downloads
DLListModel - > removeRow ( row ) ;
rowCount = DLListModel - > rowCount ( ) ;
2010-03-06 18:29:47 -05:00
continue ;
}
2009-05-20 18:06:20 -04:00
2012-06-01 16:51:14 -04:00
FileInfo fileInfo ;
if ( ! rsFiles - > FileDetails ( hash , RS_FILE_HINTS_DOWNLOAD , fileInfo ) ) {
DLListModel - > removeRow ( row ) ;
rowCount = DLListModel - > rowCount ( ) ;
2010-03-06 18:29:47 -05:00
continue ;
}
2008-12-12 16:42:44 -05:00
2012-06-01 16:51:14 -04:00
hashs . erase ( hashIt ) ;
2010-03-06 18:29:47 -05:00
2013-09-29 03:10:19 -04:00
if ( addItem ( row , fileInfo ) < 0 ) {
2012-06-01 16:51:14 -04:00
DLListModel - > removeRow ( row ) ;
rowCount = DLListModel - > rowCount ( ) ;
continue ;
}
2010-03-06 18:29:47 -05:00
2012-06-01 16:51:14 -04:00
+ + row ;
}
2010-03-06 18:29:47 -05:00
2012-06-01 16:51:14 -04:00
/* then add new downloads to the list */
2010-03-07 09:10:51 -05:00
2012-06-01 16:51:14 -04:00
for ( hashIt = hashs . begin ( ) ; hashIt ! = hashs . end ( ) ; + + hashIt ) {
FileInfo fileInfo ;
if ( ! rsFiles - > FileDetails ( * hashIt , RS_FILE_HINTS_DOWNLOAD , fileInfo ) ) {
continue ;
2010-03-06 18:29:47 -05:00
}
2010-03-07 09:10:51 -05:00
2013-09-29 03:10:19 -04:00
addItem ( - 1 , fileInfo ) ;
2010-03-06 18:29:47 -05:00
}
2011-02-07 19:41:13 -05:00
2010-10-04 16:15:52 -04:00
ui . downloadList - > setSortingEnabled ( true ) ;
2010-09-14 07:37:50 -04:00
2010-10-04 16:15:52 -04:00
ui . uploadsList - > setSortingEnabled ( false ) ;
2010-03-06 18:29:47 -05:00
2010-03-21 17:07:12 -04:00
// Now show upload hashes
//
2014-03-17 16:56:06 -04:00
std : : list < RsFileHash > upHashes ;
2010-03-06 18:29:47 -05:00
rsFiles - > FileUploads ( upHashes ) ;
2014-03-17 16:56:06 -04:00
RsPeerId ownId = rsPeers - > getOwnId ( ) ;
2010-09-14 19:51:55 -04:00
2014-03-17 16:56:06 -04:00
std : : set < std : : string > used_hashes ;
2010-04-10 10:56:34 -04:00
2014-10-21 18:33:02 -04:00
for ( it = upHashes . begin ( ) ; it ! = upHashes . end ( ) ; + + it )
2010-04-10 10:56:34 -04:00
{
2010-03-06 18:29:47 -05:00
FileInfo info ;
2010-04-10 10:56:34 -04:00
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_UPLOAD , info ) )
2010-03-06 18:29:47 -05:00
continue ;
2010-04-10 10:56:34 -04:00
2010-03-06 18:29:47 -05:00
std : : list < TransferInfo > : : iterator pit ;
2014-10-21 18:33:02 -04:00
for ( pit = info . peers . begin ( ) ; pit ! = info . peers . end ( ) ; + + pit )
2010-04-10 10:56:34 -04:00
{
2010-09-14 19:51:55 -04:00
if ( pit - > peerId = = ownId ) //don't display transfer to ourselves
2010-03-06 18:29:47 -05:00
continue ;
2014-03-17 16:56:06 -04:00
QString fileHash = QString : : fromStdString ( info . hash . toStdString ( ) ) ;
2010-03-06 18:29:47 -05:00
QString fileName = QString : : fromUtf8 ( info . fname . c_str ( ) ) ;
2010-07-27 12:05:21 -04:00
QString source = getPeerName ( pit - > peerId ) ;
2010-03-06 18:29:47 -05:00
QString status ;
switch ( pit - > status )
{
case FT_STATE_FAILED : status = tr ( " Failed " ) ; break ;
case FT_STATE_OKAY : status = tr ( " Okay " ) ; break ;
case FT_STATE_WAITING : status = tr ( " Waiting " ) ; break ;
case FT_STATE_DOWNLOADING : status = tr ( " Uploading " ) ; break ;
case FT_STATE_COMPLETE : status = tr ( " Complete " ) ; break ;
default : status = tr ( " Complete " ) ; break ;
}
FileProgressInfo pinfo ;
if ( ! rsFiles - > FileUploadChunksDetails ( * it , pit - > peerId , pinfo . cmap ) )
continue ;
double dlspeed = pit - > tfRate * 1024.0 ;
qlonglong fileSize = info . size ;
2010-07-27 12:05:21 -04:00
qlonglong completed = pit - > transfered ;
2011-08-10 18:47:18 -04:00
// double progress = (info.size > 0)?(pit->transfered * 100.0 / info.size):0.0;
2016-04-21 12:58:48 -04:00
qlonglong remaining = ( pit - > tfRate > 0 ) ? ( ( info . size - pit - > transfered ) / ( pit - > tfRate * 1024.0 ) ) : 0 ;
2010-03-06 18:29:47 -05:00
// Estimate the completion. We need something more accurate, meaning that we need to
// transmit the completion info.
//
uint32_t chunk_size = 1024 * 1024 ;
2012-06-17 09:45:17 -04:00
uint32_t nb_chunks = ( uint32_t ) ( ( info . size + ( uint64_t ) chunk_size - 1 ) / ( uint64_t ) ( chunk_size ) ) ;
2010-03-06 18:29:47 -05:00
uint32_t filled_chunks = pinfo . cmap . filledChunks ( nb_chunks ) ;
2010-03-28 16:46:45 -04:00
pinfo . type = FileProgressInfo : : UPLOAD_LINE ;
2010-03-06 18:29:47 -05:00
pinfo . nb_chunks = pinfo . cmap . _map . empty ( ) ? 0 : nb_chunks ;
2011-06-23 14:54:49 -04:00
if ( filled_chunks > 0 & & nb_chunks > 0 )
{
2012-06-17 09:45:17 -04:00
completed = pinfo . cmap . computeProgress ( info . size , chunk_size ) ;
pinfo . progress = completed / ( float ) info . size * 100.0f ;
2010-03-28 16:46:45 -04:00
}
else
2011-06-23 14:54:49 -04:00
{
completed = pit - > transfered % chunk_size ; // use the position with respect to last request.
pinfo . progress = ( info . size > 0 ) ? ( ( pit - > transfered % chunk_size ) * 100.0 / info . size ) : 0 ;
}
2010-03-06 18:29:47 -05:00
2014-03-17 16:56:06 -04:00
addUploadItem ( " " , fileName , fileHash , fileSize , pinfo , dlspeed , source , QString : : fromStdString ( pit - > peerId . toStdString ( ) ) , status , completed , remaining ) ;
2010-04-10 10:56:34 -04:00
2014-03-17 16:56:06 -04:00
used_hashes . insert ( fileHash . toStdString ( ) + pit - > peerId . toStdString ( ) ) ;
2010-03-06 18:29:47 -05:00
}
2010-04-10 10:56:34 -04:00
}
// remove hashes that where not shown
//first clean the model in case some files are not download anymore
//remove items that are not fiends anymore
2012-06-01 16:51:14 -04:00
int removeIndex = 0 ;
2011-02-19 19:59:47 -05:00
rowCount = ULListModel - > rowCount ( ) ;
while ( removeIndex < rowCount )
2010-04-10 10:56:34 -04:00
{
2013-07-01 17:03:20 -04:00
std : : string hash = ULListModel - > item ( removeIndex , COLUMN_UHASH ) - > data ( Qt : : EditRole ) . toString ( ) . toStdString ( ) ;
std : : string peer = ULListModel - > item ( removeIndex , COLUMN_UUSERID ) - > data ( Qt : : EditRole ) . toString ( ) . toStdString ( ) ;
2010-03-06 18:29:47 -05:00
2011-02-19 19:59:47 -05:00
if ( used_hashes . find ( hash + peer ) = = used_hashes . end ( ) ) {
2012-06-01 16:51:14 -04:00
ULListModel - > removeRow ( removeIndex ) ;
2011-02-19 19:59:47 -05:00
rowCount = ULListModel - > rowCount ( ) ;
} else
2014-10-21 18:33:02 -04:00
+ + removeIndex ;
2010-03-06 18:29:47 -05:00
}
2010-04-10 10:56:34 -04:00
2010-10-04 16:15:52 -04:00
ui . uploadsList - > setSortingEnabled ( true ) ;
2015-11-24 13:41:13 -05:00
downloads = tr ( " Downloads " ) + " ( " + QString : : number ( DLListModel - > rowCount ( ) ) + " ) " ;
uploads = tr ( " Uploads " ) + " ( " + QString : : number ( ULListModel - > rowCount ( ) ) + " ) " ;
ui . tabWidget - > setTabText ( 0 , downloads ) ;
ui . tabWidget_2 - > setTabText ( 0 , uploads ) ;
2008-12-12 16:42:44 -05:00
}
2014-03-17 16:56:06 -04:00
QString TransfersDialog : : getPeerName ( const RsPeerId & id ) const
2009-06-03 14:47:14 -04:00
{
2011-07-17 19:07:29 -04:00
QString res = QString : : fromUtf8 ( rsPeers - > getPeerName ( id ) . c_str ( ) ) ;
2009-06-03 14:47:14 -04:00
// This is because turtle tunnels have no name (I didn't want to bother with
// connect mgr). In such a case their id can suitably hold for a name.
//
if ( res = = " " )
2016-10-30 10:33:05 -04:00
{
2017-03-10 01:27:46 -05:00
res = QString : : fromStdString ( rsTurtle - > getPeerNameForVirtualPeerId ( id ) ) ;
2016-10-30 10:33:05 -04:00
if ( rsFiles - > isEncryptedSource ( id ) )
2017-03-10 03:15:39 -05:00
return tr ( " Anonymous E2EE tunnel " ) + QString : : fromStdString ( id . toStdString ( ) ) . left ( 8 ) + " via " + res ;
2016-10-30 10:33:05 -04:00
else
2017-03-10 03:15:39 -05:00
return tr ( " Anonymous tunnel id # " ) + QString : : fromStdString ( id . toStdString ( ) ) . left ( 8 ) + " via " + res ;
2016-10-30 10:33:05 -04:00
}
2009-06-03 14:47:14 -04:00
else
return res ;
}
2010-07-21 19:14:10 -04:00
void TransfersDialog : : forceCheck ( )
{
if ( ! controlTransferFile ( RS_FILE_CTRL_FORCE_CHECK ) )
std : : cerr < < " resumeFileTransfer(): can't force check file transfer " < < std : : endl ;
}
2011-02-07 19:41:13 -05:00
2008-12-12 16:42:44 -05:00
void TransfersDialog : : cancel ( )
{
2011-02-07 19:41:13 -05:00
bool first = true ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
if ( first ) {
first = false ;
QString queryWrn2 ;
queryWrn2 . clear ( ) ;
queryWrn2 . append ( tr ( " Are you sure that you want to cancel and delete these files? " ) ) ;
if ( ( QMessageBox : : question ( this , tr ( " RetroShare " ) , queryWrn2 , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) ) = = QMessageBox : : No ) {
break ;
}
}
rsFiles - > FileCancel ( * it ) ;
}
2008-12-12 16:42:44 -05:00
}
2010-03-10 16:38:26 -05:00
//void TransfersDialog::handleDownloadRequest(const QString& url)
//{
// RetroShareLink link(url);
//
// if (!link.valid ())
// {
// QMessageBox::critical(NULL,"Link error","This link could not be parsed. This is a bug. Please contact the developers.") ;
// return;
// }
//
// QVector<RetroShareLinkData> linkList;
// analyzer.getFileInformation (linkList);
//
// std::list<std::string> srcIds;
//
// for (int i = 0, n = linkList.size (); i < n; ++i)
// {
// const RetroShareLinkData& linkData = linkList[i];
//
// rsFiles->FileRequest (linkData.getName ().toStdString (), linkData.getHash ().toStdString (),
// linkData.getSize ().toInt (), "", 0, srcIds);
// }
//}
2009-05-18 10:23:55 -04:00
void TransfersDialog : : copyLink ( )
{
2011-09-11 18:07:24 -04:00
QList < RetroShareLink > links ;
2009-05-18 10:23:55 -04:00
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2009-05-18 10:23:55 -04:00
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
FileInfo info ;
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_DOWNLOAD , info ) ) {
continue ;
2010-03-10 16:38:26 -05:00
}
2011-02-07 19:41:13 -05:00
2011-05-04 06:22:49 -04:00
RetroShareLink link ;
2014-03-17 16:56:06 -04:00
if ( link . createFile ( QString : : fromUtf8 ( info . fname . c_str ( ) ) , info . size , QString : : fromStdString ( info . hash . toStdString ( ) ) ) ) {
2011-05-04 06:22:49 -04:00
links . push_back ( link ) ;
}
2011-02-07 19:41:13 -05:00
}
2010-04-10 10:56:34 -04:00
RSLinkClipboard : : copyLinks ( links ) ;
2009-05-18 10:23:55 -04:00
}
2013-08-23 16:46:11 -04:00
void TransfersDialog : : ulCopyLink ( )
{
QList < RetroShareLink > links ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2013-08-23 16:46:11 -04:00
getULSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2013-08-23 16:46:11 -04:00
FileInfo info ;
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_UPLOAD , info ) ) {
continue ;
}
RetroShareLink link ;
2014-03-17 16:56:06 -04:00
if ( link . createFile ( QString : : fromUtf8 ( info . fname . c_str ( ) ) , info . size , QString : : fromStdString ( info . hash . toStdString ( ) ) ) ) {
2013-08-23 16:46:11 -04:00
links . push_back ( link ) ;
}
}
RSLinkClipboard : : copyLinks ( links ) ;
}
2013-02-22 16:42:27 -05:00
DetailsDialog * TransfersDialog : : detailsDialog ( )
2010-01-05 19:10:15 -05:00
{
2013-02-22 16:42:27 -05:00
static DetailsDialog * detailsdlg = new DetailsDialog ;
2010-05-03 18:44:53 -04:00
2013-02-22 16:42:27 -05:00
return detailsdlg ;
}
void TransfersDialog : : showDetailsDialog ( )
{
2010-05-03 18:44:53 -04:00
updateDetailsDialog ( ) ;
2013-02-22 16:42:27 -05:00
detailsDialog ( ) - > show ( ) ;
2010-05-03 18:44:53 -04:00
}
void TransfersDialog : : updateDetailsDialog ( )
{
2014-03-17 16:56:06 -04:00
RsFileHash file_hash ;
2011-02-07 19:41:13 -05:00
std : : set < int > rows ;
std : : set < int > : : iterator it ;
getSelectedItems ( NULL , & rows ) ;
2010-05-03 18:44:53 -04:00
2011-02-07 19:41:13 -05:00
if ( rows . size ( ) ) {
int row = * rows . begin ( ) ;
2010-05-03 18:44:53 -04:00
2014-03-17 16:56:06 -04:00
file_hash = RsFileHash ( getID ( row , DLListModel ) . toStdString ( ) ) ;
2010-01-05 19:10:15 -05:00
}
2010-05-03 18:44:53 -04:00
2013-02-22 16:42:27 -05:00
detailsDialog ( ) - > setFileHash ( file_hash ) ;
2010-01-05 19:10:15 -05:00
}
2009-05-18 10:23:55 -04:00
void TransfersDialog : : pasteLink ( )
{
2011-09-11 18:07:24 -04:00
RSLinkClipboard : : process ( RetroShareLink : : TYPE_FILE ) ;
2009-05-18 10:23:55 -04:00
}
2014-03-17 16:56:06 -04:00
void TransfersDialog : : getSelectedItems ( std : : set < RsFileHash > * ids , std : : set < int > * rows )
2009-07-02 14:40:31 -04:00
{
2011-02-07 19:41:13 -05:00
if ( ids = = NULL & & rows = = NULL ) {
return ;
}
if ( ids ) ids - > clear ( ) ;
if ( rows ) rows - > clear ( ) ;
2009-07-02 14:40:31 -04:00
int i , imax = DLListModel - > rowCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( i = 0 ; i < imax ; + + i ) {
2009-07-02 14:40:31 -04:00
bool isParentSelected = false ;
bool isChildSelected = false ;
QStandardItem * parent = DLListModel - > item ( i ) ;
if ( ! parent ) continue ;
QModelIndex pindex = parent - > index ( ) ;
if ( selection - > isSelected ( pindex ) ) {
isParentSelected = true ;
} else {
int j , jmax = parent - > rowCount ( ) ;
2014-10-21 18:33:02 -04:00
for ( j = 0 ; j < jmax & & ! isChildSelected ; + + j ) {
2009-07-02 14:40:31 -04:00
QStandardItem * child = parent - > child ( j ) ;
if ( ! child ) continue ;
QModelIndex cindex = child - > index ( ) ;
if ( selection - > isSelected ( cindex ) ) {
isChildSelected = true ;
}
}
}
/* if transfered file or it's peers are selected control it*/
if ( isParentSelected | | isChildSelected ) {
2011-02-07 19:41:13 -05:00
if ( ids ) {
2013-07-01 17:03:20 -04:00
QStandardItem * id = DLListModel - > item ( i , COLUMN_ID ) ;
2014-03-17 16:56:06 -04:00
ids - > insert ( RsFileHash ( id - > data ( Qt : : DisplayRole ) . toString ( ) . toStdString ( ) ) ) ;
ids - > insert ( RsFileHash ( id - > data ( Qt : : UserRole ) . toString ( ) . toStdString ( ) ) ) ;
2011-02-07 19:41:13 -05:00
}
if ( rows ) {
rows - > insert ( i ) ;
}
2009-07-02 14:40:31 -04:00
}
}
2009-07-04 17:54:58 -04:00
}
2014-03-17 16:56:06 -04:00
void TransfersDialog : : getULSelectedItems ( std : : set < RsFileHash > * ids , std : : set < int > * rows )
2013-08-23 16:46:11 -04:00
{
if ( ids = = NULL & & rows = = NULL ) {
return ;
}
if ( ids ) ids - > clear ( ) ;
if ( rows ) rows - > clear ( ) ;
QModelIndexList indexes = selectionUp - > selectedIndexes ( ) ;
QModelIndex index ;
foreach ( index , indexes ) {
if ( ids ) {
QStandardItem * id = ULListModel - > item ( index . row ( ) , COLUMN_UHASH ) ;
2014-03-17 16:56:06 -04:00
ids - > insert ( RsFileHash ( id - > data ( Qt : : DisplayRole ) . toString ( ) . toStdString ( ) ) ) ;
2013-08-23 16:46:11 -04:00
}
if ( rows ) {
rows - > insert ( index . row ( ) ) ;
}
}
}
2009-07-04 17:54:58 -04:00
bool TransfersDialog : : controlTransferFile ( uint32_t flags )
{
bool result = true ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
result & = rsFiles - > FileControl ( * it , flags ) ;
2009-07-04 17:54:58 -04:00
}
2009-07-02 14:40:31 -04:00
return result ;
}
void TransfersDialog : : pauseFileTransfer ( )
{
if ( ! controlTransferFile ( RS_FILE_CTRL_PAUSE ) )
{
std : : cerr < < " pauseFileTransfer(): can't pause file transfer " < < std : : endl ;
}
}
void TransfersDialog : : resumeFileTransfer ( )
{
if ( ! controlTransferFile ( RS_FILE_CTRL_START ) )
{
std : : cerr < < " resumeFileTransfer(): can't resume file transfer " < < std : : endl ;
}
}
2009-07-05 12:27:58 -04:00
void TransfersDialog : : openFolderTransfer ( )
2009-07-02 14:40:31 -04:00
{
FileInfo info ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_DOWNLOAD , info ) ) continue ;
2009-07-04 17:54:58 -04:00
break ;
}
2009-07-02 14:40:31 -04:00
2009-07-04 17:54:58 -04:00
/* make path for downloaded or downloading files */
QFileInfo qinfo ;
std : : string path ;
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
2009-07-05 12:27:58 -04:00
path = info . path ;
2009-07-04 17:54:58 -04:00
} else {
path = rsFiles - > getPartialsDirectory ( ) ;
2009-07-05 12:27:58 -04:00
}
/* open folder with a suitable application */
2011-03-06 15:19:16 -05:00
qinfo . setFile ( QString : : fromUtf8 ( path . c_str ( ) ) ) ;
2009-07-05 12:27:58 -04:00
if ( qinfo . exists ( ) & & qinfo . isDir ( ) ) {
2011-11-07 18:07:25 -05:00
if ( ! RsUrlHandler : : openUrl ( QUrl : : fromLocalFile ( qinfo . absoluteFilePath ( ) ) ) ) {
2009-07-05 12:27:58 -04:00
std : : cerr < < " openFolderTransfer(): can't open folder " < < path < < std : : endl ;
2009-07-04 17:54:58 -04:00
}
}
2009-07-05 12:27:58 -04:00
}
2013-08-23 16:46:11 -04:00
void TransfersDialog : : ulOpenFolder ( )
{
FileInfo info ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2013-08-23 16:46:11 -04:00
getULSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2013-08-23 16:46:11 -04:00
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_UPLOAD , info ) ) continue ;
break ;
}
/* make path for uploading files */
QFileInfo qinfo ;
std : : string path ;
path = info . path . substr ( 0 , info . path . length ( ) - info . fname . length ( ) ) ;
/* open folder with a suitable application */
qinfo . setFile ( QString : : fromUtf8 ( path . c_str ( ) ) ) ;
if ( qinfo . exists ( ) & & qinfo . isDir ( ) ) {
if ( ! RsUrlHandler : : openUrl ( QUrl : : fromLocalFile ( qinfo . absoluteFilePath ( ) ) ) ) {
std : : cerr < < " ulOpenFolder(): can't open folder " < < path < < std : : endl ;
}
}
}
2009-07-05 12:27:58 -04:00
void TransfersDialog : : previewTransfer ( )
{
FileInfo info ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_DOWNLOAD , info ) ) continue ;
2009-07-05 12:27:58 -04:00
break ;
}
2014-04-28 19:20:29 -04:00
QFileInfo fileNameInfo ( QString : : fromUtf8 ( info . fname . c_str ( ) ) ) ;
2009-07-05 12:27:58 -04:00
/* check if the file is a media file */
2014-04-28 19:20:29 -04:00
if ( ! misc : : isPreviewable ( fileNameInfo . suffix ( ) ) ) return ;
2009-07-05 12:27:58 -04:00
/* make path for downloaded or downloading files */
2012-04-04 18:45:40 -04:00
QFileInfo fileInfo ;
2009-07-05 12:27:58 -04:00
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
2012-04-04 18:45:40 -04:00
fileInfo = QFileInfo ( QString : : fromUtf8 ( info . path . c_str ( ) ) , QString : : fromUtf8 ( info . fname . c_str ( ) ) ) ;
2009-07-05 12:27:58 -04:00
} else {
2014-03-17 16:56:06 -04:00
fileInfo = QFileInfo ( QString : : fromUtf8 ( rsFiles - > getPartialsDirectory ( ) . c_str ( ) ) , QString : : fromUtf8 ( info . hash . toStdString ( ) . c_str ( ) ) ) ;
2012-04-04 18:45:40 -04:00
2014-04-28 19:20:29 -04:00
QDir temp ;
# ifdef WINDOWS_SYS
/* the symbolic link must be created on the same drive like the real file, use partial directory */
temp = fileInfo . absoluteDir ( ) ;
# else
temp = QDir : : temp ( ) ;
# endif
QString linkName = QFileInfo ( temp , fileNameInfo . fileName ( ) ) . absoluteFilePath ( ) ;
if ( RsFile : : CreateLink ( fileInfo . absoluteFilePath ( ) , linkName ) ) {
2012-04-04 18:45:40 -04:00
fileInfo . setFile ( linkName ) ;
} else {
std : : cerr < < " previewTransfer(): can't create link for file " < < fileInfo . absoluteFilePath ( ) . toStdString ( ) < < std : : endl ;
QMessageBox : : warning ( this , tr ( " File preview " ) , tr ( " Can't create link for file %1. " ) . arg ( fileInfo . absoluteFilePath ( ) ) ) ;
return ;
}
2009-07-05 12:27:58 -04:00
}
2009-07-02 14:40:31 -04:00
2012-04-04 18:45:40 -04:00
bool previewStarted = false ;
2009-07-04 17:54:58 -04:00
/* open or preview them with a suitable application */
2012-04-04 18:45:40 -04:00
if ( fileInfo . exists ( ) & & RsUrlHandler : : openUrl ( QUrl : : fromLocalFile ( fileInfo . absoluteFilePath ( ) ) ) ) {
previewStarted = true ;
2009-07-28 11:29:21 -04:00
} else {
2012-04-04 18:45:40 -04:00
QMessageBox : : warning ( this , tr ( " File preview " ) , tr ( " File %1 preview failed. " ) . arg ( fileInfo . absoluteFilePath ( ) ) ) ;
std : : cerr < < " previewTransfer(): can't preview file " < < fileInfo . absoluteFilePath ( ) . toStdString ( ) < < std : : endl ;
}
if ( info . downloadStatus ! = FT_STATE_COMPLETE ) {
if ( previewStarted ) {
2009-07-28 11:29:21 -04:00
/* wait for the file to open then remove the link */
2012-04-04 18:45:40 -04:00
QMessageBox : : information ( this , tr ( " File preview " ) , tr ( " Click OK when program terminates! " ) ) ;
2009-07-02 14:40:31 -04:00
}
2014-04-28 19:20:29 -04:00
/* try to delete the preview file */
forever {
if ( QFile : : remove ( fileInfo . absoluteFilePath ( ) ) ) {
/* preview file could be removed */
break ;
}
/* ask user to try it again */
if ( QMessageBox : : question ( this , tr ( " File preview " ) , QString ( " %1 \n \n %2 \n \n %3 " ) . arg ( tr ( " Could not delete preview file " ) , fileInfo . absoluteFilePath ( ) , tr ( " Try it again? " ) ) , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
break ;
}
}
2009-07-02 14:40:31 -04:00
}
2009-07-04 17:54:58 -04:00
}
2009-07-02 14:40:31 -04:00
2009-07-05 12:27:58 -04:00
void TransfersDialog : : openTransfer ( )
2009-07-04 17:54:58 -04:00
{
2009-07-05 12:27:58 -04:00
FileInfo info ;
2009-07-04 17:54:58 -04:00
2014-05-29 10:49:45 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_DOWNLOAD , info ) ) continue ;
2009-07-05 12:27:58 -04:00
break ;
}
/* make path for downloaded or downloading files */
std : : string path ;
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
path = info . path + " / " + info . fname ;
/* open file with a suitable application */
QFileInfo qinfo ;
2011-03-06 15:19:16 -05:00
qinfo . setFile ( QString : : fromUtf8 ( path . c_str ( ) ) ) ;
2009-07-05 12:27:58 -04:00
if ( qinfo . exists ( ) ) {
2011-11-07 18:07:25 -05:00
if ( ! RsUrlHandler : : openUrl ( QUrl : : fromLocalFile ( qinfo . absoluteFilePath ( ) ) ) ) {
2009-07-05 12:27:58 -04:00
std : : cerr < < " openTransfer(): can't open file " < < path < < std : : endl ;
}
}
} else {
/* rise a message box for incompleted download file */
QMessageBox : : information ( this , tr ( " Open Transfer " ) ,
2011-03-06 15:19:16 -05:00
tr ( " File %1 is not completed. If it is a media file, try to preview it. " ) . arg ( QString : : fromUtf8 ( info . fname . c_str ( ) ) ) ) ;
2009-07-05 12:27:58 -04:00
}
2009-07-02 14:40:31 -04:00
}
2009-07-27 13:22:56 -04:00
/* clear download or all queue - for pending dwls */
2010-01-26 18:25:00 -05:00
//void TransfersDialog::clearQueuedDwl()
//{
// std::set<QStandardItem *> items;
// std::set<QStandardItem *>::iterator it;
2011-02-07 19:41:13 -05:00
// getSelectedItems(&items, NULL);
2010-01-26 18:25:00 -05:00
//
2014-10-21 18:33:02 -04:00
// for (it = items.begin(); it != items.end(); ++it) {
2010-01-26 18:25:00 -05:00
// std::string hash = (*it)->data(Qt::DisplayRole).toString().toStdString();
// rsFiles->clearDownload(hash);
// }
//}
2010-03-06 18:29:47 -05:00
//void TransfersDialog::clearQueue()
//{
// rsFiles->clearQueue();
//}
2009-07-27 13:22:56 -04:00
2009-12-08 17:29:52 -05:00
void TransfersDialog : : chunkStreaming ( )
{
setChunkStrategy ( FileChunksInfo : : CHUNK_STRATEGY_STREAMING ) ;
}
void TransfersDialog : : chunkRandom ( )
{
setChunkStrategy ( FileChunksInfo : : CHUNK_STRATEGY_RANDOM ) ;
}
2013-02-28 15:42:01 -05:00
void TransfersDialog : : chunkProgressive ( )
{
setChunkStrategy ( FileChunksInfo : : CHUNK_STRATEGY_PROGRESSIVE ) ;
}
2009-12-08 17:29:52 -05:00
void TransfersDialog : : setChunkStrategy ( FileChunksInfo : : ChunkStrategy s )
{
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2009-12-08 17:29:52 -05:00
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2011-02-07 19:41:13 -05:00
rsFiles - > setChunkStrategy ( * it , s ) ;
2009-12-08 17:29:52 -05:00
}
}
2009-07-27 13:22:56 -04:00
/* modify download priority actions */
2010-01-26 18:25:00 -05:00
void TransfersDialog : : speedSlow ( )
2009-07-27 13:22:56 -04:00
{
2010-01-26 18:25:00 -05:00
changeSpeed ( 0 ) ;
2009-07-27 13:22:56 -04:00
}
2010-01-26 18:25:00 -05:00
void TransfersDialog : : speedAverage ( )
2009-07-27 13:22:56 -04:00
{
2010-01-26 18:25:00 -05:00
changeSpeed ( 1 ) ;
2009-07-27 13:22:56 -04:00
}
2010-01-26 18:25:00 -05:00
void TransfersDialog : : speedFast ( )
2009-07-27 13:22:56 -04:00
{
2010-01-26 18:25:00 -05:00
changeSpeed ( 2 ) ;
2009-07-27 13:22:56 -04:00
}
2010-01-26 18:25:00 -05:00
2010-03-06 18:29:47 -05:00
void TransfersDialog : : priorityQueueUp ( )
2009-07-27 13:22:56 -04:00
{
2010-03-06 18:29:47 -05:00
changeQueuePosition ( QUEUE_UP ) ;
2010-01-26 18:25:00 -05:00
}
2010-03-06 18:29:47 -05:00
void TransfersDialog : : priorityQueueDown ( )
2010-01-26 18:25:00 -05:00
{
2010-03-06 18:29:47 -05:00
changeQueuePosition ( QUEUE_DOWN ) ;
2010-01-26 18:25:00 -05:00
}
2010-03-06 18:29:47 -05:00
void TransfersDialog : : priorityQueueTop ( )
2010-01-26 18:25:00 -05:00
{
2010-03-06 18:29:47 -05:00
changeQueuePosition ( QUEUE_TOP ) ;
2010-01-26 18:25:00 -05:00
}
2010-03-06 18:29:47 -05:00
void TransfersDialog : : priorityQueueBottom ( )
2010-01-26 18:25:00 -05:00
{
2010-03-06 18:29:47 -05:00
changeQueuePosition ( QUEUE_BOTTOM ) ;
2009-07-27 13:22:56 -04:00
}
2010-01-26 18:25:00 -05:00
void TransfersDialog : : changeSpeed ( int speed )
2009-07-27 13:22:56 -04:00
{
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2009-07-27 13:22:56 -04:00
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it )
2010-03-06 18:29:47 -05:00
{
2011-02-07 19:41:13 -05:00
rsFiles - > changeDownloadSpeed ( * it , speed ) ;
2010-01-26 18:25:00 -05:00
}
}
2013-02-27 11:59:16 -05:00
static bool checkFileName ( const QString & name )
{
if ( name . contains ( ' / ' ) ) return false ;
if ( name . contains ( ' \\ ' ) ) return false ;
if ( name . contains ( ' | ' ) ) return false ;
if ( name . contains ( ' : ' ) ) return false ;
if ( name . contains ( ' ? ' ) ) return false ;
if ( name . contains ( ' > ' ) ) return false ;
if ( name . contains ( ' < ' ) ) return false ;
if ( name . contains ( ' * ' ) ) return false ;
if ( name . length ( ) = = 0 )
return false ;
if ( name . length ( ) > 255 )
return false ;
return true ;
}
void TransfersDialog : : renameFile ( )
{
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
2013-02-27 11:59:16 -05:00
getSelectedItems ( & items , NULL ) ;
2010-01-26 18:25:00 -05:00
2013-02-27 11:59:16 -05:00
if ( items . size ( ) ! = 1 )
{
std : : cerr < < " Can't rename more than one file. This should not be called. " < < std : : endl ;
return ;
}
2014-03-17 16:56:06 -04:00
RsFileHash hash = * ( items . begin ( ) ) ;
2013-02-27 11:59:16 -05:00
FileInfo info ;
if ( ! rsFiles - > FileDetails ( hash , RS_FILE_HINTS_DOWNLOAD , info ) )
return ;
bool ok = true ;
bool first = true ;
QString new_name ;
do
{
new_name = QInputDialog : : getText ( NULL , tr ( " Change file name " ) , first ? tr ( " Please enter a new file name " ) : tr ( " Please enter a new--and valid--filename " ) , QLineEdit : : Normal , QString : : fromUtf8 ( info . fname . c_str ( ) ) , & ok ) ;
if ( ! ok )
return ;
first = false ;
}
while ( ! checkFileName ( new_name ) ) ;
rsFiles - > setDestinationName ( hash , new_name . toUtf8 ( ) . data ( ) ) ;
}
2010-01-26 18:25:00 -05:00
2010-03-06 18:29:47 -05:00
void TransfersDialog : : changeQueuePosition ( QueueMove mv )
2010-01-26 18:25:00 -05:00
{
2013-02-27 11:59:16 -05:00
// std::cerr << "In changeQueuePosition (gui)"<< std::endl ;
2014-03-17 16:56:06 -04:00
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
2011-02-07 19:41:13 -05:00
getSelectedItems ( & items , NULL ) ;
2010-01-26 18:25:00 -05:00
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it )
2010-01-26 18:25:00 -05:00
{
2011-02-07 19:41:13 -05:00
rsFiles - > changeQueuePosition ( * it , mv ) ;
2009-07-27 13:22:56 -04:00
}
}
2008-12-12 16:42:44 -05:00
void TransfersDialog : : clearcompleted ( )
{
2013-02-23 08:24:16 -05:00
// std::cerr << "TransfersDialog::clearcompleted()" << std::endl;
2011-02-07 19:41:13 -05:00
rsFiles - > FileClearCompleted ( ) ;
2008-12-12 16:42:44 -05:00
}
2009-11-17 07:45:06 -05:00
void TransfersDialog : : showFileDetails ( )
2009-11-15 14:26:34 -05:00
{
2014-03-17 16:56:06 -04:00
RsFileHash file_hash ;
2009-11-17 07:45:06 -05:00
int nb_select = 0 ;
2009-11-15 14:26:34 -05:00
2014-10-21 18:33:02 -04:00
for ( int i = 0 ; i < = DLListModel - > rowCount ( ) ; + + i )
2009-11-17 07:45:06 -05:00
if ( selection - > isRowSelected ( i , QModelIndex ( ) ) )
{
2014-04-20 12:34:26 -04:00
file_hash = RsFileHash ( getID ( i , DLListModel ) . toStdString ( ) ) ;
2009-11-17 07:45:06 -05:00
+ + nb_select ;
}
if ( nb_select ! = 1 )
2014-03-17 16:56:06 -04:00
detailsDialog ( ) - > setFileHash ( RsFileHash ( ) ) ;
2010-01-11 11:00:42 -05:00
else
2013-02-22 16:42:27 -05:00
detailsDialog ( ) - > setFileHash ( file_hash ) ;
2009-11-17 07:45:06 -05:00
2013-02-22 16:42:27 -05:00
updateDetailsDialog ( ) ;
2009-11-17 07:45:06 -05:00
}
2009-11-15 14:26:34 -05:00
2010-03-07 09:10:51 -05:00
double TransfersDialog : : getProgress ( int , QStandardItemModel * )
2008-12-12 16:42:44 -05:00
{
2010-01-11 11:00:42 -05:00
// return model->data(model->index(row, PROGRESS), Qt::DisplayRole).toDouble();
return 0.0 ;
2008-12-12 16:42:44 -05:00
}
double TransfersDialog : : getSpeed ( int row , QStandardItemModel * model )
{
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_DLSPEED ) , Qt : : DisplayRole ) . toDouble ( ) ;
2008-12-12 16:42:44 -05:00
}
QString TransfersDialog : : getFileName ( int row , QStandardItemModel * model )
{
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_NAME ) , Qt : : DisplayRole ) . toString ( ) ;
2008-12-12 16:42:44 -05:00
}
QString TransfersDialog : : getStatus ( int row , QStandardItemModel * model )
{
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_STATUS ) , Qt : : DisplayRole ) . toString ( ) ;
2008-12-12 16:42:44 -05:00
}
QString TransfersDialog : : getID ( int row , QStandardItemModel * model )
{
2013-09-10 14:33:22 -04:00
return model - > data ( model - > index ( row , COLUMN_ID ) , Qt : : UserRole ) . toString ( ) . left ( 40 ) ; // gets only the "hash" part of the name
2008-12-12 16:42:44 -05:00
}
2009-08-14 16:48:53 -04:00
QString TransfersDialog : : getPriority ( int row , QStandardItemModel * model )
{
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_PRIORITY ) , Qt : : DisplayRole ) . toString ( ) ;
2009-08-14 16:48:53 -04:00
}
2008-12-12 16:42:44 -05:00
qlonglong TransfersDialog : : getFileSize ( int row , QStandardItemModel * model )
{
bool ok = false ;
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_SIZE ) , Qt : : DisplayRole ) . toULongLong ( & ok ) ;
2008-12-12 16:42:44 -05:00
}
qlonglong TransfersDialog : : getTransfered ( int row , QStandardItemModel * model )
{
bool ok = false ;
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_COMPLETED ) , Qt : : DisplayRole ) . toULongLong ( & ok ) ;
2008-12-12 16:42:44 -05:00
}
qlonglong TransfersDialog : : getRemainingTime ( int row , QStandardItemModel * model )
{
bool ok = false ;
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_REMAINING ) , Qt : : DisplayRole ) . toULongLong ( & ok ) ;
2008-12-12 16:42:44 -05:00
}
2011-02-07 19:41:13 -05:00
qlonglong TransfersDialog : : getDownloadTime ( int row , QStandardItemModel * model )
{
2013-07-01 17:03:20 -04:00
return model - > data ( model - > index ( row , COLUMN_DOWNLOADTIME ) , Qt : : DisplayRole ) . toULongLong ( ) ;
}
qlonglong TransfersDialog : : getLastDL ( int row , QStandardItemModel * model )
{
return model - > data ( model - > index ( row , COLUMN_LASTDL ) , Qt : : DisplayRole ) . toULongLong ( ) ;
2011-02-07 19:41:13 -05:00
}
2013-08-25 16:35:29 -04:00
qlonglong TransfersDialog : : getPath ( int row , QStandardItemModel * model )
{
return model - > data ( model - > index ( row , COLUMN_PATH ) , Qt : : DisplayRole ) . toULongLong ( ) ;
}
2011-02-07 19:41:13 -05:00
QString TransfersDialog : : getSources ( int row , QStandardItemModel * model )
{
2013-10-06 08:09:36 -04:00
double dblValue = model - > data ( model - > index ( row , COLUMN_SOURCES ) , Qt : : DisplayRole ) . toDouble ( ) ;
QString temp = QString ( " %1 (%2) " ) . arg ( ( int ) dblValue ) . arg ( ( int ) ( ( fmod ( dblValue , 1 ) * 1000 ) + 0.5 ) ) ;
return temp ;
2011-02-07 19:41:13 -05:00
}
2011-11-25 18:46:41 -05:00
2014-05-29 10:49:45 -04:00
void TransfersDialog : : collCreate ( )
2011-11-25 18:46:41 -05:00
{
2014-05-29 10:49:45 -04:00
std : : vector < DirDetails > dirVec ;
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
getSelectedItems ( & items , NULL ) ;
2014-10-21 18:33:02 -04:00
for ( it = items . begin ( ) ; it ! = items . end ( ) ; + + it ) {
2014-05-29 10:49:45 -04:00
FileInfo info ;
if ( ! rsFiles - > FileDetails ( * it , RS_FILE_HINTS_DOWNLOAD , info ) ) continue ;
DirDetails details ;
details . name = info . fname ;
details . hash = info . hash ;
details . count = info . size ;
details . type = DIR_TYPE_FILE ;
dirVec . push_back ( details ) ;
} //for (it = items.begin();
RsCollectionFile ( dirVec ) . openNewColl ( this ) ;
}
void TransfersDialog : : collModif ( )
{
FileInfo info ;
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
getSelectedItems ( & items , NULL ) ;
if ( items . size ( ) ! = 1 ) return ;
it = items . begin ( ) ;
RsFileHash hash = * it ;
if ( ! rsFiles - > FileDetails ( hash , RS_FILE_HINTS_DOWNLOAD , info ) ) return ;
/* make path for downloaded files */
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
std : : string path ;
path = info . path + " / " + info . fname ;
/* open collection */
QFileInfo qinfo ;
qinfo . setFile ( QString : : fromUtf8 ( path . c_str ( ) ) ) ;
if ( qinfo . exists ( ) ) {
if ( qinfo . absoluteFilePath ( ) . endsWith ( RsCollectionFile : : ExtensionString ) ) {
RsCollectionFile collection ;
collection . openColl ( qinfo . absoluteFilePath ( ) ) ;
} //if (qinfo.absoluteFilePath().endsWith(RsCollectionFile::ExtensionString))
} //if (qinfo.exists())
} //if (info.downloadStatus == FT_STATE_COMPLETE)
}
void TransfersDialog : : collView ( )
{
FileInfo info ;
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
getSelectedItems ( & items , NULL ) ;
if ( items . size ( ) ! = 1 ) return ;
it = items . begin ( ) ;
RsFileHash hash = * it ;
if ( ! rsFiles - > FileDetails ( hash , RS_FILE_HINTS_DOWNLOAD , info ) ) return ;
/* make path for downloaded files */
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
std : : string path ;
path = info . path + " / " + info . fname ;
/* open collection */
QFileInfo qinfo ;
qinfo . setFile ( QString : : fromUtf8 ( path . c_str ( ) ) ) ;
if ( qinfo . exists ( ) ) {
if ( qinfo . absoluteFilePath ( ) . endsWith ( RsCollectionFile : : ExtensionString ) ) {
RsCollectionFile collection ;
collection . openColl ( qinfo . absoluteFilePath ( ) , true ) ;
} //if (qinfo.absoluteFilePath().endsWith(RsCollectionFile::ExtensionString))
} //if (qinfo.exists())
} //if (info.downloadStatus == FT_STATE_COMPLETE)
}
void TransfersDialog : : collOpen ( )
{
FileInfo info ;
std : : set < RsFileHash > items ;
std : : set < RsFileHash > : : iterator it ;
getSelectedItems ( & items , NULL ) ;
if ( items . size ( ) = = 1 ) {
it = items . begin ( ) ;
RsFileHash hash = * it ;
if ( rsFiles - > FileDetails ( hash , RS_FILE_HINTS_DOWNLOAD , info ) ) {
/* make path for downloaded files */
if ( info . downloadStatus = = FT_STATE_COMPLETE ) {
std : : string path ;
path = info . path + " / " + info . fname ;
/* open file with a suitable application */
QFileInfo qinfo ;
qinfo . setFile ( QString : : fromUtf8 ( path . c_str ( ) ) ) ;
if ( qinfo . exists ( ) ) {
if ( qinfo . absoluteFilePath ( ) . endsWith ( RsCollectionFile : : ExtensionString ) ) {
RsCollectionFile collection ;
2016-05-16 05:32:17 -04:00
if ( collection . load ( qinfo . absoluteFilePath ( ) ) ) {
2014-05-29 10:49:45 -04:00
collection . downloadFiles ( ) ;
return ;
2016-05-16 05:32:17 -04:00
}
}
}
}
}
}
2014-05-29 10:49:45 -04:00
RsCollectionFile collection ;
if ( collection . load ( this ) ) {
collection . downloadFiles ( ) ;
} //if (collection.load(this))
2011-11-25 18:46:41 -05:00
}
2014-05-29 10:49:45 -04:00
2013-07-06 15:34:34 -04:00
void TransfersDialog : : setShowDLSizeColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_SIZE ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_SIZE , ! show ) ;
}
}
void TransfersDialog : : setShowDLCompleteColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_COMPLETED ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_COMPLETED , ! show ) ;
}
}
void TransfersDialog : : setShowDLDLSpeedColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_DLSPEED ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_DLSPEED , ! show ) ;
}
}
void TransfersDialog : : setShowDLProgressColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_PROGRESS ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_PROGRESS , ! show ) ;
}
}
void TransfersDialog : : setShowDLSourcesColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_SOURCES ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_SOURCES , ! show ) ;
}
}
void TransfersDialog : : setShowDLStatusColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_STATUS ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_STATUS , ! show ) ;
}
}
void TransfersDialog : : setShowDLPriorityColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_PRIORITY ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_PRIORITY , ! show ) ;
}
}
void TransfersDialog : : setShowDLRemainingColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_REMAINING ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_REMAINING , ! show ) ;
}
}
void TransfersDialog : : setShowDLDownloadTimeColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_DOWNLOADTIME ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_DOWNLOADTIME , ! show ) ;
}
}
void TransfersDialog : : setShowDLIDColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_ID ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_ID , ! show ) ;
}
}
void TransfersDialog : : setShowDLLastDLColumn ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_LASTDL ) ) ! = show ) {
2013-07-06 15:34:34 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_LASTDL , ! show ) ;
}
}
2013-07-06 11:48:40 -04:00
2013-08-25 16:35:29 -04:00
void TransfersDialog : : setShowDLPath ( bool show )
{
2015-06-14 10:58:07 -04:00
if ( ( ! ui . downloadList - > isColumnHidden ( COLUMN_PATH ) ) ! = show ) {
2013-08-25 16:35:29 -04:00
ui . downloadList - > setColumnHidden ( COLUMN_PATH , ! show ) ;
}
}
2013-07-06 11:48:40 -04:00
void TransfersDialog : : expandAll ( )
{
ui . downloadList - > expandAll ( ) ;
}
void TransfersDialog : : collapseAll ( )
{
ui . downloadList - > collapseAll ( ) ;
}