Sayonara Player
Library.h
1/* DatabaseLibrary.h */
2
3/* Copyright (C) 2011-2020 Michael Lugmair (Lucio Carreras)
4 *
5 * This file is part of sayonara player
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef DATABASELIBRARY_H
22#define DATABASELIBRARY_H
23
24#include "Database/Module.h"
25
26#include <QList>
27#include <QMap>
28
29class MetaDataList;
30
31namespace Library
32{
33 class Info;
34}
35
36namespace DB
37{
38 class Library :
39 private Module
40 {
41 PIMPL(Library)
42
43 public:
44 Library(const QString& connectionName, DbId databaseId);
45 ~Library() override;
46
48 QList<LibraryInfo> getAllLibraries();
49
50 bool insertLibrary(LibraryId libraryId, const QString& libraryName, const QString& libraryPath, int index);
51 bool editLibrary(LibraryId libraryId, const QString& newName, const QString& newPath);
52 bool removeLibrary(LibraryId libraryId);
53 bool reorderLibraries(const QMap<LibraryId, int>& order);
54
55 virtual void dropIndexes();
56 virtual void createIndexes();
57
58 virtual void addAlbumArtists();
59 };
60}
61
62#endif // DATABASELIBRARY_H
Definition: Module.h:33
The Info class.
Definition: LibraryInfo.h:38
The MetaDataList class.
Definition: MetaDataList.h:39
Definition: EngineUtils.h:33
Definition: org_mpris_media_player2_adaptor.h:21
An interface class needed when implementing a library plugin.
Definition: LocalLibraryWatcher.h:31