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
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
|
/***************************************************************************
* Copyright (C) 2012 by Peter Penz <[email protected]> *
* *
* Based on KFilePlacesModel from kdelibs: *
* Copyright (C) 2007 Kevin Ottens <[email protected]> *
* Copyright (C) 2007 David Faure <[email protected]> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#include "placesitemmodel.h"
#include "dolphin_generalsettings.h"
#include <KBookmark>
#include <KBookmarkGroup>
#include <KBookmarkManager>
#include <KComponentData>
#include <KDebug>
#include <KIcon>
#include <kprotocolinfo.h>
#include <KLocale>
#include <KStandardDirs>
#include <KUser>
#include <KGlobal>
#include "placesitem.h"
#include <QAction>
#include <QDate>
#include <QMimeData>
#include <QTimer>
#include <Solid/Device>
#include <Solid/DeviceNotifier>
#include <Solid/OpticalDisc>
#include <Solid/OpticalDrive>
#include <Solid/StorageAccess>
#include <Solid/StorageDrive>
#include <views/dolphinview.h>
#include <views/viewproperties.h>
#ifdef HAVE_BALOO
#include <Baloo/Query>
#include <Baloo/IndexerConfig>
#endif
namespace {
// As long as KFilePlacesView from kdelibs is available in parallel, the
// system-bookmarks for "Recently Saved" and "Search For" should be
// shown only inside the Places Panel. This is necessary as the stored
// URLs needs to get translated to a Baloo-search-URL on-the-fly to
// be independent from changes in the Baloo-search-URL-syntax.
// Hence a prefix to the application-name of the stored bookmarks is
// added, which is only read by PlacesItemModel.
const char* AppNamePrefix = "-places-panel";
}
PlacesItemModel::PlacesItemModel(QObject* parent) :
KStandardItemModel(parent),
m_fileIndexingEnabled(false),
m_hiddenItemsShown(false),
m_availableDevices(),
m_predicate(),
m_bookmarkManager(0),
m_systemBookmarks(),
m_systemBookmarksIndexes(),
m_bookmarkedItems(),
m_hiddenItemToRemove(-1),
m_saveBookmarksTimer(0),
m_updateBookmarksTimer(0),
m_storageSetupInProgress()
{
#ifdef HAVE_BALOO
Baloo::IndexerConfig config;
m_fileIndexingEnabled = config.fileIndexingEnabled();
#endif
const QString file = KStandardDirs::locateLocal("data", "kfileplaces/bookmarks.xml");
m_bookmarkManager = KBookmarkManager::managerForFile(file, "kfilePlaces");
createSystemBookmarks();
initializeAvailableDevices();
loadBookmarks();
const int syncBookmarksTimeout = 100;
m_saveBookmarksTimer = new QTimer(this);
m_saveBookmarksTimer->setInterval(syncBookmarksTimeout);
m_saveBookmarksTimer->setSingleShot(true);
connect(m_saveBookmarksTimer, &QTimer::timeout, this, &PlacesItemModel::saveBookmarks);
m_updateBookmarksTimer = new QTimer(this);
m_updateBookmarksTimer->setInterval(syncBookmarksTimeout);
m_updateBookmarksTimer->setSingleShot(true);
connect(m_updateBookmarksTimer, &QTimer::timeout, this, &PlacesItemModel::updateBookmarks);
connect(m_bookmarkManager, &KBookmarkManager::changed,
m_updateBookmarksTimer, static_cast<void(QTimer::*)()>(&QTimer::start));
connect(m_bookmarkManager, &KBookmarkManager::bookmarksChanged,
m_updateBookmarksTimer, static_cast<void(QTimer::*)()>(&QTimer::start));
}
PlacesItemModel::~PlacesItemModel()
{
saveBookmarks();
qDeleteAll(m_bookmarkedItems);
m_bookmarkedItems.clear();
}
PlacesItem* PlacesItemModel::createPlacesItem(const QString& text,
const KUrl& url,
const QString& iconName)
{
const KBookmark bookmark = PlacesItem::createBookmark(m_bookmarkManager, text, url, iconName);
return new PlacesItem(bookmark);
}
PlacesItem* PlacesItemModel::placesItem(int index) const
{
return dynamic_cast<PlacesItem*>(item(index));
}
int PlacesItemModel::hiddenCount() const
{
int modelIndex = 0;
int hiddenItemCount = 0;
foreach (const PlacesItem* item, m_bookmarkedItems) {
if (item) {
++hiddenItemCount;
} else {
if (placesItem(modelIndex)->isHidden()) {
++hiddenItemCount;
}
++modelIndex;
}
}
return hiddenItemCount;
}
void PlacesItemModel::setHiddenItemsShown(bool show)
{
if (m_hiddenItemsShown == show) {
return;
}
m_hiddenItemsShown = show;
if (show) {
// Move all items that are part of m_bookmarkedItems to the model.
QList<PlacesItem*> itemsToInsert;
QList<int> insertPos;
int modelIndex = 0;
for (int i = 0; i < m_bookmarkedItems.count(); ++i) {
if (m_bookmarkedItems[i]) {
itemsToInsert.append(m_bookmarkedItems[i]);
m_bookmarkedItems[i] = 0;
insertPos.append(modelIndex);
}
++modelIndex;
}
// Inserting the items will automatically insert an item
// to m_bookmarkedItems in PlacesItemModel::onItemsInserted().
// The items are temporary saved in itemsToInsert, so
// m_bookmarkedItems can be shrinked now.
m_bookmarkedItems.erase(m_bookmarkedItems.begin(),
m_bookmarkedItems.begin() + itemsToInsert.count());
for (int i = 0; i < itemsToInsert.count(); ++i) {
insertItem(insertPos[i], itemsToInsert[i]);
}
Q_ASSERT(m_bookmarkedItems.count() == count());
} else {
// Move all items of the model, where the "isHidden" property is true, to
// m_bookmarkedItems.
Q_ASSERT(m_bookmarkedItems.count() == count());
for (int i = count() - 1; i >= 0; --i) {
if (placesItem(i)->isHidden()) {
hideItem(i);
}
}
}
#ifdef PLACESITEMMODEL_DEBUG
kDebug() << "Changed visibility of hidden items";
showModelState();
#endif
}
bool PlacesItemModel::hiddenItemsShown() const
{
return m_hiddenItemsShown;
}
int PlacesItemModel::closestItem(const KUrl& url) const
{
int foundIndex = -1;
int maxLength = 0;
for (int i = 0; i < count(); ++i) {
const KUrl itemUrl = placesItem(i)->url();
if (itemUrl.isParentOf(url)) {
const int length = itemUrl.prettyUrl().length();
if (length > maxLength) {
foundIndex = i;
maxLength = length;
}
}
}
return foundIndex;
}
void PlacesItemModel::appendItemToGroup(PlacesItem* item)
{
if (!item) {
return;
}
int i = 0;
while (i < count() && placesItem(i)->group() != item->group()) {
++i;
}
bool inserted = false;
while (!inserted && i < count()) {
if (placesItem(i)->group() != item->group()) {
insertItem(i, item);
inserted = true;
}
++i;
}
if (!inserted) {
appendItem(item);
}
}
QAction* PlacesItemModel::ejectAction(int index) const
{
const PlacesItem* item = placesItem(index);
if (item && item->device().is<Solid::OpticalDisc>()) {
return new QAction(KIcon("media-eject"), i18nc("@item", "Eject '%1'", item->text()), 0);
}
return 0;
}
QAction* PlacesItemModel::teardownAction(int index) const
{
const PlacesItem* item = placesItem(index);
if (!item) {
return 0;
}
Solid::Device device = item->device();
const bool providesTearDown = device.is<Solid::StorageAccess>() &&
device.as<Solid::StorageAccess>()->isAccessible();
if (!providesTearDown) {
return 0;
}
Solid::StorageDrive* drive = device.as<Solid::StorageDrive>();
if (!drive) {
drive = device.parent().as<Solid::StorageDrive>();
}
bool hotPluggable = false;
bool removable = false;
if (drive) {
hotPluggable = drive->isHotpluggable();
removable = drive->isRemovable();
}
QString iconName;
QString text;
const QString label = item->text();
if (device.is<Solid::OpticalDisc>()) {
text = i18nc("@item", "Release '%1'", label);
} else if (removable || hotPluggable) {
text = i18nc("@item", "Safely Remove '%1'", label);
iconName = "media-eject";
} else {
text = i18nc("@item", "Unmount '%1'", label);
iconName = "media-eject";
}
if (iconName.isEmpty()) {
return new QAction(text, 0);
}
return new QAction(KIcon(iconName), text, 0);
}
void PlacesItemModel::requestEject(int index)
{
const PlacesItem* item = placesItem(index);
if (item) {
Solid::OpticalDrive* drive = item->device().parent().as<Solid::OpticalDrive>();
if (drive) {
connect(drive, &Solid::OpticalDrive::ejectDone,
this, &PlacesItemModel::slotStorageTeardownDone);
drive->eject();
} else {
const QString label = item->text();
const QString message = i18nc("@info", "The device '%1' is not a disk and cannot be ejected.", label);
emit errorMessage(message);
}
}
}
void PlacesItemModel::requestTeardown(int index)
{
const PlacesItem* item = placesItem(index);
if (item) {
Solid::StorageAccess* access = item->device().as<Solid::StorageAccess>();
if (access) {
connect(access, &Solid::StorageAccess::teardownDone,
this, &PlacesItemModel::slotStorageTeardownDone);
access->teardown();
}
}
}
bool PlacesItemModel::storageSetupNeeded(int index) const
{
const PlacesItem* item = placesItem(index);
return item ? item->storageSetupNeeded() : false;
}
void PlacesItemModel::requestStorageSetup(int index)
{
const PlacesItem* item = placesItem(index);
if (!item) {
return;
}
Solid::Device device = item->device();
const bool setup = device.is<Solid::StorageAccess>()
&& !m_storageSetupInProgress.contains(device.as<Solid::StorageAccess>())
&& !device.as<Solid::StorageAccess>()->isAccessible();
if (setup) {
Solid::StorageAccess* access = device.as<Solid::StorageAccess>();
m_storageSetupInProgress[access] = index;
connect(access, &Solid::StorageAccess::setupDone,
this, &PlacesItemModel::slotStorageSetupDone);
access->setup();
}
}
QMimeData* PlacesItemModel::createMimeData(const KItemSet& indexes) const
{
KUrl::List urls;
QByteArray itemData;
QDataStream stream(&itemData, QIODevice::WriteOnly);
foreach (int index, indexes) {
const KUrl itemUrl = placesItem(index)->url();
if (itemUrl.isValid()) {
urls << itemUrl;
}
stream << index;
}
QMimeData* mimeData = new QMimeData();
if (!urls.isEmpty()) {
urls.populateMimeData(mimeData);
}
mimeData->setData(internalMimeType(), itemData);
return mimeData;
}
bool PlacesItemModel::supportsDropping(int index) const
{
return index >= 0 && index < count();
}
void PlacesItemModel::dropMimeDataBefore(int index, const QMimeData* mimeData)
{
if (mimeData->hasFormat(internalMimeType())) {
// The item has been moved inside the view
QByteArray itemData = mimeData->data(internalMimeType());
QDataStream stream(&itemData, QIODevice::ReadOnly);
int oldIndex;
stream >> oldIndex;
if (oldIndex == index || oldIndex == index - 1) {
// No moving has been done
return;
}
PlacesItem* oldItem = placesItem(oldIndex);
if (!oldItem) {
return;
}
PlacesItem* newItem = new PlacesItem(oldItem->bookmark());
removeItem(oldIndex);
if (oldIndex < index) {
--index;
}
const int dropIndex = groupedDropIndex(index, newItem);
insertItem(dropIndex, newItem);
} else if (mimeData->hasFormat("text/uri-list")) {
// One or more items must be added to the model
const KUrl::List urls = KUrl::List::fromMimeData(mimeData);
for (int i = urls.count() - 1; i >= 0; --i) {
const KUrl& url = urls[i];
QString text = url.fileName();
if (text.isEmpty()) {
text = url.host();
}
if (url.isLocalFile() && !QFileInfo(url.toLocalFile()).isDir()) {
// Only directories are allowed
continue;
}
PlacesItem* newItem = createPlacesItem(text, url);
const int dropIndex = groupedDropIndex(index, newItem);
insertItem(dropIndex, newItem);
}
}
}
KUrl PlacesItemModel::convertedUrl(const KUrl& url)
{
KUrl newUrl = url;
if (url.protocol() == QLatin1String("timeline")) {
newUrl = createTimelineUrl(url);
} else if (url.protocol() == QLatin1String("search")) {
newUrl = createSearchUrl(url);
}
return newUrl;
}
void PlacesItemModel::onItemInserted(int index)
{
const PlacesItem* insertedItem = placesItem(index);
if (insertedItem) {
// Take care to apply the PlacesItemModel-order of the inserted item
// also to the bookmark-manager.
const KBookmark insertedBookmark = insertedItem->bookmark();
const PlacesItem* previousItem = placesItem(index - 1);
KBookmark previousBookmark;
if (previousItem) {
previousBookmark = previousItem->bookmark();
}
m_bookmarkManager->root().moveBookmark(insertedBookmark, previousBookmark);
}
if (index == count() - 1) {
// The item has been appended as last item to the list. In this
// case assure that it is also appended after the hidden items and
// not before (like done otherwise).
m_bookmarkedItems.append(0);
} else {
int modelIndex = -1;
int bookmarkIndex = 0;
while (bookmarkIndex < m_bookmarkedItems.count()) {
if (!m_bookmarkedItems[bookmarkIndex]) {
++modelIndex;
if (modelIndex + 1 == index) {
break;
}
}
++bookmarkIndex;
}
m_bookmarkedItems.insert(bookmarkIndex, 0);
}
triggerBookmarksSaving();
#ifdef PLACESITEMMODEL_DEBUG
kDebug() << "Inserted item" << index;
showModelState();
#endif
}
void PlacesItemModel::onItemRemoved(int index, KStandardItem* removedItem)
{
PlacesItem* placesItem = dynamic_cast<PlacesItem*>(removedItem);
if (placesItem) {
const KBookmark bookmark = placesItem->bookmark();
m_bookmarkManager->root().deleteBookmark(bookmark);
}
const int boomarkIndex = bookmarkIndex(index);
Q_ASSERT(!m_bookmarkedItems[boomarkIndex]);
m_bookmarkedItems.removeAt(boomarkIndex);
triggerBookmarksSaving();
#ifdef PLACESITEMMODEL_DEBUG
kDebug() << "Removed item" << index;
showModelState();
#endif
}
void PlacesItemModel::onItemChanged(int index, const QSet<QByteArray>& changedRoles)
{
const PlacesItem* changedItem = placesItem(index);
if (changedItem) {
// Take care to apply the PlacesItemModel-order of the changed item
// also to the bookmark-manager.
const KBookmark insertedBookmark = changedItem->bookmark();
const PlacesItem* previousItem = placesItem(index - 1);
KBookmark previousBookmark;
if (previousItem) {
previousBookmark = previousItem->bookmark();
}
m_bookmarkManager->root().moveBookmark(insertedBookmark, previousBookmark);
}
if (changedRoles.contains("isHidden")) {
if (!m_hiddenItemsShown && changedItem->isHidden()) {
m_hiddenItemToRemove = index;
QTimer::singleShot(0, this, SLOT(hideItem()));
}
}
triggerBookmarksSaving();
}
void PlacesItemModel::slotDeviceAdded(const QString& udi)
{
const Solid::Device device(udi);
if (!m_predicate.matches(device)) {
return;
}
m_availableDevices << udi;
const KBookmark bookmark = PlacesItem::createDeviceBookmark(m_bookmarkManager, udi);
appendItem(new PlacesItem(bookmark));
}
void PlacesItemModel::slotDeviceRemoved(const QString& udi)
{
if (!m_availableDevices.contains(udi)) {
return;
}
for (int i = 0; i < m_bookmarkedItems.count(); ++i) {
PlacesItem* item = m_bookmarkedItems[i];
if (item && item->udi() == udi) {
m_bookmarkedItems.removeAt(i);
delete item;
return;
}
}
for (int i = 0; i < count(); ++i) {
if (placesItem(i)->udi() == udi) {
removeItem(i);
return;
}
}
}
void PlacesItemModel::slotStorageTeardownDone(Solid::ErrorType error, const QVariant& errorData)
{
if (error && errorData.isValid()) {
emit errorMessage(errorData.toString());
}
}
void PlacesItemModel::slotStorageSetupDone(Solid::ErrorType error,
const QVariant& errorData,
const QString& udi)
{
Q_UNUSED(udi);
const int index = m_storageSetupInProgress.take(sender());
const PlacesItem* item = placesItem(index);
if (!item) {
return;
}
if (error) {
if (errorData.isValid()) {
emit errorMessage(i18nc("@info", "An error occurred while accessing '%1', the system responded: %2",
item->text(),
errorData.toString()));
} else {
emit errorMessage(i18nc("@info", "An error occurred while accessing '%1'",
item->text()));
}
emit storageSetupDone(index, false);
} else {
emit storageSetupDone(index, true);
}
}
void PlacesItemModel::hideItem()
{
hideItem(m_hiddenItemToRemove);
m_hiddenItemToRemove = -1;
}
void PlacesItemModel::updateBookmarks()
{
// Verify whether new bookmarks have been added or existing
// bookmarks have been changed.
KBookmarkGroup root = m_bookmarkManager->root();
KBookmark newBookmark = root.first();
while (!newBookmark.isNull()) {
if (acceptBookmark(newBookmark, m_availableDevices)) {
bool found = false;
int modelIndex = 0;
for (int i = 0; i < m_bookmarkedItems.count(); ++i) {
PlacesItem* item = m_bookmarkedItems[i];
if (!item) {
item = placesItem(modelIndex);
++modelIndex;
}
const KBookmark oldBookmark = item->bookmark();
if (equalBookmarkIdentifiers(newBookmark, oldBookmark)) {
// The bookmark has been found in the model or as
// a hidden item. The content of the bookmark might
// have been changed, so an update is done.
found = true;
if (newBookmark.metaDataItem("UDI").isEmpty()) {
item->setBookmark(newBookmark);
item->setText(i18nc("KFile System Bookmarks", newBookmark.text().toUtf8().data()));
}
break;
}
}
if (!found) {
const QString udi = newBookmark.metaDataItem("UDI");
/*
* See Bug 304878
* Only add a new places item, if the item text is not empty
* and if the device is available. Fixes the strange behaviour -
* add a places item without text in the Places section - when you
* remove a device (e.g. a usb stick) without unmounting.
*/
if (udi.isEmpty() || Solid::Device(udi).isValid()) {
PlacesItem* item = new PlacesItem(newBookmark);
if (item->isHidden() && !m_hiddenItemsShown) {
m_bookmarkedItems.append(item);
} else {
appendItemToGroup(item);
}
}
}
}
newBookmark = root.next(newBookmark);
}
// Remove items that are not part of the bookmark-manager anymore
int modelIndex = 0;
for (int i = m_bookmarkedItems.count() - 1; i >= 0; --i) {
PlacesItem* item = m_bookmarkedItems[i];
const bool itemIsPartOfModel = (item == 0);
if (itemIsPartOfModel) {
item = placesItem(modelIndex);
}
bool hasBeenRemoved = true;
const KBookmark oldBookmark = item->bookmark();
KBookmark newBookmark = root.first();
while (!newBookmark.isNull()) {
if (equalBookmarkIdentifiers(newBookmark, oldBookmark)) {
hasBeenRemoved = false;
break;
}
newBookmark = root.next(newBookmark);
}
if (hasBeenRemoved) {
if (m_bookmarkedItems[i]) {
delete m_bookmarkedItems[i];
m_bookmarkedItems.removeAt(i);
} else {
removeItem(modelIndex);
--modelIndex;
}
}
if (itemIsPartOfModel) {
++modelIndex;
}
}
}
void PlacesItemModel::saveBookmarks()
{
m_bookmarkManager->emitChanged(m_bookmarkManager->root());
}
void PlacesItemModel::loadBookmarks()
{
KBookmarkGroup root = m_bookmarkManager->root();
KBookmark bookmark = root.first();
QSet<QString> devices = m_availableDevices;
QSet<KUrl> missingSystemBookmarks;
foreach (const SystemBookmarkData& data, m_systemBookmarks) {
missingSystemBookmarks.insert(data.url);
}
// The bookmarks might have a mixed order of places, devices and search-groups due
// to the compatibility with the KFilePlacesPanel. In Dolphin's places panel the
// items should always be collected in one group so the items are collected first
// in separate lists before inserting them.
QList<PlacesItem*> placesItems;
QList<PlacesItem*> recentlySavedItems;
QList<PlacesItem*> searchForItems;
QList<PlacesItem*> devicesItems;
while (!bookmark.isNull()) {
if (acceptBookmark(bookmark, devices)) {
PlacesItem* item = new PlacesItem(bookmark);
if (item->groupType() == PlacesItem::DevicesType) {
devices.remove(item->udi());
devicesItems.append(item);
} else {
const KUrl url = bookmark.url();
if (missingSystemBookmarks.contains(url)) {
missingSystemBookmarks.remove(url);
// Try to retranslate the text of system bookmarks to have translated
// items when changing the language. In case if the user has applied a custom
// text, the retranslation will fail and the users custom text is still used.
// It is important to use "KFile System Bookmarks" as context (see
// createSystemBookmarks()).
item->setText(i18nc("KFile System Bookmarks", bookmark.text().toUtf8().data()));
item->setSystemItem(true);
}
switch (item->groupType()) {
case PlacesItem::PlacesType: placesItems.append(item); break;
case PlacesItem::RecentlySavedType: recentlySavedItems.append(item); break;
case PlacesItem::SearchForType: searchForItems.append(item); break;
case PlacesItem::DevicesType:
default: Q_ASSERT(false); break;
}
}
}
bookmark = root.next(bookmark);
}
if (!missingSystemBookmarks.isEmpty()) {
// The current bookmarks don't contain all system-bookmarks. Add the missing
// bookmarks.
foreach (const SystemBookmarkData& data, m_systemBookmarks) {
if (missingSystemBookmarks.contains(data.url)) {
PlacesItem* item = createSystemPlacesItem(data);
switch (item->groupType()) {
case PlacesItem::PlacesType: placesItems.append(item); break;
case PlacesItem::RecentlySavedType: recentlySavedItems.append(item); break;
case PlacesItem::SearchForType: searchForItems.append(item); break;
case PlacesItem::DevicesType:
default: Q_ASSERT(false); break;
}
}
}
}
// Create items for devices that have not been stored as bookmark yet
foreach (const QString& udi, devices) {
const KBookmark bookmark = PlacesItem::createDeviceBookmark(m_bookmarkManager, udi);
devicesItems.append(new PlacesItem(bookmark));
}
QList<PlacesItem*> items;
items.append(placesItems);
items.append(recentlySavedItems);
items.append(searchForItems);
items.append(devicesItems);
foreach (PlacesItem* item, items) {
if (!m_hiddenItemsShown && item->isHidden()) {
m_bookmarkedItems.append(item);
} else {
appendItem(item);
}
}
#ifdef PLACESITEMMODEL_DEBUG
kDebug() << "Loaded bookmarks";
showModelState();
#endif
}
bool PlacesItemModel::acceptBookmark(const KBookmark& bookmark,
const QSet<QString>& availableDevices) const
{
const QString udi = bookmark.metaDataItem("UDI");
const KUrl url = bookmark.url();
const QString appName = bookmark.metaDataItem("OnlyInApp");
const bool deviceAvailable = availableDevices.contains(udi);
const bool allowedHere = (appName.isEmpty()
|| appName == KGlobal::mainComponent().componentName()
|| appName == KGlobal::mainComponent().componentName() + AppNamePrefix)
&& (m_fileIndexingEnabled || (url.protocol() != QLatin1String("timeline") &&
url.protocol() != QLatin1String("search")));
return (udi.isEmpty() && allowedHere) || deviceAvailable;
}
PlacesItem* PlacesItemModel::createSystemPlacesItem(const SystemBookmarkData& data)
{
KBookmark bookmark = PlacesItem::createBookmark(m_bookmarkManager,
data.text,
data.url,
data.icon);
const QString protocol = data.url.protocol();
if (protocol == QLatin1String("timeline") || protocol == QLatin1String("search")) {
// As long as the KFilePlacesView from kdelibs is available, the system-bookmarks
// for "Recently Saved" and "Search For" should be a setting available only
// in the Places Panel (see description of AppNamePrefix for more details).
const QString appName = KGlobal::mainComponent().componentName() + AppNamePrefix;
bookmark.setMetaDataItem("OnlyInApp", appName);
}
PlacesItem* item = new PlacesItem(bookmark);
item->setSystemItem(true);
// Create default view-properties for all "Search For" and "Recently Saved" bookmarks
// in case if the user has not already created custom view-properties for a corresponding
// query yet.
const bool createDefaultViewProperties = (item->groupType() == PlacesItem::SearchForType ||
item->groupType() == PlacesItem::RecentlySavedType) &&
!GeneralSettings::self()->globalViewProps();
if (createDefaultViewProperties) {
ViewProperties props(convertedUrl(data.url));
if (!props.exist()) {
const QString path = data.url.path();
if (path == QLatin1String("/documents")) {
props.setViewMode(DolphinView::DetailsView);
props.setPreviewsShown(false);
props.setVisibleRoles(QList<QByteArray>() << "text" << "path");
} else if (path == QLatin1String("/images")) {
props.setViewMode(DolphinView::IconsView);
props.setPreviewsShown(true);
props.setVisibleRoles(QList<QByteArray>() << "text" << "imageSize");
} else if (path == QLatin1String("/audio")) {
props.setViewMode(DolphinView::DetailsView);
props.setPreviewsShown(false);
props.setVisibleRoles(QList<QByteArray>() << "text" << "artist" << "album");
} else if (path == QLatin1String("/videos")) {
props.setViewMode(DolphinView::IconsView);
props.setPreviewsShown(true);
props.setVisibleRoles(QList<QByteArray>() << "text");
} else if (data.url.protocol() == "timeline") {
props.setViewMode(DolphinView::DetailsView);
props.setVisibleRoles(QList<QByteArray>() << "text" << "date");
}
}
}
return item;
}
void PlacesItemModel::createSystemBookmarks()
{
Q_ASSERT(m_systemBookmarks.isEmpty());
Q_ASSERT(m_systemBookmarksIndexes.isEmpty());
// Note: The context of the I18N_NOOP2 must be "KFile System Bookmarks". The real
// i18nc call is done after reading the bookmark. The reason why the i18nc call is not
// done here is because otherwise switching the language would not result in retranslating the
// bookmarks.
m_systemBookmarks.append(SystemBookmarkData(KUrl(KUser().homeDir()),
"user-home",
I18N_NOOP2("KFile System Bookmarks", "Home")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("remote:/"),
"network-workgroup",
I18N_NOOP2("KFile System Bookmarks", "Network")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("/"),
"folder-red",
I18N_NOOP2("KFile System Bookmarks", "Root")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("trash:/"),
"user-trash",
I18N_NOOP2("KFile System Bookmarks", "Trash")));
if (m_fileIndexingEnabled) {
m_systemBookmarks.append(SystemBookmarkData(KUrl("timeline:/today"),
"go-jump-today",
I18N_NOOP2("KFile System Bookmarks", "Today")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("timeline:/yesterday"),
"view-calendar-day",
I18N_NOOP2("KFile System Bookmarks", "Yesterday")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("timeline:/thismonth"),
"view-calendar-month",
I18N_NOOP2("KFile System Bookmarks", "This Month")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("timeline:/lastmonth"),
"view-calendar-month",
I18N_NOOP2("KFile System Bookmarks", "Last Month")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("search:/documents"),
"folder-txt",
I18N_NOOP2("KFile System Bookmarks", "Documents")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("search:/images"),
"folder-image",
I18N_NOOP2("KFile System Bookmarks", "Images")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("search:/audio"),
"folder-sound",
I18N_NOOP2("KFile System Bookmarks", "Audio Files")));
m_systemBookmarks.append(SystemBookmarkData(KUrl("search:/videos"),
"folder-video",
I18N_NOOP2("KFile System Bookmarks", "Videos")));
}
for (int i = 0; i < m_systemBookmarks.count(); ++i) {
m_systemBookmarksIndexes.insert(m_systemBookmarks[i].url, i);
}
}
void PlacesItemModel::clear() {
m_bookmarkedItems.clear();
KStandardItemModel::clear();
}
void PlacesItemModel::initializeAvailableDevices()
{
QString predicate("[[[[ StorageVolume.ignored == false AND [ StorageVolume.usage == 'FileSystem' OR StorageVolume.usage == 'Encrypted' ]]"
" OR "
"[ IS StorageAccess AND StorageDrive.driveType == 'Floppy' ]]"
" OR "
"OpticalDisc.availableContent & 'Audio' ]"
" OR "
"StorageAccess.ignored == false ]");
if (KProtocolInfo::isKnownProtocol("mtp")) {
predicate.prepend("[");
predicate.append(" OR PortableMediaPlayer.supportedProtocols == 'mtp']");
}
m_predicate = Solid::Predicate::fromString(predicate);
Q_ASSERT(m_predicate.isValid());
Solid::DeviceNotifier* notifier = Solid::DeviceNotifier::instance();
connect(notifier, &Solid::DeviceNotifier::deviceAdded, this, &PlacesItemModel::slotDeviceAdded);
connect(notifier, &Solid::DeviceNotifier::deviceRemoved, this, &PlacesItemModel::slotDeviceRemoved);
const QList<Solid::Device>& deviceList = Solid::Device::listFromQuery(m_predicate);
foreach (const Solid::Device& device, deviceList) {
m_availableDevices << device.udi();
}
}
int PlacesItemModel::bookmarkIndex(int index) const
{
int bookmarkIndex = 0;
int modelIndex = 0;
while (bookmarkIndex < m_bookmarkedItems.count()) {
if (!m_bookmarkedItems[bookmarkIndex]) {
if (modelIndex == index) {
break;
}
++modelIndex;
}
++bookmarkIndex;
}
return bookmarkIndex >= m_bookmarkedItems.count() ? -1 : bookmarkIndex;
}
void PlacesItemModel::hideItem(int index)
{
PlacesItem* shownItem = placesItem(index);
if (!shownItem) {
return;
}
shownItem->setHidden(true);
if (m_hiddenItemsShown) {
// Removing items from the model is not allowed if all hidden
// items should be shown.
return;
}
const int newIndex = bookmarkIndex(index);
if (newIndex >= 0) {
const KBookmark hiddenBookmark = shownItem->bookmark();
PlacesItem* hiddenItem = new PlacesItem(hiddenBookmark);
const PlacesItem* previousItem = placesItem(index - 1);
KBookmark previousBookmark;
if (previousItem) {
previousBookmark = previousItem->bookmark();
}
const bool updateBookmark = (m_bookmarkManager->root().indexOf(hiddenBookmark) >= 0);
removeItem(index);
if (updateBookmark) {
// removeItem() also removed the bookmark from m_bookmarkManager in
// PlacesItemModel::onItemRemoved(). However for hidden items the
// bookmark should still be remembered, so readd it again:
m_bookmarkManager->root().addBookmark(hiddenBookmark);
m_bookmarkManager->root().moveBookmark(hiddenBookmark, previousBookmark);
triggerBookmarksSaving();
}
m_bookmarkedItems.insert(newIndex, hiddenItem);
}
}
void PlacesItemModel::triggerBookmarksSaving()
{
if (m_saveBookmarksTimer) {
m_saveBookmarksTimer->start();
}
}
QString PlacesItemModel::internalMimeType() const
{
return "application/x-dolphinplacesmodel-" +
QString::number((qptrdiff)this);
}
int PlacesItemModel::groupedDropIndex(int index, const PlacesItem* item) const
{
Q_ASSERT(item);
int dropIndex = index;
const PlacesItem::GroupType type = item->groupType();
const int itemCount = count();
if (index < 0) {
dropIndex = itemCount;
}
// Search nearest previous item with the same group
int previousIndex = -1;
for (int i = dropIndex - 1; i >= 0; --i) {
if (placesItem(i)->groupType() == type) {
previousIndex = i;
break;
}
}
// Search nearest next item with the same group
int nextIndex = -1;
for (int i = dropIndex; i < count(); ++i) {
if (placesItem(i)->groupType() == type) {
nextIndex = i;
break;
}
}
// Adjust the drop-index to be inserted to the
// nearest item with the same group.
if (previousIndex >= 0 && nextIndex >= 0) {
dropIndex = (dropIndex - previousIndex < nextIndex - dropIndex) ?
previousIndex + 1 : nextIndex;
} else if (previousIndex >= 0) {
dropIndex = previousIndex + 1;
} else if (nextIndex >= 0) {
dropIndex = nextIndex;
}
return dropIndex;
}
bool PlacesItemModel::equalBookmarkIdentifiers(const KBookmark& b1, const KBookmark& b2)
{
const QString udi1 = b1.metaDataItem("UDI");
const QString udi2 = b2.metaDataItem("UDI");
if (!udi1.isEmpty() && !udi2.isEmpty()) {
return udi1 == udi2;
} else {
return b1.metaDataItem("ID") == b2.metaDataItem("ID");
}
}
KUrl PlacesItemModel::createTimelineUrl(const KUrl& url)
{
// TODO: Clarify with the Baloo-team whether it makes sense
// provide default-timeline-URLs like 'yesterday', 'this month'
// and 'last month'.
KUrl timelineUrl;
const QString path = url.pathOrUrl();
if (path.endsWith(QLatin1String("yesterday"))) {
const QDate date = QDate::currentDate().addDays(-1);
const int year = date.year();
const int month = date.month();
const int day = date.day();
timelineUrl = "timeline:/" + timelineDateString(year, month) +
'/' + timelineDateString(year, month, day);
} else if (path.endsWith(QLatin1String("thismonth"))) {
const QDate date = QDate::currentDate();
timelineUrl = "timeline:/" + timelineDateString(date.year(), date.month());
} else if (path.endsWith(QLatin1String("lastmonth"))) {
const QDate date = QDate::currentDate().addMonths(-1);
timelineUrl = "timeline:/" + timelineDateString(date.year(), date.month());
} else {
Q_ASSERT(path.endsWith(QLatin1String("today")));
timelineUrl= url;
}
return timelineUrl;
}
QString PlacesItemModel::timelineDateString(int year, int month, int day)
{
QString date = QString::number(year) + '-';
if (month < 10) {
date += '0';
}
date += QString::number(month);
if (day >= 1) {
date += '-';
if (day < 10) {
date += '0';
}
date += QString::number(day);
}
return date;
}
KUrl PlacesItemModel::createSearchUrl(const KUrl& url)
{
KUrl searchUrl;
#ifdef HAVE_BALOO
const QString path = url.pathOrUrl();
if (path.endsWith(QLatin1String("documents"))) {
searchUrl = searchUrlForType("Document");
} else if (path.endsWith(QLatin1String("images"))) {
searchUrl = searchUrlForType("Image");
} else if (path.endsWith(QLatin1String("audio"))) {
searchUrl = searchUrlForType("Audio");
} else if (path.endsWith(QLatin1String("videos"))) {
searchUrl = searchUrlForType("Video");
} else {
Q_ASSERT(false);
}
#else
Q_UNUSED(url);
#endif
return searchUrl;
}
#ifdef HAVE_BALOO
KUrl PlacesItemModel::searchUrlForType(const QString& type)
{
Baloo::Query query;
query.addType("File");
query.addType(type);
return query.toSearchUrl();
}
#endif
#ifdef PLACESITEMMODEL_DEBUG
void PlacesItemModel::showModelState()
{
kDebug() << "=================================";
kDebug() << "Model:";
kDebug() << "hidden-index model-index text";
int modelIndex = 0;
for (int i = 0; i < m_bookmarkedItems.count(); ++i) {
if (m_bookmarkedItems[i]) {
kDebug() << i << "(Hidden) " << " " << m_bookmarkedItems[i]->dataValue("text").toString();
} else {
if (item(modelIndex)) {
kDebug() << i << " " << modelIndex << " " << item(modelIndex)->dataValue("text").toString();
} else {
kDebug() << i << " " << modelIndex << " " << "(not available yet)";
}
++modelIndex;
}
}
kDebug();
kDebug() << "Bookmarks:";
int bookmarkIndex = 0;
KBookmarkGroup root = m_bookmarkManager->root();
KBookmark bookmark = root.first();
while (!bookmark.isNull()) {
const QString udi = bookmark.metaDataItem("UDI");
const QString text = udi.isEmpty() ? bookmark.text() : udi;
if (bookmark.metaDataItem("IsHidden") == QLatin1String("true")) {
kDebug() << bookmarkIndex << "(Hidden)" << text;
} else {
kDebug() << bookmarkIndex << " " << text;
}
bookmark = root.next(bookmark);
++bookmarkIndex;
}
}
#endif
|