2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* Strawberry 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.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MUSICSTORAGE_H
|
|
|
|
#define MUSICSTORAGE_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2020-02-08 03:40:30 +01:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <QMetaType>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QList>
|
|
|
|
|
|
|
|
#include "song.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
class MusicStorage {
|
|
|
|
public:
|
2020-04-07 16:49:15 +02:00
|
|
|
explicit MusicStorage();
|
2020-06-15 21:55:05 +02:00
|
|
|
virtual ~MusicStorage() = default;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
enum Role {
|
|
|
|
Role_Storage = Qt::UserRole + 100,
|
|
|
|
Role_StorageForceConnect,
|
|
|
|
Role_Capacity,
|
|
|
|
Role_FreeSpace,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Values are saved in the database - don't change
|
|
|
|
enum TranscodeMode {
|
|
|
|
Transcode_Always = 1,
|
|
|
|
Transcode_Never = 2,
|
|
|
|
Transcode_Unsupported = 3,
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::function<void(float progress)> ProgressFunction;
|
|
|
|
|
|
|
|
struct CopyJob {
|
2020-08-19 22:02:35 +02:00
|
|
|
CopyJob() : overwrite_(false), mark_as_listened_(false), remove_original_(false), albumcover_(false) {}
|
2018-02-27 18:06:05 +01:00
|
|
|
QString source_;
|
|
|
|
QString destination_;
|
|
|
|
Song metadata_;
|
|
|
|
bool overwrite_;
|
|
|
|
bool mark_as_listened_;
|
|
|
|
bool remove_original_;
|
2019-01-26 17:18:26 +01:00
|
|
|
bool albumcover_;
|
|
|
|
QString cover_source_;
|
|
|
|
QString cover_dest_;
|
2018-02-27 18:06:05 +01:00
|
|
|
ProgressFunction progress_;
|
2019-08-07 17:13:40 +02:00
|
|
|
QString playlist_;
|
2018-02-27 18:06:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct DeleteJob {
|
2020-08-19 22:02:35 +02:00
|
|
|
DeleteJob() : use_trash_(false) {}
|
2018-02-27 18:06:05 +01:00
|
|
|
Song metadata_;
|
2020-08-19 22:02:35 +02:00
|
|
|
bool use_trash_;
|
2018-02-27 18:06:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
virtual QString LocalPath() const { return QString(); }
|
|
|
|
|
|
|
|
virtual TranscodeMode GetTranscodeMode() const { return Transcode_Never; }
|
2018-09-08 12:38:02 +02:00
|
|
|
virtual Song::FileType GetTranscodeFormat() const { return Song::FileType_Unknown; }
|
2019-09-15 20:27:32 +02:00
|
|
|
virtual bool GetSupportedFiletypes(QList<Song::FileType>* ret) { Q_UNUSED(ret); return true; }
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-09-15 20:27:32 +02:00
|
|
|
virtual bool StartCopy(QList<Song::FileType>* supported_types) { Q_UNUSED(supported_types); return true; }
|
2018-02-27 18:06:05 +01:00
|
|
|
virtual bool CopyToStorage(const CopyJob& job) = 0;
|
2019-09-15 20:27:32 +02:00
|
|
|
virtual void FinishCopy(bool success) { Q_UNUSED(success); }
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
virtual void StartDelete() {}
|
|
|
|
virtual bool DeleteFromStorage(const DeleteJob& job) = 0;
|
2019-09-15 20:27:32 +02:00
|
|
|
virtual void FinishDelete(bool success) { Q_UNUSED(success); }
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
virtual void Eject() {}
|
|
|
|
};
|
|
|
|
|
2019-09-15 20:27:32 +02:00
|
|
|
Q_DECLARE_METATYPE(MusicStorage*)
|
|
|
|
Q_DECLARE_METATYPE(std::shared_ptr<MusicStorage>)
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#endif // MUSICSTORAGE_H
|