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.
|
|
|
|
****************************************************************/
|
|
|
|
|
2009-07-31 09:12:46 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <Windows.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
#include "rshare.h"
|
|
|
|
#include "TransfersDialog.h"
|
2009-05-18 10:23:55 -04:00
|
|
|
#include "RetroShareLinkAnalyzer.h"
|
2008-12-12 16:42:44 -05:00
|
|
|
#include "DLListDelegate.h"
|
|
|
|
#include "ULListDelegate.h"
|
|
|
|
|
|
|
|
#include <QContextMenuEvent>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QHeaderView>
|
|
|
|
#include <QStandardItemModel>
|
2009-07-02 14:40:31 -04:00
|
|
|
#include <QUrl>
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include "rsiface/rsfiles.h"
|
|
|
|
#include "rsiface/rspeers.h"
|
2009-06-28 16:57:02 -04:00
|
|
|
#include "rsiface/rsdisc.h"
|
2009-07-28 06:21:19 -04:00
|
|
|
#include "rsiface/rstypes.h"
|
2008-11-02 10:20:42 -05:00
|
|
|
#include <algorithm>
|
2009-07-05 12:27:58 -04:00
|
|
|
#include "util/misc.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"
|
2009-05-18 10:23:55 -04:00
|
|
|
#define IMAGE_PLAY ":/images/player_play.png"
|
|
|
|
#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"
|
2009-07-04 19:36:04 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
/** Constructor */
|
|
|
|
TransfersDialog::TransfersDialog(QWidget *parent)
|
|
|
|
: MainPage(parent)
|
|
|
|
{
|
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
|
|
|
connect( ui.downloadList, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( downloadListCostumPopupMenu( QPoint ) ) );
|
|
|
|
|
|
|
|
// Set Download list model
|
2009-08-11 16:27:59 -04:00
|
|
|
DLListModel = new QStandardItemModel(0,ID + 1);
|
2008-12-12 16:42:44 -05:00
|
|
|
DLListModel->setHeaderData(NAME, Qt::Horizontal, tr("Name", "i.e: file name"));
|
|
|
|
DLListModel->setHeaderData(SIZE, Qt::Horizontal, tr("Size", "i.e: file size"));
|
|
|
|
DLListModel->setHeaderData(COMPLETED, Qt::Horizontal, tr("Completed", ""));
|
|
|
|
DLListModel->setHeaderData(DLSPEED, Qt::Horizontal, tr("Speed", "i.e: Download speed"));
|
|
|
|
DLListModel->setHeaderData(PROGRESS, Qt::Horizontal, tr("Progress", "i.e: % downloaded"));
|
|
|
|
DLListModel->setHeaderData(SOURCES, Qt::Horizontal, tr("Sources", "i.e: Sources"));
|
|
|
|
DLListModel->setHeaderData(STATUS, Qt::Horizontal, tr("Status"));
|
2009-08-11 16:27:59 -04:00
|
|
|
DLListModel->setHeaderData(PRIORITY, Qt::Horizontal, tr("Priority"));
|
2008-12-12 16:42:44 -05:00
|
|
|
DLListModel->setHeaderData(REMAINING, Qt::Horizontal, tr("Remaining", "i.e: Estimated Time of Arrival / Time left"));
|
|
|
|
DLListModel->setHeaderData(ID, Qt::Horizontal, tr("Core-ID"));
|
|
|
|
ui.downloadList->setModel(DLListModel);
|
2009-05-07 18:40:57 -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
|
|
|
|
2009-05-07 18:40:57 -04:00
|
|
|
ui.downloadList->setAutoScroll(false) ;
|
2009-05-20 18:06:20 -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 () ;
|
2009-05-20 18:06:20 -04:00
|
|
|
_header->setResizeMode (NAME, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (SIZE, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (COMPLETED, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (DLSPEED, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (PROGRESS, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (SOURCES, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (STATUS, QHeaderView::Interactive);
|
2009-08-11 16:27:59 -04:00
|
|
|
_header->setResizeMode (PRIORITY, QHeaderView::Interactive);
|
2009-05-20 18:06:20 -04:00
|
|
|
_header->setResizeMode (REMAINING, QHeaderView::Interactive);
|
|
|
|
|
|
|
|
_header->resizeSection ( NAME, 170 );
|
|
|
|
_header->resizeSection ( SIZE, 70 );
|
|
|
|
_header->resizeSection ( COMPLETED, 75 );
|
|
|
|
_header->resizeSection ( DLSPEED, 75 );
|
2009-05-07 18:40:57 -04:00
|
|
|
_header->resizeSection ( PROGRESS, 170 );
|
2009-05-20 18:06:20 -04:00
|
|
|
_header->resizeSection ( SOURCES, 90 );
|
|
|
|
_header->resizeSection ( STATUS, 100 );
|
2009-08-11 16:27:59 -04:00
|
|
|
_header->resizeSection ( PRIORITY, 100 );
|
2009-05-20 18:06:20 -04:00
|
|
|
_header->resizeSection ( REMAINING, 100 );
|
|
|
|
|
2009-05-07 18:40:57 -04:00
|
|
|
// Set Upload list model
|
2008-12-12 16:42:44 -05:00
|
|
|
ULListModel = new QStandardItemModel(0,7);
|
|
|
|
ULListModel->setHeaderData(UNAME, Qt::Horizontal, tr("Name", "i.e: file name"));
|
|
|
|
ULListModel->setHeaderData(USIZE, Qt::Horizontal, tr("Size", "i.e: file size"));
|
2009-07-24 18:39:34 -04:00
|
|
|
ULListModel->setHeaderData(USERNAME, Qt::Horizontal, tr("Peer", "i.e: user name"));
|
2008-12-12 16:42:44 -05:00
|
|
|
ULListModel->setHeaderData(UPROGRESS, Qt::Horizontal, tr("Progress", "i.e: % uploaded"));
|
|
|
|
ULListModel->setHeaderData(ULSPEED, Qt::Horizontal, tr("Speed", "i.e: upload speed"));
|
|
|
|
ULListModel->setHeaderData(USTATUS, Qt::Horizontal, tr("Status"));
|
|
|
|
ULListModel->setHeaderData(UTRANSFERRED, Qt::Horizontal, tr("Transferred", ""));
|
|
|
|
ui.uploadsList->setModel(ULListModel);
|
|
|
|
ULDelegate = new ULListDelegate();
|
|
|
|
ui.uploadsList->setItemDelegate(ULDelegate);
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-07 18:40:57 -04:00
|
|
|
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
|
2009-07-24 19:28:20 -04:00
|
|
|
selectionup = ui.uploadsList->selectionModel();
|
2009-07-24 18:39:34 -04:00
|
|
|
ui.uploadsList->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
|
|
|
|
|
|
/* Set header resize modes and initial section sizes Uploads TreeView*/
|
|
|
|
QHeaderView * upheader = ui.uploadsList->header () ;
|
|
|
|
upheader->setResizeMode (UNAME, QHeaderView::Interactive);
|
|
|
|
upheader->setResizeMode (USIZE, QHeaderView::Interactive);
|
2009-07-26 11:02:16 -04:00
|
|
|
upheader->setResizeMode (UTRANSFERRED, QHeaderView::Interactive);
|
|
|
|
upheader->setResizeMode (ULSPEED, QHeaderView::Interactive);
|
|
|
|
upheader->setResizeMode (UPROGRESS, QHeaderView::Interactive);
|
|
|
|
upheader->setResizeMode (USTATUS, QHeaderView::Interactive);
|
|
|
|
upheader->setResizeMode (USERNAME, QHeaderView::Interactive);
|
2009-07-24 18:39:34 -04:00
|
|
|
|
2009-07-26 11:02:16 -04:00
|
|
|
upheader->resizeSection ( UNAME, 170 );
|
2009-07-24 18:39:34 -04:00
|
|
|
upheader->resizeSection ( USIZE, 70 );
|
|
|
|
upheader->resizeSection ( UTRANSFERRED, 75 );
|
2009-07-26 11:02:16 -04:00
|
|
|
upheader->resizeSection ( ULSPEED, 75 );
|
|
|
|
upheader->resizeSection ( UPROGRESS, 170 );
|
|
|
|
upheader->resizeSection ( USTATUS, 100 );
|
|
|
|
upheader->resizeSection ( USERNAME, 75 );
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
/* Hide platform specific features */
|
|
|
|
#ifdef Q_WS_WIN
|
|
|
|
|
|
|
|
#endif
|
2009-07-24 18:39:34 -04:00
|
|
|
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
}
|
|
|
|
|
2009-05-07 18:40:57 -04:00
|
|
|
void TransfersDialog::keyPressEvent(QKeyEvent *e)
|
|
|
|
{
|
|
|
|
if(e->key() == Qt::Key_Delete)
|
|
|
|
{
|
|
|
|
cancel() ;
|
|
|
|
e->accept() ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
MainPage::keyPressEvent(e) ;
|
|
|
|
}
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
void TransfersDialog::downloadListCostumPopupMenu( QPoint point )
|
|
|
|
{
|
|
|
|
|
|
|
|
QMenu contextMnu( this );
|
|
|
|
QMouseEvent *mevent = new QMouseEvent( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
|
|
|
|
|
|
|
//showdowninfoAct = new QAction(QIcon(IMAGE_INFO), tr( "Details..." ), this );
|
|
|
|
//connect( showdowninfoAct , SIGNAL( triggered() ), this, SLOT( showDownInfoWindow() ) );
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
/* check which item is selected
|
|
|
|
* - if it is completed - play should appear in menu
|
2008-12-12 16:42:44 -05:00
|
|
|
*/
|
|
|
|
std::cerr << "TransfersDialog::downloadListCostumPopupMenu()" << std::endl;
|
|
|
|
|
|
|
|
bool addPlayOption = false;
|
|
|
|
for(int i = 0; i <= DLListModel->rowCount(); i++) {
|
|
|
|
std::cerr << "Row Status :" << getStatus(i, DLListModel).toStdString() << ":" << std::endl;
|
|
|
|
if(selection->isRowSelected(i, QModelIndex())) {
|
|
|
|
std::cerr << "Selected Row Status :" << getStatus(i, DLListModel).toStdString() << ":" << std::endl;
|
|
|
|
QString qstatus = getStatus(i, DLListModel);
|
|
|
|
std::string status = (qstatus.trimmed()).toStdString();
|
|
|
|
if (status == "Complete")
|
|
|
|
{
|
|
|
|
std::cerr << "Add Play Option" << std::endl;
|
|
|
|
addPlayOption = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QAction *playAct = NULL;
|
|
|
|
if (addPlayOption)
|
|
|
|
{
|
|
|
|
playAct = new QAction(QIcon(IMAGE_PLAY), tr( "Play" ), this );
|
|
|
|
connect( playAct , SIGNAL( triggered() ), this, SLOT( playSelectedTransfer() ) );
|
|
|
|
}
|
2009-07-04 17:54:58 -04:00
|
|
|
|
2009-07-02 19:47:38 -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()));
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-07-27 16:24:58 -04:00
|
|
|
cancelAct = new QAction(QIcon(IMAGE_CANCEL), tr( "Cancel" ), this );
|
2008-12-12 16:42:44 -05:00
|
|
|
connect( cancelAct , SIGNAL( triggered() ), this, SLOT( cancel() ) );
|
2009-07-04 17:54:58 -04:00
|
|
|
|
2009-07-02 19:47:38 -04:00
|
|
|
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
|
|
|
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openFolderTransfer()));
|
2009-07-04 17:54:58 -04:00
|
|
|
|
2009-07-05 12:27:58 -04:00
|
|
|
openfileAct = new QAction(QIcon(IMAGE_OPENFILE), tr("Open File"), this);
|
|
|
|
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openTransfer()));
|
|
|
|
|
|
|
|
previewfileAct = new QAction(QIcon(IMAGE_PREVIEW), tr("Preview File"), this);
|
|
|
|
connect(previewfileAct, SIGNAL(triggered()), this, SLOT(previewTransfer()));
|
2009-07-04 17:54:58 -04:00
|
|
|
|
2009-07-02 19:47:38 -04:00
|
|
|
clearcompletedAct = new QAction(QIcon(IMAGE_CLEARCOMPLETED), tr( "Clear Completed" ), this );
|
|
|
|
connect( clearcompletedAct , SIGNAL( triggered() ), this, SLOT( clearcompleted() ) );
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-18 10:23:55 -04:00
|
|
|
copylinkAct = new QAction(QIcon(IMAGE_COPYLINK), tr( "Copy retroshare Link" ), this );
|
|
|
|
connect( copylinkAct , SIGNAL( triggered() ), this, SLOT( copyLink() ) );
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-18 10:23:55 -04:00
|
|
|
pastelinkAct = new QAction(QIcon(IMAGE_PASTELINK), tr( "Paste retroshare Link" ), this );
|
|
|
|
connect( pastelinkAct , SIGNAL( triggered() ), this, SLOT( pasteLink() ) );
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-27 14:20:08 -04:00
|
|
|
rootisnotdecoratedAct = new QAction(QIcon(), tr( "Set Root is not Decorated" ), this );
|
|
|
|
connect( rootisnotdecoratedAct , SIGNAL( triggered() ), this, SLOT( rootisnotdecorated() ) );
|
|
|
|
|
|
|
|
rootisdecoratedAct = new QAction(QIcon(), tr( "Set Root is Decorated" ), this );
|
|
|
|
connect( rootisdecoratedAct , SIGNAL( triggered() ), this, SLOT( rootdecorated() ) );
|
2009-05-27 18:21:09 -04:00
|
|
|
|
2009-05-27 14:20:08 -04:00
|
|
|
QMenu *viewMenu = new QMenu( tr("View"), this );
|
|
|
|
viewMenu->addAction(rootisnotdecoratedAct);
|
2009-07-27 16:24:58 -04:00
|
|
|
viewMenu->addAction(rootisdecoratedAct);
|
2009-07-27 13:22:56 -04:00
|
|
|
|
|
|
|
clearQueuedDwlAct = new QAction(QIcon(), tr("Clear from Queue"), this);
|
|
|
|
connect(clearQueuedDwlAct, SIGNAL(triggered()), this, SLOT(clearQueuedDwl()));
|
|
|
|
clearQueueAct = new QAction(QIcon(), tr("Clear Queue"), this);
|
|
|
|
connect(clearQueueAct, SIGNAL(triggered()), this, SLOT(clearQueue()));
|
|
|
|
|
2009-07-27 16:24:58 -04:00
|
|
|
priorityLowAct = new QAction(QIcon(IMAGE_PRIORITYLOW), tr("Low"), this);
|
2009-07-27 13:22:56 -04:00
|
|
|
connect(priorityLowAct, SIGNAL(triggered()), this, SLOT(priorityLow()));
|
2009-07-27 16:24:58 -04:00
|
|
|
priorityNormalAct = new QAction(QIcon(IMAGE_PRIORITYNORMAL), tr("Normal"), this);
|
2009-07-27 13:22:56 -04:00
|
|
|
connect(priorityNormalAct, SIGNAL(triggered()), this, SLOT(priorityNormal()));
|
2009-07-27 16:24:58 -04:00
|
|
|
priorityHighAct = new QAction(QIcon(IMAGE_PRIORITYHIGH), tr("High"), this);
|
2009-07-27 13:22:56 -04:00
|
|
|
connect(priorityHighAct, SIGNAL(triggered()), this, SLOT(priorityHigh()));
|
2009-07-27 16:24:58 -04:00
|
|
|
priorityAutoAct = new QAction(QIcon(IMAGE_PRIORITYAUTO), tr("Auto"), this);
|
2009-07-27 13:22:56 -04:00
|
|
|
connect(priorityAutoAct, SIGNAL(triggered()), this, SLOT(priorityAuto()));
|
|
|
|
|
2009-07-27 16:24:58 -04:00
|
|
|
QMenu *priorityMenu = new QMenu(tr("Priority (Download)"), this);
|
|
|
|
priorityMenu->setIcon(QIcon(IMAGE_PRIORITY));
|
2009-07-27 13:22:56 -04:00
|
|
|
priorityMenu->addAction(priorityLowAct);
|
|
|
|
priorityMenu->addAction(priorityNormalAct);
|
|
|
|
priorityMenu->addAction(priorityHighAct);
|
|
|
|
priorityMenu->addAction(priorityAutoAct);
|
2009-05-27 18:21:09 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
contextMnu.clear();
|
|
|
|
if (addPlayOption)
|
|
|
|
{
|
|
|
|
contextMnu.addAction(playAct);
|
|
|
|
}
|
2009-05-20 18:06:20 -04:00
|
|
|
contextMnu.addSeparator();
|
2009-07-27 16:24:58 -04:00
|
|
|
contextMnu.addMenu( priorityMenu);
|
2009-07-02 19:47:38 -04:00
|
|
|
contextMnu.addAction( pauseAct);
|
|
|
|
contextMnu.addAction( resumeAct);
|
2008-12-12 16:42:44 -05:00
|
|
|
contextMnu.addAction( cancelAct);
|
|
|
|
contextMnu.addSeparator();
|
2009-07-05 12:27:58 -04:00
|
|
|
contextMnu.addAction( openfileAct);
|
|
|
|
contextMnu.addAction( previewfileAct);
|
2009-07-05 13:58:11 -04:00
|
|
|
contextMnu.addAction( openfolderAct);
|
2009-05-18 10:23:55 -04:00
|
|
|
contextMnu.addSeparator();
|
2008-12-12 16:42:44 -05:00
|
|
|
contextMnu.addAction( clearcompletedAct);
|
2009-07-02 14:40:31 -04:00
|
|
|
contextMnu.addSeparator();
|
2009-07-02 19:47:38 -04:00
|
|
|
contextMnu.addAction( copylinkAct);
|
|
|
|
contextMnu.addAction( pastelinkAct);
|
2009-05-27 14:20:08 -04:00
|
|
|
contextMnu.addSeparator();
|
2009-07-27 13:22:56 -04:00
|
|
|
contextMnu.addAction( clearQueuedDwlAct);
|
|
|
|
contextMnu.addAction( clearQueueAct);
|
|
|
|
contextMnu.addSeparator();
|
|
|
|
contextMnu.addMenu( viewMenu);
|
2008-12-12 16:42:44 -05:00
|
|
|
contextMnu.exec( mevent->globalPos() );
|
2009-05-27 18:21:09 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::playSelectedTransfer()
|
|
|
|
{
|
|
|
|
std::cerr << "TransfersDialog::playSelectedTransfer()" << std::endl;
|
|
|
|
|
|
|
|
/* get the shared directories */
|
|
|
|
std::string incomingdir = rsFiles->getDownloadDirectory();
|
|
|
|
|
|
|
|
/* create the List of Files */
|
|
|
|
QStringList playList;
|
|
|
|
for(int i = 0; i <= DLListModel->rowCount(); i++) {
|
|
|
|
if(selection->isRowSelected(i, QModelIndex())) {
|
|
|
|
QString qstatus = getStatus(i, DLListModel);
|
|
|
|
std::string status = (qstatus.trimmed()).toStdString();
|
|
|
|
if (status == "Complete")
|
|
|
|
{
|
|
|
|
QString qname = getFileName(i, DLListModel);
|
|
|
|
QString fullpath = QString::fromStdString(incomingdir);
|
|
|
|
fullpath += "/";
|
|
|
|
fullpath += qname.trimmed();
|
|
|
|
|
|
|
|
playList.push_back(fullpath);
|
|
|
|
|
|
|
|
std::cerr << "PlayFile:" << fullpath.toStdString() << std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
playFiles(playList);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void TransfersDialog::updateProgress(int value)
|
|
|
|
{
|
|
|
|
for(int i = 0; i <= DLListModel->rowCount(); i++) {
|
|
|
|
if(selection->isRowSelected(i, QModelIndex())) {
|
|
|
|
editItem(i, PROGRESS, QVariant((double)value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TransfersDialog::~TransfersDialog()
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-08-11 16:27:59 -04:00
|
|
|
int TransfersDialog::addItem(QString symbol, QString name, QString coreID, qlonglong fileSize, double progress, double dlspeed,
|
|
|
|
QString sources, QString status, QString priority, qlonglong completed, qlonglong remaining)
|
2008-12-12 16:42:44 -05:00
|
|
|
{
|
2009-05-27 09:09:03 -04:00
|
|
|
int row;
|
|
|
|
QString sl;
|
|
|
|
//QIcon icon(symbol);
|
|
|
|
name.insert(0, " ");
|
|
|
|
//sl.sprintf("%d / %d", seeds, leechs);
|
|
|
|
row = DLListModel->rowCount();
|
|
|
|
DLListModel->insertRow(row);
|
|
|
|
|
|
|
|
//DLListModel->setData(DLListModel->index(row, NAME), QVariant((QIcon)icon), Qt::DecorationRole);
|
|
|
|
DLListModel->setData(DLListModel->index(row, NAME), QVariant((QString)name), Qt::DisplayRole);
|
|
|
|
DLListModel->setData(DLListModel->index(row, SIZE), QVariant((qlonglong)fileSize));
|
|
|
|
DLListModel->setData(DLListModel->index(row, COMPLETED), QVariant((qlonglong)completed));
|
|
|
|
DLListModel->setData(DLListModel->index(row, DLSPEED), QVariant((double)dlspeed));
|
|
|
|
DLListModel->setData(DLListModel->index(row, PROGRESS), QVariant((double)progress));
|
|
|
|
DLListModel->setData(DLListModel->index(row, SOURCES), QVariant((QString)sources));
|
|
|
|
DLListModel->setData(DLListModel->index(row, STATUS), QVariant((QString)status));
|
2009-08-11 16:27:59 -04:00
|
|
|
DLListModel->setData(DLListModel->index(row, PRIORITY), QVariant((QString)priority));
|
2009-05-27 09:09:03 -04:00
|
|
|
DLListModel->setData(DLListModel->index(row, REMAINING), QVariant((qlonglong)remaining));
|
|
|
|
DLListModel->setData(DLListModel->index(row, ID), QVariant((QString)coreID));
|
|
|
|
|
|
|
|
|
|
|
|
QString ext = QFileInfo(name).suffix();
|
|
|
|
if (ext == "jpg" || ext == "jpeg" || ext == "tif" || ext == "tiff" || ext == "JPG"|| ext == "png" || ext == "gif"
|
|
|
|
|| ext == "bmp" || ext == "ico" || ext == "svg")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypePicture.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "avi" ||ext == "AVI" || ext == "mpg" || ext == "mpeg" || ext == "wmv" || ext == "divx" || ext == "ts"
|
|
|
|
|| ext == "mkv" || ext == "mp4" || ext == "flv" || ext == "mov" || ext == "asf" || ext == "xvid"
|
|
|
|
|| ext == "vob" || ext == "qt" || ext == "rm" || ext == "3gp" || ext == "mpeg" || ext == "ogm")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeVideo.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "ogg" || ext == "mp3" || ext == "MP3" || ext == "mp1" || ext == "mp2" || ext == "wav" || ext == "wma")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeAudio.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "tar" || ext == "bz2" || ext == "zip" || ext == "gz" || ext == "7z" || ext == "msi"
|
|
|
|
|| ext == "rar" || ext == "rpm" || ext == "ace" || ext == "jar" || ext == "tgz" || ext == "lha"
|
|
|
|
|| ext == "cab" || ext == "cbz"|| ext == "cbr" || ext == "alz" || ext == "sit" || ext == "arj" || ext == "deb")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeArchive.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "app" || ext == "bat" || ext == "cgi" || ext == "com"
|
|
|
|
|| ext == "exe" || ext == "js" || ext == "pif"
|
|
|
|
|| ext == "py" || ext == "pl" || ext == "sh" || ext == "vb" || ext == "ws")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeProgram.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "iso" || ext == "nrg" || ext == "mdf" || ext == "img" || ext == "dmg" || ext == "bin" )
|
|
|
|
{
|
2009-05-27 18:21:09 -04:00
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeCDImage.png")), Qt::DecorationRole);
|
2009-05-27 09:09:03 -04:00
|
|
|
}
|
|
|
|
else if (ext == "txt" || ext == "cpp" || ext == "c" || ext == "h")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeDocument.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "doc" || ext == "rtf" || ext == "sxw" || ext == "xls" || ext == "pps" || ext == "xml"
|
|
|
|
|| ext == "sxc" || ext == "odt" || ext == "ods" || ext == "dot" || ext == "ppt" || ext == "css" )
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeDocument.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else if (ext == "html" || ext == "htm" || ext == "php")
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeDocument.png")), Qt::DecorationRole);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DLListModel->setData(DLListModel->index(row,NAME), QIcon(QString::fromUtf8(":/images/FileTypeAny.png")), Qt::DecorationRole);
|
|
|
|
}
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
return row;
|
|
|
|
}
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
bool TransfersDialog::addPeerToItem(int row, QString symbol, QString name, QString coreID, qlonglong fileSize, double progress, double dlspeed, QString sources, QString status, qlonglong completed, qlonglong remaining)
|
|
|
|
{
|
|
|
|
QStandardItem *dlItem = DLListModel->item(row);
|
|
|
|
if (!dlItem) return false;
|
|
|
|
|
|
|
|
//set this false if you want to expand on double click
|
|
|
|
dlItem->setEditable(false);
|
|
|
|
|
2009-05-27 18:21:09 -04:00
|
|
|
name.insert(0, " ");
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QStandardItem *i1 = new QStandardItem(); i1->setData(QVariant((QString)name), Qt::DisplayRole);
|
|
|
|
QStandardItem *i2 = new QStandardItem(); i2->setData(QVariant((qlonglong)fileSize), Qt::DisplayRole);
|
|
|
|
QStandardItem *i3 = new QStandardItem(); i3->setData(QVariant((qlonglong)completed), Qt::DisplayRole);
|
|
|
|
QStandardItem *i4 = new QStandardItem(); i4->setData(QVariant((double)dlspeed), Qt::DisplayRole);
|
|
|
|
QStandardItem *i5 = new QStandardItem(); i5->setData(QVariant((double)progress), Qt::DisplayRole);
|
|
|
|
QStandardItem *i6 = new QStandardItem(); i6->setData(QVariant((QString)sources), Qt::DisplayRole);
|
|
|
|
QStandardItem *i7 = new QStandardItem(); i7->setData(QVariant((QString)status), Qt::DisplayRole);
|
2009-08-11 16:27:59 -04:00
|
|
|
QStandardItem *i8 = new QStandardItem(); i8->setData(QVariant((QString)tr("")), Qt::DisplayRole); // blank field for priority
|
|
|
|
QStandardItem *i9 = new QStandardItem(); i9->setData(QVariant((qlonglong)remaining), Qt::DisplayRole);
|
|
|
|
QStandardItem *i10 = new QStandardItem(); i10->setData(QVariant((QString)coreID), Qt::DisplayRole);
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-27 18:21:09 -04:00
|
|
|
/* set status icon in the name field */
|
|
|
|
if (status == "Downloading") {
|
|
|
|
i1->setData(QIcon(QString::fromUtf8(":/images/Client0.png")), Qt::DecorationRole);
|
|
|
|
} else if (status == "Failed") {
|
|
|
|
i1->setData(QIcon(QString::fromUtf8(":/images/Client1.png")), Qt::DecorationRole);
|
|
|
|
} else if (status == "Okay") {
|
|
|
|
i1->setData(QIcon(QString::fromUtf8(":/images/Client2.png")), Qt::DecorationRole);
|
|
|
|
} else if (status == "Waiting") {
|
|
|
|
i1->setData(QIcon(QString::fromUtf8(":/images/Client3.png")), Qt::DecorationRole);
|
|
|
|
} else if (status == "Unknown") {
|
|
|
|
i1->setData(QIcon(QString::fromUtf8(":/images/Client4.png")), Qt::DecorationRole);
|
|
|
|
} else if (status == "Complete") {
|
|
|
|
}
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
items.append(i1);
|
|
|
|
items.append(i2);
|
|
|
|
items.append(i3);
|
|
|
|
items.append(i4);
|
|
|
|
items.append(i5);
|
|
|
|
items.append(i6);
|
|
|
|
items.append(i7);
|
|
|
|
items.append(i8);
|
|
|
|
items.append(i9);
|
2009-08-11 16:27:59 -04:00
|
|
|
items.append(i10);
|
2009-05-20 18:06:20 -04:00
|
|
|
|
|
|
|
dlItem->appendRow(items);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
int TransfersDialog::addUploadItem(QString symbol, QString name, QString coreID, qlonglong fileSize, double progress, double dlspeed, QString sources, QString status, qlonglong completed, qlonglong remaining)
|
|
|
|
{
|
|
|
|
int row;
|
|
|
|
QString sl;
|
|
|
|
//QIcon icon(symbol);
|
|
|
|
name.insert(0, " ");
|
|
|
|
row = ULListModel->rowCount();
|
|
|
|
ULListModel->insertRow(row);
|
|
|
|
|
|
|
|
ULListModel->setData(ULListModel->index(row, UNAME), QVariant((QString)name), Qt::DisplayRole);
|
|
|
|
ULListModel->setData(ULListModel->index(row, USIZE), QVariant((qlonglong)fileSize));
|
2009-07-24 18:39:34 -04:00
|
|
|
ULListModel->setData(ULListModel->index(row, UTRANSFERRED), QVariant((qlonglong)completed));
|
2008-12-12 16:42:44 -05:00
|
|
|
ULListModel->setData(ULListModel->index(row, ULSPEED), QVariant((double)dlspeed));
|
2009-07-24 18:39:34 -04:00
|
|
|
ULListModel->setData(ULListModel->index(row, UPROGRESS), QVariant((double)progress));
|
2008-12-12 16:42:44 -05:00
|
|
|
ULListModel->setData(ULListModel->index(row, USTATUS), QVariant((QString)status));
|
2009-07-24 18:39:34 -04:00
|
|
|
ULListModel->setData(ULListModel->index(row, USERNAME), QVariant((QString)sources));
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
return row;
|
|
|
|
}
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
void TransfersDialog::delItem(int row)
|
|
|
|
{
|
|
|
|
DLListModel->removeRow(row, QModelIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::delUploadItem(int row)
|
|
|
|
{
|
|
|
|
ULListModel->removeRow(row, QModelIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::editItem(int row, int column, QVariant data)
|
|
|
|
{
|
|
|
|
//QIcon *icon;
|
|
|
|
switch(column) {
|
|
|
|
//case SYMBOL:
|
|
|
|
// icon = new QIcon(data.toString());
|
|
|
|
// DLListModel->setData(DLListModel->index(row, NAME), QVariant((QIcon)*icon), Qt::DecorationRole);
|
|
|
|
// delete icon;
|
|
|
|
// break;
|
|
|
|
case NAME:
|
|
|
|
DLListModel->setData(DLListModel->index(row, NAME), data, Qt::DisplayRole);
|
|
|
|
break;
|
|
|
|
case SIZE:
|
|
|
|
DLListModel->setData(DLListModel->index(row, SIZE), data);
|
|
|
|
break;
|
|
|
|
case PROGRESS:
|
|
|
|
DLListModel->setData(DLListModel->index(row, PROGRESS), data);
|
|
|
|
break;
|
|
|
|
case DLSPEED:
|
|
|
|
DLListModel->setData(DLListModel->index(row, DLSPEED), data);
|
|
|
|
break;
|
|
|
|
case SOURCES:
|
|
|
|
DLListModel->setData(DLListModel->index(row, SOURCES), data);
|
|
|
|
break;
|
|
|
|
case STATUS:
|
|
|
|
DLListModel->setData(DLListModel->index(row, STATUS), data);
|
|
|
|
break;
|
2009-08-11 16:27:59 -04:00
|
|
|
case PRIORITY:
|
|
|
|
DLListModel->setData(DLListModel->index(row, PRIORITY), data);
|
|
|
|
break;
|
2008-12-12 16:42:44 -05:00
|
|
|
case COMPLETED:
|
|
|
|
DLListModel->setData(DLListModel->index(row, COMPLETED), data);
|
|
|
|
break;
|
|
|
|
case REMAINING:
|
|
|
|
DLListModel->setData(DLListModel->index(row, REMAINING), data);
|
|
|
|
break;
|
|
|
|
case ID:
|
|
|
|
DLListModel->setData(DLListModel->index(row, ID), data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the list of Transfers from the RsIface. **/
|
|
|
|
void TransfersDialog::insertTransfers()
|
|
|
|
{
|
2009-08-11 16:27:59 -04:00
|
|
|
QString symbol, name, sources, status, priority, coreId;
|
2008-12-12 16:42:44 -05:00
|
|
|
qlonglong fileSize, completed, remaining;
|
2009-05-20 18:06:20 -04:00
|
|
|
double progress, dlspeed;
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
|
|
|
|
/* get current selection */
|
|
|
|
std::list<std::string> selectedIds;
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
for (int i = 0; i < DLListModel->rowCount(); i++) {
|
|
|
|
if (selection->isRowSelected(i, QModelIndex())) {
|
|
|
|
std::string id = getID(i, DLListModel).toStdString();
|
|
|
|
selectedIds.push_back(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
QStandardItem *parent = DLListModel->item(i);
|
|
|
|
//if (!parent) continue;
|
|
|
|
int childs = parent->rowCount();
|
|
|
|
for (int j = 0; j < childs; j++) {
|
|
|
|
QModelIndex parentIndex = DLListModel->indexFromItem(parent);
|
|
|
|
if (selection->isRowSelected(j, parentIndex)) {
|
|
|
|
QStandardItem *child = parent->child(j, ID);
|
|
|
|
std::string id = child->data(Qt::DisplayRole).toString().toStdString();
|
|
|
|
selectedIds.push_back(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-08-13 19:22:26 -04:00
|
|
|
/* view will be scrolled to first selected index */
|
|
|
|
QModelIndex firstSelIdx;
|
2009-05-20 18:06:20 -04:00
|
|
|
|
|
|
|
/* get expanded donwload items */
|
|
|
|
std::list<std::string> expandedIds;
|
|
|
|
|
|
|
|
for (int i = 0; i < DLListModel->rowCount(); i++) {
|
|
|
|
QStandardItem *item = DLListModel->item(i);
|
|
|
|
QModelIndex index = DLListModel->indexFromItem(item);
|
|
|
|
if (ui.downloadList->isExpanded(index)) {
|
|
|
|
std::string id = getID(i, DLListModel).toStdString();
|
|
|
|
expandedIds.push_back(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//remove all Items
|
|
|
|
for(int i = DLListModel->rowCount(); i >= 0; i--)
|
2008-12-12 16:42:44 -05:00
|
|
|
{
|
|
|
|
delItem(i);
|
|
|
|
}
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
for(int i = ULListModel->rowCount(); i >= 0; i--)
|
2008-12-12 16:42:44 -05:00
|
|
|
{
|
|
|
|
delUploadItem(i);
|
|
|
|
}
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
/* get the download and upload lists */
|
|
|
|
std::list<std::string> downHashes;
|
|
|
|
std::list<std::string> upHashes;
|
|
|
|
|
|
|
|
rsFiles->FileDownloads(downHashes);
|
|
|
|
rsFiles->FileUploads(upHashes);
|
|
|
|
|
|
|
|
uint32_t dlCount = 0;
|
|
|
|
uint32_t ulCount = 0;
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
std::list<std::string>::iterator it;
|
|
|
|
for (it = downHashes.begin(); it != downHashes.end(); it++) {
|
|
|
|
FileInfo info;
|
|
|
|
if (!rsFiles->FileDetails(*it, RS_FILE_HINTS_DOWNLOAD, info)) continue;
|
|
|
|
//if file transfer is a cache file index file, don't show it
|
|
|
|
if (info.flags & CB_CODE_CACHE) continue;
|
|
|
|
|
|
|
|
symbol = "";
|
|
|
|
name = QString::fromStdString(info.fname);
|
|
|
|
coreId = QString::fromStdString(info.hash);
|
|
|
|
fileSize = info.size;
|
|
|
|
progress = (info.transfered * 100.0) / info.size;
|
|
|
|
dlspeed = info.tfRate * 1024.0;
|
|
|
|
|
|
|
|
/* get number of online peers */
|
|
|
|
int online = 0;
|
|
|
|
std::list<TransferInfo>::iterator pit;
|
|
|
|
for (pit = info.peers.begin(); pit != info.peers.end(); pit++) {
|
|
|
|
if (rsPeers->isOnline(pit->peerId)) {
|
|
|
|
online++;
|
|
|
|
}
|
|
|
|
}
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
sources = QString("%1 (%2)").arg(online).arg(info.peers.size() - online);
|
|
|
|
|
|
|
|
switch (info.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;
|
|
|
|
default:
|
|
|
|
status = tr("Unknown"); break;
|
|
|
|
}
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-08-11 16:27:59 -04:00
|
|
|
priority = ""; /* for already downloading files */
|
2009-05-20 18:06:20 -04:00
|
|
|
completed = info.transfered;
|
|
|
|
remaining = (info.size - info.transfered) / (info.tfRate * 1024.0);
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-08-11 16:27:59 -04:00
|
|
|
int addedRow = addItem(symbol, name, coreId, fileSize, progress, dlspeed, sources, status, priority, completed, remaining);
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
/* if found in selectedIds -> select again */
|
|
|
|
if (selectedIds.end() != std::find(selectedIds.begin(), selectedIds.end(), info.hash)) {
|
2009-08-11 16:27:59 -04:00
|
|
|
selection->select(DLListModel->index(dlCount, NAME),
|
2009-05-20 18:06:20 -04:00
|
|
|
QItemSelectionModel::Rows | QItemSelectionModel::SelectCurrent);
|
2009-08-13 19:22:26 -04:00
|
|
|
if (!firstSelIdx.isValid())
|
|
|
|
firstSelIdx = DLListModel->index(dlCount, NAME);
|
2009-05-20 18:06:20 -04:00
|
|
|
}
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
/* expand last expanded items */
|
|
|
|
if (expandedIds.end() != std::find(expandedIds.begin(), expandedIds.end(), info.hash)) {
|
|
|
|
QStandardItem *item = DLListModel->item(dlCount);
|
|
|
|
QModelIndex index = DLListModel->indexFromItem(item);
|
|
|
|
ui.downloadList->setExpanded(index, true);
|
|
|
|
}
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
dlCount++;
|
|
|
|
|
|
|
|
/* continue to next download item if no peers to add */
|
|
|
|
if (!info.peers.size()) continue;
|
|
|
|
|
2009-06-28 16:57:02 -04:00
|
|
|
std::map<std::string, std::string>::iterator vit;
|
|
|
|
std::map<std::string, std::string> versions;
|
|
|
|
bool retv = rsDisc->getDiscVersions(versions);
|
|
|
|
|
2009-05-20 18:06:20 -04:00
|
|
|
int dlPeers = 0;
|
|
|
|
for (pit = info.peers.begin(); pit != info.peers.end(); pit++) {
|
|
|
|
symbol = "";
|
2009-06-03 14:47:14 -04:00
|
|
|
name = getPeerName(pit->peerId);
|
2009-05-20 18:06:20 -04:00
|
|
|
//unique combination: fileName + peerName, variant: hash + peerName (too long)
|
2009-06-03 14:47:14 -04:00
|
|
|
coreId = QString::fromStdString(info.fname) + getPeerName(pit->peerId);
|
2009-05-20 18:06:20 -04:00
|
|
|
fileSize = info.size;
|
|
|
|
progress = (info.transfered * 100.0) / info.size;
|
|
|
|
dlspeed = pit->tfRate * 1024.0;
|
|
|
|
sources = "";
|
2009-06-28 16:57:02 -04:00
|
|
|
if (retv && versions.end() != (vit = versions.find(pit->peerId))) {
|
|
|
|
sources = QString("rShare v") + QString::fromStdString(vit->second);
|
|
|
|
}
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-08-13 19:22:26 -04:00
|
|
|
if (pit->status == FT_STATE_COMPLETE) {
|
2009-05-20 18:06:20 -04:00
|
|
|
status = tr("Complete");
|
|
|
|
} else {
|
|
|
|
status = tr("Unknown");
|
|
|
|
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("Downloading"); break;
|
|
|
|
case FT_STATE_COMPLETE:
|
|
|
|
status = tr("Complete"); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
completed = info.transfered;
|
|
|
|
remaining = (info.size - info.transfered) / (pit->tfRate * 1024.0);
|
|
|
|
|
|
|
|
if (!addPeerToItem(addedRow, symbol, name, coreId, fileSize, progress, dlspeed, sources, status, completed, remaining))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* if peers found in selectedIds, select again */
|
2009-06-03 14:47:14 -04:00
|
|
|
if (selectedIds.end() != std::find(selectedIds.begin(), selectedIds.end(), info.fname + getPeerName(pit->peerId).toStdString())) {
|
2009-05-20 18:06:20 -04:00
|
|
|
QStandardItem *dlItem = DLListModel->item(addedRow);
|
|
|
|
QModelIndex childIndex = DLListModel->indexFromItem(dlItem).child(dlPeers, 0);
|
|
|
|
selection->select(childIndex, QItemSelectionModel::Rows | QItemSelectionModel::SelectCurrent);
|
|
|
|
}
|
|
|
|
dlPeers++;
|
|
|
|
}
|
|
|
|
}
|
2008-12-12 16:42:44 -05:00
|
|
|
|
2009-07-28 06:21:19 -04:00
|
|
|
/* here i will insert files from the download queue - which are
|
|
|
|
* not started yet and can't be find in FileDownloads
|
|
|
|
* */
|
|
|
|
std::list<DwlDetails> details;
|
|
|
|
std::list<DwlDetails>::iterator dit;
|
|
|
|
rsFiles->getDwlDetails(details);
|
|
|
|
for (dit = details.begin(); dit != details.end(); dit ++)
|
|
|
|
{
|
|
|
|
name = QString::fromStdString(dit->fname);
|
|
|
|
coreId = QString::fromStdString(dit->hash);
|
|
|
|
fileSize = dit->count;
|
|
|
|
progress = 0;
|
|
|
|
dlspeed = 0;
|
|
|
|
sources = "";
|
|
|
|
completed = 0;
|
2009-08-11 16:27:59 -04:00
|
|
|
status = tr("Queued");
|
2009-07-28 06:21:19 -04:00
|
|
|
remaining = 0;
|
|
|
|
|
|
|
|
switch (dit->priority) {
|
2009-08-11 16:27:59 -04:00
|
|
|
case 0:
|
|
|
|
priority = tr("Low");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
priority = tr("Normal");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
priority = tr("High");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
priority = tr("Auto");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
priority = tr("Auto");
|
|
|
|
break;
|
2009-07-28 06:21:19 -04:00
|
|
|
}
|
|
|
|
|
2009-08-11 16:27:59 -04:00
|
|
|
addItem("", name, coreId, fileSize, progress, dlspeed, sources, status, priority, completed, remaining);
|
2009-07-28 06:21:19 -04:00
|
|
|
|
|
|
|
/* if found in selectedIds -> select again */
|
|
|
|
if (selectedIds.end() != std::find(selectedIds.begin(), selectedIds.end(), dit->hash)) {
|
2009-08-11 16:27:59 -04:00
|
|
|
selection->select(DLListModel->index(dlCount, NAME),
|
2009-07-28 06:21:19 -04:00
|
|
|
QItemSelectionModel::Rows | QItemSelectionModel::SelectCurrent);
|
2009-08-13 19:22:26 -04:00
|
|
|
if (!firstSelIdx.isValid())
|
|
|
|
firstSelIdx = DLListModel->index(dlCount, NAME);
|
2009-07-28 06:21:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dlCount++;
|
|
|
|
}
|
|
|
|
|
2009-08-13 19:22:26 -04:00
|
|
|
/* scroll to first selected index if any */
|
|
|
|
if (firstSelIdx.isValid())
|
|
|
|
ui.downloadList->scrollTo(firstSelIdx);
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
for(it = upHashes.begin(); it != upHashes.end(); it++)
|
|
|
|
{
|
|
|
|
FileInfo info;
|
|
|
|
if (!rsFiles->FileDetails(*it, RS_FILE_HINTS_UPLOAD, info))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list<TransferInfo>::iterator pit;
|
|
|
|
for(pit = info.peers.begin(); pit != info.peers.end(); pit++)
|
|
|
|
{
|
|
|
|
symbol = "";
|
|
|
|
coreId = QString::fromStdString(info.hash);
|
|
|
|
name = QString::fromStdString(info.fname);
|
2009-06-03 14:47:14 -04:00
|
|
|
sources = getPeerName(pit->peerId);
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
switch(pit->status)
|
|
|
|
{
|
2009-05-20 18:06:20 -04:00
|
|
|
case FT_STATE_FAILED:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Failed");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
2009-05-20 18:06:20 -04:00
|
|
|
case FT_STATE_OKAY:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Okay");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
|
|
|
case FT_STATE_WAITING:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Waiting");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
|
|
|
case FT_STATE_DOWNLOADING:
|
2009-05-17 09:26:16 -04:00
|
|
|
status = tr("Uploading");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
2009-05-20 18:06:20 -04:00
|
|
|
case FT_STATE_COMPLETE:
|
2008-12-12 16:42:44 -05:00
|
|
|
default:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Complete");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
}
|
|
|
|
|
2009-05-17 09:26:16 -04:00
|
|
|
// if (info.downloadStatus == FT_STATE_COMPLETE)
|
|
|
|
// {
|
|
|
|
// status = "Complete";
|
|
|
|
// }
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
dlspeed = pit->tfRate * 1024.0;
|
|
|
|
fileSize = info.size;
|
|
|
|
completed = info.transfered;
|
|
|
|
progress = info.transfered * 100.0 / info.size;
|
|
|
|
remaining = (info.size - info.transfered) / (info.tfRate * 1024.0);
|
2009-05-20 18:06:20 -04:00
|
|
|
|
|
|
|
addUploadItem(symbol, name, coreId, fileSize, progress,
|
2008-12-12 16:42:44 -05:00
|
|
|
dlspeed, sources, status, completed, remaining);
|
|
|
|
ulCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.peers.size() == 0)
|
|
|
|
{
|
|
|
|
symbol = "";
|
|
|
|
coreId = QString::fromStdString(info.hash);
|
|
|
|
name = QString::fromStdString(info.fname);
|
2009-05-10 13:49:41 -04:00
|
|
|
sources = tr("Unknown");
|
2008-12-12 16:42:44 -05:00
|
|
|
|
|
|
|
switch(info.downloadStatus)
|
|
|
|
{
|
2009-05-20 18:06:20 -04:00
|
|
|
case FT_STATE_FAILED:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Failed");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
2009-05-20 18:06:20 -04:00
|
|
|
case FT_STATE_OKAY:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Okay");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
|
|
|
case FT_STATE_WAITING:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Waiting");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
|
|
|
case FT_STATE_DOWNLOADING:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Uploading");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
2009-05-20 18:06:20 -04:00
|
|
|
case FT_STATE_COMPLETE:
|
2008-12-12 16:42:44 -05:00
|
|
|
default:
|
2009-05-10 13:49:41 -04:00
|
|
|
status = tr("Complete");
|
2008-12-12 16:42:44 -05:00
|
|
|
break;
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dlspeed = info.tfRate * 1024.0;
|
|
|
|
fileSize = info.size;
|
|
|
|
completed = info.transfered;
|
|
|
|
progress = info.transfered * 100.0 / info.size;
|
|
|
|
remaining = (info.size - info.transfered) / (info.tfRate * 1024.0);
|
2009-05-20 18:06:20 -04:00
|
|
|
|
|
|
|
addUploadItem(symbol, name, coreId, fileSize, progress,
|
2008-12-12 16:42:44 -05:00
|
|
|
dlspeed, sources, status, completed, remaining);
|
|
|
|
ulCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-03 14:47:14 -04:00
|
|
|
QString TransfersDialog::getPeerName(const std::string& id) const
|
|
|
|
{
|
|
|
|
QString res = QString::fromStdString(rsPeers->getPeerName(id)) ;
|
|
|
|
|
|
|
|
// 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 == "")
|
|
|
|
return QString::fromStdString(id) ;
|
|
|
|
else
|
|
|
|
return res ;
|
|
|
|
}
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
void TransfersDialog::cancel()
|
|
|
|
{
|
2009-05-07 18:40:57 -04:00
|
|
|
QString queryWrn2;
|
|
|
|
queryWrn2.clear();
|
2009-05-08 21:05:40 -04:00
|
|
|
queryWrn2.append(tr("Are you sure that you want to cancel and delete these files?"));
|
2009-05-07 18:40:57 -04:00
|
|
|
|
|
|
|
if ((QMessageBox::question(this, tr("RetroShare"),queryWrn2,QMessageBox::Ok|QMessageBox::No, QMessageBox::Ok))== QMessageBox::Ok)
|
|
|
|
{
|
2009-05-20 18:06:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i <= DLListModel->rowCount(); i++)
|
2009-05-07 18:40:57 -04:00
|
|
|
{
|
2009-05-20 18:06:20 -04:00
|
|
|
if(selection->isRowSelected(i, QModelIndex()))
|
2009-05-07 18:40:57 -04:00
|
|
|
{
|
|
|
|
std::string id = getID(i, DLListModel).toStdString();
|
2009-06-03 14:47:14 -04:00
|
|
|
#ifdef UNUSED
|
2009-05-07 18:40:57 -04:00
|
|
|
QString qname = getFileName(i, DLListModel);
|
|
|
|
/* XXX -> Should not have to 'trim' filename ... something wrong here..
|
|
|
|
* but otherwise, not exact filename .... BUG
|
|
|
|
*/
|
|
|
|
std::string name = (qname.trimmed()).toStdString();
|
2009-06-03 14:47:14 -04:00
|
|
|
#endif
|
2009-05-07 18:40:57 -04:00
|
|
|
rsFiles->FileCancel(id); /* hash */
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-07 18:40:57 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
2008-12-12 16:42:44 -05:00
|
|
|
}
|
|
|
|
|
2009-05-18 10:23:55 -04:00
|
|
|
void TransfersDialog::handleDownloadRequest(const QString& url){
|
|
|
|
|
|
|
|
RetroShareLinkAnalyzer analyzer (url);
|
|
|
|
|
|
|
|
if (!analyzer.isValid ())
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::copyLink ()
|
|
|
|
{
|
|
|
|
QModelIndexList lst = ui.downloadList->selectionModel ()->selectedIndexes ();
|
|
|
|
RetroShareLinkAnalyzer analyzer;
|
|
|
|
|
|
|
|
for (int i = 0; i < lst.count (); i++)
|
|
|
|
{
|
|
|
|
if ( lst[i].column() == 0 )
|
|
|
|
{
|
|
|
|
QModelIndex & ind = lst[i];
|
|
|
|
QString fhash= ind.model ()->data (ind.model ()->index (ind.row (), ID )).toString() ;
|
|
|
|
QString fsize= ind.model ()->data (ind.model ()->index (ind.row (), SIZE)).toString() ;
|
|
|
|
QString fname= ind.model ()->data (ind.model ()->index (ind.row (), NAME)).toString() ;
|
|
|
|
|
|
|
|
analyzer.setRetroShareLink (fname, fsize, fhash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
|
|
|
clipboard->setText(analyzer.getRetroShareLink ());
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::pasteLink()
|
|
|
|
{
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
|
|
|
RetroShareLinkAnalyzer analyzer (clipboard->text ());
|
|
|
|
|
|
|
|
if (!analyzer.isValid ())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QVector<RetroShareLinkData> linkList;
|
|
|
|
analyzer.getFileInformation (linkList);
|
2009-05-20 18:06:20 -04:00
|
|
|
|
2009-05-18 10:23:55 -04:00
|
|
|
std::list<std::string> srcIds;
|
|
|
|
|
|
|
|
for (int i = 0, n = linkList.size (); i < n; ++i)
|
|
|
|
{
|
|
|
|
const RetroShareLinkData& linkData = linkList[i];
|
|
|
|
//downloadFileRequested(linkData.getName (), linkData.getSize ().toInt (),
|
|
|
|
// linkData.getHash (), "", -1, -1, -1, -1);
|
|
|
|
rsFiles->FileRequest (linkData.getName ().toStdString (), linkData.getHash ().toStdString (),
|
|
|
|
linkData.getSize ().toInt (), "", 0, srcIds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-04 17:54:58 -04:00
|
|
|
void TransfersDialog::getIdOfSelectedItems(QList<QStandardItem *>& items)
|
2009-07-02 14:40:31 -04:00
|
|
|
{
|
2009-07-04 17:54:58 -04:00
|
|
|
items.clear();
|
2009-07-02 14:40:31 -04:00
|
|
|
|
|
|
|
int i, imax = DLListModel->rowCount();
|
|
|
|
for (i = 0; i < imax; i++) {
|
|
|
|
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();
|
|
|
|
for (j = 0; j < jmax && !isChildSelected; j++) {
|
|
|
|
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) {
|
|
|
|
QStandardItem *id = DLListModel->item(i, ID);
|
2009-07-04 17:54:58 -04:00
|
|
|
items.append(id);
|
2009-07-02 14:40:31 -04:00
|
|
|
}
|
|
|
|
}
|
2009-07-04 17:54:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TransfersDialog::controlTransferFile(uint32_t flags)
|
|
|
|
{
|
|
|
|
bool result = true;
|
|
|
|
|
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QList<QStandardItem *>::iterator it;
|
|
|
|
getIdOfSelectedItems(items);
|
|
|
|
for (it = items.begin(); it != items.end(); it ++) {
|
|
|
|
result &= rsFiles->FileControl((*it)->data(Qt::DisplayRole).toString().toStdString(), flags);
|
|
|
|
}
|
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;
|
|
|
|
|
2009-07-04 17:54:58 -04:00
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QList<QStandardItem *>::iterator it;
|
|
|
|
getIdOfSelectedItems(items);
|
|
|
|
for (it = items.begin(); it != items.end(); it ++) {
|
|
|
|
if (!rsFiles->FileDetails((*it)->data(Qt::DisplayRole).toString().toStdString(), RS_FILE_HINTS_DOWNLOAD, info)) continue;
|
|
|
|
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 */
|
|
|
|
qinfo.setFile(path.c_str());
|
|
|
|
if (qinfo.exists() && qinfo.isDir()) {
|
|
|
|
if (!QDesktopServices::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::previewTransfer()
|
|
|
|
{
|
|
|
|
FileInfo info;
|
|
|
|
|
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QList<QStandardItem *>::iterator it;
|
|
|
|
getIdOfSelectedItems(items);
|
|
|
|
for (it = items.begin(); it != items.end(); it ++) {
|
|
|
|
if (!rsFiles->FileDetails((*it)->data(Qt::DisplayRole).toString().toStdString(), RS_FILE_HINTS_DOWNLOAD, info)) continue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t pos = info.fname.find_last_of('.');
|
|
|
|
if (pos == -1) return; /* can't identify type of file */
|
|
|
|
|
|
|
|
/* check if the file is a media file */
|
|
|
|
if (!misc::isPreviewable(info.fname.substr(pos + 1).c_str())) return;
|
|
|
|
|
|
|
|
/* make path for downloaded or downloading files */
|
2009-07-28 11:29:21 -04:00
|
|
|
bool complete = false;
|
2009-07-05 12:27:58 -04:00
|
|
|
std::string path;
|
|
|
|
if (info.downloadStatus == FT_STATE_COMPLETE) {
|
|
|
|
path = info.path + "/" + info.fname;
|
2009-07-28 11:29:21 -04:00
|
|
|
complete = true;
|
2009-07-05 12:27:58 -04:00
|
|
|
} else {
|
2009-07-28 11:29:21 -04:00
|
|
|
path = rsFiles->getPartialsDirectory() + "/" + info.hash;
|
2009-07-05 12:27:58 -04:00
|
|
|
}
|
2009-07-02 14:40:31 -04:00
|
|
|
|
2009-07-04 17:54:58 -04:00
|
|
|
/* open or preview them with a suitable application */
|
2009-07-28 11:29:21 -04:00
|
|
|
QFileInfo qinfo;
|
|
|
|
if (complete) {
|
|
|
|
qinfo.setFile(QString::fromStdString(path));
|
|
|
|
if (qinfo.exists()) {
|
|
|
|
if (!QDesktopServices::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) {
|
|
|
|
std::cerr << "previewTransfer(): can't preview file " << path << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
QString linkName = QString::fromStdString(path) +
|
|
|
|
QString::fromStdString(info.fname.substr(info.fname.find_last_of('.')));
|
|
|
|
if (QFile::link(QString::fromStdString(path), linkName)) {
|
|
|
|
qinfo.setFile(linkName);
|
|
|
|
if (qinfo.exists()) {
|
|
|
|
if (!QDesktopServices::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) {
|
|
|
|
std::cerr << "previewTransfer(): can't preview file " << path << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* wait for the file to open then remove the link */
|
|
|
|
#ifdef WIN32
|
|
|
|
Sleep(2000);
|
|
|
|
#else
|
|
|
|
sleep(2);
|
|
|
|
#endif
|
|
|
|
QFile::remove(linkName);
|
|
|
|
} else {
|
|
|
|
std::cerr << "previewTransfer(): can't create link for file " << path << std::endl;
|
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
|
|
|
|
2009-07-05 12:27:58 -04:00
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QList<QStandardItem *>::iterator it;
|
|
|
|
getIdOfSelectedItems(items);
|
|
|
|
for (it = items.begin(); it != items.end(); it ++) {
|
|
|
|
if (!rsFiles->FileDetails((*it)->data(Qt::DisplayRole).toString().toStdString(), RS_FILE_HINTS_DOWNLOAD, info)) continue;
|
|
|
|
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;
|
|
|
|
qinfo.setFile(path.c_str());
|
|
|
|
if (qinfo.exists()) {
|
|
|
|
if (!QDesktopServices::openUrl(QUrl::fromLocalFile(qinfo.absoluteFilePath()))) {
|
|
|
|
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"),
|
|
|
|
tr("File %1 is not completed. If it is a media file, try to preview it.").arg(info.fname.c_str()));
|
|
|
|
}
|
2009-07-02 14:40:31 -04:00
|
|
|
}
|
|
|
|
|
2009-07-27 13:22:56 -04:00
|
|
|
/* clear download or all queue - for pending dwls */
|
|
|
|
void TransfersDialog::clearQueuedDwl()
|
|
|
|
{
|
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QList<QStandardItem *>::iterator it;
|
|
|
|
getIdOfSelectedItems(items);
|
|
|
|
|
|
|
|
for (it = items.begin(); it != items.end(); it ++) {
|
|
|
|
std::string hash = (*it)->data(Qt::DisplayRole).toString().toStdString();
|
|
|
|
rsFiles->clearDownload(hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void TransfersDialog::clearQueue()
|
|
|
|
{
|
|
|
|
rsFiles->clearQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* modify download priority actions */
|
|
|
|
void TransfersDialog::priorityLow()
|
|
|
|
{
|
|
|
|
changePriority(0);
|
|
|
|
}
|
|
|
|
void TransfersDialog::priorityNormal()
|
|
|
|
{
|
|
|
|
changePriority(1);
|
|
|
|
}
|
|
|
|
void TransfersDialog::priorityHigh()
|
|
|
|
{
|
|
|
|
changePriority(2);
|
|
|
|
}
|
|
|
|
void TransfersDialog::priorityAuto()
|
|
|
|
{
|
|
|
|
changePriority(3);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::changePriority(int priority)
|
|
|
|
{
|
|
|
|
QList<QStandardItem *> items;
|
|
|
|
QList<QStandardItem *>::iterator it;
|
|
|
|
getIdOfSelectedItems(items);
|
|
|
|
|
|
|
|
for (it = items.begin(); it != items.end(); it ++) {
|
|
|
|
std::string hash = (*it)->data(Qt::DisplayRole).toString().toStdString();
|
|
|
|
rsFiles->changePriority(hash, priority);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
void TransfersDialog::clearcompleted()
|
|
|
|
{
|
|
|
|
std::cerr << "TransfersDialog::clearcompleted()" << std::endl;
|
|
|
|
rsFiles->FileClearCompleted();
|
|
|
|
}
|
|
|
|
|
2009-05-27 14:20:08 -04:00
|
|
|
void TransfersDialog::rootdecorated()
|
|
|
|
{
|
|
|
|
ui.downloadList->setRootIsDecorated(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransfersDialog::rootisnotdecorated()
|
|
|
|
{
|
|
|
|
ui.downloadList->setRootIsDecorated(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-12 16:42:44 -05:00
|
|
|
double TransfersDialog::getProgress(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
return model->data(model->index(row, PROGRESS), Qt::DisplayRole).toDouble();
|
|
|
|
}
|
|
|
|
|
|
|
|
double TransfersDialog::getSpeed(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
return model->data(model->index(row, DLSPEED), Qt::DisplayRole).toDouble();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TransfersDialog::getFileName(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
return model->data(model->index(row, NAME), Qt::DisplayRole).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TransfersDialog::getStatus(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
return model->data(model->index(row, STATUS), Qt::DisplayRole).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TransfersDialog::getID(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
return model->data(model->index(row, ID), Qt::DisplayRole).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong TransfersDialog::getFileSize(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
return model->data(model->index(row, SIZE), Qt::DisplayRole).toULongLong(&ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong TransfersDialog::getTransfered(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
return model->data(model->index(row, COMPLETED), Qt::DisplayRole).toULongLong(&ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong TransfersDialog::getRemainingTime(int row, QStandardItemModel *model)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
return model->data(model->index(row, REMAINING), Qt::DisplayRole).toULongLong(&ok);
|
|
|
|
}
|