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
2009-08-25 16:49:50 -04:00
* Foundation , Inc . , 51 Franklin Street , Fifth Floor ,
2007-11-14 22:18:48 -05:00
* Boston , MA 02110 - 1301 , USA .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2010-07-23 14:52:58 -04:00
# include <QMessageBox>
2010-12-02 19:54:40 -05:00
# include <QDir>
2011-02-09 16:44:49 -05:00
# include <QTimer>
2011-05-04 06:22:49 -04:00
# include <QShortcut>
2007-11-14 22:18:48 -05:00
2012-09-07 13:30:23 -04:00
# include "rshare.h"
2007-11-14 22:18:48 -05:00
# include "SearchDialog.h"
2010-03-10 16:38:26 -05:00
# include "RetroShareLink.h"
2010-05-23 15:13:41 -04:00
# include "msgs/MessageComposer.h"
2010-07-23 14:52:58 -04:00
# include "gui/RSHumanReadableDelegate.h"
2012-02-19 10:03:07 -05:00
# include "retroshare-gui/RsAutoUpdatePage.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"
2010-07-23 14:52:58 -04:00
# include "settings/rsharesettings.h"
# include "advsearch/advancedsearchdialog.h"
2012-06-09 10:14:04 -04:00
# include "common/RSTreeWidgetItem.h"
2010-01-21 17:34:10 -05:00
2010-08-06 05:40:23 -04:00
# include <retroshare/rsfiles.h>
# include <retroshare/rsturtle.h>
2011-06-20 18:19:34 -04:00
# include <retroshare/rsexpr.h>
2007-11-14 22:18:48 -05:00
/* Images for context menu icons */
# define IMAGE_START ": / images / download.png"
2010-02-09 08:49:37 -05:00
# define IMAGE_REMOVE ": / images / delete.png"
# define IMAGE_REMOVEALL ": / images / deleteall.png"
# define IMAGE_DIRECTORY ": / images / folder16.png"
2007-11-14 22:18:48 -05:00
/* Key for UI Preferences */
# define UI_PREF_ADVANCED_SEARCH "UIOptions / AdvancedSearch"
/* 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
2012-04-12 15:30:41 -04:00
# define SS_FILE_TYPE_COL 3
2011-12-10 18:41:58 -05:00
# define SS_DATA_COL SS_TEXT_COL
2012-04-12 15:30:41 -04:00
# define ROLE_KEYWORDS Qt::UserRole
2012-06-09 10:14:04 -04:00
# define ROLE_SORT Qt::UserRole + 1
2007-11-14 22:18:48 -05:00
2010-01-21 17:34:10 -05:00
# define IMAGE_COPYLINK ": / images / copyrslink.png"
2007-11-14 22:18:48 -05:00
/* 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 ;
2009-08-25 16:49:50 -04:00
const int SearchDialog : : FILETYPE_IDX_DIRECTORY = 8 ;
2007-11-14 22:18:48 -05:00
QMap < int , QString > * SearchDialog : : FileTypeExtensionMap = new QMap < int , QString > ( ) ;
bool SearchDialog : : initialised = false ;
2009-08-25 16:49:50 -04:00
2011-02-16 15:07:06 -05:00
static int FilterColumnFromComboBox ( int nIndex )
{
switch ( nIndex ) {
case 0 :
return SR_NAME_COL ;
case 1 :
return SR_SIZE_COL ;
}
return SR_NAME_COL ;
}
2007-11-14 22:18:48 -05:00
/** Constructor */
SearchDialog : : SearchDialog ( QWidget * parent )
2009-08-25 16:49:50 -04:00
: MainPage ( parent ) ,
advSearchDialog ( NULL ) ,
2007-11-14 22:18:48 -05:00
nextSearchId ( 1 )
{
/* Invoke the Qt Designer generated object setup routine */
ui . setupUi ( this ) ;
2011-02-17 11:30:59 -05:00
m_bProcessSettings = false ;
2011-02-09 16:44:49 -05:00
_queueIsAlreadyTakenCareOf = false ;
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
}
2009-08-25 16:49:50 -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 ) ) ) ;
2009-08-25 16:49:50 -04:00
2007-11-14 22:18:48 -05:00
connect ( ui . searchSummaryWidget , SIGNAL ( customContextMenuRequested ( QPoint ) ) , this , SLOT ( searchtableWidget2CostumPopupMenu ( QPoint ) ) ) ;
2009-08-25 16:49:50 -04:00
2007-11-14 22:18:48 -05:00
connect ( ui . lineEdit , SIGNAL ( returnPressed ( void ) ) , this , SLOT ( searchKeywords ( void ) ) ) ;
2010-02-14 10:34:53 -05:00
connect ( ui . lineEdit , SIGNAL ( textChanged ( const QString & ) ) , this , SLOT ( checkText ( const QString & ) ) ) ;
2012-09-07 13:30:23 -04:00
connect ( ui . pushButtonSearch , SIGNAL ( released ( void ) ) , this , SLOT ( searchKeywords ( void ) ) ) ;
2007-11-14 22:18:48 -05:00
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 . searchResultWidget , SIGNAL ( itemDoubleClicked ( QTreeWidgetItem * , int ) ) , this , SLOT ( download ( ) ) ) ;
2009-08-25 16:49:50 -04:00
2007-11-14 22:18:48 -05:00
connect ( ui . searchSummaryWidget , SIGNAL ( currentItemChanged ( QTreeWidgetItem * , QTreeWidgetItem * ) ) ,
this , SLOT ( selectSearchResults ( void ) ) ) ;
2009-08-25 16:49:50 -04:00
2012-04-12 15:30:41 -04:00
connect ( ui . FileTypeComboBox , SIGNAL ( currentIndexChanged ( int ) ) , this , SLOT ( selectFileType ( int ) ) ) ;
2011-02-16 15:07:06 -05:00
2012-04-12 15:30:41 -04:00
connect ( ui . filterLineEdit , SIGNAL ( textChanged ( QString ) ) , this , SLOT ( filterItems ( ) ) ) ;
connect ( ui . filterColumnComboBox , SIGNAL ( currentIndexChanged ( int ) ) , this , SLOT ( filterItems ( ) ) ) ;
2007-11-14 22:18:48 -05:00
2012-06-09 10:14:04 -04:00
compareSummaryRole = new RSTreeWidgetItemCompareRole ;
compareSummaryRole - > setRole ( SS_COUNT_COL , ROLE_SORT ) ;
compareResultRole = new RSTreeWidgetItemCompareRole ;
compareResultRole - > setRole ( SR_SIZE_COL , ROLE_SORT ) ;
compareResultRole - > setRole ( SR_AGE_COL , ROLE_SORT ) ;
2007-11-14 22:18:48 -05:00
/* hide the Tree +/- */
2010-02-06 20:37:06 -05:00
ui . searchResultWidget - > setRootIsDecorated ( true ) ;
2008-12-12 16:41:34 -05:00
ui . searchResultWidget - > setColumnHidden ( SR_UID_COL , true ) ;
2007-11-14 22:18:48 -05:00
ui . searchSummaryWidget - > setRootIsDecorated ( false ) ;
2010-05-02 17:37:54 -04:00
// We set some delegates to handle the display of size and date.
// To allow a proper sorting, be careful to pad at right with spaces. This
// is achieved by using QString("%1").arg(number,15,10).
//
ui . searchResultWidget - > setItemDelegateForColumn ( SR_SIZE_COL , new RSHumanReadableSizeDelegate ( ) ) ;
ui . searchResultWidget - > setItemDelegateForColumn ( SR_AGE_COL , new RSHumanReadableAgeDelegate ( ) ) ;
2007-11-14 22:18:48 -05:00
/* make it extended selection */
ui . searchResultWidget - > setSelectionMode ( QAbstractItemView : : ExtendedSelection ) ;
2009-08-25 16:49:50 -04:00
2007-11-14 22:18:48 -05:00
/* Set header resize modes and initial section sizes */
ui . searchSummaryWidget - > setColumnCount ( 3 ) ;
2010-02-14 16:48:54 -05:00
ui . searchSummaryWidget - > setColumnHidden ( 2 , true ) ;
2009-08-25 16:49:50 -04:00
QHeaderView * _smheader = ui . searchSummaryWidget - > header ( ) ;
2007-11-14 22:18:48 -05:00
_smheader - > setResizeMode ( 0 , QHeaderView : : Interactive ) ;
_smheader - > setResizeMode ( 1 , QHeaderView : : Interactive ) ;
2009-08-25 16:49:50 -04:00
2010-02-14 20:09:23 -05:00
_smheader - > resizeSection ( 0 , 160 ) ;
_smheader - > resizeSection ( 1 , 50 ) ;
2007-11-14 22:18:48 -05:00
2010-02-14 20:09:23 -05:00
ui . searchResultWidget - > setColumnCount ( 6 ) ;
2009-08-25 16:49:50 -04:00
_smheader = ui . searchResultWidget - > header ( ) ;
2010-02-14 20:09:23 -05:00
_smheader - > setResizeMode ( 0 , QHeaderView : : Interactive ) ;
2007-11-14 22:18:48 -05:00
_smheader - > setResizeMode ( 1 , QHeaderView : : Interactive ) ;
_smheader - > setResizeMode ( 2 , QHeaderView : : Interactive ) ;
2009-08-25 16:49:50 -04:00
2010-02-14 20:09:23 -05:00
_smheader - > resizeSection ( 0 , 240 ) ;
_smheader - > resizeSection ( 1 , 75 ) ;
2007-11-14 22:18:48 -05:00
_smheader - > resizeSection ( 2 , 75 ) ;
2008-11-18 15:29:40 -05:00
_smheader - > resizeSection ( 3 , 75 ) ;
2010-02-14 20:09:23 -05:00
_smheader - > resizeSection ( 4 , 90 ) ;
_smheader - > resizeSection ( 5 , 240 ) ;
2008-11-18 17:59:33 -05:00
2008-02-01 13:55:21 -05:00
// set header text aligment
2010-02-27 20:03:37 -05:00
QTreeWidgetItem * headerItem = ui . searchResultWidget - > headerItem ( ) ;
headerItem - > setTextAlignment ( 1 , Qt : : AlignRight | Qt : : AlignRight ) ;
headerItem - > setTextAlignment ( 2 , Qt : : AlignRight | Qt : : AlignRight ) ;
ui . searchResultWidget - > sortItems ( SR_NAME_COL , Qt : : AscendingOrder ) ;
2011-08-15 19:42:07 -04:00
/* Set initial size the splitter */
QList < int > sizes ;
sizes < < 250 < < width ( ) ; // Qt calculates the right sizes
ui . splitter - > setSizes ( sizes ) ;
// load settings
2011-02-17 11:30:59 -05:00
processSettings ( true ) ;
2010-02-27 20:03:37 -05:00
ui . _ownFiles_CB - > setMinimumWidth ( 20 ) ;
ui . _friendListsearch_SB - > setMinimumWidth ( 20 ) ;
ui . _anonF2Fsearch_CB - > setMinimumWidth ( 20 ) ;
ui . label - > setMinimumWidth ( 20 ) ;
2007-11-14 22:18:48 -05:00
2011-05-04 06:22:49 -04:00
// workaround for Qt bug, should be solved in next Qt release 4.7.0
// http://bugreports.qt.nokia.com/browse/QTBUG-8270
QShortcut * Shortcut = new QShortcut ( QKeySequence ( Qt : : Key_Delete ) , ui . searchSummaryWidget , 0 , 0 , Qt : : WidgetShortcut ) ;
connect ( Shortcut , SIGNAL ( activated ( ) ) , this , SLOT ( searchRemove ( ) ) ) ;
2012-09-07 13:30:23 -04:00
checkText ( ui . lineEdit - > text ( ) ) ;
2007-11-14 22:18:48 -05:00
/* Hide platform specific features */
# ifdef Q_WS_WIN
# endif
}
2011-02-17 11:30:59 -05:00
SearchDialog : : ~ SearchDialog ( )
{
// save settings
processSettings ( false ) ;
2012-06-09 10:14:04 -04:00
if ( compareSummaryRole ) {
delete ( compareSummaryRole ) ;
}
if ( compareResultRole ) {
delete ( compareResultRole ) ;
}
2011-02-17 11:30:59 -05:00
}
void SearchDialog : : processSettings ( bool bLoad )
{
m_bProcessSettings = true ;
QHeaderView * pHeader = ui . searchSummaryWidget - > header ( ) ;
Settings - > beginGroup ( QString ( " SearchDialog " ) ) ;
if ( bLoad ) {
// load settings
// state of SearchSummary tree
pHeader - > restoreState ( Settings - > value ( " SearchSummaryTree " ) . toByteArray ( ) ) ;
// state of splitter
ui . splitter - > restoreState ( Settings - > value ( " Splitter " ) . toByteArray ( ) ) ;
} else {
// save settings
// state of SearchSummary tree
Settings - > setValue ( " SearchSummaryTree " , pHeader - > saveState ( ) ) ;
// state of splitter
Settings - > setValue ( " Splitter " , ui . splitter - > saveState ( ) ) ;
}
Settings - > endGroup ( ) ;
m_bProcessSettings = false ;
}
2010-02-14 10:34:53 -05:00
void SearchDialog : : checkText ( const QString & txt )
{
2012-09-07 13:30:23 -04:00
bool valid ;
QColor color ;
2010-02-14 12:58:22 -05:00
if ( txt . length ( ) < 3 )
2010-02-14 10:34:53 -05:00
{
std : : cout < < " setting palette 1 " < < std : : endl ;
2012-09-07 13:30:23 -04:00
valid = false ;
color = QApplication : : palette ( ) . color ( QPalette : : Disabled , QPalette : : Base ) ;
2010-02-14 10:34:53 -05:00
}
else
{
std : : cout < < " setting palette 2 " < < std : : endl ;
2012-09-07 13:30:23 -04:00
valid = true ;
color = QApplication : : palette ( ) . color ( QPalette : : Active , QPalette : : Base ) ;
2010-02-14 10:34:53 -05:00
}
2012-09-07 13:30:23 -04:00
/* unpolish widget to clear the stylesheet's palette cache */
ui . searchLineFrame - > style ( ) - > unpolish ( ui . searchLineFrame ) ;
QPalette palette = ui . lineEdit - > palette ( ) ;
palette . setColor ( ui . lineEdit - > backgroundRole ( ) , color ) ;
ui . lineEdit - > setPalette ( palette ) ;
ui . searchLineFrame - > setProperty ( " valid " , valid ) ;
Rshare : : refreshStyleSheet ( ui . searchLineFrame , false ) ;
2010-02-14 10:34:53 -05:00
}
2007-11-14 22:18:48 -05:00
void SearchDialog : : initialiseFileTypeMappings ( )
{
/* edit these strings to change the range of extensions recognised by the search */
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_ANY , " " ) ;
2009-08-25 16:49:50 -04:00
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_AUDIO ,
2010-12-09 15:49:41 -05:00
" aac aif flac iff m3u m4a mid midi mp3 mpa ogg ra ram wav wma " ) ;
2009-08-25 16:49:50 -04:00
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_ARCHIVE ,
2008-11-18 17:59:33 -05:00
" 7z bz2 gz pkg rar sea sit sitx tar zip " ) ;
2009-08-25 16:49:50 -04:00
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_CDIMAGE ,
2008-11-18 17:59:33 -05:00
" iso nrg mdf " ) ;
2009-08-25 16:49:50 -04:00
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_DOCUMENT ,
" doc odt ott rtf pdf ps txt log msg wpd wps " ) ;
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 " ) ;
2009-08-25 16:49:50 -04:00
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_PROGRAM ,
2007-11-14 22:18:48 -05:00
" app bat cgi com bin exe js pif py pl sh vb ws " ) ;
2009-08-25 16:49:50 -04:00
SearchDialog : : FileTypeExtensionMap - > insert ( FILETYPE_IDX_VIDEO ,
2008-11-18 17:59:33 -05:00
" 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 ;
}
2011-08-12 10:06:29 -04:00
void SearchDialog : : searchtableWidgetCostumPopupMenu ( QPoint /*point*/ )
2007-11-14 22:18:48 -05:00
{
2010-05-14 16:55:44 -04:00
// block the popup if no results available
if ( ( ui . searchResultWidget - > selectedItems ( ) ) . size ( ) = = 0 ) return ;
2009-08-25 16:49:50 -04:00
2010-07-15 07:25:34 -04:00
QMenu contextMnu ( this ) ;
2011-05-04 06:22:49 -04:00
contextMnu . addAction ( QIcon ( IMAGE_START ) , tr ( " Download " ) , this , SLOT ( download ( ) ) ) ;
2010-05-14 16:55:44 -04:00
contextMnu . addSeparator ( ) ;
2011-05-04 06:22:49 -04:00
contextMnu . addAction ( QIcon ( IMAGE_COPYLINK ) , tr ( " Copy RetroShare Link " ) , this , SLOT ( copyResultLink ( ) ) ) ;
contextMnu . addAction ( QIcon ( IMAGE_COPYLINK ) , tr ( " Send RetroShare Link " ) , this , SLOT ( sendLinkTo ( ) ) ) ;
2010-03-10 16:38:26 -05:00
2011-05-04 06:22:49 -04:00
// contextMnu.addAction(tr("Broadcast on Channel"), this, SLOT(broadcastonchannel()));
// contextMnu.addAction(tr("Recommend to Friends"), this, SLOT(recommendtofriends()));
2007-11-14 22:18:48 -05:00
2010-05-14 16:55:44 -04:00
contextMnu . exec ( QCursor : : pos ( ) ) ;
2007-11-14 22:18:48 -05:00
}
2010-05-29 09:17:09 -04:00
void SearchDialog : : getSourceFriendsForHash ( const std : : string & hash , std : : list < std : : string > & srcIds )
{
std : : cerr < < " Searching sources for file " < < hash < < std : : endl ;
srcIds . clear ( ) ;
FileInfo finfo ;
rsFiles - > FileDetails ( hash , RS_FILE_HINTS_REMOTE , finfo ) ;
for ( std : : list < TransferInfo > : : const_iterator it ( finfo . peers . begin ( ) ) ; it ! = finfo . peers . end ( ) ; + + it )
{
std : : cerr < < " adding peerid " < < ( * it ) . peerId < < std : : endl ;
srcIds . push_back ( ( * it ) . peerId ) ;
}
}
2007-11-14 22:18:48 -05:00
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 ;
2009-08-25 16:49:50 -04:00
2010-01-21 07:39:26 -05:00
for ( int i = 0 ; i < numdls ; + + i )
{
item = itemsForDownload . at ( i ) ;
// call the download
2011-04-09 11:06:12 -04:00
//
if ( item - > text ( SR_HASH_COL ) . isEmpty ( ) ) // we have a folder
downloadDirectory ( item , tr ( " " ) ) ;
else
2010-01-21 07:39:26 -05:00
{
std : : cerr < < " SearchDialog::download() Calling File Request " ;
std : : cerr < < std : : endl ;
std : : list < std : : string > srcIds ;
2011-02-19 19:59:47 -05:00
std : : string hash = item - > text ( SR_HASH_COL ) . toStdString ( ) ;
getSourceFriendsForHash ( hash , srcIds ) ;
2010-05-29 09:17:09 -04:00
2011-10-11 19:29:38 -04:00
if ( ! rsFiles - > FileRequest ( ( item - > text ( SR_NAME_COL ) ) . toUtf8 ( ) . constData ( ) , hash , ( item - > text ( SR_SIZE_COL ) ) . toULongLong ( ) , " " , RS_FILE_HINTS_NETWORK_WIDE , srcIds ) )
2010-01-21 07:39:26 -05:00
attemptDownloadLocal = true ;
else
{
2011-02-19 19:59:47 -05:00
std : : cout < < " isuing file request from search dialog: - " < < ( item - > text ( SR_NAME_COL ) ) . toStdString ( ) < < " - " < < hash < < " - " < < ( item - > text ( SR_SIZE_COL ) ) . toULongLong ( ) < < " -ids= " ;
2010-01-21 07:39:26 -05:00
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
if ( attemptDownloadLocal )
2012-02-17 20:50:33 -05:00
QMessageBox : : information ( this , tr ( " Download Notice " ) , tr ( " Skipping Local Files " ) ) ;
2007-11-14 22:18:48 -05:00
}
2009-09-25 08:17:28 -04:00
void SearchDialog : : downloadDirectory ( const QTreeWidgetItem * item , const QString & base )
{
2010-05-02 17:37:54 -04:00
if ( ! item - > childCount ( ) )
{
2009-09-25 08:17:28 -04:00
std : : list < std : : string > srcIds ;
QString path = QString : : fromStdString ( rsFiles - > getDownloadDirectory ( ) )
2010-09-12 20:27:50 -04:00
+ " / " + base + " / " ;
2009-09-25 08:17:28 -04:00
QString cleanPath = QDir : : cleanPath ( path ) ;
2011-02-19 19:59:47 -05:00
std : : string hash = item - > text ( SR_HASH_COL ) . toStdString ( ) ;
getSourceFriendsForHash ( hash , srcIds ) ;
2010-05-29 09:17:09 -04:00
2011-10-11 19:29:38 -04:00
rsFiles - > FileRequest ( item - > text ( SR_NAME_COL ) . toUtf8 ( ) . constData ( ) ,
2011-02-19 19:59:47 -05:00
hash ,
2010-05-02 17:37:54 -04:00
item - > text ( SR_SIZE_COL ) . toULongLong ( ) ,
2011-10-11 19:29:38 -04:00
cleanPath . toUtf8 ( ) . constData ( ) , RS_FILE_HINTS_NETWORK_WIDE , srcIds ) ;
2009-09-25 08:17:28 -04:00
std : : cout < < " SearchDialog::downloadDirectory(): " \
" issuing file request from search dialog: - "
< < ( item - > text ( SR_NAME_COL ) ) . toStdString ( )
2011-02-19 19:59:47 -05:00
< < " - " < < hash
2010-05-02 17:37:54 -04:00
< < " - " < < ( item - > text ( SR_SIZE_COL ) ) . toULongLong ( )
2009-09-25 08:17:28 -04:00
< < " -ids= " ;
for ( std : : list < std : : string > : : const_iterator it ( srcIds . begin ( ) ) ;
it ! = srcIds . end ( ) ; + + it )
std : : cout < < * it < < " - " < < std : : endl ;
} else {
QDir dwlDir ( QString : : fromStdString ( rsFiles - > getDownloadDirectory ( ) ) ) ;
QString path ;
if ( base = = tr ( " " ) )
path = item - > text ( SR_NAME_COL ) ;
else
2010-09-12 20:27:50 -04:00
path = base + " / " + item - > text ( SR_NAME_COL ) ;
2009-09-25 08:17:28 -04:00
QString cleanPath = QDir : : cleanPath ( path ) ;
// create this folder in download path
if ( ! dwlDir . mkpath ( cleanPath ) ) {
std : : cerr < < " SearchDialog::downloadDirectory() - can't create "
< < cleanPath . toStdString ( ) < < " directory " < < std : : endl ;
return ;
}
// recursive call for every child - file or folder
for ( int i = 0 , cnt = item - > childCount ( ) ; i < cnt ; i + + ) {
QTreeWidgetItem * child = item - > child ( i ) ;
downloadDirectory ( child , path ) ;
}
}
}
2007-11-14 22:18:48 -05:00
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. " ) ) ;
2009-08-25 16:49:50 -04:00
2007-11-14 22:18:48 -05:00
}
/** context menu searchTablewidget2 **/
2011-08-12 10:06:29 -04:00
void SearchDialog : : searchtableWidget2CostumPopupMenu ( QPoint /*point*/ )
2007-11-14 22:18:48 -05:00
{
// block the popup if no results available
2009-08-25 16:49:50 -04:00
if ( ( ui . searchSummaryWidget - > selectedItems ( ) ) . size ( ) = = 0 ) return ;
2010-07-15 07:25:34 -04:00
QMenu contextMnu ( this ) ;
2011-12-10 18:41:58 -05:00
QTreeWidgetItem * ci = ui . searchSummaryWidget - > currentItem ( ) ;
QAction * action = contextMnu . addAction ( tr ( " Search again " ) , this , SLOT ( searchAgain ( ) ) ) ;
2012-04-12 15:30:41 -04:00
if ( ! ci | | ci - > data ( SS_DATA_COL , ROLE_KEYWORDS ) . toString ( ) . isEmpty ( ) ) {
2011-12-10 18:41:58 -05:00
action - > setDisabled ( true ) ;
}
2011-05-04 06:22:49 -04:00
contextMnu . addAction ( QIcon ( IMAGE_REMOVE ) , tr ( " Remove " ) , this , SLOT ( searchRemove ( ) ) ) ;
contextMnu . addAction ( QIcon ( IMAGE_REMOVE ) , tr ( " Remove All " ) , this , SLOT ( searchRemoveAll ( ) ) ) ;
contextMnu . addSeparator ( ) ;
2011-12-10 18:41:58 -05:00
action = contextMnu . addAction ( QIcon ( IMAGE_COPYLINK ) , tr ( " Copy RetroShare Link " ) , this , SLOT ( copySearchLink ( ) ) ) ;
2012-04-12 15:30:41 -04:00
if ( ! ci | | ci - > data ( SS_DATA_COL , ROLE_KEYWORDS ) . toString ( ) . isEmpty ( ) ) {
2011-12-10 18:41:58 -05:00
action - > setDisabled ( true ) ;
}
2009-08-25 16:49:50 -04:00
2010-05-14 16:55:44 -04:00
contextMnu . exec ( QCursor : : pos ( ) ) ;
2007-11-14 22:18:48 -05:00
}
/** 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 ( ) ;
2010-03-25 15:20:16 -04:00
ui . FileTypeComboBox - > setCurrentIndex ( 0 ) ;
2007-11-19 05:56:12 -05:00
nextSearchId = 1 ;
2007-11-14 22:18:48 -05:00
}
2011-05-04 06:22:49 -04:00
void SearchDialog : : copySearchLink ( )
{
/* get the current search id from the summary window */
QTreeWidgetItem * ci = ui . searchSummaryWidget - > currentItem ( ) ;
if ( ! ci )
return ;
/* get the keywords */
QString keywords = ci - > text ( SS_TEXT_COL ) ;
std : : cerr < < " SearchDialog::copySearchLink(): keywords: " < < keywords . toStdString ( ) ;
std : : cerr < < std : : endl ;
RetroShareLink link ;
if ( link . createSearch ( keywords ) ) {
2011-09-11 18:07:24 -04:00
QList < RetroShareLink > urls ;
2011-05-04 06:22:49 -04:00
urls . push_back ( link ) ;
RSLinkClipboard : : copyLinks ( urls ) ;
}
}
2009-05-10 18:34:38 -04:00
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
QString key ( UI_PREF_ADVANCED_SEARCH ) ;
2010-05-20 17:53:27 -04:00
Settings - > setValue ( key , QVariant ( toggled ) ) ;
2009-08-25 16:49:50 -04:00
2007-11-14 22:18:48 -05:00
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 ( ) ;
}
}
2009-09-24 17:08:55 -04:00
// Creates a new entry in the search summary, not to leave it blank whatever happens.
//
2012-04-12 15:30:41 -04:00
void SearchDialog : : initSearchResult ( const QString & txt , qulonglong searchId , int fileType , bool advanced )
2009-09-24 17:08:55 -04:00
{
QString sid_hexa = QString : : number ( searchId , 16 ) ;
2012-06-09 10:14:04 -04:00
QTreeWidgetItem * item2 = new RSTreeWidgetItem ( compareSummaryRole ) ;
2012-04-12 15:30:41 -04:00
if ( fileType = = FILETYPE_IDX_ANY ) {
item2 - > setText ( SS_TEXT_COL , txt ) ;
} else {
item2 - > setText ( SS_TEXT_COL , txt + " ( " + ui . FileTypeComboBox - > itemText ( fileType ) + " ) " ) ;
}
2009-09-24 17:08:55 -04:00
item2 - > setText ( SS_COUNT_COL , QString : : number ( 0 ) ) ;
2012-06-09 10:14:04 -04:00
item2 - > setData ( SS_COUNT_COL , ROLE_SORT , 0 ) ;
2009-09-24 17:08:55 -04:00
item2 - > setText ( SS_SEARCH_ID_COL , sid_hexa ) ;
2012-04-12 15:30:41 -04:00
item2 - > setText ( SS_FILE_TYPE_COL , QString : : number ( fileType ) ) ;
2009-09-24 17:08:55 -04:00
2012-04-12 15:30:41 -04:00
if ( ! advanced )
item2 - > setData ( SS_DATA_COL , ROLE_KEYWORDS , txt ) ;
2011-12-10 18:41:58 -05:00
2009-09-24 17:08:55 -04:00
ui . searchSummaryWidget - > addTopLevelItem ( item2 ) ;
ui . searchSummaryWidget - > setCurrentItem ( item2 ) ;
}
2007-11-14 22:18:48 -05:00
void SearchDialog : : advancedSearch ( Expression * expression )
{
2011-08-27 12:15:56 -04:00
advSearchDialog - > hide ( ) ;
2007-11-14 22:18:48 -05:00
/* call to core */
2009-08-25 16:49:50 -04:00
std : : list < DirDetails > results ;
2007-11-14 22:18:48 -05:00
2009-08-25 08:04:43 -04:00
// send a turtle search request
LinearizedExpression e ;
expression - > linearize ( e ) ;
TurtleRequestId req_id = rsTurtle - > turtleSearch ( e ) ;
2009-09-24 17:08:55 -04:00
// This will act before turtle results come to the interface, thanks to the signals scheduling policy.
// The text "bool exp" should be replaced by an appropriate text describing the actual search.
2012-04-12 15:30:41 -04:00
initSearchResult ( " bool exp " , req_id , ui . FileTypeComboBox - > currentIndex ( ) , true ) ;
2009-09-24 17:08:55 -04:00
2009-08-25 08:04:43 -04:00
rsFiles - > SearchBoolExp ( expression , results , DIR_FLAGS_REMOTE | DIR_FLAGS_NETWORK_WIDE | DIR_FLAGS_BROWSABLE ) ;
/* abstraction to allow reusee of tree rendering code */
2012-04-12 15:30:41 -04:00
resultsToTree ( advSearchDialog - > getSearchAsString ( ) , req_id , results ) ;
2009-08-25 08:04:43 -04:00
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 ( )
2009-08-25 16:49:50 -04:00
{
2011-05-04 06:22:49 -04:00
searchKeywords ( ui . lineEdit - > text ( ) ) ;
}
2011-12-10 18:41:58 -05:00
void SearchDialog : : searchAgain ( )
{
/* get the current search text from the summary window */
QTreeWidgetItem * ci = ui . searchSummaryWidget - > currentItem ( ) ;
2012-04-12 15:30:41 -04:00
if ( ! ci | | ci - > data ( SS_DATA_COL , ROLE_KEYWORDS ) . toString ( ) . isEmpty ( ) )
2011-12-10 18:41:58 -05:00
return ;
/* get the search text */
2012-04-12 15:30:41 -04:00
QString txt = ci - > data ( SS_DATA_COL , ROLE_KEYWORDS ) . toString ( ) ;
int fileType = ci - > text ( SS_FILE_TYPE_COL ) . toInt ( ) ;
/* remove the old search */
2011-12-10 18:41:58 -05:00
searchRemove ( ) ;
2012-04-12 15:30:41 -04:00
/* search for the same keywords and filetype again */
ui . FileTypeComboBox - > setCurrentIndex ( fileType ) ;
2011-12-10 18:41:58 -05:00
searchKeywords ( txt ) ;
}
2011-05-04 06:22:49 -04:00
void SearchDialog : : searchKeywords ( const QString & keywords )
{
2012-04-12 15:30:41 -04:00
if ( keywords . length ( ) < 3 )
2010-02-14 10:34:53 -05:00
return ;
2011-06-20 18:19:34 -04:00
QStringList qWords = keywords . split ( " " , QString : : SkipEmptyParts ) ;
std : : list < std : : string > words ;
QStringListIterator qWordsIter ( qWords ) ;
while ( qWordsIter . hasNext ( ) )
2011-08-27 12:15:56 -04:00
words . push_back ( qWordsIter . next ( ) . toUtf8 ( ) . constData ( ) ) ;
2011-06-20 18:19:34 -04:00
int n = words . size ( ) ;
if ( n < 1 )
return ;
2011-06-21 17:08:56 -04:00
NameExpression exprs ( ContainsAllStrings , words , true ) ;
2011-06-20 18:19:34 -04:00
LinearizedExpression lin_exp ;
exprs . linearize ( lin_exp ) ;
2010-02-27 16:10:54 -05:00
TurtleRequestId req_id ;
if ( ui . _anonF2Fsearch_CB - > isChecked ( ) )
2011-06-20 18:19:34 -04:00
{
if ( n = = 1 )
2012-04-12 15:30:41 -04:00
req_id = rsTurtle - > turtleSearch ( words . front ( ) ) ;
2011-06-20 18:19:34 -04:00
else
req_id = rsTurtle - > turtleSearch ( lin_exp ) ;
}
2010-02-27 16:10:54 -05:00
else
2011-08-14 17:25:41 -04:00
req_id = ( ( ( ( uint32_t ) rand ( ) ) < < 16 ) ^ 0x1e2fd5e4 ) + ( ( ( uint32_t ) rand ( ) ) ^ 0x1b19acfe ) ; // generate a random 32 bits request id
2009-08-16 16:10:53 -04:00
2012-04-12 15:30:41 -04:00
initSearchResult ( keywords , req_id , ui . FileTypeComboBox - > currentIndex ( ) , false ) ; // this will act before turtle results come to the interface, thanks to the signals scheduling policy.
2009-09-24 17:08:55 -04:00
2010-02-27 16:10:54 -05:00
if ( ui . _friendListsearch_SB - > isChecked ( ) | | ui . _ownFiles_CB - > isChecked ( ) )
2007-11-14 22:18:48 -05:00
{
2010-02-27 16:10:54 -05:00
/* extract keywords from lineEdit */
2011-06-20 18:19:34 -04:00
// make a compound expression with an AND
//
2007-11-14 22:18:48 -05:00
2010-02-27 16:10:54 -05:00
std : : list < DirDetails > finalResults ;
2009-08-25 16:49:50 -04:00
2010-02-27 16:10:54 -05:00
if ( ui . _friendListsearch_SB - > isChecked ( ) )
{
std : : list < DirDetails > initialResults ;
2007-11-14 22:18:48 -05:00
2011-06-20 18:19:34 -04:00
rsFiles - > SearchBoolExp ( & exprs , initialResults , DIR_FLAGS_REMOTE ) ;
2010-02-27 16:10:54 -05:00
/* which extensions do we use? */
DirDetails dd ;
for ( std : : list < DirDetails > : : iterator resultsIter = initialResults . begin ( ) ; resultsIter ! = initialResults . end ( ) ; resultsIter + + )
{
dd = * resultsIter ;
finalResults . push_back ( dd ) ;
}
}
if ( ui . _ownFiles_CB - > isChecked ( ) )
{
std : : list < DirDetails > initialResults ;
2011-06-20 18:19:34 -04:00
rsFiles - > SearchBoolExp ( & exprs , initialResults , DIR_FLAGS_LOCAL | DIR_FLAGS_NETWORK_WIDE | DIR_FLAGS_BROWSABLE ) ;
2010-02-27 16:10:54 -05:00
/* which extensions do we use? */
DirDetails dd ;
for ( std : : list < DirDetails > : : iterator resultsIter = initialResults . begin ( ) ; resultsIter ! = initialResults . end ( ) ; resultsIter + + )
{
dd = * resultsIter ;
finalResults . push_back ( dd ) ;
}
}
/* abstraction to allow reusee of tree rendering code */
2012-04-12 15:30:41 -04:00
resultsToTree ( keywords , req_id , finalResults ) ;
2010-02-27 16:10:54 -05:00
ui . lineEdit - > clear ( ) ;
}
2007-11-14 22:18:48 -05:00
}
2009-08-25 16:49:50 -04: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
{
2011-02-09 16:44:49 -05:00
searchResultsQueue . push_back ( std : : pair < qulonglong , FileDetail > ( search_id , file ) ) ;
2009-09-24 17:08:55 -04:00
2011-02-09 16:44:49 -05:00
if ( ! _queueIsAlreadyTakenCareOf )
{
QTimer : : singleShot ( 100 , this , SLOT ( processResultQueue ( ) ) ) ;
_queueIsAlreadyTakenCareOf = true ;
}
}
void SearchDialog : : processResultQueue ( )
{
2011-04-14 17:58:15 -04:00
// This avoids a deadlock when gpg callback asks a passwd.
// Send again in 10 secs.
//
if ( RsAutoUpdatePage : : eventsLocked ( ) )
{
QTimer : : singleShot ( 10000 , this , SLOT ( processResultQueue ( ) ) ) ;
return ;
}
2011-02-09 16:44:49 -05:00
int nb_treated_elements = 0 ;
2012-04-12 15:30:41 -04:00
ui . searchResultWidget - > setSortingEnabled ( false ) ;
while ( ! searchResultsQueue . empty ( ) & & nb_treated_elements + + < 250 )
2009-08-16 16:10:53 -04:00
{
2011-02-09 16:44:49 -05:00
qulonglong search_id = searchResultsQueue . back ( ) . first ;
FileDetail file = searchResultsQueue . back ( ) . second ;
2009-08-16 16:10:53 -04:00
2011-02-09 16:44:49 -05:00
searchResultsQueue . pop_back ( ) ;
2009-08-16 16:10:53 -04:00
2011-02-09 16:44:49 -05:00
# ifdef DEBUG
std : : cout < < " Updating file detail: " < < std : : endl ;
std : : cout < < " size = " < < file . size < < std : : endl ;
std : : cout < < " name = " < < file . name < < std : : endl ;
std : : cout < < " s_id = " < < search_id < < std : : endl ;
# endif
2012-04-12 15:30:41 -04:00
insertFile ( search_id , file ) ;
2009-08-16 16:10:53 -04:00
}
2012-04-12 15:30:41 -04:00
ui . searchResultWidget - > setSortingEnabled ( true ) ;
2011-02-09 16:44:49 -05:00
if ( ! searchResultsQueue . empty ( ) )
2012-04-12 15:30:41 -04:00
QTimer : : singleShot ( 500 , this , SLOT ( processResultQueue ( ) ) ) ;
2011-02-09 16:44:49 -05:00
else
_queueIsAlreadyTakenCareOf = false ;
2009-08-16 16:10:53 -04:00
}
2009-08-25 16:49:50 -04:00
2012-04-12 15:30:41 -04:00
void SearchDialog : : insertDirectory ( const QString & txt , qulonglong searchId , const DirDetails & dir , QTreeWidgetItem * item )
2009-08-25 16:49:50 -04:00
{
2009-09-24 17:08:55 -04:00
QString sid_hexa = QString : : number ( searchId , 16 ) ;
2009-09-25 08:17:28 -04:00
if ( dir . type = = DIR_TYPE_FILE )
2009-09-24 17:08:55 -04:00
{
2012-06-09 10:14:04 -04:00
QTreeWidgetItem * child = new RSTreeWidgetItem ( compareResultRole ) ;
2009-08-25 16:49:50 -04:00
/* translate search result for a file */
2010-02-06 20:37:06 -05:00
2009-09-24 17:08:55 -04:00
child - > setText ( SR_NAME_COL , QString : : fromUtf8 ( dir . name . c_str ( ) ) ) ;
2009-08-25 16:49:50 -04:00
child - > setText ( SR_HASH_COL , QString : : fromStdString ( dir . hash ) ) ;
2012-06-09 10:14:04 -04:00
child - > setText ( SR_SIZE_COL , QString : : number ( dir . count ) ) ;
2012-06-10 19:47:41 -04:00
child - > setData ( SR_SIZE_COL , ROLE_SORT , ( qulonglong ) dir . count ) ;
2012-06-09 10:14:04 -04:00
child - > setText ( SR_AGE_COL , QString : : number ( dir . age ) ) ;
child - > setData ( SR_AGE_COL , ROLE_SORT , dir . age ) ;
2009-08-25 16:49:50 -04:00
child - > setTextAlignment ( SR_SIZE_COL , Qt : : AlignRight ) ;
2010-02-14 13:56:56 -05:00
2009-08-25 16:49:50 -04:00
child - > setText ( SR_ID_COL , QString : : number ( 1 ) ) ;
2010-02-14 20:09:23 -05:00
child - > setTextAlignment ( SR_ID_COL , Qt : : AlignRight ) ;
2009-09-24 17:08:55 -04:00
child - > setText ( SR_SEARCH_ID_COL , sid_hexa ) ;
2011-12-07 08:08:12 -05:00
setIconAndType ( child , QString : : fromUtf8 ( dir . name . c_str ( ) ) ) ;
2009-08-25 16:49:50 -04:00
if ( item = = NULL ) {
ui . searchResultWidget - > addTopLevelItem ( child ) ;
} else {
item - > addChild ( child ) ;
}
2009-09-25 08:17:28 -04:00
}
else
2009-09-24 17:08:55 -04:00
{ /* it is a directory */
2012-06-09 10:14:04 -04:00
QTreeWidgetItem * child = new RSTreeWidgetItem ( compareResultRole ) ;
2010-02-06 20:37:06 -05:00
child - > setIcon ( SR_NAME_COL , QIcon ( IMAGE_DIRECTORY ) ) ;
2009-09-24 17:08:55 -04:00
child - > setText ( SR_NAME_COL , QString : : fromUtf8 ( dir . name . c_str ( ) ) ) ;
2009-08-25 16:49:50 -04:00
child - > setText ( SR_HASH_COL , QString : : fromStdString ( dir . hash ) ) ;
2012-06-09 10:14:04 -04:00
child - > setText ( SR_SIZE_COL , QString : : number ( dir . count ) ) ;
2012-06-10 19:47:41 -04:00
child - > setData ( SR_SIZE_COL , ROLE_SORT , ( qulonglong ) dir . count ) ;
2012-06-09 10:14:04 -04:00
child - > setText ( SR_AGE_COL , QString : : number ( dir . age ) ) ;
child - > setData ( SR_AGE_COL , ROLE_SORT , dir . age ) ;
2009-08-25 16:49:50 -04:00
child - > setTextAlignment ( SR_SIZE_COL , Qt : : AlignRight ) ;
child - > setText ( SR_ID_COL , QString : : number ( 1 ) ) ;
2010-02-14 20:09:23 -05:00
child - > setTextAlignment ( SR_ID_COL , Qt : : AlignRight ) ;
2009-09-24 17:08:55 -04:00
child - > setText ( SR_SEARCH_ID_COL , sid_hexa ) ;
2010-02-06 20:37:06 -05:00
child - > setText ( SR_TYPE_COL , tr ( " Folder " ) ) ;
2009-08-25 16:49:50 -04:00
if ( item = = NULL ) {
ui . searchResultWidget - > addTopLevelItem ( child ) ;
/* add to the summary as well */
int items = ui . searchSummaryWidget - > topLevelItemCount ( ) ;
bool found = false ;
for ( int i = 0 ; i < items ; i + + )
{
2009-09-24 17:08:55 -04:00
if ( ui . searchSummaryWidget - > topLevelItem ( i ) - > text ( SS_SEARCH_ID_COL ) = = sid_hexa )
2009-08-25 16:49:50 -04:00
{
// increment result since every item is new
int s = ui . searchSummaryWidget - > topLevelItem ( i ) - > text ( SS_COUNT_COL ) . toInt ( ) ;
ui . searchSummaryWidget - > topLevelItem ( i ) - > setText ( SS_COUNT_COL , QString : : number ( s + 1 ) ) ;
2012-06-09 10:14:04 -04:00
ui . searchSummaryWidget - > topLevelItem ( i ) - > setData ( SS_COUNT_COL , ROLE_SORT , s + 1 ) ;
2009-08-25 16:49:50 -04:00
found = true ;
}
}
if ( ! found )
{
2012-06-09 10:14:04 -04:00
QTreeWidgetItem * item2 = new RSTreeWidgetItem ( compareSummaryRole ) ;
2012-04-12 15:30:41 -04:00
item2 - > setText ( SS_TEXT_COL , txt ) ;
2009-08-25 16:49:50 -04:00
item2 - > setText ( SS_COUNT_COL , QString : : number ( 1 ) ) ;
2012-06-09 10:14:04 -04:00
item2 - > setData ( SS_COUNT_COL , ROLE_SORT , 1 ) ;
2010-02-14 20:09:23 -05:00
item2 - > setTextAlignment ( SS_COUNT_COL , Qt : : AlignRight ) ;
2009-09-24 17:08:55 -04:00
item2 - > setText ( SS_SEARCH_ID_COL , sid_hexa ) ;
2009-08-25 16:49:50 -04:00
ui . searchSummaryWidget - > addTopLevelItem ( item2 ) ;
ui . searchSummaryWidget - > setCurrentItem ( item2 ) ;
}
/* select this search result */
selectSearchResults ( ) ;
} else {
item - > addChild ( child ) ;
}
/* go through all children directories/files for a recursive call */
for ( std : : list < DirStub > : : const_iterator it ( dir . children . begin ( ) ) ; it ! = dir . children . end ( ) ; it + + ) {
DirDetails details ;
rsFiles - > RequestDirDetails ( it - > ref , details , 0 ) ;
insertDirectory ( txt , searchId , details , child ) ;
}
}
}
2012-04-12 15:30:41 -04:00
void SearchDialog : : insertDirectory ( const QString & txt , qulonglong searchId , const DirDetails & dir )
2010-02-18 19:48:42 -05:00
{
2011-04-09 11:06:12 -04:00
return ; // Remove this statement to allow adding directories to the search results.
2010-02-18 19:48:42 -05:00
QString sid_hexa = QString : : number ( searchId , 16 ) ;
2012-06-09 10:14:04 -04:00
QTreeWidgetItem * child = new RSTreeWidgetItem ( compareResultRole ) ;
2010-02-18 19:48:42 -05:00
child - > setIcon ( SR_NAME_COL , QIcon ( IMAGE_DIRECTORY ) ) ;
child - > setText ( SR_NAME_COL , QString : : fromUtf8 ( dir . name . c_str ( ) ) ) ;
child - > setText ( SR_HASH_COL , QString : : fromStdString ( dir . hash ) ) ;
2012-06-09 10:14:04 -04:00
child - > setText ( SR_SIZE_COL , QString : : number ( dir . count ) ) ;
2012-06-10 19:47:41 -04:00
child - > setData ( SR_SIZE_COL , ROLE_SORT , ( qulonglong ) dir . count ) ;
2012-06-09 10:14:04 -04:00
child - > setText ( SR_AGE_COL , QString : : number ( dir . min_age ) ) ;
child - > setData ( SR_AGE_COL , ROLE_SORT , dir . min_age ) ;
2010-02-18 19:48:42 -05:00
child - > setTextAlignment ( SR_SIZE_COL , Qt : : AlignRight ) ;
child - > setText ( SR_ID_COL , QString : : number ( 1 ) ) ;
child - > setTextAlignment ( SR_ID_COL , Qt : : AlignRight ) ;
child - > setText ( SR_SEARCH_ID_COL , sid_hexa ) ;
child - > setText ( SR_TYPE_COL , tr ( " Folder " ) ) ;
ui . searchResultWidget - > addTopLevelItem ( child ) ;
/* add to the summary as well */
int items = ui . searchSummaryWidget - > topLevelItemCount ( ) ;
bool found = false ;
for ( int i = 0 ; i < items ; i + + )
{
if ( ui . searchSummaryWidget - > topLevelItem ( i ) - > text ( SS_SEARCH_ID_COL ) = = sid_hexa )
{
// increment result since every item is new
int s = ui . searchSummaryWidget - > topLevelItem ( i ) - > text ( SS_COUNT_COL ) . toInt ( ) ;
ui . searchSummaryWidget - > topLevelItem ( i ) - > setText ( SS_COUNT_COL , QString : : number ( s + 1 ) ) ;
2012-06-09 10:14:04 -04:00
ui . searchSummaryWidget - > topLevelItem ( i ) - > setData ( SS_COUNT_COL , ROLE_SORT , s + 1 ) ;
2010-02-18 19:48:42 -05:00
found = true ;
}
}
if ( ! found )
{
2012-06-09 10:14:04 -04:00
RSTreeWidgetItem * item2 = new RSTreeWidgetItem ( compareSummaryRole ) ;
2012-04-12 15:30:41 -04:00
item2 - > setText ( SS_TEXT_COL , txt ) ;
2010-02-18 19:48:42 -05:00
item2 - > setText ( SS_COUNT_COL , QString : : number ( 1 ) ) ;
2012-06-09 10:14:04 -04:00
item2 - > setData ( SS_COUNT_COL , ROLE_SORT , 1 ) ;
2010-02-18 19:48:42 -05:00
item2 - > setTextAlignment ( SS_COUNT_COL , Qt : : AlignRight ) ;
item2 - > setText ( SS_SEARCH_ID_COL , sid_hexa ) ;
ui . searchSummaryWidget - > addTopLevelItem ( item2 ) ;
ui . searchSummaryWidget - > setCurrentItem ( item2 ) ;
}
2010-02-21 08:38:27 -05:00
selectSearchResults ( ) ;
2010-02-18 19:48:42 -05:00
// TODO: check for duplicate directories
}
2012-04-12 15:30:41 -04:00
void SearchDialog : : insertFile ( qulonglong searchId , const FileDetail & file , int searchType )
2009-08-16 16:10:53 -04:00
{
// algo:
//
2009-08-25 16:49:50 -04:00
// 1 - look in result window whether the file already exist.
// 1.1 - If yes, just increment the source number.
2012-04-12 15:30:41 -04:00
// 2.2 - Otherwise, add an entry.
2009-08-16 16:10:53 -04:00
// 2 - look in the summary whether there exist the same request id.
2009-08-25 16:49:50 -04:00
// 1.1 - If yes, just increment the result number.
2012-04-12 15:30:41 -04:00
// 2.2 - Otherwise, ignore this file
2009-08-16 16:10:53 -04:00
//
2010-02-27 15:29:28 -05:00
//
2012-04-12 15:30:41 -04:00
QString sid_hexa = QString : : number ( searchId , 16 ) ;
//check if search ID is still in the summary list, if not it was already closed by
// the user, so nothing has to be done here
int summaryItemCount = ui . searchSummaryWidget - > topLevelItemCount ( ) ;
int summaryItemIndex = - 1 ;
for ( int i = 0 ; i < summaryItemCount ; i + + ) {
if ( ui . searchSummaryWidget - > topLevelItem ( i ) - > text ( SS_SEARCH_ID_COL ) = = sid_hexa ) {
summaryItemIndex = i ;
break ;
}
}
if ( summaryItemIndex = = - 1 )
return ;
/* which extensions do we use? */
int fileTypeIndex = ui . searchSummaryWidget - > topLevelItem ( summaryItemIndex ) - > text ( SS_FILE_TYPE_COL ) . toInt ( ) ;
if ( fileTypeIndex ! = FILETYPE_IDX_ANY ) {
// collect the extensions to use
QStringList extList = FileTypeExtensionMap - > value ( fileTypeIndex ) . split ( " " ) ;
// check this file's extension
QString qName = QString : : fromUtf8 ( file . name . c_str ( ) ) ;
if ( ! extList . contains ( QFileInfo ( qName ) . suffix ( ) , Qt : : CaseInsensitive ) ) {
return ;
}
}
static std : : map < qulonglong , int > nb_results ;
2010-02-27 15:29:28 -05:00
if ( nb_results . find ( searchId ) = = nb_results . end ( ) )
nb_results [ searchId ] = 0 ;
2012-04-12 15:30:41 -04:00
if ( nb_results [ searchId ] > = ui . _max_results_SB - > value ( ) )
2010-02-27 15:29:28 -05:00
return ;
2009-08-16 16:10:53 -04:00
2009-08-25 16:49:50 -04:00
// 1 - look in result window whether the file already exists.
2009-08-16 16:10:53 -04:00
//
bool found = false ;
2010-02-13 13:49:56 -05:00
int sources ;
2010-02-14 13:56:56 -05:00
int friendSource = 0 ;
int anonymousSource = 0 ;
QString modifiedResult ;
2009-08-16 16:10:53 -04:00
2011-02-09 16:44:49 -05:00
QList < QTreeWidgetItem * > itms = ui . searchResultWidget - > findItems ( QString : : fromStdString ( file . hash ) , Qt : : MatchExactly , SR_HASH_COL ) ;
for ( QList < QTreeWidgetItem * > : : const_iterator it ( itms . begin ( ) ) ; it ! = itms . end ( ) ; + + it )
if ( ( * it ) - > text ( SR_SEARCH_ID_COL ) = = sid_hexa )
2009-08-16 16:10:53 -04:00
{
2011-02-09 16:44:49 -05:00
QString resultCount = ( * it ) - > text ( SR_ID_COL ) ;
2010-02-14 13:56:56 -05:00
QStringList modifiedResultCount = resultCount . split ( " / " , QString : : SkipEmptyParts ) ;
if ( searchType = = FRIEND_SEARCH )
{
friendSource = modifiedResultCount . at ( 0 ) . toInt ( ) + 1 ;
anonymousSource = modifiedResultCount . at ( 1 ) . toInt ( ) ;
}
else
{
friendSource = modifiedResultCount . at ( 0 ) . toInt ( ) ;
anonymousSource = modifiedResultCount . at ( 1 ) . toInt ( ) + 1 ;
}
2011-08-27 12:15:56 -04:00
modifiedResult = QString : : number ( friendSource ) + " / " + QString : : number ( anonymousSource ) ;
2011-02-09 16:44:49 -05:00
( * it ) - > setText ( SR_ID_COL , modifiedResult ) ;
QTreeWidgetItem * item = ( * it ) ;
2009-08-16 16:10:53 -04:00
found = true ;
2012-02-17 20:50:33 -05:00
if ( ! item - > data ( SR_DATA_COL , SR_ROLE_LOCAL ) . toBool ( ) ) {
QColor foreground ;
int sources = friendSource + anonymousSource ;
if ( sources < 1 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 19 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 2 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 38 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 3 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 57 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 4 )
{
foreground = QColor ( 0 , 0 , 76 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 5 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 96 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 6 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 114 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 7 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 133 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 8 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 152 ) ;
}
else if ( sources < 9 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 171 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 10 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 190 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else if ( sources < 11 )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
foreground = QColor ( 0 , 0 , 209 ) ;
2010-02-13 13:49:56 -05:00
}
2012-02-17 20:50:33 -05:00
else
{
foreground = QColor ( 0 , 0 , 228 ) ;
}
QBrush brush ( foreground ) ;
for ( int i = 0 ; i < item - > columnCount ( ) ; i + + )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
item - > setForeground ( i , brush ) ;
2010-02-13 13:49:56 -05:00
}
}
2009-09-24 17:08:55 -04:00
break ;
2009-08-16 16:10:53 -04:00
}
2009-08-25 16:49:50 -04:00
2009-08-16 16:10:53 -04:00
if ( ! found )
2007-11-14 22:18:48 -05:00
{
2010-04-10 10:56:34 -04:00
+ + nb_results [ searchId ] ;
2009-08-16 16:10:53 -04:00
/* translate search results */
2010-02-06 20:37:06 -05:00
2012-06-09 10:14:04 -04:00
QTreeWidgetItem * item = new RSTreeWidgetItem ( compareResultRole ) ;
2009-09-24 17:08:55 -04:00
item - > setText ( SR_NAME_COL , QString : : fromUtf8 ( file . name . c_str ( ) ) ) ;
2009-08-16 16:10:53 -04:00
item - > setText ( SR_HASH_COL , QString : : fromStdString ( file . hash ) ) ;
2008-11-18 15:29:40 -05:00
2011-12-07 08:08:12 -05:00
setIconAndType ( item , QString : : fromUtf8 ( file . name . c_str ( ) ) ) ;
2008-11-18 15:29:40 -05:00
2007-11-14 22:18:48 -05:00
/*
2012-04-12 15:30:41 -04:00
* to facilitate downloads we need to save the file size too
2007-11-14 22:18:48 -05:00
*/
2012-06-09 10:14:04 -04:00
item - > setText ( SR_SIZE_COL , QString : : number ( file . size ) ) ;
2012-06-11 17:32:22 -04:00
item - > setData ( SR_SIZE_COL , ROLE_SORT , ( qulonglong ) file . size ) ;
2012-06-09 10:14:04 -04:00
item - > setText ( SR_AGE_COL , QString : : number ( file . age ) ) ;
item - > setData ( SR_AGE_COL , ROLE_SORT , file . age ) ;
2009-08-16 16:10:53 -04:00
item - > setTextAlignment ( SR_SIZE_COL , Qt : : AlignRight ) ;
2010-02-14 13:56:56 -05:00
if ( searchType = = FRIEND_SEARCH )
{
friendSource = 1 ;
anonymousSource = 0 ;
}
else
{
friendSource = 0 ;
anonymousSource = 1 ;
}
2012-02-17 20:50:33 -05:00
modifiedResult = QString : : number ( friendSource ) + " / " + QString : : number ( anonymousSource ) ;
2010-02-14 13:56:56 -05:00
item - > setText ( SR_ID_COL , modifiedResult ) ;
2010-02-14 20:09:23 -05:00
item - > setTextAlignment ( SR_ID_COL , Qt : : AlignRight ) ;
2009-09-24 17:08:55 -04:00
item - > setText ( SR_SEARCH_ID_COL , sid_hexa ) ;
2012-02-17 20:50:33 -05:00
QColor foreground ;
bool setForeground = false ;
FileInfo fi ;
if ( rsFiles - > FileDetails ( file . hash , RS_FILE_HINTS_EXTRA | RS_FILE_HINTS_LOCAL | RS_FILE_HINTS_BROWSABLE | RS_FILE_HINTS_NETWORK_WIDE | RS_FILE_HINTS_SPEC_ONLY , fi ) ) {
item - > setData ( SR_DATA_COL , SR_ROLE_LOCAL , true ) ;
foreground = Qt : : red ;
setForeground = true ;
} else {
item - > setData ( SR_DATA_COL , SR_ROLE_LOCAL , false ) ;
sources = item - > text ( SR_ID_COL ) . toInt ( ) ;
if ( sources = = 1 )
{
foreground = QColor ( 0 , 0 , 0 ) ;
setForeground = true ;
}
}
if ( setForeground ) {
QBrush brush ( foreground ) ;
for ( int i = 0 ; i < item - > columnCount ( ) ; i + + )
2010-02-13 13:49:56 -05:00
{
2012-02-17 20:50:33 -05:00
item - > setForeground ( i , brush ) ;
2010-02-13 13:49:56 -05:00
}
}
2008-08-31 12:50:36 -04:00
2007-11-14 22:18:48 -05:00
ui . searchResultWidget - > addTopLevelItem ( item ) ;
2012-04-12 15:30:41 -04:00
/* hide/show this search result */
hideOrShowSearchResult ( item ) ;
2009-08-16 16:10:53 -04:00
}
2007-11-14 22:18:48 -05:00
2012-04-12 15:30:41 -04:00
/* update the summary as well */
if ( ! found ) // only increment result when it's a new item.
{
int s = ui . searchSummaryWidget - > topLevelItem ( summaryItemIndex ) - > text ( SS_COUNT_COL ) . toInt ( ) ;
ui . searchSummaryWidget - > topLevelItem ( summaryItemIndex ) - > setText ( SS_COUNT_COL , QString : : number ( s + 1 ) ) ;
2012-06-09 10:14:04 -04:00
ui . searchSummaryWidget - > topLevelItem ( summaryItemIndex ) - > setData ( SS_COUNT_COL , ROLE_SORT , s + 1 ) ;
2011-02-16 15:07:06 -05:00
}
2007-11-14 22:18:48 -05:00
}
2012-04-12 15:30:41 -04:00
void SearchDialog : : resultsToTree ( const QString & txt , qulonglong searchId , const std : : list < DirDetails > & results )
2009-08-16 16:10:53 -04:00
{
2009-08-25 16:49:50 -04:00
ui . searchResultWidget - > setSortingEnabled ( false ) ;
2009-08-16 16:10:53 -04:00
/* translate search results */
2009-08-25 16:49:50 -04:00
std : : list < DirDetails > : : const_iterator it ;
2009-08-16 16:10:53 -04:00
for ( it = results . begin ( ) ; it ! = results . end ( ) ; it + + )
2009-08-25 16:49:50 -04:00
if ( it - > type = = DIR_TYPE_FILE ) {
FileDetail fd ;
fd . id = it - > id ;
fd . name = it - > name ;
fd . hash = it - > hash ;
fd . path = it - > path ;
fd . size = it - > count ;
fd . age = it - > age ;
fd . rank = 0 ;
2012-04-12 15:30:41 -04:00
insertFile ( searchId , fd , FRIEND_SEARCH ) ;
2009-08-25 16:49:50 -04:00
} else if ( it - > type = = DIR_TYPE_DIR ) {
2011-08-27 12:15:56 -04:00
// insertDirectory(txt, searchId, *it, NULL);
insertDirectory ( txt , searchId , * it ) ;
2009-08-25 16:49:50 -04:00
}
ui . searchResultWidget - > setSortingEnabled ( true ) ;
2009-08-16 16:10:53 -04:00
}
2010-02-21 08:38:27 -05:00
void SearchDialog : : selectSearchResults ( int index )
2007-11-14 22:18:48 -05:00
{
/* highlight this search in summary window */
2012-04-12 15:30:41 -04:00
QString searchId ;
2007-11-14 22:18:48 -05:00
QTreeWidgetItem * ci = ui . searchSummaryWidget - > currentItem ( ) ;
2012-04-12 15:30:41 -04:00
if ( ci ) {
/* get the searchId text */
searchId = ci - > text ( SS_SEARCH_ID_COL ) ;
if ( ui . FileTypeComboBox - > currentIndex ( ) ! = FILETYPE_IDX_ANY )
ui . FileTypeComboBox - > setCurrentIndex ( ci - > text ( SS_FILE_TYPE_COL ) . toInt ( ) ) ;
}
2010-02-14 10:50:38 -05:00
# ifdef DEBUG
2007-11-14 22:18:48 -05:00
std : : cerr < < " SearchDialog::selectSearchResults(): searchId: " < < searchId . toStdString ( ) ;
std : : cerr < < std : : endl ;
2010-02-14 10:50:38 -05:00
# endif
2007-11-14 22:18:48 -05:00
/* show only matching searchIds in main window */
int items = ui . searchResultWidget - > topLevelItemCount ( ) ;
for ( int i = 0 ; i < items ; i + + )
{
2012-04-12 15:30:41 -04:00
hideOrShowSearchResult ( ui . searchResultWidget - > topLevelItem ( i ) , searchId , index ) ;
2007-11-14 22:18:48 -05:00
}
ui . searchResultWidget - > update ( ) ;
2012-04-05 17:03:03 -04:00
ui . filterLineEdit - > clear ( ) ;
2007-11-14 22:18:48 -05:00
}
2012-04-12 15:30:41 -04:00
void SearchDialog : : hideOrShowSearchResult ( QTreeWidgetItem * resultItem , QString currentSearchId , int fileTypeIndex )
{
if ( currentSearchId . isEmpty ( ) ) {
QTreeWidgetItem * ci = ui . searchSummaryWidget - > currentItem ( ) ;
if ( ci )
/* get the searchId text */
currentSearchId = ci - > text ( SS_SEARCH_ID_COL ) ;
}
if ( resultItem - > text ( SR_SEARCH_ID_COL ) ! = currentSearchId ) {
resultItem - > setHidden ( true ) ;
return ;
}
// check if file type matches
if ( fileTypeIndex = = - 1 )
fileTypeIndex = ui . FileTypeComboBox - > currentIndex ( ) ;
if ( fileTypeIndex ! = FILETYPE_IDX_ANY ) {
if ( ! ( fileTypeIndex = = FILETYPE_IDX_DIRECTORY & & resultItem - > text ( SR_HASH_COL ) . isEmpty ( ) ) ) {
QStringList extList = FileTypeExtensionMap - > value ( fileTypeIndex ) . split ( " " ) ;
if ( ! extList . contains ( QFileInfo ( resultItem - > text ( SR_NAME_COL ) ) . suffix ( ) , Qt : : CaseInsensitive ) ) {
resultItem - > setHidden ( true ) ;
return ;
}
}
}
// file type matches, now filter text
if ( ui . filterLineEdit - > text ( ) . isEmpty ( ) ) {
resultItem - > setHidden ( false ) ;
} else {
int filterColumn = FilterColumnFromComboBox ( ui . filterColumnComboBox - > currentIndex ( ) ) ;
filterItem ( resultItem , ui . filterLineEdit - > text ( ) , filterColumn ) ;
}
}
2011-12-07 08:08:12 -05:00
void SearchDialog : : setIconAndType ( QTreeWidgetItem * item , const QString & filename )
2009-08-25 16:49:50 -04:00
{
2011-12-07 08:08:12 -05:00
item - > setIcon ( SR_NAME_COL , FilesDefs : : getIconFromFilename ( filename ) ) ;
item - > setText ( SR_TYPE_COL , FilesDefs : : getNameFromFilename ( filename ) ) ;
2009-08-25 16:49:50 -04:00
}
2010-01-21 17:34:10 -05:00
2011-05-04 06:22:49 -04:00
void SearchDialog : : copyResultLink ( )
2010-01-21 17:34:10 -05:00
{
/* should also be able to handle multi-selection */
QList < QTreeWidgetItem * > itemsForCopy = ui . searchResultWidget - > selectedItems ( ) ;
int numdls = itemsForCopy . size ( ) ;
QTreeWidgetItem * item ;
2011-09-11 18:07:24 -04:00
QList < RetroShareLink > urls ;
2010-03-10 18:09:35 -05:00
2010-01-21 17:34:10 -05:00
for ( int i = 0 ; i < numdls ; + + i )
2010-03-10 18:09:35 -05:00
{
item = itemsForCopy . at ( i ) ;
// call copy
2010-01-21 17:34:10 -05:00
2010-03-10 18:09:35 -05:00
if ( ! item - > childCount ( ) )
{
2011-05-04 06:22:49 -04:00
std : : cerr < < " SearchDialog::copyResultLink() Calling set retroshare link " ;
2010-03-10 18:09:35 -05:00
std : : cerr < < std : : endl ;
2010-03-10 16:38:26 -05:00
2010-03-10 18:09:35 -05:00
QString fhash = item - > text ( SR_HASH_COL ) ;
2010-05-02 17:37:54 -04:00
qulonglong fsize = item - > text ( SR_SIZE_COL ) . toULongLong ( ) ;
2010-03-10 18:09:35 -05:00
QString fname = item - > text ( SR_NAME_COL ) ;
2010-01-21 17:34:10 -05:00
2011-05-04 06:22:49 -04:00
RetroShareLink link ;
if ( link . createFile ( fname , fsize , fhash ) ) {
std : : cerr < < " new link added to clipboard: " < < link . toString ( ) . toStdString ( ) < < std : : endl ;
2010-03-15 08:57:08 -04:00
urls . push_back ( link ) ;
2011-05-04 06:22:49 -04:00
}
2010-03-10 18:09:35 -05:00
}
}
2010-03-15 08:57:08 -04:00
RSLinkClipboard : : copyLinks ( urls ) ;
2010-01-21 17:34:10 -05:00
}
void SearchDialog : : sendLinkTo ( )
{
2011-05-04 06:22:49 -04:00
copyResultLink ( ) ;
2010-01-21 17:34:10 -05:00
/* create a message */
2010-11-02 17:11:11 -04:00
MessageComposer * nMsgDialog = MessageComposer : : newMsg ( ) ;
if ( nMsgDialog = = NULL ) {
return ;
}
2010-01-21 17:34:10 -05:00
2012-05-04 19:39:36 -04:00
nMsgDialog - > setTitleText ( tr ( " New RetroShare Link(s) " ) ) ;
nMsgDialog - > setMsgText ( RSLinkClipboard : : toHtml ( ) , true ) ;
2010-01-21 17:34:10 -05:00
nMsgDialog - > show ( ) ;
2010-05-02 20:09:55 -04:00
/* window will destroy itself! */
2010-01-21 17:34:10 -05:00
}
2010-02-13 21:31:37 -05:00
2012-04-12 15:30:41 -04:00
void SearchDialog : : selectFileType ( int index )
2010-02-18 19:48:42 -05:00
{
if ( ! FileTypeExtensionMap - > contains ( index ) & & index ! = FILETYPE_IDX_DIRECTORY )
return ;
2011-02-16 15:07:06 -05:00
2012-04-12 15:30:41 -04:00
QString searchId ;
QTreeWidgetItem * ci = ui . searchSummaryWidget - > currentItem ( ) ;
if ( ci ) {
/* get the searchId text */
searchId = ci - > text ( SS_SEARCH_ID_COL ) ;
}
/* show only matching file types in main window */
int items = ui . searchResultWidget - > topLevelItemCount ( ) ;
for ( int i = 0 ; i < items ; i + + )
{
hideOrShowSearchResult ( ui . searchResultWidget - > topLevelItem ( i ) , searchId , index ) ;
}
2011-02-16 15:07:06 -05:00
}
2012-04-12 15:30:41 -04:00
void SearchDialog : : filterItems ( )
2011-02-16 15:07:06 -05:00
{
2012-04-05 17:03:03 -04:00
int count = ui . searchResultWidget - > topLevelItemCount ( ) ;
for ( int index = 0 ; index < count ; index + + ) {
2012-04-12 15:30:41 -04:00
hideOrShowSearchResult ( ui . searchResultWidget - > topLevelItem ( index ) ) ;
2011-02-16 15:07:06 -05:00
}
}
2012-04-05 17:03:03 -04:00
bool SearchDialog : : filterItem ( QTreeWidgetItem * item , const QString & text , int filterColumn )
2011-02-16 15:07:06 -05:00
{
2012-04-05 17:03:03 -04:00
bool visible = true ;
2011-02-16 15:07:06 -05:00
2012-04-05 17:03:03 -04:00
if ( text . isEmpty ( ) = = false ) {
if ( item - > text ( filterColumn ) . contains ( text , Qt : : CaseInsensitive ) = = false ) {
visible = false ;
2011-02-16 15:07:06 -05:00
}
}
2012-04-05 17:03:03 -04:00
int visibleChildCount = 0 ;
int count = item - > childCount ( ) ;
for ( int index = 0 ; index < count ; index + + ) {
if ( filterItem ( item - > child ( index ) , text , filterColumn ) ) {
visibleChildCount + + ;
2011-02-16 15:07:06 -05:00
}
}
2012-04-05 17:03:03 -04:00
if ( visible | | visibleChildCount ) {
item - > setHidden ( false ) ;
2011-02-16 15:07:06 -05:00
} else {
2012-04-05 17:03:03 -04:00
item - > setHidden ( true ) ;
2011-02-16 15:07:06 -05:00
}
2012-04-05 17:03:03 -04:00
return ( visible | | visibleChildCount ) ;
2011-02-16 15:07:06 -05:00
}