2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, 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
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#include "rshare.h"
|
|
|
|
#include "SearchDialog.h"
|
|
|
|
#include "rsiface/rsiface.h"
|
|
|
|
#include "rsiface/rsexpr.h"
|
2008-07-02 12:59:56 -04:00
|
|
|
#include "rsiface/rsfiles.h"
|
2008-08-31 12:50:36 -04:00
|
|
|
#include "rsiface/rspeers.h"
|
2009-08-16 16:10:53 -04:00
|
|
|
#include "rsiface/rsturtle.h"
|
2008-11-18 07:15:21 -05:00
|
|
|
#include "util/misc.h"
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <QContextMenuEvent>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QHeaderView>
|
|
|
|
|
|
|
|
/* Images for context menu icons */
|
|
|
|
#define IMAGE_START ":/images/download.png"
|
|
|
|
#define IMAGE_REMOVE ":/images/delete.png"
|
|
|
|
#define IMAGE_REMOVEALL ":/images/deleteall.png"
|
|
|
|
|
|
|
|
/* Key for UI Preferences */
|
|
|
|
#define UI_PREF_ADVANCED_SEARCH "UIOptions/AdvancedSearch"
|
|
|
|
|
|
|
|
/* indicies for search results item columns SR_ = Search Result */
|
2008-11-18 15:29:40 -05:00
|
|
|
/* indicies for search results item columns SR_ = Search Result */
|
|
|
|
#define SR_ICON_COL 0
|
|
|
|
#define SR_NAME_COL 1
|
|
|
|
#define SR_SIZE_COL 2
|
|
|
|
#define SR_ID_COL 3
|
2008-11-18 17:59:33 -05:00
|
|
|
#define SR_TYPE_COL 4
|
|
|
|
#define SR_HASH_COL 5
|
|
|
|
#define SR_SEARCH_ID_COL 6
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-12-12 16:41:34 -05:00
|
|
|
#define SR_UID_COL 7
|
|
|
|
#define SR_REALSIZE_COL 8
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* indicies for search summary item columns SS_ = Search Summary */
|
|
|
|
#define SS_TEXT_COL 0
|
|
|
|
#define SS_COUNT_COL 1
|
|
|
|
#define SS_SEARCH_ID_COL 2
|
|
|
|
|
|
|
|
/* static members */
|
|
|
|
/* These indices MUST be identical to their equivalent indices in the combobox */
|
|
|
|
const int SearchDialog::FILETYPE_IDX_ANY = 0;
|
2008-11-18 17:59:33 -05:00
|
|
|
const int SearchDialog::FILETYPE_IDX_ARCHIVE = 1;
|
|
|
|
const int SearchDialog::FILETYPE_IDX_AUDIO = 2;
|
|
|
|
const int SearchDialog::FILETYPE_IDX_CDIMAGE = 3;
|
|
|
|
const int SearchDialog::FILETYPE_IDX_DOCUMENT = 4;
|
|
|
|
const int SearchDialog::FILETYPE_IDX_PICTURE = 5;
|
|
|
|
const int SearchDialog::FILETYPE_IDX_PROGRAM = 6;
|
|
|
|
const int SearchDialog::FILETYPE_IDX_VIDEO = 7;
|
2007-11-14 22:18:48 -05:00
|
|
|
QMap<int, QString> * SearchDialog::FileTypeExtensionMap = new QMap<int, QString>();
|
|
|
|
bool SearchDialog::initialised = false;
|
|
|
|
|
|
|
|
/** Constructor */
|
|
|
|
SearchDialog::SearchDialog(QWidget *parent)
|
|
|
|
: MainPage(parent),
|
|
|
|
advSearchDialog(NULL),
|
|
|
|
contextMnu(NULL), contextMnu2(NULL),
|
|
|
|
nextSearchId(1)
|
|
|
|
{
|
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
2009-08-13 08:16:35 -04:00
|
|
|
ui.lineEdit->setFocus();
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* initialise the filetypes mapping */
|
|
|
|
if (!SearchDialog::initialised)
|
|
|
|
{
|
2009-05-11 10:36:32 -04:00
|
|
|
initialiseFileTypeMappings();
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RshareSettings rsharesettings;
|
|
|
|
|
2009-08-13 08:16:35 -04:00
|
|
|
connect(ui.toggleAdvancedSearchBtn, SIGNAL(clicked()), this, SLOT(showAdvSearchDialog()));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
connect( ui.searchResultWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( searchtableWidgetCostumPopupMenu( QPoint ) ) );
|
|
|
|
|
|
|
|
connect( ui.searchSummaryWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( searchtableWidget2CostumPopupMenu( QPoint ) ) );
|
|
|
|
|
|
|
|
connect( ui.lineEdit, SIGNAL( returnPressed ( void ) ), this, SLOT( searchKeywords( void ) ) );
|
|
|
|
connect( ui.pushButtonsearch, SIGNAL( released ( void ) ), this, SLOT( searchKeywords( void ) ) );
|
|
|
|
connect( ui.pushButtonDownload, SIGNAL( released ( void ) ), this, SLOT( download( void ) ) );
|
2009-05-10 18:34:38 -04:00
|
|
|
connect( ui.cloaseallsearchresultsButton, SIGNAL(clicked()), this, SLOT(searchRemoveAll()));
|
|
|
|
connect( ui.resetButton, SIGNAL(clicked()), this, SLOT(clearKeyword()));
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
//connect( ui.searchSummaryWidget, SIGNAL( itemSelectionChanged ( void ) ), this, SLOT( selectSearchResults( void ) ) );
|
|
|
|
|
2009-05-10 18:34:38 -04:00
|
|
|
connect( ui.searchResultWidget, SIGNAL( itemDoubleClicked ( QTreeWidgetItem *, int)), this, SLOT(download()));
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
connect ( ui.searchSummaryWidget, SIGNAL( currentItemChanged ( QTreeWidgetItem *, QTreeWidgetItem * ) ),
|
|
|
|
this, SLOT( selectSearchResults( void ) ) );
|
|
|
|
|
|
|
|
|
|
|
|
/* hide the Tree +/- */
|
|
|
|
ui.searchResultWidget -> setRootIsDecorated( false );
|
2008-12-12 16:41:34 -05:00
|
|
|
ui.searchResultWidget -> setColumnHidden( SR_UID_COL,true );
|
|
|
|
ui.searchResultWidget -> setColumnHidden( SR_REALSIZE_COL,true );
|
2007-11-14 22:18:48 -05:00
|
|
|
ui.searchSummaryWidget -> setRootIsDecorated( false );
|
|
|
|
|
|
|
|
/* make it extended selection */
|
|
|
|
ui.searchResultWidget -> setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
|
|
|
|
|
|
|
|
|
|
/* Set header resize modes and initial section sizes */
|
|
|
|
ui.searchSummaryWidget->setColumnCount(3);
|
|
|
|
|
|
|
|
QHeaderView * _smheader = ui.searchSummaryWidget->header () ;
|
|
|
|
_smheader->setResizeMode (0, QHeaderView::Interactive);
|
|
|
|
_smheader->setResizeMode (1, QHeaderView::Interactive);
|
|
|
|
_smheader->setResizeMode (2, QHeaderView::Interactive);
|
|
|
|
|
|
|
|
_smheader->resizeSection ( 0, 80 );
|
2009-05-11 10:36:32 -04:00
|
|
|
_smheader->resizeSection ( 1, 75 );
|
|
|
|
_smheader->resizeSection ( 2, 75 );
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-11-18 17:59:33 -05:00
|
|
|
ui.searchResultWidget->setColumnCount(6);
|
2007-11-14 22:18:48 -05:00
|
|
|
_smheader = ui.searchResultWidget->header () ;
|
2008-11-18 15:29:40 -05:00
|
|
|
_smheader->setResizeMode (0, QHeaderView::Custom);
|
2007-11-14 22:18:48 -05:00
|
|
|
_smheader->setResizeMode (1, QHeaderView::Interactive);
|
|
|
|
_smheader->setResizeMode (2, QHeaderView::Interactive);
|
|
|
|
_smheader->setResizeMode (3, QHeaderView::Interactive);
|
|
|
|
|
2008-11-18 15:29:40 -05:00
|
|
|
_smheader->resizeSection ( 0, 20 );
|
2008-11-18 17:59:33 -05:00
|
|
|
_smheader->resizeSection ( 1, 220 );
|
2007-11-14 22:18:48 -05:00
|
|
|
_smheader->resizeSection ( 2, 75 );
|
2008-11-18 15:29:40 -05:00
|
|
|
_smheader->resizeSection ( 3, 75 );
|
2008-11-18 17:59:33 -05:00
|
|
|
_smheader->resizeSection ( 4, 75 );
|
|
|
|
_smheader->resizeSection ( 5, 240 );
|
|
|
|
|
2008-02-01 13:55:21 -05:00
|
|
|
|
|
|
|
// set header text aligment
|
2009-05-11 10:36:32 -04:00
|
|
|
QTreeWidgetItem * headerItem = ui.searchResultWidget->headerItem();
|
|
|
|
headerItem->setTextAlignment(2, Qt::AlignRight | Qt::AlignRight);
|
|
|
|
headerItem->setTextAlignment(3, Qt::AlignRight | Qt::AlignRight);
|
2008-11-18 15:29:40 -05:00
|
|
|
|
2009-05-11 10:36:32 -04:00
|
|
|
ui.searchResultWidget->sortItems(SR_NAME_COL, Qt::AscendingOrder);
|
2008-11-18 15:29:40 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
/* Hide platform specific features */
|
|
|
|
#ifdef Q_WS_WIN
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void SearchDialog::initialiseFileTypeMappings()
|
|
|
|
{
|
|
|
|
/* edit these strings to change the range of extensions recognised by the search */
|
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_ANY, "");
|
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_AUDIO,
|
|
|
|
"aac aif iff m3u mid midi mp3 mpa ogg ra ram wav wma");
|
2008-11-18 17:59:33 -05:00
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_ARCHIVE,
|
|
|
|
"7z bz2 gz pkg rar sea sit sitx tar zip");
|
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_CDIMAGE,
|
|
|
|
"iso nrg mdf");
|
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_DOCUMENT,
|
|
|
|
"doc odt ott rtf pdf ps txt log msg wpd wps" );
|
2007-11-14 22:18:48 -05:00
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_PICTURE,
|
2007-11-19 05:56:12 -05:00
|
|
|
"3dm 3dmf ai bmp drw dxf eps gif ico indd jpe jpeg jpg mng pcx pcc pct pgm "
|
|
|
|
"pix png psd psp qxd qxprgb sgi svg tga tif tiff xbm xcf");
|
2007-11-14 22:18:48 -05:00
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_PROGRAM,
|
|
|
|
"app bat cgi com bin exe js pif py pl sh vb ws ");
|
2008-11-18 17:59:33 -05:00
|
|
|
SearchDialog::FileTypeExtensionMap->insert(FILETYPE_IDX_VIDEO,
|
|
|
|
"3gp asf asx avi mov mp4 mkv flv mpeg mpg qt rm swf vob wmv");
|
2007-11-14 22:18:48 -05:00
|
|
|
SearchDialog::initialised = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SearchDialog::searchtableWidgetCostumPopupMenu( QPoint point )
|
|
|
|
{
|
|
|
|
// block the popup if no results available
|
|
|
|
if ((ui.searchResultWidget->selectedItems()).size() == 0) return;
|
|
|
|
|
|
|
|
// create the menu as required
|
|
|
|
if (contextMnu == 0)
|
|
|
|
{
|
|
|
|
contextMnu = new QMenu(this);
|
|
|
|
|
|
|
|
downloadAct = new QAction(QIcon(IMAGE_START), tr( "Download" ), this );
|
|
|
|
connect( downloadAct , SIGNAL( triggered() ), this, SLOT( download() ) );
|
|
|
|
|
|
|
|
broadcastonchannelAct = new QAction( tr( "Broadcast on Channel" ), this );
|
|
|
|
connect( broadcastonchannelAct , SIGNAL( triggered() ), this, SLOT( broadcastonchannel() ) );
|
|
|
|
|
|
|
|
recommendtofriendsAct = new QAction( tr( "Recommend to Friends" ), this );
|
|
|
|
connect( recommendtofriendsAct , SIGNAL( triggered() ), this, SLOT( recommendtofriends() ) );
|
|
|
|
|
|
|
|
|
|
|
|
contextMnu->clear();
|
|
|
|
contextMnu->addAction( downloadAct);
|
2009-05-10 18:34:38 -04:00
|
|
|
//contextMnu->addSeparator();
|
|
|
|
//contextMnu->addAction( broadcastonchannelAct);
|
|
|
|
//contextMnu->addAction( recommendtofriendsAct);
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QMouseEvent *mevent = new QMouseEvent( QEvent::MouseButtonPress, point,
|
|
|
|
Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
|
|
|
contextMnu->exec( mevent->globalPos() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SearchDialog::download()
|
|
|
|
{
|
|
|
|
/* should also be able to handle multi-selection */
|
|
|
|
QList<QTreeWidgetItem*> itemsForDownload = ui.searchResultWidget->selectedItems();
|
|
|
|
int numdls = itemsForDownload.size();
|
|
|
|
QTreeWidgetItem * item;
|
|
|
|
bool attemptDownloadLocal = false;
|
|
|
|
|
|
|
|
for (int i = 0; i < numdls; ++i) {
|
|
|
|
item = itemsForDownload.at(i);
|
|
|
|
// call the download
|
|
|
|
if (item->text(SR_ID_COL) != "Local")
|
|
|
|
{
|
2008-08-16 13:10:01 -04:00
|
|
|
std::cerr << "SearchDialog::download() Calling File Request";
|
|
|
|
std::cerr << std::endl;
|
2008-08-17 12:14:03 -04:00
|
|
|
std::list<std::string> srcIds;
|
2008-12-12 16:41:34 -05:00
|
|
|
srcIds.push_back(item->text(SR_UID_COL).toStdString()) ;
|
|
|
|
|
2008-07-02 12:59:56 -04:00
|
|
|
rsFiles -> FileRequest((item->text(SR_NAME_COL)).toStdString(),
|
2007-11-14 22:18:48 -05:00
|
|
|
(item->text(SR_HASH_COL)).toStdString(),
|
2008-12-12 16:41:34 -05:00
|
|
|
(item->text(SR_REALSIZE_COL)).toInt(),
|
2008-08-17 12:14:03 -04:00
|
|
|
"", 0, srcIds);
|
2008-12-12 16:41:34 -05:00
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
rsTurtle->monitorFileTunnels( item->text(SR_NAME_COL).toStdString(),
|
|
|
|
item->text(SR_HASH_COL).toStdString(),
|
|
|
|
item->text(SR_REALSIZE_COL).toInt()) ;
|
|
|
|
|
2008-12-12 16:41:34 -05:00
|
|
|
std::cout << "isuing file request from search dialog: -" << (item->text(SR_NAME_COL)).toStdString() << "-" << (item->text(SR_HASH_COL)).toStdString() << "-" << (item->text(SR_REALSIZE_COL)).toInt() << "-ids=" ;
|
|
|
|
for(std::list<std::string>::const_iterator it(srcIds.begin());it!=srcIds.end();++it)
|
|
|
|
std::cout << *it << "-" << std::endl ;
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
attemptDownloadLocal = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (attemptDownloadLocal)
|
|
|
|
{
|
|
|
|
QMessageBox::information(0, tr("Download Notice"), tr("Skipping Local Files"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SearchDialog::broadcastonchannel()
|
|
|
|
{
|
|
|
|
|
|
|
|
QMessageBox::warning(0, tr("Sorry"), tr("This function is not yet implemented."));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SearchDialog::recommendtofriends()
|
|
|
|
{
|
|
|
|
QMessageBox::warning(0, tr("Sorry"), tr("This function is not yet implemented."));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** context menu searchTablewidget2 **/
|
|
|
|
void SearchDialog::searchtableWidget2CostumPopupMenu( QPoint point )
|
|
|
|
{
|
|
|
|
|
|
|
|
// block the popup if no results available
|
|
|
|
if ((ui.searchSummaryWidget->selectedItems()).size() == 0) return;
|
|
|
|
|
|
|
|
// create the menu as required
|
|
|
|
if (contextMnu2 == 0)
|
|
|
|
{
|
|
|
|
contextMnu2 = new QMenu( this );
|
|
|
|
|
|
|
|
searchRemoveAct = new QAction(QIcon(IMAGE_REMOVE), tr( "Remove" ), this );
|
|
|
|
connect( searchRemoveAct , SIGNAL( triggered() ), this, SLOT( searchRemove() ) );
|
|
|
|
|
|
|
|
searchRemoveAllAct = new QAction(QIcon(IMAGE_REMOVEALL), tr( "Remove All" ), this );
|
2007-11-19 05:56:12 -05:00
|
|
|
connect( searchRemoveAllAct , SIGNAL( triggered() ), this, SLOT( searchRemoveAll() ) );
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
contextMnu2->clear();
|
|
|
|
contextMnu2->addAction( searchRemoveAct);
|
|
|
|
contextMnu2->addAction( searchRemoveAllAct);
|
|
|
|
}
|
|
|
|
|
|
|
|
QMouseEvent *mevent2 = new QMouseEvent( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
|
|
|
contextMnu2->exec( mevent2->globalPos() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** remove selected search result **/
|
|
|
|
void SearchDialog::searchRemove()
|
|
|
|
{
|
|
|
|
/* get the current search id from the summary window */
|
|
|
|
QTreeWidgetItem *ci = ui.searchSummaryWidget->currentItem();
|
|
|
|
if (!ci)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* get the searchId text */
|
|
|
|
QString searchId = ci->text(SS_SEARCH_ID_COL);
|
|
|
|
|
|
|
|
std::cerr << "SearchDialog::searchRemove(): searchId: " << searchId.toStdString();
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
/* show only matching searchIds in main window */
|
|
|
|
int items = ui.searchResultWidget->topLevelItemCount();
|
|
|
|
for(int i = 0; i < items;)
|
|
|
|
{
|
|
|
|
/* get item */
|
|
|
|
QTreeWidgetItem *ti = ui.searchResultWidget->topLevelItem(i);
|
|
|
|
if (ti->text(SR_SEARCH_ID_COL) == searchId)
|
|
|
|
{
|
|
|
|
/* remove */
|
|
|
|
delete (ui.searchResultWidget->takeTopLevelItem(i));
|
|
|
|
items--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* step to the next */
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int sii = ui.searchSummaryWidget->indexOfTopLevelItem(ci);
|
|
|
|
if (sii != -1)
|
|
|
|
{
|
|
|
|
delete (ui.searchSummaryWidget->takeTopLevelItem(sii));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.searchResultWidget->update();
|
|
|
|
ui.searchSummaryWidget->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** remove all search results **/
|
|
|
|
void SearchDialog::searchRemoveAll()
|
|
|
|
{
|
2007-11-19 05:56:12 -05:00
|
|
|
ui.searchResultWidget->clear();
|
|
|
|
ui.searchSummaryWidget->clear();
|
|
|
|
nextSearchId = 1;
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
2009-05-10 18:34:38 -04:00
|
|
|
/** clear keywords and ComboBox **/
|
|
|
|
void SearchDialog::clearKeyword()
|
|
|
|
{
|
|
|
|
ui.lineEdit->clear();
|
|
|
|
ui.FileTypeComboBox->setCurrentIndex(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* *****************************************************************
|
|
|
|
Advanced search implementation
|
|
|
|
*******************************************************************/
|
|
|
|
// Event handlers for hide and show events
|
|
|
|
void SearchDialog::hideEvent(QHideEvent * event)
|
|
|
|
{
|
|
|
|
showAdvSearchDialog(false);
|
|
|
|
MainPage::hideEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SearchDialog::toggleAdvancedSearchDialog(bool toggled)
|
|
|
|
{
|
|
|
|
// record the users preference for future reference
|
|
|
|
RshareSettings rsharesettings;
|
|
|
|
QString key (UI_PREF_ADVANCED_SEARCH);
|
|
|
|
rsharesettings.setValue(key, QVariant(toggled));
|
|
|
|
|
|
|
|
showAdvSearchDialog(toggled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SearchDialog::showAdvSearchDialog(bool show)
|
|
|
|
{
|
|
|
|
// instantiate if about to show for the first time
|
|
|
|
if (advSearchDialog == 0 && show)
|
|
|
|
{
|
|
|
|
advSearchDialog = new AdvancedSearchDialog();
|
|
|
|
connect(advSearchDialog, SIGNAL(search(Expression*)),
|
|
|
|
this, SLOT(advancedSearch(Expression*)));
|
|
|
|
}
|
|
|
|
if (show) {
|
|
|
|
advSearchDialog->show();
|
|
|
|
advSearchDialog->raise();
|
|
|
|
advSearchDialog->setFocus();
|
|
|
|
} else if (advSearchDialog != 0){
|
|
|
|
advSearchDialog->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SearchDialog::advancedSearch(Expression* expression)
|
|
|
|
{
|
|
|
|
advSearchDialog->hide();
|
|
|
|
|
|
|
|
/* call to core */
|
|
|
|
std::list<FileDetail> results;
|
|
|
|
|
2009-08-25 08:04:43 -04:00
|
|
|
// send a turtle search request
|
|
|
|
LinearizedExpression e ;
|
|
|
|
expression->linearize(e) ;
|
|
|
|
|
|
|
|
TurtleRequestId req_id = rsTurtle->turtleSearch(e) ;
|
|
|
|
|
|
|
|
rsFiles -> SearchBoolExp(expression, results, DIR_FLAGS_REMOTE | DIR_FLAGS_NETWORK_WIDE | DIR_FLAGS_BROWSABLE);
|
|
|
|
|
|
|
|
/* abstraction to allow reusee of tree rendering code */
|
|
|
|
resultsToTree((advSearchDialog->getSearchAsString()).toStdString(),req_id, results);
|
|
|
|
|
2009-08-25 08:17:22 -04:00
|
|
|
// // debug stuff
|
|
|
|
// Expression *expression2 = LinearizedExpression::toExpr(e) ;
|
|
|
|
// results.clear() ;
|
|
|
|
// rsFiles -> SearchBoolExp(expression2, results, DIR_FLAGS_REMOTE | DIR_FLAGS_NETWORK_WIDE | DIR_FLAGS_BROWSABLE);
|
|
|
|
// resultsToTree((advSearchDialog->getSearchAsString()).toStdString(),req_id+1, results);
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SearchDialog::searchKeywords()
|
|
|
|
{
|
|
|
|
QString qTxt = ui.lineEdit->text();
|
|
|
|
std::string txt = qTxt.toStdString();
|
|
|
|
|
|
|
|
std::cerr << "SearchDialog::searchKeywords() : " << txt << std::endl;
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
TurtleRequestId req_id = rsTurtle->turtleSearch(txt) ;
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* extract keywords from lineEdit */
|
|
|
|
QStringList qWords = qTxt.split(" ", QString::SkipEmptyParts);
|
|
|
|
std::list<std::string> words;
|
|
|
|
QStringListIterator qWordsIter(qWords);
|
|
|
|
while (qWordsIter.hasNext())
|
|
|
|
{
|
|
|
|
words.push_back(qWordsIter.next().toStdString());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (words.size() < 1)
|
|
|
|
{
|
|
|
|
/* ignore */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* call to core */
|
|
|
|
std::list<FileDetail> initialResults;
|
|
|
|
std::list<FileDetail> * finalResults = 0;
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
//rsFiles -> SearchKeywords(words, initialResults,DIR_FLAGS_LOCAL | DIR_FLAGS_REMOTE | DIR_FLAGS_NETWORK_WIDE | DIR_FLAGS_BROWSABLE);
|
|
|
|
rsFiles -> SearchKeywords(words, initialResults,DIR_FLAGS_REMOTE | DIR_FLAGS_NETWORK_WIDE | DIR_FLAGS_BROWSABLE);
|
2007-11-14 22:18:48 -05:00
|
|
|
/* which extensions do we use? */
|
|
|
|
QString qExt, qName;
|
|
|
|
int extIndex;
|
|
|
|
bool matched =false;
|
|
|
|
FileDetail fd;
|
|
|
|
|
|
|
|
if (ui.FileTypeComboBox->currentIndex() == FILETYPE_IDX_ANY)
|
|
|
|
{
|
|
|
|
finalResults = &initialResults;
|
2009-08-16 16:10:53 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-11-14 22:18:48 -05:00
|
|
|
finalResults = new std::list<FileDetail>;
|
|
|
|
// amend the text description of the search
|
|
|
|
txt += " (" + ui.FileTypeComboBox->currentText().toStdString() + ")";
|
|
|
|
// collect the extensions to use
|
|
|
|
QString extStr = SearchDialog::FileTypeExtensionMap->value(ui.FileTypeComboBox->currentIndex());
|
|
|
|
QStringList extList = extStr.split(" ");
|
|
|
|
|
|
|
|
// now iterate through the results ignoring those with wrong extensions
|
|
|
|
std::list<FileDetail>::iterator resultsIter;
|
|
|
|
for (resultsIter = initialResults.begin(); resultsIter != initialResults.end(); resultsIter++)
|
|
|
|
{
|
|
|
|
fd = *resultsIter;
|
|
|
|
// get this file's extension
|
|
|
|
qName = QString::fromStdString(fd.name);
|
|
|
|
extIndex = qName.lastIndexOf(".");
|
|
|
|
if (extIndex >= 0) {
|
|
|
|
qExt = qName.mid(extIndex+1);
|
|
|
|
if (qExt != "" )
|
|
|
|
{
|
|
|
|
// does it match?
|
|
|
|
matched = false;
|
|
|
|
/* iterate through the requested extensions */
|
|
|
|
for (int i = 0; i < extList.size(); ++i)
|
|
|
|
{
|
|
|
|
if (qExt.toUpper() == extList.at(i).toUpper())
|
|
|
|
{
|
|
|
|
finalResults->push_back(fd);
|
|
|
|
matched = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
/* abstraction to allow reusee of tree rendering code */
|
|
|
|
resultsToTree(txt,req_id, *finalResults);
|
2009-07-15 20:49:39 -04:00
|
|
|
ui.lineEdit->clear();
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
void SearchDialog::updateFiles(qulonglong search_id,FileDetail file)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2009-08-16 16:10:53 -04:00
|
|
|
/* which extensions do we use? */
|
|
|
|
std::string txt = ui.lineEdit->text().toStdString();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
if (ui.FileTypeComboBox->currentIndex() == FILETYPE_IDX_ANY)
|
|
|
|
insertFile(txt,search_id,file);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// amend the text description of the search
|
|
|
|
txt += " (" + ui.FileTypeComboBox->currentText().toStdString() + ")";
|
|
|
|
// collect the extensions to use
|
|
|
|
QString extStr = SearchDialog::FileTypeExtensionMap->value(ui.FileTypeComboBox->currentIndex());
|
|
|
|
QStringList extList = extStr.split(" ");
|
|
|
|
|
|
|
|
// get this file's extension
|
|
|
|
QString qName = QString::fromStdString(file.name);
|
|
|
|
int extIndex = qName.lastIndexOf(".");
|
|
|
|
|
|
|
|
if (extIndex >= 0)
|
|
|
|
{
|
|
|
|
QString qExt = qName.mid(extIndex+1);
|
|
|
|
|
|
|
|
if (qExt != "" )
|
|
|
|
for (int i = 0; i < extList.size(); ++i)
|
|
|
|
if (qExt.toUpper() == extList.at(i).toUpper())
|
|
|
|
insertFile(txt,search_id,file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SearchDialog::insertFile(const std::string& txt,qulonglong searchId, const FileDetail& file)
|
|
|
|
{
|
|
|
|
// algo:
|
|
|
|
//
|
|
|
|
// 1 - look in result window whether the file already exist.
|
|
|
|
// 1.1 - If yes, just increment the source number.
|
|
|
|
// 2.2 - Otherwize, add an entry.
|
|
|
|
// 2 - look in the summary whether there exist the same request id.
|
|
|
|
// 1.1 - If yes, just increment the result number.
|
|
|
|
// 2.2 - Otherwize, add an entry.
|
|
|
|
//
|
|
|
|
|
|
|
|
// 1 - look in result window whether the file already exists.
|
|
|
|
//
|
|
|
|
int items = ui.searchResultWidget->topLevelItemCount();
|
|
|
|
bool found = false ;
|
|
|
|
|
|
|
|
for(int i = 0; i < items; i++)
|
|
|
|
if(ui.searchResultWidget->topLevelItem(i)->text(SR_HASH_COL) == QString::fromStdString(file.hash)
|
|
|
|
&& ui.searchResultWidget->topLevelItem(i)->text(SR_SEARCH_ID_COL).toInt(NULL,16) == searchId)
|
|
|
|
{
|
|
|
|
int s = ui.searchResultWidget->topLevelItem(i)->text(SR_ID_COL).toInt() ;
|
|
|
|
ui.searchResultWidget->topLevelItem(i)->setText(SR_ID_COL,QString::number(s+1));
|
|
|
|
found = true ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2009-08-16 16:10:53 -04:00
|
|
|
/* translate search results */
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
QTreeWidgetItem *item = new QTreeWidgetItem();
|
2009-08-16 16:10:53 -04:00
|
|
|
item->setText(SR_NAME_COL, QString::fromStdString(file.name));
|
|
|
|
item->setText(SR_HASH_COL, QString::fromStdString(file.hash));
|
2008-11-18 15:29:40 -05:00
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
QString ext = QFileInfo(QString::fromStdString(file.name)).suffix();
|
|
|
|
if (ext == "jpg" || ext == "jpeg" || ext == "png" || ext == "gif" || ext == "bmp" || ext == "ico" || ext == "svg")
|
2008-11-18 15:29:40 -05:00
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypePicture.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Picture"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
2009-08-16 16:10:53 -04:00
|
|
|
else if (ext == "avi" || ext == "mpg" || ext == "mpeg" || ext == "wmv" || ext == "mkv" || ext == "mp4" || ext == "flv" || ext == "mov" || ext == "vob" || ext == "qt" || ext == "rm" || ext == "3gp")
|
2008-11-18 15:29:40 -05:00
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeVideo.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Video"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
|
|
|
else if (ext == "ogg" || ext == "mp3" || ext == "wav" || ext == "wma")
|
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeAudio.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Audio"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
2009-08-16 16:10:53 -04:00
|
|
|
else if (ext == "tar" || ext == "bz2" || ext == "zip" || ext == "gz" || ext == "rar" || ext == "rpm" || ext == "deb")
|
2008-11-18 15:29:40 -05:00
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeArchive.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Archive"));
|
|
|
|
}
|
2009-08-16 16:10:53 -04:00
|
|
|
else if (ext == "app" || ext == "bat" || ext == "cgi" || ext == "com" || ext == "bin" || ext == "exe" || ext == "js" || ext == "pif" || ext == "py" || ext == "pl" || ext == "sh" || ext == "vb" || ext == "ws")
|
2008-11-18 17:59:33 -05:00
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeProgram.png"));
|
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Program"));
|
|
|
|
}
|
|
|
|
else if (ext == "iso" || ext == "nrg" || ext == "mdf" )
|
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeCDImage.png"));
|
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("CD-Image"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
|
|
|
else if (ext == "txt" || ext == "cpp" || ext == "c" || ext == "h")
|
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeDocument.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Document"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
|
|
|
else if (ext == "doc" || ext == "rtf" || ext == "sxw" || ext == "xls"
|
2009-08-16 16:10:53 -04:00
|
|
|
|| ext == "sxc" || ext == "odt" || ext == "ods")
|
2008-11-18 15:29:40 -05:00
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeDocument.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Document"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
|
|
|
else if (ext == "html" || ext == "htm" || ext == "php")
|
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeDocument.png"));
|
2008-11-18 17:59:33 -05:00
|
|
|
item->setText(SR_TYPE_COL, QString::fromUtf8("Document"));
|
2008-11-18 15:29:40 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
item->setIcon(SR_ICON_COL, QIcon(":/images/FileTypeAny.png"));
|
|
|
|
}
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/*
|
|
|
|
* to facilitate downlaods we need to save the file size too
|
|
|
|
*/
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
item->setText(SR_SIZE_COL, misc::friendlyUnit(file.size));
|
|
|
|
item->setText(SR_REALSIZE_COL, QString::number(file.size));
|
|
|
|
item->setTextAlignment( SR_SIZE_COL, Qt::AlignRight );
|
|
|
|
item->setText(SR_ID_COL, QString::number(1));
|
|
|
|
item->setText(SR_SEARCH_ID_COL, QString::number(searchId,16));
|
2008-08-31 12:50:36 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
ui.searchResultWidget->addTopLevelItem(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add to the summary as well */
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
int items2 = ui.searchSummaryWidget->topLevelItemCount();
|
|
|
|
bool found2 = false ;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
for(int i = 0; i < items2; i++)
|
|
|
|
if(ui.searchSummaryWidget->topLevelItem(i)->text(SS_SEARCH_ID_COL).toInt(NULL,16) == searchId)
|
|
|
|
{
|
|
|
|
if(!found) // only increment result when it's a new item.
|
|
|
|
{
|
|
|
|
int s = ui.searchSummaryWidget->topLevelItem(i)->text(SS_COUNT_COL).toInt() ;
|
|
|
|
ui.searchSummaryWidget->topLevelItem(i)->setText(SS_COUNT_COL,QString::number(s+1));
|
|
|
|
}
|
|
|
|
found2 = true ;
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
if(!found2)
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *item2 = new QTreeWidgetItem();
|
|
|
|
item2->setText(SS_TEXT_COL, QString::fromStdString(txt));
|
|
|
|
item2->setText(SS_COUNT_COL, QString::number(1));
|
|
|
|
item2->setText(SS_SEARCH_ID_COL, QString::number(searchId,16));
|
|
|
|
|
|
|
|
ui.searchSummaryWidget->addTopLevelItem(item2);
|
|
|
|
ui.searchSummaryWidget->setCurrentItem(item2);
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* select this search result */
|
|
|
|
selectSearchResults();
|
|
|
|
}
|
|
|
|
|
2009-08-16 16:10:53 -04:00
|
|
|
void SearchDialog::resultsToTree(std::string txt,qulonglong searchId, const std::list<FileDetail>& results)
|
|
|
|
{
|
|
|
|
/* translate search results */
|
|
|
|
std::ostringstream out;
|
|
|
|
out << searchId;
|
|
|
|
|
|
|
|
std::list<FileDetail>::const_iterator it;
|
|
|
|
for(it = results.begin(); it != results.end(); it++)
|
|
|
|
insertFile(txt,searchId,*it) ;
|
|
|
|
}
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
//void QTreeWidget::currentItemChanged ( QTreeWidgetItem * current, QTreeWidgetItem * previous ) [signal]
|
|
|
|
|
|
|
|
|
|
|
|
void SearchDialog::selectSearchResults()
|
|
|
|
{
|
|
|
|
/* highlight this search in summary window */
|
|
|
|
QTreeWidgetItem *ci = ui.searchSummaryWidget->currentItem();
|
|
|
|
if (!ci)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* get the searchId text */
|
|
|
|
QString searchId = ci->text(SS_SEARCH_ID_COL);
|
|
|
|
|
|
|
|
std::cerr << "SearchDialog::selectSearchResults(): searchId: " << searchId.toStdString();
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
/* show only matching searchIds in main window */
|
|
|
|
int items = ui.searchResultWidget->topLevelItemCount();
|
|
|
|
for(int i = 0; i < items; i++)
|
|
|
|
{
|
|
|
|
/* get item */
|
|
|
|
QTreeWidgetItem *ti = ui.searchResultWidget->topLevelItem(i);
|
|
|
|
if (ti->text(SR_SEARCH_ID_COL) == searchId)
|
|
|
|
{
|
|
|
|
ti->setHidden(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ti->setHidden(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui.searchResultWidget->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|