1 /***************************************************************************
2 * Copyright (C) 2012 by Peter Penz <peter.penz19@gmail.com> *
4 * Based on KFilePlacesModel from kdelibs: *
5 * Copyright (C) 2007 Kevin Ottens <ervin@kde.org> *
6 * Copyright (C) 2007 David Faure <faure@kde.org> *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
22 ***************************************************************************/
24 #include "placesitemmodel.h"
26 #include "dolphin_generalsettings.h"
29 #include <KBookmarkGroup>
30 #include <KBookmarkManager>
31 #include <KComponentData>
34 #include <kprotocolinfo.h>
36 #include <KStandardDirs>
38 #include "placesitem.h"
44 #include <Solid/Device>
45 #include <Solid/DeviceNotifier>
46 #include <Solid/OpticalDisc>
47 #include <Solid/OpticalDrive>
48 #include <Solid/StorageAccess>
49 #include <Solid/StorageDrive>
51 #include <views/dolphinview.h>
52 #include <views/viewproperties.h>
55 #include <Nepomuk/ResourceManager>
56 #include <Nepomuk/Query/ComparisonTerm>
57 #include <Nepomuk/Query/LiteralTerm>
58 #include <Nepomuk/Query/FileQuery>
59 #include <Nepomuk/Query/ResourceTypeTerm>
60 #include <Nepomuk/Vocabulary/NFO>
61 #include <Nepomuk/Vocabulary/NIE>
65 // As long as KFilePlacesView from kdelibs is available in parallel, the
66 // system-bookmarks for "Recently Accessed" and "Search For" should be
67 // shown only inside the Places Panel. This is necessary as the stored
68 // URLs needs to get translated to a Nepomuk-search-URL on-the-fly to
69 // be independent from changes in the Nepomuk-search-URL-syntax.
70 // Hence a prefix to the application-name of the stored bookmarks is
71 // added, which is only read by PlacesItemModel.
72 const char* AppNamePrefix
= "-places-panel";
75 PlacesItemModel::PlacesItemModel(QObject
* parent
) :
76 KStandardItemModel(parent
),
77 m_fileIndexingEnabled(false),
78 m_hiddenItemsShown(false),
83 m_systemBookmarksIndexes(),
85 m_hiddenItemToRemove(-1),
86 m_saveBookmarksTimer(0),
87 m_updateBookmarksTimer(0),
88 m_storageSetupInProgress()
91 if (Nepomuk::ResourceManager::instance()->initialized()) {
92 KConfig
config("nepomukserverrc");
93 m_fileIndexingEnabled
= config
.group("Service-nepomukfileindexer").readEntry("autostart", false);
97 const QString file
= KStandardDirs::locateLocal("data", "kfileplaces/bookmarks.xml");
98 m_bookmarkManager
= KBookmarkManager::managerForFile(file
, "kfilePlaces");
100 createSystemBookmarks();
101 initializeAvailableDevices();
104 const int syncBookmarksTimeout
= 100;
106 m_saveBookmarksTimer
= new QTimer(this);
107 m_saveBookmarksTimer
->setInterval(syncBookmarksTimeout
);
108 m_saveBookmarksTimer
->setSingleShot(true);
109 connect(m_saveBookmarksTimer
, SIGNAL(timeout()), this, SLOT(saveBookmarks()));
111 m_updateBookmarksTimer
= new QTimer(this);
112 m_updateBookmarksTimer
->setInterval(syncBookmarksTimeout
);
113 m_updateBookmarksTimer
->setSingleShot(true);
114 connect(m_updateBookmarksTimer
, SIGNAL(timeout()), this, SLOT(updateBookmarks()));
116 connect(m_bookmarkManager
, SIGNAL(changed(QString
,QString
)),
117 m_updateBookmarksTimer
, SLOT(start()));
118 connect(m_bookmarkManager
, SIGNAL(bookmarksChanged(QString
)),
119 m_updateBookmarksTimer
, SLOT(start()));
122 PlacesItemModel::~PlacesItemModel()
125 qDeleteAll(m_bookmarkedItems
);
126 m_bookmarkedItems
.clear();
129 PlacesItem
* PlacesItemModel::createPlacesItem(const QString
& text
,
131 const QString
& iconName
)
133 const KBookmark bookmark
= PlacesItem::createBookmark(m_bookmarkManager
, text
, url
, iconName
);
134 return new PlacesItem(bookmark
);
137 PlacesItem
* PlacesItemModel::placesItem(int index
) const
139 return dynamic_cast<PlacesItem
*>(item(index
));
142 int PlacesItemModel::hiddenCount() const
145 int hiddenItemCount
= 0;
146 foreach (const PlacesItem
* item
, m_bookmarkedItems
) {
150 if (placesItem(modelIndex
)->isHidden()) {
157 return hiddenItemCount
;
160 void PlacesItemModel::setHiddenItemsShown(bool show
)
162 if (m_hiddenItemsShown
== show
) {
166 m_hiddenItemsShown
= show
;
169 // Move all items that are part of m_bookmarkedItems to the model.
170 QList
<PlacesItem
*> itemsToInsert
;
171 QList
<int> insertPos
;
173 for (int i
= 0; i
< m_bookmarkedItems
.count(); ++i
) {
174 if (m_bookmarkedItems
[i
]) {
175 itemsToInsert
.append(m_bookmarkedItems
[i
]);
176 m_bookmarkedItems
[i
] = 0;
177 insertPos
.append(modelIndex
);
182 // Inserting the items will automatically insert an item
183 // to m_bookmarkedItems in PlacesItemModel::onItemsInserted().
184 // The items are temporary saved in itemsToInsert, so
185 // m_bookmarkedItems can be shrinked now.
186 m_bookmarkedItems
.erase(m_bookmarkedItems
.begin(),
187 m_bookmarkedItems
.begin() + itemsToInsert
.count());
189 for (int i
= 0; i
< itemsToInsert
.count(); ++i
) {
190 insertItem(insertPos
[i
], itemsToInsert
[i
]);
193 Q_ASSERT(m_bookmarkedItems
.count() == count());
195 // Move all items of the model, where the "isHidden" property is true, to
196 // m_bookmarkedItems.
197 Q_ASSERT(m_bookmarkedItems
.count() == count());
198 for (int i
= count() - 1; i
>= 0; --i
) {
199 if (placesItem(i
)->isHidden()) {
205 #ifdef PLACESITEMMODEL_DEBUG
206 kDebug() << "Changed visibility of hidden items";
211 bool PlacesItemModel::hiddenItemsShown() const
213 return m_hiddenItemsShown
;
216 int PlacesItemModel::closestItem(const KUrl
& url
) const
221 for (int i
= 0; i
< count(); ++i
) {
222 const KUrl itemUrl
= placesItem(i
)->url();
223 if (itemUrl
.isParentOf(url
)) {
224 const int length
= itemUrl
.prettyUrl().length();
225 if (length
> maxLength
) {
235 void PlacesItemModel::appendItemToGroup(PlacesItem
* item
)
242 while (i
< count() && placesItem(i
)->group() != item
->group()) {
246 bool inserted
= false;
247 while (!inserted
&& i
< count()) {
248 if (placesItem(i
)->group() != item
->group()) {
261 QAction
* PlacesItemModel::ejectAction(int index
) const
263 const PlacesItem
* item
= placesItem(index
);
264 if (item
&& item
->device().is
<Solid::OpticalDisc
>()) {
265 return new QAction(KIcon("media-eject"), i18nc("@item", "Eject '%1'", item
->text()), 0);
271 QAction
* PlacesItemModel::teardownAction(int index
) const
273 const PlacesItem
* item
= placesItem(index
);
278 Solid::Device device
= item
->device();
279 const bool providesTearDown
= device
.is
<Solid::StorageAccess
>() &&
280 device
.as
<Solid::StorageAccess
>()->isAccessible();
281 if (!providesTearDown
) {
285 Solid::StorageDrive
* drive
= device
.as
<Solid::StorageDrive
>();
287 drive
= device
.parent().as
<Solid::StorageDrive
>();
290 bool hotPluggable
= false;
291 bool removable
= false;
293 hotPluggable
= drive
->isHotpluggable();
294 removable
= drive
->isRemovable();
299 const QString label
= item
->text();
300 if (device
.is
<Solid::OpticalDisc
>()) {
301 text
= i18nc("@item", "Release '%1'", label
);
302 } else if (removable
|| hotPluggable
) {
303 text
= i18nc("@item", "Safely Remove '%1'", label
);
304 iconName
= "media-eject";
306 text
= i18nc("@item", "Unmount '%1'", label
);
307 iconName
= "media-eject";
310 if (iconName
.isEmpty()) {
311 return new QAction(text
, 0);
314 return new QAction(KIcon(iconName
), text
, 0);
317 void PlacesItemModel::requestEject(int index
)
319 const PlacesItem
* item
= placesItem(index
);
321 Solid::OpticalDrive
* drive
= item
->device().parent().as
<Solid::OpticalDrive
>();
323 connect(drive
, SIGNAL(ejectDone(Solid::ErrorType
,QVariant
,QString
)),
324 this, SLOT(slotStorageTeardownDone(Solid::ErrorType
,QVariant
)));
327 const QString label
= item
->text();
328 const QString message
= i18nc("@info", "The device '%1' is not a disk and cannot be ejected.", label
);
329 emit
errorMessage(message
);
334 void PlacesItemModel::requestTeardown(int index
)
336 const PlacesItem
* item
= placesItem(index
);
338 Solid::StorageAccess
* access
= item
->device().as
<Solid::StorageAccess
>();
340 connect(access
, SIGNAL(teardownDone(Solid::ErrorType
,QVariant
,QString
)),
341 this, SLOT(slotStorageTeardownDone(Solid::ErrorType
,QVariant
)));
347 bool PlacesItemModel::storageSetupNeeded(int index
) const
349 const PlacesItem
* item
= placesItem(index
);
350 return item
? item
->storageSetupNeeded() : false;
353 void PlacesItemModel::requestStorageSetup(int index
)
355 const PlacesItem
* item
= placesItem(index
);
360 Solid::Device device
= item
->device();
361 const bool setup
= device
.is
<Solid::StorageAccess
>()
362 && !m_storageSetupInProgress
.contains(device
.as
<Solid::StorageAccess
>())
363 && !device
.as
<Solid::StorageAccess
>()->isAccessible();
365 Solid::StorageAccess
* access
= device
.as
<Solid::StorageAccess
>();
367 m_storageSetupInProgress
[access
] = index
;
369 connect(access
, SIGNAL(setupDone(Solid::ErrorType
,QVariant
,QString
)),
370 this, SLOT(slotStorageSetupDone(Solid::ErrorType
,QVariant
,QString
)));
376 QMimeData
* PlacesItemModel::createMimeData(const QSet
<int>& indexes
) const
381 QDataStream
stream(&itemData
, QIODevice::WriteOnly
);
383 foreach (int index
, indexes
) {
384 const KUrl itemUrl
= placesItem(index
)->url();
385 if (itemUrl
.isValid()) {
391 QMimeData
* mimeData
= new QMimeData();
392 if (!urls
.isEmpty()) {
393 urls
.populateMimeData(mimeData
);
395 mimeData
->setData(internalMimeType(), itemData
);
400 bool PlacesItemModel::supportsDropping(int index
) const
402 return index
>= 0 && index
< count();
405 void PlacesItemModel::dropMimeDataBefore(int index
, const QMimeData
* mimeData
)
407 if (mimeData
->hasFormat(internalMimeType())) {
408 // The item has been moved inside the view
409 QByteArray itemData
= mimeData
->data(internalMimeType());
410 QDataStream
stream(&itemData
, QIODevice::ReadOnly
);
413 if (oldIndex
== index
|| oldIndex
== index
- 1) {
414 // No moving has been done
418 PlacesItem
* oldItem
= placesItem(oldIndex
);
423 PlacesItem
* newItem
= new PlacesItem(oldItem
->bookmark());
424 removeItem(oldIndex
);
426 if (oldIndex
< index
) {
430 const int dropIndex
= groupedDropIndex(index
, newItem
);
431 insertItem(dropIndex
, newItem
);
432 } else if (mimeData
->hasFormat("text/uri-list")) {
433 // One or more items must be added to the model
434 const KUrl::List urls
= KUrl::List::fromMimeData(mimeData
);
435 for (int i
= urls
.count() - 1; i
>= 0; --i
) {
436 const KUrl
& url
= urls
[i
];
438 QString text
= url
.fileName();
439 if (text
.isEmpty()) {
443 PlacesItem
* newItem
= createPlacesItem(text
, url
);
444 const int dropIndex
= groupedDropIndex(index
, newItem
);
445 insertItem(dropIndex
, newItem
);
450 KUrl
PlacesItemModel::convertedUrl(const KUrl
& url
)
453 if (url
.protocol() == QLatin1String("timeline")) {
454 newUrl
= createTimelineUrl(url
);
455 } else if (url
.protocol() == QLatin1String("search")) {
456 newUrl
= createSearchUrl(url
);
462 void PlacesItemModel::onItemInserted(int index
)
464 const PlacesItem
* insertedItem
= placesItem(index
);
466 // Take care to apply the PlacesItemModel-order of the inserted item
467 // also to the bookmark-manager.
468 const KBookmark insertedBookmark
= insertedItem
->bookmark();
470 const PlacesItem
* previousItem
= placesItem(index
- 1);
471 KBookmark previousBookmark
;
473 previousBookmark
= previousItem
->bookmark();
476 m_bookmarkManager
->root().moveBookmark(insertedBookmark
, previousBookmark
);
479 if (index
== count() - 1) {
480 // The item has been appended as last item to the list. In this
481 // case assure that it is also appended after the hidden items and
482 // not before (like done otherwise).
483 m_bookmarkedItems
.append(0);
487 int bookmarkIndex
= 0;
488 while (bookmarkIndex
< m_bookmarkedItems
.count()) {
489 if (!m_bookmarkedItems
[bookmarkIndex
]) {
491 if (modelIndex
+ 1 == index
) {
497 m_bookmarkedItems
.insert(bookmarkIndex
, 0);
500 triggerBookmarksSaving();
502 #ifdef PLACESITEMMODEL_DEBUG
503 kDebug() << "Inserted item" << index
;
508 void PlacesItemModel::onItemRemoved(int index
, KStandardItem
* removedItem
)
510 PlacesItem
* placesItem
= dynamic_cast<PlacesItem
*>(removedItem
);
512 const KBookmark bookmark
= placesItem
->bookmark();
513 m_bookmarkManager
->root().deleteBookmark(bookmark
);
516 const int boomarkIndex
= bookmarkIndex(index
);
517 Q_ASSERT(!m_bookmarkedItems
[boomarkIndex
]);
518 m_bookmarkedItems
.removeAt(boomarkIndex
);
520 triggerBookmarksSaving();
522 #ifdef PLACESITEMMODEL_DEBUG
523 kDebug() << "Removed item" << index
;
528 void PlacesItemModel::onItemChanged(int index
, const QSet
<QByteArray
>& changedRoles
)
530 const PlacesItem
* changedItem
= placesItem(index
);
532 // Take care to apply the PlacesItemModel-order of the changed item
533 // also to the bookmark-manager.
534 const KBookmark insertedBookmark
= changedItem
->bookmark();
536 const PlacesItem
* previousItem
= placesItem(index
- 1);
537 KBookmark previousBookmark
;
539 previousBookmark
= previousItem
->bookmark();
542 m_bookmarkManager
->root().moveBookmark(insertedBookmark
, previousBookmark
);
545 if (changedRoles
.contains("isHidden")) {
546 if (!m_hiddenItemsShown
&& changedItem
->isHidden()) {
547 m_hiddenItemToRemove
= index
;
548 QTimer::singleShot(0, this, SLOT(hideItem()));
552 triggerBookmarksSaving();
555 void PlacesItemModel::slotDeviceAdded(const QString
& udi
)
557 const Solid::Device
device(udi
);
559 if (!m_predicate
.matches(device
)) {
563 m_availableDevices
<< udi
;
564 const KBookmark bookmark
= PlacesItem::createDeviceBookmark(m_bookmarkManager
, udi
);
565 appendItem(new PlacesItem(bookmark
));
568 void PlacesItemModel::slotDeviceRemoved(const QString
& udi
)
570 if (!m_availableDevices
.contains(udi
)) {
574 for (int i
= 0; i
< m_bookmarkedItems
.count(); ++i
) {
575 PlacesItem
* item
= m_bookmarkedItems
[i
];
576 if (item
&& item
->udi() == udi
) {
577 m_bookmarkedItems
.removeAt(i
);
583 for (int i
= 0; i
< count(); ++i
) {
584 if (placesItem(i
)->udi() == udi
) {
591 void PlacesItemModel::slotStorageTeardownDone(Solid::ErrorType error
, const QVariant
& errorData
)
593 if (error
&& errorData
.isValid()) {
594 emit
errorMessage(errorData
.toString());
598 void PlacesItemModel::slotStorageSetupDone(Solid::ErrorType error
,
599 const QVariant
& errorData
,
604 const int index
= m_storageSetupInProgress
.take(sender());
605 const PlacesItem
* item
= placesItem(index
);
611 // TODO: Request message-freeze exception
612 if (errorData
.isValid()) {
613 // emit errorMessage(i18nc("@info", "An error occurred while accessing '%1', the system responded: %2",
615 // errorData.toString()));
616 emit
errorMessage(QString("An error occurred while accessing '%1', the system responded: %2")
617 .arg(item
->text()).arg(errorData
.toString()));
619 // emit errorMessage(i18nc("@info", "An error occurred while accessing '%1'",
621 emit
errorMessage(QString("An error occurred while accessing '%1'").arg(item
->text()));
623 emit
storageSetupDone(index
, false);
625 emit
storageSetupDone(index
, true);
629 void PlacesItemModel::hideItem()
631 hideItem(m_hiddenItemToRemove
);
632 m_hiddenItemToRemove
= -1;
635 void PlacesItemModel::updateBookmarks()
637 // Verify whether new bookmarks have been added or existing
638 // bookmarks have been changed.
639 KBookmarkGroup root
= m_bookmarkManager
->root();
640 KBookmark newBookmark
= root
.first();
641 while (!newBookmark
.isNull()) {
642 if (acceptBookmark(newBookmark
, m_availableDevices
)) {
645 for (int i
= 0; i
< m_bookmarkedItems
.count(); ++i
) {
646 PlacesItem
* item
= m_bookmarkedItems
[i
];
648 item
= placesItem(modelIndex
);
652 const KBookmark oldBookmark
= item
->bookmark();
653 if (equalBookmarkIdentifiers(newBookmark
, oldBookmark
)) {
654 // The bookmark has been found in the model or as
655 // a hidden item. The content of the bookmark might
656 // have been changed, so an update is done.
658 if (newBookmark
.metaDataItem("UDI").isEmpty()) {
659 item
->setBookmark(newBookmark
);
666 const QString udi
= newBookmark
.metaDataItem("UDI");
670 * Only add a new places item, if the item text is not empty
671 * and if the device is available. Fixes the strange behaviour -
672 * add a places item without text in the Places section - when you
673 * remove a device (e.g. a usb stick) without unmounting.
675 if (udi
.isEmpty() || Solid::Device(udi
).isValid()) {
676 PlacesItem
* item
= new PlacesItem(newBookmark
);
677 if (item
->isHidden() && !m_hiddenItemsShown
) {
678 m_bookmarkedItems
.append(item
);
680 appendItemToGroup(item
);
686 newBookmark
= root
.next(newBookmark
);
689 // Remove items that are not part of the bookmark-manager anymore
691 for (int i
= m_bookmarkedItems
.count() - 1; i
>= 0; --i
) {
692 PlacesItem
* item
= m_bookmarkedItems
[i
];
693 const bool itemIsPartOfModel
= (item
== 0);
694 if (itemIsPartOfModel
) {
695 item
= placesItem(modelIndex
);
698 bool hasBeenRemoved
= true;
699 const KBookmark oldBookmark
= item
->bookmark();
700 KBookmark newBookmark
= root
.first();
701 while (!newBookmark
.isNull()) {
702 if (equalBookmarkIdentifiers(newBookmark
, oldBookmark
)) {
703 hasBeenRemoved
= false;
706 newBookmark
= root
.next(newBookmark
);
709 if (hasBeenRemoved
) {
710 if (m_bookmarkedItems
[i
]) {
711 delete m_bookmarkedItems
[i
];
712 m_bookmarkedItems
.removeAt(i
);
714 removeItem(modelIndex
);
719 if (itemIsPartOfModel
) {
725 void PlacesItemModel::saveBookmarks()
727 m_bookmarkManager
->emitChanged(m_bookmarkManager
->root());
730 void PlacesItemModel::loadBookmarks()
732 KBookmarkGroup root
= m_bookmarkManager
->root();
733 KBookmark bookmark
= root
.first();
734 QSet
<QString
> devices
= m_availableDevices
;
736 QSet
<KUrl
> missingSystemBookmarks
;
737 foreach (const SystemBookmarkData
& data
, m_systemBookmarks
) {
738 missingSystemBookmarks
.insert(data
.url
);
741 // The bookmarks might have a mixed order of places, devices and search-groups due
742 // to the compatibility with the KFilePlacesPanel. In Dolphin's places panel the
743 // items should always be collected in one group so the items are collected first
744 // in separate lists before inserting them.
745 QList
<PlacesItem
*> placesItems
;
746 QList
<PlacesItem
*> recentlyAccessedItems
;
747 QList
<PlacesItem
*> searchForItems
;
748 QList
<PlacesItem
*> devicesItems
;
750 while (!bookmark
.isNull()) {
751 if (acceptBookmark(bookmark
, devices
)) {
752 PlacesItem
* item
= new PlacesItem(bookmark
);
753 if (item
->groupType() == PlacesItem::DevicesType
) {
754 devices
.remove(item
->udi());
755 devicesItems
.append(item
);
757 const KUrl url
= bookmark
.url();
758 if (missingSystemBookmarks
.contains(url
)) {
759 missingSystemBookmarks
.remove(url
);
761 // Try to retranslate the text of system bookmarks to have translated
762 // items when changing the language. In case if the user has applied a custom
763 // text, the retranslation will fail and the users custom text is still used.
764 // It is important to use "KFile System Bookmarks" as context (see
765 // createSystemBookmarks()).
766 item
->setText(i18nc("KFile System Bookmarks", bookmark
.text().toUtf8().data()));
767 item
->setSystemItem(true);
770 switch (item
->groupType()) {
771 case PlacesItem::PlacesType
: placesItems
.append(item
); break;
772 case PlacesItem::RecentlyAccessedType
: recentlyAccessedItems
.append(item
); break;
773 case PlacesItem::SearchForType
: searchForItems
.append(item
); break;
774 case PlacesItem::DevicesType
:
775 default: Q_ASSERT(false); break;
780 bookmark
= root
.next(bookmark
);
783 if (!missingSystemBookmarks
.isEmpty()) {
784 // The current bookmarks don't contain all system-bookmarks. Add the missing
786 foreach (const SystemBookmarkData
& data
, m_systemBookmarks
) {
787 if (missingSystemBookmarks
.contains(data
.url
)) {
788 PlacesItem
* item
= createSystemPlacesItem(data
);
789 switch (item
->groupType()) {
790 case PlacesItem::PlacesType
: placesItems
.append(item
); break;
791 case PlacesItem::RecentlyAccessedType
: recentlyAccessedItems
.append(item
); break;
792 case PlacesItem::SearchForType
: searchForItems
.append(item
); break;
793 case PlacesItem::DevicesType
:
794 default: Q_ASSERT(false); break;
800 // Create items for devices that have not been stored as bookmark yet
801 foreach (const QString
& udi
, devices
) {
802 const KBookmark bookmark
= PlacesItem::createDeviceBookmark(m_bookmarkManager
, udi
);
803 devicesItems
.append(new PlacesItem(bookmark
));
806 QList
<PlacesItem
*> items
;
807 items
.append(placesItems
);
808 items
.append(recentlyAccessedItems
);
809 items
.append(searchForItems
);
810 items
.append(devicesItems
);
812 foreach (PlacesItem
* item
, items
) {
813 if (!m_hiddenItemsShown
&& item
->isHidden()) {
814 m_bookmarkedItems
.append(item
);
820 #ifdef PLACESITEMMODEL_DEBUG
821 kDebug() << "Loaded bookmarks";
826 bool PlacesItemModel::acceptBookmark(const KBookmark
& bookmark
,
827 const QSet
<QString
>& availableDevices
) const
829 const QString udi
= bookmark
.metaDataItem("UDI");
830 const KUrl url
= bookmark
.url();
831 const QString appName
= bookmark
.metaDataItem("OnlyInApp");
832 const bool deviceAvailable
= availableDevices
.contains(udi
);
834 const bool allowedHere
= (appName
.isEmpty()
835 || appName
== KGlobal::mainComponent().componentName()
836 || appName
== KGlobal::mainComponent().componentName() + AppNamePrefix
)
837 && (m_fileIndexingEnabled
|| (url
.protocol() != QLatin1String("timeline") &&
838 url
.protocol() != QLatin1String("search")));
840 return (udi
.isEmpty() && allowedHere
) || deviceAvailable
;
843 PlacesItem
* PlacesItemModel::createSystemPlacesItem(const SystemBookmarkData
& data
)
845 KBookmark bookmark
= PlacesItem::createBookmark(m_bookmarkManager
,
850 const QString protocol
= data
.url
.protocol();
851 if (protocol
== QLatin1String("timeline") || protocol
== QLatin1String("search")) {
852 // As long as the KFilePlacesView from kdelibs is available, the system-bookmarks
853 // for "Recently Accessed" and "Search For" should be a setting available only
854 // in the Places Panel (see description of AppNamePrefix for more details).
855 const QString appName
= KGlobal::mainComponent().componentName() + AppNamePrefix
;
856 bookmark
.setMetaDataItem("OnlyInApp", appName
);
859 PlacesItem
* item
= new PlacesItem(bookmark
);
860 item
->setSystemItem(true);
862 // Create default view-properties for all "Search For" and "Recently Accessed" bookmarks
863 // in case if the user has not already created custom view-properties for a corresponding
865 const bool createDefaultViewProperties
= (item
->groupType() == PlacesItem::SearchForType
||
866 item
->groupType() == PlacesItem::RecentlyAccessedType
) &&
867 !GeneralSettings::self()->globalViewProps();
868 if (createDefaultViewProperties
) {
869 ViewProperties
props(convertedUrl(data
.url
));
870 if (!props
.exist()) {
871 const QString path
= data
.url
.path();
872 if (path
== QLatin1String("/documents")) {
873 props
.setViewMode(DolphinView::DetailsView
);
874 props
.setPreviewsShown(false);
875 props
.setVisibleRoles(QList
<QByteArray
>() << "text" << "path");
876 } else if (path
== QLatin1String("/images")) {
877 props
.setViewMode(DolphinView::IconsView
);
878 props
.setPreviewsShown(true);
879 props
.setVisibleRoles(QList
<QByteArray
>() << "text" << "imageSize");
880 } else if (path
== QLatin1String("/audio")) {
881 props
.setViewMode(DolphinView::DetailsView
);
882 props
.setPreviewsShown(false);
883 props
.setVisibleRoles(QList
<QByteArray
>() << "text" << "artist" << "album");
884 } else if (path
== QLatin1String("/videos")) {
885 props
.setViewMode(DolphinView::IconsView
);
886 props
.setPreviewsShown(true);
887 props
.setVisibleRoles(QList
<QByteArray
>() << "text");
888 } else if (data
.url
.protocol() == "timeline") {
889 props
.setViewMode(DolphinView::DetailsView
);
890 props
.setVisibleRoles(QList
<QByteArray
>() << "text" << "date");
898 void PlacesItemModel::createSystemBookmarks()
900 Q_ASSERT(m_systemBookmarks
.isEmpty());
901 Q_ASSERT(m_systemBookmarksIndexes
.isEmpty());
903 const QString timeLineIcon
= "chronometer";
905 // Note: The context of the I18N_NOOP2 must be "KFile System Bookmarks". The real
906 // i18nc call is done after reading the bookmark. The reason why the i18nc call is not
907 // done here is because otherwise switching the language would not result in retranslating the
909 m_systemBookmarks
.append(SystemBookmarkData(KUrl(KUser().homeDir()),
911 I18N_NOOP2("KFile System Bookmarks", "Home")));
912 m_systemBookmarks
.append(SystemBookmarkData(KUrl("remote:/"),
914 I18N_NOOP2("KFile System Bookmarks", "Network")));
915 m_systemBookmarks
.append(SystemBookmarkData(KUrl("/"),
917 I18N_NOOP2("KFile System Bookmarks", "Root")));
918 m_systemBookmarks
.append(SystemBookmarkData(KUrl("trash:/"),
920 I18N_NOOP2("KFile System Bookmarks", "Trash")));
922 if (m_fileIndexingEnabled
) {
923 m_systemBookmarks
.append(SystemBookmarkData(KUrl("timeline:/today"),
925 I18N_NOOP2("KFile System Bookmarks", "Today")));
926 m_systemBookmarks
.append(SystemBookmarkData(KUrl("timeline:/yesterday"),
928 I18N_NOOP2("KFile System Bookmarks", "Yesterday")));
929 m_systemBookmarks
.append(SystemBookmarkData(KUrl("timeline:/thismonth"),
931 I18N_NOOP2("KFile System Bookmarks", "This Month")));
932 m_systemBookmarks
.append(SystemBookmarkData(KUrl("timeline:/lastmonth"),
934 I18N_NOOP2("KFile System Bookmarks", "Last Month")));
935 m_systemBookmarks
.append(SystemBookmarkData(KUrl("search:/documents"),
937 I18N_NOOP2("KFile System Bookmarks", "Documents")));
938 m_systemBookmarks
.append(SystemBookmarkData(KUrl("search:/images"),
940 I18N_NOOP2("KFile System Bookmarks", "Images")));
941 m_systemBookmarks
.append(SystemBookmarkData(KUrl("search:/audio"),
943 I18N_NOOP2("KFile System Bookmarks", "Audio Files")));
944 m_systemBookmarks
.append(SystemBookmarkData(KUrl("search:/videos"),
946 I18N_NOOP2("KFile System Bookmarks", "Videos")));
949 for (int i
= 0; i
< m_systemBookmarks
.count(); ++i
) {
950 m_systemBookmarksIndexes
.insert(m_systemBookmarks
[i
].url
, i
);
954 void PlacesItemModel::initializeAvailableDevices()
956 QString
predicate("[[[[ StorageVolume.ignored == false AND [ StorageVolume.usage == 'FileSystem' OR StorageVolume.usage == 'Encrypted' ]]"
958 "[ IS StorageAccess AND StorageDrive.driveType == 'Floppy' ]]"
960 "OpticalDisc.availableContent & 'Audio' ]"
962 "StorageAccess.ignored == false ]");
965 if (KProtocolInfo::isKnownProtocol("mtp")) {
966 predicate
.prepend("[");
967 predicate
.append(" OR PortableMediaPlayer.supportedProtocols == 'mtp']");
970 m_predicate
= Solid::Predicate::fromString(predicate
);
971 Q_ASSERT(m_predicate
.isValid());
973 Solid::DeviceNotifier
* notifier
= Solid::DeviceNotifier::instance();
974 connect(notifier
, SIGNAL(deviceAdded(QString
)), this, SLOT(slotDeviceAdded(QString
)));
975 connect(notifier
, SIGNAL(deviceRemoved(QString
)), this, SLOT(slotDeviceRemoved(QString
)));
977 const QList
<Solid::Device
>& deviceList
= Solid::Device::listFromQuery(m_predicate
);
978 foreach (const Solid::Device
& device
, deviceList
) {
979 m_availableDevices
<< device
.udi();
983 int PlacesItemModel::bookmarkIndex(int index
) const
985 int bookmarkIndex
= 0;
987 while (bookmarkIndex
< m_bookmarkedItems
.count()) {
988 if (!m_bookmarkedItems
[bookmarkIndex
]) {
989 if (modelIndex
== index
) {
997 return bookmarkIndex
>= m_bookmarkedItems
.count() ? -1 : bookmarkIndex
;
1000 void PlacesItemModel::hideItem(int index
)
1002 PlacesItem
* shownItem
= placesItem(index
);
1007 shownItem
->setHidden(true);
1008 if (m_hiddenItemsShown
) {
1009 // Removing items from the model is not allowed if all hidden
1010 // items should be shown.
1014 const int newIndex
= bookmarkIndex(index
);
1015 if (newIndex
>= 0) {
1016 const KBookmark hiddenBookmark
= shownItem
->bookmark();
1017 PlacesItem
* hiddenItem
= new PlacesItem(hiddenBookmark
);
1019 const PlacesItem
* previousItem
= placesItem(index
- 1);
1020 KBookmark previousBookmark
;
1022 previousBookmark
= previousItem
->bookmark();
1025 const bool updateBookmark
= (m_bookmarkManager
->root().indexOf(hiddenBookmark
) >= 0);
1028 if (updateBookmark
) {
1029 // removeItem() also removed the bookmark from m_bookmarkManager in
1030 // PlacesItemModel::onItemRemoved(). However for hidden items the
1031 // bookmark should still be remembered, so readd it again:
1032 m_bookmarkManager
->root().addBookmark(hiddenBookmark
);
1033 m_bookmarkManager
->root().moveBookmark(hiddenBookmark
, previousBookmark
);
1034 triggerBookmarksSaving();
1037 m_bookmarkedItems
.insert(newIndex
, hiddenItem
);
1041 void PlacesItemModel::triggerBookmarksSaving()
1043 if (m_saveBookmarksTimer
) {
1044 m_saveBookmarksTimer
->start();
1048 QString
PlacesItemModel::internalMimeType() const
1050 return "application/x-dolphinplacesmodel-" +
1051 QString::number((qptrdiff
)this);
1054 int PlacesItemModel::groupedDropIndex(int index
, const PlacesItem
* item
) const
1058 int dropIndex
= index
;
1059 const PlacesItem::GroupType type
= item
->groupType();
1061 const int itemCount
= count();
1063 dropIndex
= itemCount
;
1066 // Search nearest previous item with the same group
1067 int previousIndex
= -1;
1068 for (int i
= dropIndex
- 1; i
>= 0; --i
) {
1069 if (placesItem(i
)->groupType() == type
) {
1075 // Search nearest next item with the same group
1077 for (int i
= dropIndex
; i
< count(); ++i
) {
1078 if (placesItem(i
)->groupType() == type
) {
1084 // Adjust the drop-index to be inserted to the
1085 // nearest item with the same group.
1086 if (previousIndex
>= 0 && nextIndex
>= 0) {
1087 dropIndex
= (dropIndex
- previousIndex
< nextIndex
- dropIndex
) ?
1088 previousIndex
+ 1 : nextIndex
;
1089 } else if (previousIndex
>= 0) {
1090 dropIndex
= previousIndex
+ 1;
1091 } else if (nextIndex
>= 0) {
1092 dropIndex
= nextIndex
;
1098 bool PlacesItemModel::equalBookmarkIdentifiers(const KBookmark
& b1
, const KBookmark
& b2
)
1100 const QString udi1
= b1
.metaDataItem("UDI");
1101 const QString udi2
= b2
.metaDataItem("UDI");
1102 if (!udi1
.isEmpty() && !udi2
.isEmpty()) {
1103 return udi1
== udi2
;
1105 return b1
.metaDataItem("ID") == b2
.metaDataItem("ID");
1109 KUrl
PlacesItemModel::createTimelineUrl(const KUrl
& url
)
1111 // TODO: Clarify with the Nepomuk-team whether it makes sense
1112 // provide default-timeline-URLs like 'yesterday', 'this month'
1113 // and 'last month'.
1116 const QString path
= url
.pathOrUrl();
1117 if (path
.endsWith(QLatin1String("yesterday"))) {
1118 const QDate date
= QDate::currentDate().addDays(-1);
1119 const int year
= date
.year();
1120 const int month
= date
.month();
1121 const int day
= date
.day();
1122 timelineUrl
= "timeline:/" + timelineDateString(year
, month
) +
1123 '/' + timelineDateString(year
, month
, day
);
1124 } else if (path
.endsWith(QLatin1String("thismonth"))) {
1125 const QDate date
= QDate::currentDate();
1126 timelineUrl
= "timeline:/" + timelineDateString(date
.year(), date
.month());
1127 } else if (path
.endsWith(QLatin1String("lastmonth"))) {
1128 const QDate date
= QDate::currentDate().addMonths(-1);
1129 timelineUrl
= "timeline:/" + timelineDateString(date
.year(), date
.month());
1131 Q_ASSERT(path
.endsWith(QLatin1String("today")));
1138 QString
PlacesItemModel::timelineDateString(int year
, int month
, int day
)
1140 QString date
= QString::number(year
) + '-';
1144 date
+= QString::number(month
);
1151 date
+= QString::number(day
);
1157 KUrl
PlacesItemModel::createSearchUrl(const KUrl
& url
)
1162 const QString path
= url
.pathOrUrl();
1163 if (path
.endsWith(QLatin1String("documents"))) {
1164 searchUrl
= searchUrlForTerm(Nepomuk::Query::ResourceTypeTerm(Nepomuk::Vocabulary::NFO::Document()));
1165 } else if (path
.endsWith(QLatin1String("images"))) {
1166 searchUrl
= searchUrlForTerm(Nepomuk::Query::ResourceTypeTerm(Nepomuk::Vocabulary::NFO::Image()));
1167 } else if (path
.endsWith(QLatin1String("audio"))) {
1168 searchUrl
= searchUrlForTerm(Nepomuk::Query::ComparisonTerm(Nepomuk::Vocabulary::NIE::mimeType(),
1169 Nepomuk::Query::LiteralTerm("audio")));
1170 } else if (path
.endsWith(QLatin1String("videos"))) {
1171 searchUrl
= searchUrlForTerm(Nepomuk::Query::ComparisonTerm(Nepomuk::Vocabulary::NIE::mimeType(),
1172 Nepomuk::Query::LiteralTerm("video")));
1184 KUrl
PlacesItemModel::searchUrlForTerm(const Nepomuk::Query::Term
& term
)
1186 const Nepomuk::Query::FileQuery
query(term
);
1187 return query
.toSearchUrl();
1191 #ifdef PLACESITEMMODEL_DEBUG
1192 void PlacesItemModel::showModelState()
1194 kDebug() << "=================================";
1195 kDebug() << "Model:";
1196 kDebug() << "hidden-index model-index text";
1198 for (int i
= 0; i
< m_bookmarkedItems
.count(); ++i
) {
1199 if (m_bookmarkedItems
[i
]) {
1200 kDebug() << i
<< "(Hidden) " << " " << m_bookmarkedItems
[i
]->dataValue("text").toString();
1202 if (item(modelIndex
)) {
1203 kDebug() << i
<< " " << modelIndex
<< " " << item(modelIndex
)->dataValue("text").toString();
1205 kDebug() << i
<< " " << modelIndex
<< " " << "(not available yet)";
1212 kDebug() << "Bookmarks:";
1214 int bookmarkIndex
= 0;
1215 KBookmarkGroup root
= m_bookmarkManager
->root();
1216 KBookmark bookmark
= root
.first();
1217 while (!bookmark
.isNull()) {
1218 const QString udi
= bookmark
.metaDataItem("UDI");
1219 const QString text
= udi
.isEmpty() ? bookmark
.text() : udi
;
1220 if (bookmark
.metaDataItem("IsHidden") == QLatin1String("true")) {
1221 kDebug() << bookmarkIndex
<< "(Hidden)" << text
;
1223 kDebug() << bookmarkIndex
<< " " << text
;
1226 bookmark
= root
.next(bookmark
);
1232 #include "placesitemmodel.moc"