This repository was archived by the owner on Jan 23, 2026. It is now read-only.
forked from Chronial/foo_chronflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDbAlbumCollection.h
More file actions
139 lines (113 loc) · 4.2 KB
/
Copy pathDbAlbumCollection.h
File metadata and controls
139 lines (113 loc) · 4.2 KB
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
133
134
135
136
137
138
139
#pragma once
#include "DbAlbumInfo.h"
#include "utils.h"
namespace db {
namespace db_structure {
namespace bomi = boost::multi_index;
struct CompWLogical {
bool operator()(const std::wstring& a, const std::wstring& b) const {
return StrCmpLogicalW(a.c_str(), b.c_str()) < 0;
}
};
struct key {};
struct sortKey {};
struct Album {
Album(const char* key, const wchar_t* sortKey, const char* title)
: key(key), sortKey(sortKey), title(title){};
// We want to have permanent references to albums for our reversemap
NO_MOVE_NO_COPY(Album);
std::string key;
std::wstring sortKey;
std::string title;
mutable metadb_handle_list tracks;
};
using Container = bomi::multi_index_container<
Album, bomi::indexed_by<
bomi::hashed_unique<bomi::tag<key>,
bomi::member<Album, std::string, &Album::key>>,
bomi::ranked_non_unique<bomi::tag<sortKey>,
bomi::member<Album, std::wstring, &Album::sortKey>,
CompWLogical>>>;
class DB {
public:
DB(t_uint64 libraryVersion, const std::string& filterQuery,
const std::string& keyFormat, const std::string& sortFormat,
const std::string& titleFormat, const bool wholelib, const bool grouped);
NO_MOVE_NO_COPY(DB);
Container container;
Container::index<key>::type& keyIndex;
Container::index<sortKey>::type& sortIndex;
std::map<const metadb_handle_ptr, const db_structure::Album&> trackMap;
t_uint64 libraryVersion;
search_filter_v2::ptr filter;
titleformat_object::ptr keyBuilder;
titleformat_object::ptr sortFormatter;
titleformat_object::ptr titleFormatter;
bool cover_whole_lib = true;
bool cover_grouped = true;
};
using DBIter = Container::index<sortKey>::type::iterator;
} // namespace db_structure
using db_structure::DBIter;
using db_structure::DB;
class DBWriter {
public:
explicit DBWriter(db_structure::DB& db, bool wholelib, bool grouped)
: db(db), cover_wholelib(wholelib), cover_grouped(grouped) {};
NO_MOVE_NO_COPY(DBWriter);
void add_tracks(metadb_handle_list_cref tracks, abort_callback& abort);
void remove_tracks(metadb_handle_list_cref tracks);
void modify_tracks(metadb_handle_list_cref tracks);
private:
void add_track(const metadb_handle_ptr& track);
void remove_track(const metadb_handle_ptr& track);
void update_album_metadata(const db_structure::Album& album);
db_structure::DB& db;
bool cover_wholelib = true;
bool cover_grouped = true;
pfc::string8_fast_aggressive keyBuffer;
pfc::string8_fast_aggressive sortBuffer;
pfc::string8_fast_aggressive titleBuffer;
pfc::stringcvt::string_wide_from_utf8_fast sortBufferWide;
};
class DbAlbumCollection {
public:
bool initializing() { return !db; }
bool empty() { return db ? db->container.empty() : true; }
size_t size() { return db ? db->container.size() : 0; }
AlbumInfo getAlbumInfo(DBIter pos);
void getTracks(DBIter pos, metadb_handle_list& out);
std::optional<DBPos> getPosForTrack(const metadb_handle_ptr& track);
template <class T>
DBPos posFromIter(T iter) const {
auto i = db->container.project<0>(iter);
if (i == db->container.get<0>().end()) {
return {};
} else {
return {iter->key, iter->sortKey};
}
};
// Returns a valid (non-end) iterator or nullopt if db is empty
std::optional<DBIter> iterFromPos(const DBPos&) const;
// Gets the leftmost album whose title starts with `input`
std::optional<DBPos> performFayt(const std::string& input);
void onCollectionReload(std::unique_ptr<db_structure::DB> newDb);
DBIter begin() const;
DBIter end() const;
int difference(DBIter, DBIter);
DBIter moveIterBy(const DBIter& p, int n) const;
DBPos movePosBy(const DBPos& p, int n) const {
auto iter = iterFromPos(p);
if (!iter)
return DBPos();
return posFromIter(moveIterBy(iter.value(), n));
}
enum LibraryChangeType { items_added, items_removed, items_modified };
void handleLibraryChange(t_uint64 version, LibraryChangeType type,
metadb_handle_list tracks);
private:
std::vector<std::tuple<t_uint64, LibraryChangeType, metadb_handle_list>>
libraryChangeQueue;
unique_ptr<DB> db;
};
} // namespace