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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
/*
* Copyright (C) 2009-2012 Geometer Plus <[email protected]>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifndef __DBRUNNABLES_H__
#define __DBRUNNABLES_H__
#include <deque>
#include <vector>
#include "../../reader/ReadingState.h"
#include "../sqldb/DBConnection.h"
#include "../sqldb/DBCommand.h"
#include "../sqldb/DBRunnable.h"
#include "BooksDBQuery.h"
#include "../../library/Lists.h"
class FindFileIdRunnable;
class LoadFileEntriesRunnable;
class DeleteFileEntriesRunnable;
/*
* Save Runnables
*/
class InitBooksDBRunnable : public DBRunnable {
public:
InitBooksDBRunnable(DBConnection &connection);
bool run();
private:
DBConnection &myConnection;
};
class ClearBooksDBRunnable : public DBRunnable {
public:
ClearBooksDBRunnable(DBConnection &connection);
bool run();
private:
DBConnection &myConnection;
};
class SaveTableBookRunnable : public DBRunnable {
public:
SaveTableBookRunnable(DBConnection &connection);
bool run();
void setBook(shared_ptr<Book> book);
private:
bool addTableBook(const shared_ptr<Book> book, int fileId);
bool updateTableBook(const shared_ptr<Book> book);
private:
shared_ptr<Book> myBook;
shared_ptr<DBCommand> myFindBookId;
shared_ptr<DBCommand> myAddBook;
shared_ptr<DBCommand> myUpdateBook;
shared_ptr<FindFileIdRunnable> myFindFileId;
};
class SaveAuthorsRunnable : public DBRunnable {
public:
SaveAuthorsRunnable(DBConnection &connection);
bool run();
void setBook(shared_ptr<Book> book);
private:
shared_ptr<Book> myBook;
shared_ptr<DBCommand> mySetBookAuthor;
shared_ptr<DBCommand> myTrimBookAuthors;
shared_ptr<DBCommand> myFindAuthorId;
shared_ptr<DBCommand> myAddAuthor;
};
class SaveTagsRunnable : public DBRunnable {
public:
SaveTagsRunnable(DBConnection &connection);
bool run();
void setBook(shared_ptr<Book> book);
private:
int findTagId(shared_ptr<Tag> tag);
private:
shared_ptr<Book> myBook;
shared_ptr<DBCommand> myAddBookTag;
shared_ptr<DBCommand> myDeleteBookTag;
shared_ptr<DBCommand> myFindTagId;
shared_ptr<DBCommand> myAddTag;
shared_ptr<DBCommand> myLoadBookTags;
};
class SaveSeriesRunnable : public DBRunnable {
public:
SaveSeriesRunnable(DBConnection &connection);
bool run();
void setBook(shared_ptr<Book> book);
private:
shared_ptr<Book> myBook;
shared_ptr<DBCommand> mySetBookSeries;
shared_ptr<DBCommand> myDeleteBookSeries;
shared_ptr<DBCommand> myFindSeriesId;
shared_ptr<DBCommand> myAddSeries;
};
class SaveBookRunnable : public DBRunnable {
public:
SaveBookRunnable(SaveTableBookRunnable &saveTableBook, SaveAuthorsRunnable &saveAuthors,
SaveSeriesRunnable &saveSeries, SaveTagsRunnable &saveTags);
bool run();
void setBook(shared_ptr<Book> book);
private:
SaveTableBookRunnable &mySaveTableBook;
SaveAuthorsRunnable &mySaveAuthors;
SaveSeriesRunnable &mySaveSeries;
SaveTagsRunnable &mySaveTags;
};
class SaveFileEntriesRunnable : public DBRunnable {
public:
SaveFileEntriesRunnable(DBConnection &connection);
bool run();
void setEntries(const std::string &fileName, const std::vector<std::string> &entries);
private:
std::string myFileName;
std::vector<std::string> myEntries;
shared_ptr<DBCommand> myAddFile;
shared_ptr<FindFileIdRunnable> myFindFileId;
shared_ptr<DeleteFileEntriesRunnable> myDeleteFileEntries;
};
class SaveRecentBooksRunnable : public DBRunnable {
public:
SaveRecentBooksRunnable(DBConnection &connection);
bool run();
void setBooks(const BookList &books);
private:
BookList myBooks;
shared_ptr<DBCommand> myClearRecentBooks;
shared_ptr<DBCommand> myInsertRecentBooks;
};
class SaveBookStateStackRunnable : public DBRunnable {
public:
SaveBookStateStackRunnable(DBConnection &connection);
bool run();
void setState(int bookId, const std::deque<ReadingState > &stack);
private:
int myBookId;
std::deque<ReadingState > myStack;
shared_ptr<DBCommand> myTrimBookStateStack;
shared_ptr<DBCommand> mySetBookStateStack;
};
class DeleteFileEntriesRunnable : public DBRunnable {
public:
DeleteFileEntriesRunnable(DBConnection &connection);
bool run();
void setFileId(int fileId);
private:
bool doDelete(int fileId);
private:
int myFileId;
shared_ptr<DBCommand> myDeleteFileEntries;
shared_ptr<DBCommand> myLoadFileEntryIds;
};
class DeleteBookRunnable : public DBRunnable {
public:
DeleteBookRunnable(DBConnection &connection);
bool run();
void setFileName(const std::string &fileName);
private:
std::string myFileName;
shared_ptr<FindFileIdRunnable> myFindFileId;
shared_ptr<DBCommand> myDeleteFile;
};
inline InitBooksDBRunnable::InitBooksDBRunnable(DBConnection &connection) : myConnection(connection) {}
inline ClearBooksDBRunnable::ClearBooksDBRunnable(DBConnection &connection) : myConnection(connection) {}
inline void SaveFileEntriesRunnable::setEntries(const std::string &fileName, const std::vector<std::string> &entries) {
myFileName = fileName;
myEntries = entries; // copy vector
}
inline void SaveBookStateStackRunnable::setState(int bookId, const std::deque<ReadingState > &stack) {
myBookId = bookId;
myStack = stack; // copy deque
}
inline void DeleteFileEntriesRunnable::setFileId(int fileId) { myFileId = fileId; }
inline void DeleteBookRunnable::setFileName(const std::string &fileName) { myFileName = fileName; }
/*
* Load & Modify Runnables
*/
class FindFileIdRunnable : public DBRunnable {
public:
FindFileIdRunnable(DBConnection &connection);
bool run();
void setFileName(const std::string &fileName, bool add = false);
int fileId() const;
private:
std::string myFileName;
bool myAdd;
int myFileId;
shared_ptr<DBCommand> myFindFileId;
shared_ptr<DBCommand> myAddFile;
};
/*
* Load Runnables
*/
class LoadFileEntriesRunnable : public DBRunnable {
public:
LoadFileEntriesRunnable(DBConnection &connection);
bool run();
void setFileName(const std::string &fileName);
void collectEntries(std::vector<std::string> &entries);
private:
std::string myFileName;
std::vector<std::string> myEntries;
shared_ptr<FindFileIdRunnable> myFindFileId;
shared_ptr<DBCommand> myLoadFileEntries;
};
class LoadRecentBooksRunnable : public DBRunnable {
public:
LoadRecentBooksRunnable(DBConnection &connection);
bool run();
void collectFileIds(std::vector<int> &fileIds);
private:
std::vector<int> myFileIds;
shared_ptr<DBCommand> myLoadRecentBooks;
};
#endif /* __DBRUNNABLES_H__ */
|