Parent: [bb00d8] (diff)

Download this file

dirbrowser.cpp    618 lines (548 with data), 19.2 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
/* Copyright (C) 2014 J.F.Dockes
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <QToolButton>
#include <QTabBar>
#include <QIcon>
#include <QTimer>
#include <QShortcut>
#include <QLineEdit>
#include <QCompleter>
#include "dirbrowser.h"
#include "application.h"
#include "utils/smallut.h"
#include "HelperStructs/Helper.h"
#include "upadapt/upputils.h"
#include "GUI/prefs/sortprefs.h"
#include "HelperStructs/CSettingsStorage.h"
static const QString cstr_searchhistorykey("/Upplay/dirbrowser/searchhistory");
static const QString cstr_dirbrowserstate{"/Upplay/dirbrowser/tabstate"};
static const QString UPnPSearchCheat(
"Album/Artist etc.: just enter a value.<br>"
"UPnP search string example:<br>"
"upnp:artist contains \"bach\" and "
"dc:title contains \"allegro\""
);
static vector<pair<string, string> > allSearchProps{
{pair<string,string>{"upnp:artist", "Artist"}},
{pair<string,string>{"upnp:album", "Album"}},
{pair<string,string>{"dc:title", "Title"}},
{pair<string,string>{"upnp:genre", "Genre"}}
};
DirBrowser::DirBrowser(QWidget *parent, std::shared_ptr<Playlist> pl)
: QWidget(parent), ui(new Ui::DirBrowser), m_pl(pl)
{
QKeySequence seq;
QShortcut *sc;
ui->setupUi(this);
ui->searchFrame->hide();
ui->tabs->setTabsClosable(true);
QToolButton *plusbut = new QToolButton(this);
QIcon icon = QIcon(Helper::getIconPath("addtab.png"));
plusbut->setIcon(icon);
ui->tabs->setCornerWidget(plusbut, Qt::TopRightCorner);
plusbut->setCursor(Qt::ArrowCursor);
plusbut->setAutoRaise(true);
plusbut->setToolTip(tr("Add tab"));
connect(plusbut, SIGNAL(clicked()), this, SLOT(addTab()));
seq = QKeySequence("Ctrl+t");
sc = new QShortcut(seq, this);
connect(sc, SIGNAL (activated()), this, SLOT(addTab()));
seq = QKeySequence("Ctrl+w");
sc = new QShortcut(seq, this);
connect(sc, SIGNAL (activated()), this, SLOT(closeCurrentTab()));
connect(ui->tabs, SIGNAL(currentChanged(int)),
this, SLOT(onCurrentTabChanged(int)));
connect(ui->tabs, SIGNAL(tabCloseRequested(int)),
this, SLOT(closeTab(int)));
icon = QIcon(Helper::getIconPath("cross.png"));
ui->closeSearchTB->setIcon(icon);
connect(ui->closeSearchTB, SIGNAL(clicked()),
this, SLOT(closeSearchPanel()));
seq = QKeySequence("Ctrl+f");
sc = new QShortcut(seq, this);
connect(sc, SIGNAL (activated()), this, SLOT(openSearchPanel()));
seq = QKeySequence("/");
sc = new QShortcut(seq, this);
connect(sc, SIGNAL (activated()), this, SLOT(openSearchPanel()));
seq = QKeySequence("Esc");
sc = new QShortcut(seq, this);
connect(sc, SIGNAL (activated()), this, SLOT(closeSearchPanel()));
seq = QKeySequence(Qt::Key_F3);
sc = new QShortcut(seq, this);
connect(sc, SIGNAL(activated()), this, SLOT(searchNext()));
seq = QKeySequence(Qt::SHIFT + Qt::Key_F3);
sc = new QShortcut(seq, this);
connect(sc, SIGNAL(activated()), this, SLOT(searchPrev()));
connect(ui->nextTB, SIGNAL(clicked()), this, SLOT(searchNext()));
connect(ui->prevTB, SIGNAL(clicked()), this, SLOT(searchPrev()));
seq = QKeySequence("Ctrl+s");
sc = new QShortcut(seq, this);
connect(sc, SIGNAL(activated()), this, SLOT(toggleSearchKind()));
connect(ui->serverSearchCB, SIGNAL(stateChanged(int)),
this, SLOT(onSearchKindChanged(int)));
connect(ui->execSearchPB, SIGNAL(clicked()), this, SLOT(serverSearch()));
onSearchKindChanged(int(ui->serverSearchCB->checkState()));
ui->searchCMB->setToolTip(UPnPSearchCheat);
ui->searchCMB->setInsertPolicy(QComboBox::NoInsert);
QSettings settings;
m_searchHistory = settings.value(cstr_searchhistorykey).toStringList();
ui->searchCMB->addItems(m_searchHistory);
ui->searchCMB->setEditText("");
ui->searchCMB->completer()->setModel(0);
connect(ui->searchCMB->lineEdit(), SIGNAL(textChanged(const QString&)),
this, SLOT(onSearchTextChanged(const QString&)));
connect(ui->searchCMB->lineEdit(), SIGNAL(returnPressed()),
this, SLOT(returnPressedInSearch()));
ui->execSearchPB->hide();
setPlaylist(pl);
connect(QApplication::instance(), SIGNAL(aboutToQuit()),
this, SLOT(onAboutToExit()));
if (!settings.value("norestoretabs").toBool()) {
string tabjs =qs2utf8s(settings.value(cstr_dirbrowserstate).toString());
if (!tabjs.empty()) {
restoreTabs(tabjs);
}
}
}
void DirBrowser::restoreTabs(const string& tabjs)
{
std::vector<std::pair<string, std::vector<CDBrowser::CtPathElt>>>
state = stateFromJson(tabjs);
for (unsigned int tabidx = 0; tabidx < state.size(); tabidx++) {
if (tabidx > 0) {
// the first tab is created with the dirbrowser
addTab();
}
CDBrowser *cdb = cdbFromTabIndex(ui->tabs->count()-1);
if (nullptr == cdb) {
return;
}
cdb->browseInNewTab(u8s2qs(state[tabidx].first), state[tabidx].second);
}
ui->tabs->setCurrentIndex(0);
}
void DirBrowser::onAboutToExit()
{
string json = stateToJson();
QSettings settings;
settings.setValue(cstr_dirbrowserstate, json.c_str());
}
void DirBrowser::setPlaylist(std::shared_ptr<Playlist> pl)
{
m_pl = pl;
for (int i = 0; i < ui->tabs->count(); i++) {
setupTabConnections(i);
}
if (m_pl)
connect(m_pl.get(), SIGNAL(sig_insert_done()),
this, SLOT(onInsertDone()));
}
void DirBrowser::setStyleSheet(bool dark)
{
for (int i = 0; i < ui->tabs->count(); i++) {
CDBrowser *cdb = cdbFromTabIndex(i);
if (cdb) {
cdb->setStyleSheet(dark);
cdb->setZoomFactor(Application::horizontalDPI / 96.0);
}
}
}
void DirBrowser::addTab()
{
QWidget *tab = new QWidget(this);
tab->setObjectName(QString::fromUtf8("tab"));
QVBoxLayout* vl = new QVBoxLayout(tab);
CDBrowser *cdb = new CDBrowser(tab);
cdb->setObjectName(QString::fromUtf8("cdBrowser"));
setupTabConnections(cdb);
vl->addWidget(cdb);
ui->tabs->addTab(tab, QString());
ui->tabs->setCurrentIndex(ui->tabs->count() -1);
}
void DirBrowser::closeCurrentTab()
{
closeTab(ui->tabs->currentIndex());
}
void DirBrowser::closeTab(int i)
{
if (m_insertactive || ui->tabs->count() <= 1)
return;
QWidget *w = ui->tabs->widget(i);
ui->tabs->removeTab(i);
delete w;
}
// Adjust the search panel according the the server caps for the
// active tab
void DirBrowser::onCurrentTabChanged(int)
{
CDBrowser *cdb = currentBrowser();
set<string> caps;
if (cdb)
cdb->getSearchCaps(caps);
QString strcaps = u8s2qs("<i></i>Server searchable fields: ") +
u8s2qs(stringsToString(caps));
if (caps.empty()) {
ui->serverSearchCB->setCheckState(Qt::Unchecked);
ui->serverSearchCB->setEnabled(false);
} else {
QString prevChoice = ui->propsCMB->currentText();
while(ui->propsCMB->count())
ui->propsCMB->removeItem(0);
ui->serverSearchCB->setEnabled(true);
QString scs;
for (const auto& prop : allSearchProps) {
if (caps.find("*") != caps.end() ||
caps.find(prop.first) != caps.end()) {
ui->propsCMB->addItem(u8s2qs(prop.second),
QVariant(u8s2qs(prop.first)));
}
scs += u8s2qs(prop.first.c_str()) + " ";
}
ui->propsCMB->addItem(tr("UPnP search string"), QVariant(u8s2qs("*")));
ui->propsCMB->setToolTip(strcaps);
if (!prevChoice.isEmpty()) {
int i = ui->propsCMB->findText(prevChoice);
if (i >= 0) {
ui->propsCMB->setCurrentIndex(i);
}
}
onSearchKindChanged(ui->serverSearchCB->checkState());
}
}
static QString escapeAmpersand(const QString& in)
{
QString out(in);
return out.replace(QChar('&'), QString::fromUtf8("&&"));
}
void DirBrowser::changeTabTitle(QWidget *w, const QString& tt)
{
int i = ui->tabs->indexOf((QWidget*)w->parent());
if (i >= 0) {
ui->tabs->setTabText(i, escapeAmpersand(tt));
} else {
qDebug() << "changeTabTitle: Widget not found in tabs: " << w;
}
}
void DirBrowser::saveSearchHistory()
{
// Search terms history:
// We want to have the new text at the top and any older identical
// entry to be erased. There is no standard qt policy to do this ?
// So do it by hand.
QString txt = ui->searchCMB->currentText();
QString txtt = txt.trimmed();
int index = ui->searchCMB->findText(txtt);
if (index > 0) {
ui->searchCMB->removeItem(index);
}
if (index != 0) {
ui->searchCMB->insertItem(0, txtt);
ui->searchCMB->setEditText(txt);
}
// Limit saved size to reasonable value
const int maxcount = 200;
int count = ui->searchCMB->count();
if (count > maxcount) {
count = maxcount;
}
m_searchHistory.clear();
for (int index = 0; index < count; index++) {
m_searchHistory.push_back(ui->searchCMB->itemText(index));
}
QSettings settings;
settings.setValue(cstr_searchhistorykey, m_searchHistory);
}
// Any of the tabs searchcaps changed. Update the current one just in case.
void DirBrowser::onSearchcapsChanged()
{
onCurrentTabChanged(-1);
}
void DirBrowser::openSearchPanel()
{
onCurrentTabChanged(-1);
ui->searchFrame->show();
ui->searchCMB->lineEdit()->setFocus();
ui->searchCMB->lineEdit()->selectAll();
}
void DirBrowser::closeSearchPanel()
{
QString text = ui->searchCMB->lineEdit()->text();
if (ui->searchCMB->findText(text))
ui->searchCMB->insertItem(0, text);
ui->searchFrame->hide();
}
void DirBrowser::showSearchPanel(bool yes)
{
if (yes)
openSearchPanel();
else
closeSearchPanel();
}
void DirBrowser::toggleSearchKind()
{
if (!ui->serverSearchCB->isEnabled())
return;
if (ui->serverSearchCB->checkState()) {
ui->serverSearchCB->setCheckState(Qt::Unchecked);
} else {
ui->serverSearchCB->setCheckState(Qt::Checked);
}
onSearchKindChanged(ui->serverSearchCB->checkState());
}
void DirBrowser::onSearchKindChanged(int state)
{
if (state == Qt::Unchecked) {
ui->propsCMB->setEnabled(false);
ui->execSearchPB->hide();
ui->execSearchPB->setEnabled(false);
ui->nextTB->show();
ui->nextTB->setEnabled(true);
ui->prevTB->show();
ui->prevTB->setEnabled(true);
} else {
ui->propsCMB->setEnabled(true);
ui->execSearchPB->show();
ui->execSearchPB->setEnabled(true);
ui->nextTB->hide();
ui->nextTB->setEnabled(false);
ui->prevTB->hide();
ui->prevTB->setEnabled(false);
}
}
void DirBrowser::onSearchTextChanged(const QString& text)
{
// Auto-search on typing only for local searches.
if (!ui->propsCMB->isEnabled()) {
if (!text.isEmpty()) {
doSearch(text, false);
}
}
}
void DirBrowser::searchNext()
{
doSearch(ui->searchCMB->currentText().trimmed(), false);
}
void DirBrowser::searchPrev()
{
doSearch(ui->searchCMB->currentText().trimmed(), true);
}
void DirBrowser::returnPressedInSearch()
{
if (ui->propsCMB->isEnabled()) {
serverSearch();
} else {
QString text = ui->searchCMB->lineEdit()->text();
if (ui->searchCMB->findText(text))
ui->searchCMB->insertItem(0, text);
searchNext();
}
saveSearchHistory();
}
void DirBrowser::serverSearch()
{
QString text = ui->searchCMB->lineEdit()->text().trimmed();
int i = ui->propsCMB->currentIndex();
string prop = qs2utf8s(ui->propsCMB->itemData(i).toString());
if (text != "") {
string iss = qs2utf8s(text);
// prop can be either a field name (e.g. dc:date,
// upnp:artist), or "*" in which case the user is responsible
// for entering an appropriate search"
string ss;
if (prop == "*") {
ss = iss;
} else {
ss.assign(prop);
ss += " contains \"";
for (unsigned i = 0; i < iss.size(); i++) {
if (iss[i] == '"' || iss[i] == '\\')
ss += string("\\");
ss += iss[i];
}
ss += '"';
}
CDBrowser *cdb = currentBrowser();
if (cdb)
cdb->search(ss);
}
}
void DirBrowser::onSortprefs()
{
qDebug() << "DirBrowser::onSortprefs()";
currentBrowser()->refresh();
}
// Perform text search in current tab.
void DirBrowser::doSearch(const QString& text, bool reverse)
{
qDebug() << "DirBrowser::doSearch: text " << text << " reverse " << reverse;
CDBrowser *cdb = currentBrowser();
if (cdb == 0) {
return;
}
#ifdef USING_WEBENGINE
QWebEnginePage::FindFlags options = 0;
if (reverse) {
options |= QWebEnginePage::FindBackward;
}
cdb->findText(text, options, [] (bool) {});
#else
QWebPage::FindFlags options = QWebPage::FindWrapsAroundDocument;
if (reverse)
options |= QWebPage::FindBackward;
cdb->findText(text, options);
#endif
}
void DirBrowser::setInsertActive(bool onoff)
{
m_insertactive = onoff;
if (!m_pl)
m_insertactive = false;
}
bool DirBrowser::insertActive()
{
return m_insertactive;
}
CDBrowser *DirBrowser::currentBrowser()
{
QWidget *tw = ui->tabs->currentWidget();
if (tw == 0)
return 0;
return tw->findChild<CDBrowser*>();
}
void DirBrowser::setupTabConnections(int i)
{
CDBrowser *cdb = cdbFromTabIndex(i);
if (cdb) {
setupTabConnections(cdb);
}
}
void DirBrowser::setupTabConnections(CDBrowser *cdb)
{
cdb->setDirBrowser(this);
disconnect(cdb, SIGNAL(sig_now_in(QWidget *, const QString&)), 0, 0);
connect(cdb, SIGNAL(sig_now_in(QWidget *, const QString&)),
this, SLOT(changeTabTitle(QWidget *, const QString&)));
disconnect(cdb, SIGNAL(sig_tracks_to_playlist(const MetaDataList&)), 0, 0);
if (m_pl)
connect(cdb, SIGNAL(sig_tracks_to_playlist(const MetaDataList&)),
m_pl.get(), SLOT(psl_add_tracks(const MetaDataList&)));
disconnect(cdb, SIGNAL(sig_searchcaps_changed()), 0, 0);
connect(cdb, SIGNAL(sig_searchcaps_changed()),
this, SLOT(onSearchcapsChanged()));
disconnect(cdb,
SIGNAL(sig_browse_in_new_tab(QString,
std::vector<CDBrowser::CtPathElt>)),
0, 0);
connect(cdb,
SIGNAL(sig_browse_in_new_tab(QString,
std::vector<CDBrowser::CtPathElt>)),
this, SLOT(onBrowseInNewTab(QString,
std::vector<CDBrowser::CtPathElt>)));
disconnect(cdb,
SIGNAL(sig_tracks_to_randplay(RandPlayer::PlayMode,
const std::vector<UPnPClient::UPnPDirObject>&)),
0, 0);
connect(cdb,
SIGNAL(sig_tracks_to_randplay(RandPlayer::PlayMode,
const std::vector<UPnPClient::UPnPDirObject>&)),
this, SLOT(onEnterRandPlay(RandPlayer::PlayMode,
const std::vector<UPnPClient::UPnPDirObject>&)));
disconnect(cdb, SIGNAL(sig_rand_stop()), 0, 0);
connect(cdb, SIGNAL(sig_rand_stop()), this, SLOT(onRandStop()));
disconnect(cdb, SIGNAL(sig_sort_order()), 0, 0);
connect(cdb, SIGNAL(sig_sort_order()), this, SIGNAL(sig_sort_order()));
}
void DirBrowser::onEnterRandPlay(RandPlayer::PlayMode mode, const
std::vector<UPnPClient::UPnPDirObject>& ents)
{
if (!m_pl)
return;
qDebug() << "DirBrowser::onEnterRandPlay: " << ents.size() << " tracks";
if (m_randplayer) {
delete m_randplayer;
m_randplayer = 0;
}
if ((m_randplayer = new RandPlayer(mode, ents, this)) == 0) {
qDebug() << "Out of memory";
return;
}
connect(m_randplayer, SIGNAL(sig_tracks_to_playlist(const MetaDataList&)),
this, SLOT(onRandTracksToPlaylist(const MetaDataList&)));
connect(m_pl.get(), SIGNAL(sig_playlist_done()),
m_randplayer, SLOT(playNextSlice()));
connect(m_randplayer, SIGNAL(sig_randplay_done()),
this, SLOT(onRandDone()));
connect(m_randplayer, SIGNAL(sig_next_group_html(QString)),
this, SIGNAL(sig_next_group_html(QString)));
m_randplayer->playNextSlice();
}
void DirBrowser::onRandTracksToPlaylist(const MetaDataList& mdl)
{
if (!m_pl)
return;
// We'll get a playlist_done when the old list is replaced, don't
// want this to trigger a new slice... We should distinguish a
// playlist clear from the ui (which we want to trigger a new
// slice) from this one, but temporarily disconnecting is just
// simpler.
disconnect(m_pl.get(), SIGNAL(sig_playlist_done()),
m_randplayer, SLOT(playNextSlice()));
Playlist_Mode mode = m_pl->mode();
bool replace_saved = mode.replace;
mode.replace = true;
m_pl->psl_change_mode(mode);
m_pl->psl_add_tracks(mdl);
mode.replace = replace_saved;
m_pl->psl_change_mode(mode);
// not necessary for upmpdcli but helps mediaplayer
m_pl->psl_change_track(0);
m_pl->psl_play();
connect(m_pl.get(), SIGNAL(sig_playlist_done()),
m_randplayer, SLOT(playNextSlice()));
}
void DirBrowser::onRandDone()
{
// Is it a good idea to delete randplay from here as we're
// connected to its signal ? Could use a QTimer
onRandStop();
}
void DirBrowser::onRandStop()
{
delete m_randplayer;
m_randplayer = 0;
}
void DirBrowser::onBrowseInNewTab(QString UDN,
vector<CDBrowser::CtPathElt> path)
{
//qDebug() << "onBrowseInNewTab(): " << UDN;
addTab();
CDBrowser *cdb = currentBrowser();
if (cdb)
cdb->browseInNewTab(UDN, path);
}
CDBrowser *DirBrowser::cdbFromTabIndex(int i)
{
CDBrowser *cdb{nullptr};
QWidget *tw = ui->tabs->widget(i);
if (tw) {
cdb = tw->findChild<CDBrowser*>();
}
if (nullptr == cdb) {
qDebug() << "Tab " << i << " not found or has no browser child";
}
return cdb;
}