2010-07-19 21:56:29 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-03-23 12:23:55 +01:00
|
|
|
#include "config.h"
|
2011-04-22 18:50:29 +02:00
|
|
|
#include "core/logging.h"
|
2011-03-23 12:23:55 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_GIO
|
|
|
|
# include <gio/gio.h>
|
|
|
|
#endif
|
2010-07-19 21:56:29 +02:00
|
|
|
|
2011-03-23 12:23:55 +01:00
|
|
|
#include "filesystemmusicstorage.h"
|
|
|
|
#include <QByteArray>
|
2010-07-19 21:56:29 +02:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
FilesystemMusicStorage::FilesystemMusicStorage(const QString& root)
|
|
|
|
: root_(root)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-08-28 23:55:30 +02:00
|
|
|
bool FilesystemMusicStorage::CopyToStorage(const CopyJob& job) {
|
|
|
|
const QString dest_filename = root_ + "/" + job.destination_;
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
// Don't do anything if the destination is the same as the source
|
2010-08-28 23:55:30 +02:00
|
|
|
if (job.source_ == dest_filename)
|
2010-07-19 21:56:29 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Create directories as required
|
2010-09-18 12:06:30 +02:00
|
|
|
const QString dest_directory = dest_filename.section('/', 0, -2);
|
2010-07-19 21:56:29 +02:00
|
|
|
QDir dir;
|
2010-09-18 12:06:30 +02:00
|
|
|
if (!dir.mkpath(dest_directory)) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "Failed to create directory" << dest_directory;
|
2010-09-18 12:06:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-07-19 21:56:29 +02:00
|
|
|
|
|
|
|
// Remove the destination file if it exists and we want to overwrite
|
2010-08-28 23:55:30 +02:00
|
|
|
if (job.overwrite_ && QFile::exists(dest_filename))
|
2010-07-19 21:56:29 +02:00
|
|
|
QFile::remove(dest_filename);
|
|
|
|
|
|
|
|
// Copy or move
|
2010-08-28 23:55:30 +02:00
|
|
|
if (job.remove_original_)
|
|
|
|
return QFile::rename(job.source_, dest_filename);
|
2010-07-19 21:56:29 +02:00
|
|
|
else
|
2010-08-28 23:55:30 +02:00
|
|
|
return QFile::copy(job.source_, dest_filename);
|
2010-07-19 21:56:29 +02:00
|
|
|
}
|
2010-07-31 18:12:16 +02:00
|
|
|
|
2010-08-28 23:55:30 +02:00
|
|
|
bool FilesystemMusicStorage::DeleteFromStorage(const DeleteJob& job) {
|
2011-03-23 12:23:55 +01:00
|
|
|
#ifdef HAVE_GIO
|
|
|
|
//convert QString to char
|
|
|
|
QByteArray ba = job.metadata_.filename().toLocal8Bit();
|
|
|
|
const char *filepathChar = ba.data();
|
|
|
|
GFile *file = g_file_new_for_path (filepathChar);
|
|
|
|
bool success = g_file_trash(file, NULL, NULL);
|
|
|
|
g_object_unref(file);
|
|
|
|
return success;
|
|
|
|
#else
|
2010-08-28 23:55:30 +02:00
|
|
|
return QFile::remove(job.metadata_.filename());
|
2011-03-23 12:23:55 +01:00
|
|
|
#endif
|
2010-07-31 18:12:16 +02:00
|
|
|
}
|
2011-03-23 12:23:55 +01:00
|
|
|
|