Skip to content
QGCMobileFileDialogController.cc 2.42 KiB
Newer Older
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
Don Gagne's avatar
Don Gagne committed


#include "QGCMobileFileDialogController.h"

#include <QStandardPaths>
#include <QDebug>
#include <QDir>

Don Gagne's avatar
Don Gagne committed
QGC_LOGGING_CATEGORY(QGCMobileFileDialogControllerLog, "QGCMobileFileDialogControllerLog")

Don Gagne's avatar
Don Gagne committed
QStringList QGCMobileFileDialogController::getFiles(const QString& fileExtension)
{
    QStringList files;

Don Gagne's avatar
Don Gagne committed
    QDir fileDir(_getSaveLocation());
Don Gagne's avatar
Don Gagne committed

    QFileInfoList fileInfoList = fileDir.entryInfoList(QStringList(QString("*.%1").arg(fileExtension)),  QDir::Files, QDir::Name);

    foreach (const QFileInfo& fileInfo, fileInfoList) {
        files << fileInfo.baseName() + QStringLiteral(".") + fileExtension;
    }

    return files;
}

QString QGCMobileFileDialogController::fullPath(const QString& filename, const QString& fileExtension)
{
Don Gagne's avatar
Don Gagne committed
    qDebug() << "QGCMobileFileDialogController::fullPath" << filename << fileExtension;
Don Gagne's avatar
Don Gagne committed
    QString saveLocation(_getSaveLocation());
    if (saveLocation.isEmpty()) {
Don Gagne's avatar
Don Gagne committed
        return filename;
    }

    QString fixedFilename(filename);
    QString correctExtension = QString(".%1").arg(fileExtension);
    if (!filename.endsWith(correctExtension)) {
        fixedFilename += correctExtension;
    }

Don Gagne's avatar
Don Gagne committed
    QString fullPath = saveLocation + QDir::separator() + fixedFilename;
    qCDebug(QGCMobileFileDialogControllerLog) << "Full path" << fullPath;
Don Gagne's avatar
Don Gagne committed
    return fullPath;
}

bool QGCMobileFileDialogController::fileExists(const QString& filename, const QString& fileExtension)
{
    QFile file(fullPath(filename, fileExtension));
Don Gagne's avatar
Don Gagne committed
    qDebug() << "QGCMobileFileDialogController::fileExists" << file.fileName();
Don Gagne's avatar
Don Gagne committed
    return file.exists();
}
Don Gagne's avatar
Don Gagne committed

QString QGCMobileFileDialogController::_getSaveLocation(void)
{
    QStringList docDirs = QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation);
    if (docDirs.count() <= 0) {
Don Gagne's avatar
Don Gagne committed
        qCWarning(QGCMobileFileDialogControllerLog) << "No save location";
Don Gagne's avatar
Don Gagne committed
        return QString();
    }
Don Gagne's avatar
Don Gagne committed

    QString saveDirectory = docDirs[0];
    if (!QDir(saveDirectory).exists()) {
        QDir().mkdir(saveDirectory);
    }
    qCDebug(QGCMobileFileDialogControllerLog) << "Save directory" << saveDirectory;
Don Gagne's avatar
Don Gagne committed
    
Don Gagne's avatar
Don Gagne committed
    return saveDirectory;
Don Gagne's avatar
Don Gagne committed
}