File: devicesmodel.cpp

package info (click to toggle)
cantata 3.4.0.ds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,428 kB
  • sloc: cpp: 109,584; perl: 1,366; xml: 722; python: 139; lex: 110; sh: 105; yacc: 78; makefile: 8
file content (960 lines) | stat: -rw-r--r-- 30,140 bytes parent folder | download
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
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
/*
 * Cantata
 *
 * Copyright (c) 2011-2022 Craig Drummond <craig.p.drummond@gmail.com>
 *
 * ----
 *
 * 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; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "devicesmodel.h"
#include "config.h"
#include "devices/mountpoints.h"
#include "devices/umsdevice.h"
#include "gui/settings.h"
#include "gui/stdactions.h"
#include "http/httpserver.h"
#include "mpd-interface/mpdconnection.h"
#include "mpd-interface/mpdparseutils.h"
#include "musiclibraryitemalbum.h"
#include "musiclibraryitemartist.h"
#include "musiclibraryitemroot.h"
#include "musiclibraryitemsong.h"
#include "playqueuemodel.h"
#include "roles.h"
#include "support/action.h"
#include "widgets/icons.h"
#include "widgets/mirrormenu.h"
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
#include "devices/audiocddevice.h"
#endif
#include "solid-lite/device.h"
#include "solid-lite/deviceinterface.h"
#include "solid-lite/devicenotifier.h"
#include "solid-lite/opticaldisc.h"
#include "solid-lite/portablemediaplayer.h"
#include "solid-lite/storageaccess.h"
#include "solid-lite/storagedrive.h"
#include "solid-lite/storagevolume.h"
#include "support/globalstatic.h"
#include "support/utils.h"
#include <QMimeData>
#include <QStringList>
#include <QTimer>
#include <algorithm>

#include <QDebug>
static bool debugIsEnabled = false;
#define DBUG \
	if (debugIsEnabled) qWarning() << metaObject()->className() << __FUNCTION__
void DevicesModel::enableDebug()
{
	debugIsEnabled = true;
}

bool DevicesModel::debugEnabled()
{
	return debugIsEnabled;
}

QString DevicesModel::fixDevicePath(const QString& path)
{
	// Remove MTP IDs, and display storage...
	if (path.startsWith(QChar('{')) && path.contains(QChar('}'))) {
		int end = path.indexOf(QChar('}'));
		QStringList details = path.mid(1, end - 1).split(QChar('/'));
		if (details.length() > 3) {
			return QChar('(') + details.at(3) + QLatin1String(") ") + path.mid(end + 1);
		}
		return path.mid(end + 1);
	}
	return path;
}

GLOBAL_STATIC(DevicesModel, instance)

DevicesModel::DevicesModel(QObject* parent)
	: MusicLibraryModel(parent), itemMenu(nullptr), enabled(false), inhibitMenuUpdate(false)
{
	configureAction = new Action(Icons::self()->configureIcon, tr("Configure Device"), this);
	refreshAction = new Action(Icons::self()->reloadIcon, tr("Refresh Device"), this);
	connectAction = new Action(Icons::self()->connectIcon, tr("Connect Device"), this);
	disconnectAction = new Action(Icons::self()->disconnectIcon, tr("Disconnect Device"), this);
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	editAction = new Action(Icons::self()->editIcon, tr("Edit CD Details"), this);
#endif
	updateItemMenu();
	connect(this, SIGNAL(add(const QStringList&, int, quint8, bool)), MPDConnection::self(), SLOT(add(const QStringList&, int, quint8, bool)));
}

DevicesModel::~DevicesModel()
{
	qDeleteAll(collections);
}

QModelIndex DevicesModel::index(int row, int column, const QModelIndex& parent) const
{
	if (!hasIndex(row, column, parent)) {
		return QModelIndex();
	}

	if (parent.isValid()) {
		MusicLibraryItem* p = static_cast<MusicLibraryItem*>(parent.internalPointer());

		if (p) {
			return row < p->childCount() ? createIndex(row, column, p->childItem(row)) : QModelIndex();
		}
	}
	else {
		return row < collections.count() ? createIndex(row, column, collections.at(row)) : QModelIndex();
	}

	return QModelIndex();
}

QModelIndex DevicesModel::parent(const QModelIndex& index) const
{
	if (!index.isValid()) {
		return QModelIndex();
	}

	MusicLibraryItem* childItem = static_cast<MusicLibraryItem*>(index.internalPointer());
	MusicLibraryItem* parentItem = childItem->parentItem();

	if (parentItem) {
		return createIndex(parentItem->parentItem() ? parentItem->row() : row(parentItem), 0, parentItem);
	}
	else {
		return QModelIndex();
	}
}

int DevicesModel::rowCount(const QModelIndex& parent) const
{
	if (parent.column() > 0) {
		return 0;
	}

	return parent.isValid() ? static_cast<MusicLibraryItem*>(parent.internalPointer())->childCount() : collections.count();
}

void DevicesModel::getDetails(QSet<QString>& artists, QSet<QString>& albumArtists, QSet<QString>& composers, QSet<QString>& albums, QSet<QString>& genres)
{
	for (MusicLibraryItemRoot* col : collections) {
		col->getDetails(artists, albumArtists, composers, albums, genres);
	}
}

int DevicesModel::indexOf(const QString& id)
{
	int i = 0;
	for (MusicLibraryItemRoot* col : collections) {
		if (col->id() == id) {
			return i;
		}
		i++;
	}
	return -1;
}

QList<Song> DevicesModel::songs(const QModelIndexList& indexes, bool playableOnly, bool fullPath) const
{
	QMap<MusicLibraryItem*, QList<Song>> colSongs;
	QMap<MusicLibraryItem*, QSet<QString>> colFiles;

	for (QModelIndex index : indexes) {
		MusicLibraryItem* item = static_cast<MusicLibraryItem*>(index.internalPointer());
		MusicLibraryItem* p = item;

		while (p->parentItem()) {
			p = p->parentItem();
		}

		if (!p) {
			continue;
		}

		MusicLibraryItemRoot* parent = static_cast<MusicLibraryItemRoot*>(p);

		if (playableOnly && !parent->canPlaySongs()) {
			continue;
		}

		switch (item->itemType()) {
		case MusicLibraryItem::Type_Root: {
			if (static_cast<MusicLibraryItemRoot*>(parent)->flat()) {
				for (const MusicLibraryItem* song : static_cast<const MusicLibraryItemContainer*>(item)->childItems()) {
					if (MusicLibraryItem::Type_Song == song->itemType() && !colFiles[parent].contains(static_cast<const MusicLibraryItemSong*>(song)->file())) {
						colSongs[parent] << parent->fixPath(static_cast<const MusicLibraryItemSong*>(song)->song(), fullPath);
						colFiles[parent] << static_cast<const MusicLibraryItemSong*>(song)->file();
					}
				}
			}
			else {
				// First, sort all artists as they would appear in UI...
				QList<MusicLibraryItem*> artists = static_cast<const MusicLibraryItemContainer*>(item)->childItems();
				if (artists.isEmpty()) {
					break;
				}

				std::sort(artists.begin(), artists.end(), MusicLibraryItemArtist::lessThan);

				for (MusicLibraryItem* a : artists) {
					const MusicLibraryItemContainer* artist = static_cast<const MusicLibraryItemContainer*>(a);
					// Now sort all albums as they would appear in UI...
					QList<MusicLibraryItem*> artistAlbums = artist->childItems();
					std::sort(artistAlbums.begin(), artistAlbums.end(), MusicLibraryItemAlbum::lessThan);
					for (MusicLibraryItem* i : artistAlbums) {
						const MusicLibraryItemContainer* album = static_cast<const MusicLibraryItemContainer*>(i);
						for (const MusicLibraryItem* song : album->childItems()) {
							if (MusicLibraryItem::Type_Song == song->itemType() && !colFiles[parent].contains(static_cast<const MusicLibraryItemSong*>(song)->file())) {
								colSongs[parent] << parent->fixPath(static_cast<const MusicLibraryItemSong*>(song)->song(), fullPath);
								colFiles[parent] << static_cast<const MusicLibraryItemSong*>(song)->file();
							}
						}
					}
				}
			}
			break;
		}
		case MusicLibraryItem::Type_Artist: {
			// First, sort all albums as they would appear in UI...
			QList<MusicLibraryItem*> artistAlbums = static_cast<const MusicLibraryItemContainer*>(item)->childItems();
			std::sort(artistAlbums.begin(), artistAlbums.end(), MusicLibraryItemAlbum::lessThan);

			for (MusicLibraryItem* i : artistAlbums) {
				const MusicLibraryItemContainer* album = static_cast<const MusicLibraryItemContainer*>(i);
				for (const MusicLibraryItem* song : album->childItems()) {
					if (MusicLibraryItem::Type_Song == song->itemType() && !colFiles[parent].contains(static_cast<const MusicLibraryItemSong*>(song)->file())) {
						colSongs[parent] << parent->fixPath(static_cast<const MusicLibraryItemSong*>(song)->song(), fullPath);
						colFiles[parent] << static_cast<const MusicLibraryItemSong*>(song)->file();
					}
				}
			}
			break;
		}
		case MusicLibraryItem::Type_Album:
			for (const MusicLibraryItem* song : static_cast<const MusicLibraryItemContainer*>(item)->childItems()) {
				if (MusicLibraryItem::Type_Song == song->itemType() && !colFiles[parent].contains(static_cast<const MusicLibraryItemSong*>(song)->file())) {
					colSongs[parent] << parent->fixPath(static_cast<const MusicLibraryItemSong*>(song)->song(), fullPath);
					colFiles[parent] << static_cast<const MusicLibraryItemSong*>(song)->file();
				}
			}
			break;
		case MusicLibraryItem::Type_Song:
			if (!colFiles[parent].contains(static_cast<const MusicLibraryItemSong*>(item)->file())) {
				colSongs[parent] << parent->fixPath(static_cast<const MusicLibraryItemSong*>(item)->song(), fullPath);
				colFiles[parent] << static_cast<const MusicLibraryItemSong*>(item)->file();
			}
			break;
		default:
			break;
		}
	}

	QList<Song> songs;
	QMap<MusicLibraryItem*, QList<Song>>::Iterator it(colSongs.begin());
	QMap<MusicLibraryItem*, QList<Song>>::Iterator end(colSongs.end());

	for (; it != end; ++it) {
		songs.append(it.value());
	}

	return songs;
}

QStringList DevicesModel::filenames(const QModelIndexList& indexes, bool playableOnly, bool fullPath) const
{
	QList<Song> songList = songs(indexes, playableOnly, fullPath);
	QStringList fnames;
	for (const Song& s : songList) {
		fnames.append(s.file);
	}
	return fnames;
}

bool DevicesModel::setData(const QModelIndex& index, const QVariant& value, int role)
{
	if (!index.isValid()) {
		return false;
	}

#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	if (Cantata::Role_Image == role) {
		MusicLibraryItem* item = static_cast<MusicLibraryItem*>(index.internalPointer());

		if (MusicLibraryItem::Type_Root == item->itemType()) {
			Device* dev = static_cast<Device*>(item);
			if (Device::AudioCd == dev->devType()) {
				static_cast<AudioCdDevice*>(dev)->scaleCoverPix(value.toInt());
				return true;
			}
		}
	}
#endif
	return MusicLibraryModel::setData(index, value, role);
}

QVariant DevicesModel::data(const QModelIndex& index, int role) const
{
	if (!index.isValid()) {
		return QVariant();
	}

	MusicLibraryItem* item = static_cast<MusicLibraryItem*>(index.internalPointer());

	switch (role) {
	case Qt::DisplayRole:
		if (MusicLibraryItem::Type_Song == item->itemType()) {
			MusicLibraryItemSong* song = static_cast<MusicLibraryItemSong*>(item);
			if (MusicLibraryItem::Type_Root == song->parentItem()->itemType()) {
				return song->song().trackAndTitleStr();
			}
		}
		break;
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	case Cantata::Role_Image:
		if (MusicLibraryItem::Type_Root == item->itemType()) {
			Device* dev = static_cast<Device*>(item);
			if (Device::AudioCd == dev->devType()) {
				return static_cast<AudioCdDevice*>(dev)->coverPix();
			}
		}
		break;
#endif
	case Cantata::Role_SubText:
		if (MusicLibraryItem::Type_Root == item->itemType()) {
			Device* dev = static_cast<Device*>(item);
			if (!dev->statusMessage().isEmpty()) {
				return dev->statusMessage();
			}
			if (!dev->isConnected()) {
				QString sub = dev->subText();
				return tr("Not Connected") + (sub.isEmpty() ? QString() : (Song::constSep + sub));
			}
			if (Device::AudioCd == dev->devType()) {
				return dev->subText();
			}
		}
		break;
	case Cantata::Role_Capacity:
		if (MusicLibraryItem::Type_Root == item->itemType()) {
			return static_cast<Device*>(item)->usedCapacity();
		}
		return QVariant();
	case Cantata::Role_CapacityText:
		if (MusicLibraryItem::Type_Root == item->itemType()) {
			return static_cast<Device*>(item)->capacityString();
		}
		return QVariant();
	case Cantata::Role_Actions: {
		QVariant v;
		if (MusicLibraryItem::Type_Root == item->itemType()) {
			QList<Action*> actions;
			if (Device::AudioCd != static_cast<Device*>(item)->devType()) {
				actions << configureAction;
			}
			else if (HttpServer::self()->isAlive()) {
				actions << StdActions::self()->replacePlayQueueAction;
			}
			actions << refreshAction;
			if (static_cast<Device*>(item)->supportsDisconnect()) {
				actions << (static_cast<Device*>(item)->isConnected() ? disconnectAction : connectAction);
			}
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
			if (Device::AudioCd == static_cast<Device*>(item)->devType()) {
				actions << editAction;
			}
#endif
			v.setValue(actions);
		}
		else if (root(item)->canPlaySongs() && HttpServer::self()->isAlive()) {
			v.setValue(QList<Action*>() << StdActions::self()->replacePlayQueueAction << StdActions::self()->appendToPlayQueueAction);
		}
		return v;
	}
	case Cantata::Role_ListImage:
		return MusicLibraryItem::Type_Album == item->itemType();
	default:
		break;
	}
	return MusicLibraryModel::data(index, role);
}

void DevicesModel::clear(bool clearConfig)
{
	inhibitMenuUpdate = true;
	QSet<QString> remoteUdis;
	QSet<QString> udis;
	for (MusicLibraryItemRoot* col : collections) {
		Device* dev = static_cast<Device*>(col);
		if (Device::RemoteFs == dev->devType()) {
			remoteUdis.insert(dev->id());
		}
		else {
			udis.insert(dev->id());
		}
	}

	for (const QString& u : udis) {
		deviceRemoved(u);
	}
	for (const QString& u : remoteUdis) {
		removeRemoteDevice(u, clearConfig);
	}

	collections.clear();
	volumes.clear();
	inhibitMenuUpdate = false;
	updateItemMenu();
}

void DevicesModel::setEnabled(bool e)
{
	StdActions::self()->copyToDeviceAction->setVisible(e);

	if (e == enabled) {
		return;
	}

	enabled = e;

	inhibitMenuUpdate = true;
	if (enabled) {
		connect(Solid::DeviceNotifier::instance(), SIGNAL(deviceAdded(const QString&)), this, SLOT(deviceAdded(const QString&)));
		connect(Solid::DeviceNotifier::instance(), SIGNAL(deviceRemoved(const QString&)), this, SLOT(deviceRemoved(const QString&)));
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
		connect(Covers::self(), SIGNAL(cover(const Song&, const QImage&, const QString&)),
		        this, SLOT(setCover(const Song&, const QImage&, const QString&)));
#endif
		// Call loadLocal via a timer, so that upon Cantata start-up model is loaded into view before we try and expand items!
		QTimer::singleShot(0, this, SIGNAL(loadLocal()));
		connect(MountPoints::self(), SIGNAL(updated()), this, SLOT(mountsChanged()));
#ifdef ENABLE_REMOTE_DEVICES
		loadRemote();
#endif
	}
	else {
		stop();
		clear(false);
	}
	inhibitMenuUpdate = false;
	updateItemMenu();
}

void DevicesModel::stop()
{
	for (MusicLibraryItemRoot* col : collections) {
		static_cast<Device*>(col)->stop();
	}

	disconnect(Solid::DeviceNotifier::instance(), SIGNAL(deviceAdded(const QString&)), this, SLOT(deviceAdded(const QString&)));
	disconnect(Solid::DeviceNotifier::instance(), SIGNAL(deviceRemoved(const QString&)), this, SLOT(deviceRemoved(const QString&)));
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	disconnect(Covers::self(), SIGNAL(cover(const Song&, const QImage&, const QString&)),
	           this, SLOT(setCover(const Song&, const QImage&, const QString&)));
#endif
	disconnect(MountPoints::self(), SIGNAL(updated()), this, SLOT(mountsChanged()));
#if defined ENABLE_REMOTE_DEVICES
	unmountRemote();
#endif
}

Device* DevicesModel::device(const QString& udi)
{
	int idx = indexOf(udi);
	return idx < 0 ? nullptr : static_cast<Device*>(collections.at(idx));
}

void DevicesModel::setCover(const Song& song, const QImage& img, const QString& file)
{
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	DBUG << "Set CDDA cover" << song.file << img.isNull() << file << song.isCdda();
	if (song.isCdda()) {
		int idx = indexOf(song.title);
		if (idx >= 0) {
			Device* dev = static_cast<Device*>(collections.at(idx));
			if (Device::AudioCd == dev->devType()) {
				DBUG << "Set cover of CD";
				Covers::self()->updateCover(song, img, file);
				static_cast<AudioCdDevice*>(dev)->setCover(song, img, file);
			}
		}
	}
#else
	Q_UNUSED(song)
	Q_UNUSED(img)
	Q_UNUSED(file)
#endif
}

void DevicesModel::setCover(const Song& song, const QImage& img)
{
	DBUG << "Set album cover" << song.file << img.isNull();
	if (img.isNull()) {
		return;
	}

	Device* dev = qobject_cast<Device*>(sender());
	if (!dev) {
		return;
	}
	int i = collections.indexOf(dev);
	if (i < 0) {
		return;
	}
	MusicLibraryItemArtist* artistItem = dev->artist(song, false);
	if (artistItem) {
		MusicLibraryItemAlbum* albumItem = artistItem->album(song, false);
		if (albumItem) {
			DBUG << "Set cover of album";
			Covers::self()->updateCover(song, img, QString());
			QModelIndex idx = index(albumItem->row(), 0, index(artistItem->row(), 0, index(i, 0, QModelIndex())));
			emit dataChanged(idx, idx);
		}
	}
}

void DevicesModel::deviceUpdating(const QString& udi, bool state)
{
	int idx = indexOf(udi);
	if (idx >= 0) {
		Device* dev = static_cast<Device*>(collections.at(idx));

		if (state) {
			QModelIndex modelIndex = createIndex(idx, 0, dev);
			emit dataChanged(modelIndex, modelIndex);
		}
		else {
			if (dev->haveUpdate()) {
				dev->applyUpdate();
			}
			QModelIndex modelIndex = createIndex(idx, 0, dev);
			emit dataChanged(modelIndex, modelIndex);
			emit updated(modelIndex);
		}
	}
}

Qt::ItemFlags DevicesModel::flags(const QModelIndex& index) const
{
	if (index.isValid()) {
		return Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDragEnabled;
	}
	return Qt::NoItemFlags;
}

QStringList DevicesModel::playableUrls(const QModelIndexList& indexes) const
{
	QList<Song> songList = songs(indexes, true, true);
	QStringList urls;
	for (const Song& s : songList) {
		QByteArray encoded = HttpServer::self()->encodeUrl(s);
		if (!encoded.isEmpty()) {
			urls.append(encoded);
		}
	}
	return urls;
}

void DevicesModel::emitAddToDevice()
{
	QAction* act = qobject_cast<QAction*>(sender());

	if (act) {
		emit addToDevice(act->data().toString());
	}
}

void DevicesModel::deviceAdded(const QString& udi)
{
	if (indexOf(udi) >= 0) {
		return;
	}

	Solid::Device device(udi);
	DBUG << "Solid device added udi:" << device.udi() << "product:" << device.product() << "vendor:" << device.vendor();
	Solid::StorageAccess* ssa = nullptr;
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	Solid::OpticalDisc* opt = device.as<Solid::OpticalDisc>();

	if (opt && (opt->availableContent() & Solid::OpticalDisc::Audio)) {
		DBUG << "device is audiocd";
	}
	else
#endif
			if ((ssa = device.as<Solid::StorageAccess>())) {
		if ((!device.parent().as<Solid::StorageDrive>() || Solid::StorageDrive::Usb != device.parent().as<Solid::StorageDrive>()->bus()) && (!device.as<Solid::StorageDrive>() || Solid::StorageDrive::Usb != device.as<Solid::StorageDrive>()->bus())) {
			DBUG << "Found Solid::StorageAccess that is not usb, skipping";
			return;
		}
		DBUG << "volume is generic storage";
		if (!volumes.contains(device.udi())) {
			connect(ssa, SIGNAL(accessibilityChanged(bool, const QString&)), this, SLOT(accessibilityChanged(bool, const QString&)));
			volumes.insert(device.udi());
		}
	}
	else if (device.is<Solid::StorageDrive>()) {
		DBUG << "device is a Storage drive, still need a volume";
	}
	else if (device.is<Solid::PortableMediaPlayer>()) {
		DBUG << "device is a PMP";
	}
	else {
		DBUG << "device not handled";
		return;
	}
	addLocalDevice(device.udi());
}

void DevicesModel::addLocalDevice(const QString& udi)
{
	if (device(udi)) {
		return;
	}
	Device* dev = Device::create(this, udi);
	if (dev) {
		beginInsertRows(QModelIndex(), collections.count(), collections.count());
		collections.append(dev);
		endInsertRows();
		connect(dev, SIGNAL(updating(const QString&, bool)), SLOT(deviceUpdating(const QString&, bool)));
		connect(dev, SIGNAL(error(const QString&)), SIGNAL(error(const QString&)));
		connect(dev, SIGNAL(cover(const Song&, const QImage&)), SLOT(setCover(const Song&, const QImage&)));
		connect(dev, SIGNAL(updatedDetails(QList<Song>)), SIGNAL(updatedDetails(QList<Song>)));
		connect(dev, SIGNAL(play(QList<Song>)), SLOT(play(QList<Song>)));
		connect(dev, SIGNAL(renamed()), this, SLOT(updateItemMenu()));
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
		if (Device::AudioCd == dev->devType()) {
			connect(static_cast<AudioCdDevice*>(dev), SIGNAL(matches(const QString&, const QList<CdAlbum>&)),
			        SIGNAL(matches(const QString&, const QList<CdAlbum>&)));
			if (!autoplayCd.isEmpty() && static_cast<AudioCdDevice*>(dev)->isAudioDevice(autoplayCd)) {
				autoplayCd = QString();
				static_cast<AudioCdDevice*>(dev)->autoplay();
			}
		}
#endif
		updateItemMenu();
	}
}

void DevicesModel::deviceRemoved(const QString& udi)
{
	int idx = indexOf(udi);
	DBUG << "Solid device removed udi = " << udi << idx;
	if (idx >= 0) {
		if (volumes.contains(udi)) {
			Solid::Device device(udi);
			Solid::StorageAccess* ssa = device.as<Solid::StorageAccess>();
			if (ssa) {
				disconnect(ssa, SIGNAL(accessibilityChanged(bool, const QString&)), this, SLOT(accessibilityChanged(bool, const QString&)));
			}
			volumes.remove(udi);
		}

		beginRemoveRows(QModelIndex(), idx, idx);
		Device* dev = static_cast<Device*>(collections.takeAt(idx));
		dev->deleteLater();
#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
		if (Device::AudioCd == dev->devType()) {
			static_cast<AudioCdDevice*>(dev)->dequeue();
		}
#endif
		endRemoveRows();
		updateItemMenu();
	}
}

void DevicesModel::accessibilityChanged(bool accessible, const QString& udi)
{
	Q_UNUSED(accessible)
	int idx = indexOf(udi);
	DBUG << "Solid device accesibility changed udi = " << udi << idx << accessible;
	if (idx >= 0) {
		Device* dev = static_cast<Device*>(collections.at(idx));
		if (dev) {
			dev->connectionStateChanged();
			QModelIndex modelIndex = createIndex(idx, 0, dev);
			emit dataChanged(modelIndex, modelIndex);
		}
	}
}
void DevicesModel::addRemoteDevice(const DeviceOptions& opts, RemoteFsDevice::Details details)
{
#ifdef ENABLE_REMOTE_DEVICES
	Device* dev = RemoteFsDevice::create(this, opts, details);

	if (dev) {
		beginInsertRows(QModelIndex(), collections.count(), collections.count());
		collections.append(dev);
		endInsertRows();
		connect(dev, SIGNAL(updating(const QString&, bool)), SLOT(deviceUpdating(const QString&, bool)));
		connect(dev, SIGNAL(error(const QString&)), SIGNAL(error(const QString&)));
		connect(dev, SIGNAL(cover(const Song&, const QImage&)), SLOT(setCover(const Song&, const QImage&)));
		if (Device::RemoteFs == dev->devType()) {
			connect(static_cast<RemoteFsDevice*>(dev), SIGNAL(udiChanged()), SLOT(remoteDeviceUdiChanged()));
		}
		updateItemMenu();
	}
#else
	Q_UNUSED(opts)
	Q_UNUSED(details)
#endif
}

void DevicesModel::removeRemoteDevice(const QString& udi, bool removeFromConfig)
{
#ifdef ENABLE_REMOTE_DEVICES
	int idx = indexOf(udi);
	if (idx < 0) {
		return;
	}

	Device* dev = static_cast<Device*>(collections.at(idx));

	if (dev && Device::RemoteFs == dev->devType()) {
		beginRemoveRows(QModelIndex(), idx, idx);
		// Remove device from list, but do NOT delete - it may be scanning!!!!
		collections.takeAt(idx);
		endRemoveRows();
		updateItemMenu();
		RemoteFsDevice* rfs = qobject_cast<RemoteFsDevice*>(dev);
		if (rfs) {
			// Destroy will stop device, and delete it (via deleteLater())
			rfs->destroy(removeFromConfig);
		}
	}
#else
	Q_UNUSED(udi)
	Q_UNUSED(removeFromConfig)
#endif
}

void DevicesModel::remoteDeviceUdiChanged()
{
#ifdef ENABLE_REMOTE_DEVICES
	updateItemMenu();
#endif
}

void DevicesModel::mountsChanged()
{
#ifdef ENABLE_REMOTE_DEVICES
	for (MusicLibraryItemRoot* col : collections) {
		Device* dev = static_cast<Device*>(col);
		if (Device::RemoteFs == dev->devType() && ((RemoteFsDevice*)dev)->getDetails().isLocalFile()) {
			if (0 == dev->childCount()) {
				((RemoteFsDevice*)dev)->load();
			}
			else if (!dev->isConnected()) {
				((RemoteFsDevice*)dev)->clear();
			}
		}
	}
#endif

	// For some reason if a device without a partition (e.g. /dev/sdc) is mounted whilst cantata is running, then we receive no deviceAdded signal
	// So, as a work-around, each time a device is mounted - check for all local collections. :-)
	// BUG:127
	loadLocal();
}

void DevicesModel::loadLocal()
{
	// Build set of currently known MTP/UMS collections...
	QSet<QString> existingUdis;
	for (MusicLibraryItemRoot* col : collections) {
		Device* dev = static_cast<Device*>(col);
		if (Device::Mtp == dev->devType() || Device::Ums == dev->devType()) {
			existingUdis.insert(dev->id());
		}
	}

	QList<Solid::Device> deviceList = Solid::Device::listFromType(Solid::DeviceInterface::PortableMediaPlayer);
	for (const Solid::Device& device : deviceList) {
		if (existingUdis.contains(device.udi())) {
			existingUdis.remove(device.udi());
			continue;
		}
		if (device.as<Solid::StorageDrive>()) {
			DBUG << "Solid PMP that is also a StorageDrive, skipping, udi:" << device.udi() << "product:" << device.product() << "vendor:" << device.vendor();
			continue;
		}
		DBUG << "Solid::PortableMediaPlayer with udi:" << device.udi() << "product:" << device.product() << "vendor:" << device.vendor();
		addLocalDevice(device.udi());
	}
	deviceList = Solid::Device::listFromType(Solid::DeviceInterface::StorageAccess);
	for (const Solid::Device& device : deviceList) {
		if (existingUdis.contains(device.udi())) {
			existingUdis.remove(device.udi());
			continue;
		}
		DBUG << "Solid::StorageAccess with udi:" << device.udi() << "product:" << device.product() << "vendor:" << device.vendor();
		const Solid::StorageAccess* ssa = device.as<Solid::StorageAccess>();

		if (ssa) {
			if ((!device.parent().as<Solid::StorageDrive>() || Solid::StorageDrive::Usb != device.parent().as<Solid::StorageDrive>()->bus()) && (!device.as<Solid::StorageDrive>() || Solid::StorageDrive::Usb != device.as<Solid::StorageDrive>()->bus())) {
				DBUG << "Solid::StorageAccess that is not usb, skipping";
				continue;
			}
			if (!volumes.contains(device.udi())) {
				connect(ssa, SIGNAL(accessibilityChanged(bool, const QString&)), this, SLOT(accessibilityChanged(bool, const QString&)));
				volumes.insert(device.udi());
			}
			addLocalDevice(device.udi());
		}
	}

#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
	deviceList = Solid::Device::listFromType(Solid::DeviceInterface::OpticalDisc);
	for (const Solid::Device& device : deviceList) {
		if (existingUdis.contains(device.udi())) {
			existingUdis.remove(device.udi());
			continue;
		}
		DBUG << "Solid::OpticalDisc with udi:" << device.udi() << "product:" << device.product() << "vendor:" << device.vendor();
		const Solid::OpticalDisc* opt = device.as<Solid::OpticalDisc>();
		if (opt && (opt->availableContent() & Solid::OpticalDisc::Audio)) {
			addLocalDevice(device.udi());
		}
		else {
			DBUG << "Solid::OpticalDisc that is not audio, skipping";
		}
	}
#endif

	// Remove any previous MTP/UMS devices that were not listed above.
	// This is to fix BUG:127
	for (const QString& udi : existingUdis) {
		deviceRemoved(udi);
	}
}

#ifdef ENABLE_REMOTE_DEVICES
void DevicesModel::loadRemote()
{
	QList<Device*> rem = RemoteFsDevice::loadAll(this);
	if (rem.count()) {
		beginInsertRows(QModelIndex(), collections.count(), collections.count() + (rem.count() - 1));
		for (Device* dev : rem) {
			collections.append(dev);
			connect(dev, SIGNAL(updating(const QString&, bool)), SLOT(deviceUpdating(const QString&, bool)));
			connect(dev, SIGNAL(error(const QString&)), SIGNAL(error(const QString&)));
			connect(dev, SIGNAL(cover(const Song&, const QImage&)), SLOT(setCover(const Song&, const QImage&)));
			if (Device::RemoteFs == dev->devType()) {
				connect(static_cast<RemoteFsDevice*>(dev), SIGNAL(udiChanged()), SLOT(remoteDeviceUdiChanged()));
			}
		}
		endInsertRows();
		updateItemMenu();
	}
}

void DevicesModel::unmountRemote()
{
	for (MusicLibraryItemRoot* col : collections) {
		Device* dev = static_cast<Device*>(col);
		if (Device::RemoteFs == dev->devType()) {
			static_cast<RemoteFsDevice*>(dev)->unmount();
		}
	}
}
#endif

#if defined CDDB_FOUND || defined MusicBrainz5_FOUND
void DevicesModel::playCd(const QString& dev)
{
	for (MusicLibraryItemRoot* col : collections) {
		Device* d = static_cast<Device*>(col);
		if (Device::AudioCd == d->devType() && static_cast<AudioCdDevice*>(d)->isAudioDevice(dev)) {
			static_cast<AudioCdDevice*>(d)->autoplay();
			return;
		}
	}
	autoplayCd = dev;
}

#endif

static bool lessThan(const QString& left, const QString& right)
{
	return Utils::compare(left, right) < 0;
}

void DevicesModel::updateItemMenu()
{
	if (inhibitMenuUpdate) {
		return;
	}

	if (!itemMenu) {
		itemMenu = new MirrorMenu(nullptr);
	}

	itemMenu->clear();

	if (!collections.isEmpty()) {
		QMap<QString, const MusicLibraryItemRoot*> items;

		for (const MusicLibraryItemRoot* d : collections) {
			if (Device::AudioCd != static_cast<const Device*>(d)->devType()) {
				items.insert(d->data(), d);
			}
		}

		QStringList keys = items.keys();
		std::sort(keys.begin(), keys.end(), lessThan);

		for (const QString& k : keys) {
			const MusicLibraryItemRoot* d = items[k];
			QAction* act = itemMenu->addAction(d->icon(), k, this, SLOT(emitAddToDevice()));
			act->setData(d->id());
			Action::initIcon(act);
		}
	}

	if (itemMenu->isEmpty()) {
		itemMenu->addAction(tr("No Devices Attached"))->setEnabled(false);
	}
}

QMimeData* DevicesModel::mimeData(const QModelIndexList& indexes) const
{
	QMimeData* mimeData = nullptr;
	QStringList paths = playableUrls(indexes);

	if (!paths.isEmpty()) {
		mimeData = new QMimeData();
		PlayQueueModel::encode(*mimeData, PlayQueueModel::constUriMimeType, paths);
	}
	return mimeData;
}

void DevicesModel::play(const QList<Song>& songs)
{
	QStringList paths;
	if (HttpServer::self()->isAlive()) {
		for (const Song& s : songs) {
			paths.append(HttpServer::self()->encodeUrl(s));
		}

		if (!paths.isEmpty()) {
			emit add(paths, MPDConnection::ReplaceAndplay, 0, false);
		}
	}
}

#include "moc_devicesmodel.cpp"