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
|
/*
* Copyright (C) 2016 Canonical Ltd.
*
* 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; version 3.
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include "storagelocations.h"
#include <QCoreApplication>
#include <QStandardPaths>
#include <QStorageInfo>
StorageLocations::StorageLocations(QObject *parent) : QObject(parent)
{
updateRemovableStorageInfo();
}
QString StorageLocations::picturesLocation() const
{
QStringList locations = QStandardPaths::standardLocations(QStandardPaths::PicturesLocation);
if (locations.isEmpty()) {
return QString();
}
QString location = locations.at(0) + "/" + QCoreApplication::applicationName();
QDir dir;
// Transition from old directory 'camera' to new one; see bug #1363112
// https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1363112
dir.rename(locations.at(0) + "/" + "camera", location);
dir.mkpath(location);
return location;
}
QString StorageLocations::videosLocation() const
{
QStringList locations = QStandardPaths::standardLocations(QStandardPaths::MoviesLocation);
if (locations.isEmpty()) {
return QString();
}
QString location = locations.at(0) + "/" + QCoreApplication::applicationName();
QDir dir;
// Transition from old directory 'camera' to new one; see bug #1363112
// https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1363112
dir.rename(locations.at(0) + "/" + "camera", location);
dir.mkpath(location);
return location;
}
QString StorageLocations::temporaryLocation() const
{
QStringList locations = QStandardPaths::standardLocations(QStandardPaths::TempLocation);
if (locations.isEmpty()) {
return QString();
}
QString location = locations.at(0);
QDir dir;
dir.mkpath(location);
return location;
}
QString StorageLocations::removableStorageLocation() const
{
return m_removableStorageLocation;
}
QString StorageLocations::removableStoragePicturesLocation() const
{
QString storageLocation = removableStorageLocation();
if (storageLocation.isEmpty()) {
return QString();
}
QStringList locations = QStandardPaths::standardLocations(QStandardPaths::PicturesLocation);
QString pictureDir = QString(locations.at(0)).split("/").value(3);
if (pictureDir.isEmpty()){
return QString();
}
QString location = storageLocation + "/" + pictureDir + "/" + QCoreApplication::applicationName();
QDir dir;
dir.mkpath(location);
return location;
}
QString StorageLocations::removableStorageVideosLocation() const
{
QString storageLocation = removableStorageLocation();
if (storageLocation.isEmpty()) {
return QString();
}
QStringList locations = QStandardPaths::standardLocations(QStandardPaths::MoviesLocation);
QString movieDir = QString(locations.at(0)).split("/").value(3);
if (movieDir.isEmpty()){
return QString();
}
QString location = storageLocation + "/" + movieDir + "/" + QCoreApplication::applicationName();
QDir dir;
dir.mkpath(location);
return location;
}
bool StorageLocations::removableStoragePresent() const
{
return !removableStorageLocation().isEmpty();
}
void StorageLocations::updateRemovableStorageInfo()
{
QString removableStorageLocation;
QString mediaRoot("/media/" + qgetenv("USER"));
// FIXME: calling QStorageInfo::mountedVolumes() is very slow (80ms on krillin)
Q_FOREACH(QStorageInfo volume, QStorageInfo::mountedVolumes()) {
if (volume.rootPath().startsWith(mediaRoot) &&
volume.isValid() && volume.isReady()) {
removableStorageLocation = volume.rootPath();
}
}
if (m_removableStorageLocation != removableStorageLocation) {
m_removableStorageLocation = removableStorageLocation;
Q_EMIT removableStoragePresentChanged();
}
}
|