##// END OF EJS Templates
Addd save methods. Fix bug with work repository suffix handling
perrinel -
r1224:4e7a8f2af91d
parent child
Show More
@@ -1,306 +1,338
1 1 #include <Catalogue/CatalogueController.h>
2 2
3 3 #include <Variable/Variable.h>
4 4
5 5 #include <CatalogueDao.h>
6 6
7 7 #include <ComparaisonPredicate.h>
8 8 #include <CompoundPredicate.h>
9 9 #include <DBCatalogue.h>
10 10 #include <DBEvent.h>
11 11 #include <DBEventProduct.h>
12 12 #include <DBTag.h>
13 13 #include <IRequestPredicate.h>
14 14
15 15 #include <QMutex>
16 16 #include <QThread>
17 17
18 18 #include <QDir>
19 19 #include <QStandardPaths>
20 20
21 21 Q_LOGGING_CATEGORY(LOG_CatalogueController, "CatalogueController")
22 22
23 23 namespace {
24 24
25 static QString REPOSITORY_WORK_SUFFIX = QString{"work"};
26 static QString REPOSITORY_TRASH_SUFFIX = QString{"trash"};
25 static QString REPOSITORY_WORK_SUFFIX = QString{"_work"};
26 static QString REPOSITORY_TRASH_SUFFIX = QString{"_trash"};
27 27 }
28 28
29 29 class CatalogueController::CatalogueControllerPrivate {
30 30
31 31 public:
32 32 explicit CatalogueControllerPrivate(CatalogueController *parent) : m_Q{parent} {}
33 33
34 34 QMutex m_WorkingMutex;
35 35 CatalogueDao m_CatalogueDao;
36 36
37 37 QStringList m_RepositoryList;
38 38 CatalogueController *m_Q;
39 39
40 40 void copyDBtoDB(const QString &dbFrom, const QString &dbTo);
41 41 QString toWorkRepository(QString repository);
42 42 QString toSyncRepository(QString repository);
43 void savAllDB();
44
45 void saveEvent(std::shared_ptr<DBEvent> event, bool persist = true);
46 void saveCatalogue(std::shared_ptr<DBCatalogue> catalogue, bool persist = true);
43 47 };
44 48
45 49 CatalogueController::CatalogueController(QObject *parent)
46 50 : impl{spimpl::make_unique_impl<CatalogueControllerPrivate>(this)}
47 51 {
48 52 qCDebug(LOG_CatalogueController()) << tr("CatalogueController construction")
49 53 << QThread::currentThread();
50 54 }
51 55
52 56 CatalogueController::~CatalogueController()
53 57 {
54 58 qCDebug(LOG_CatalogueController()) << tr("CatalogueController destruction")
55 59 << QThread::currentThread();
56 60 this->waitForFinish();
57 61 }
58 62
59 63 QStringList CatalogueController::getRepositories() const
60 64 {
61 65 return impl->m_RepositoryList;
62 66 }
63 67
64 68 void CatalogueController::addDB(const QString &dbPath)
65 69 {
66 70 QDir dbDir(dbPath);
67 71 if (dbDir.exists()) {
68 72 auto dirName = dbDir.dirName();
69 73
70 74 if (std::find(impl->m_RepositoryList.cbegin(), impl->m_RepositoryList.cend(), dirName)
71 75 != impl->m_RepositoryList.cend()) {
72 76 qCCritical(LOG_CatalogueController())
73 77 << tr("Impossible to addDB that is already loaded");
74 78 }
75 79
76 80 if (!impl->m_CatalogueDao.addDB(dbPath, dirName)) {
77 81 qCCritical(LOG_CatalogueController())
78 82 << tr("Impossible to addDB %1 from %2 ").arg(dirName, dbPath);
79 83 }
80 84 else {
81 85 impl->m_RepositoryList << dirName;
82 86 impl->copyDBtoDB(dirName, impl->toWorkRepository(dirName));
83 87 }
84 88 }
85 89 else {
86 90 qCCritical(LOG_CatalogueController()) << tr("Impossible to addDB that not exists: ")
87 91 << dbPath;
88 92 }
89 93 }
90 94
91 95 void CatalogueController::saveDB(const QString &destinationPath, const QString &repository)
92 96 {
93 97 if (!impl->m_CatalogueDao.saveDB(destinationPath, repository)) {
94 98 qCCritical(LOG_CatalogueController())
95 99 << tr("Impossible to saveDB %1 from %2 ").arg(repository, destinationPath);
96 100 }
97 101 }
98 102
99 103 std::list<std::shared_ptr<DBEvent> >
100 104 CatalogueController::retrieveEvents(const QString &repository) const
101 105 {
102 106 QString dbDireName = repository.isEmpty() ? REPOSITORY_DEFAULT : repository;
103 107
104 108 auto eventsShared = std::list<std::shared_ptr<DBEvent> >{};
105 109 auto events = impl->m_CatalogueDao.getEvents(impl->toWorkRepository(dbDireName));
106 110 for (auto event : events) {
107 111 eventsShared.push_back(std::make_shared<DBEvent>(event));
108 112 }
109 113 return eventsShared;
110 114 }
111 115
112 116 std::list<std::shared_ptr<DBEvent> > CatalogueController::retrieveAllEvents() const
113 117 {
114 118 auto eventsShared = std::list<std::shared_ptr<DBEvent> >{};
115 119 for (auto repository : impl->m_RepositoryList) {
116 120 eventsShared.splice(eventsShared.end(), retrieveEvents(repository));
117 121 }
118 122
119 123 return eventsShared;
120 124 }
121 125
122 126 std::list<std::shared_ptr<DBEvent> >
123 127 CatalogueController::retrieveEventsFromCatalogue(std::shared_ptr<DBCatalogue> catalogue) const
124 128 {
125 129 auto eventsShared = std::list<std::shared_ptr<DBEvent> >{};
126 130 auto events = impl->m_CatalogueDao.getCatalogueEvents(*catalogue);
127 131 for (auto event : events) {
128 132 eventsShared.push_back(std::make_shared<DBEvent>(event));
129 133 }
130 134 return eventsShared;
131 135 }
132 136
133 137 void CatalogueController::updateEvent(std::shared_ptr<DBEvent> event)
134 138 {
135 event->setRepository(impl->toSyncRepository(event->getRepository()));
139 event->setRepository(impl->toWorkRepository(event->getRepository()));
136 140
137 141 impl->m_CatalogueDao.updateEvent(*event);
138 142 }
139 143
140 144 void CatalogueController::removeEvent(std::shared_ptr<DBEvent> event)
141 145 {
142 146 // Remove it from both repository and repository_work
143 147 event->setRepository(impl->toWorkRepository(event->getRepository()));
144 148 impl->m_CatalogueDao.removeEvent(*event);
145 149 event->setRepository(impl->toSyncRepository(event->getRepository()));
146 150 impl->m_CatalogueDao.removeEvent(*event);
147 151 }
148 152
149 153 void CatalogueController::addEvent(std::shared_ptr<DBEvent> event)
150 154 {
151 155 event->setRepository(impl->toWorkRepository(event->getRepository()));
152 156
153 157 auto eventTemp = *event;
154 158 impl->m_CatalogueDao.addEvent(eventTemp);
155 159
156 160 // Call update is necessary at the creation of add Event if it has some tags or some event
157 161 // products
158 162 if (!event->getEventProducts().empty() || !event->getTags().empty()) {
159 163
160 164 auto eventProductsTemp = eventTemp.getEventProducts();
161 165 auto eventProductTempUpdated = std::list<DBEventProduct>{};
162 166 for (auto eventProductTemp : eventProductsTemp) {
163 167 eventProductTemp.setEvent(eventTemp);
164 168 eventProductTempUpdated.push_back(eventProductTemp);
165 169 }
166 170 eventTemp.setEventProducts(eventProductTempUpdated);
167 171
168 172 impl->m_CatalogueDao.updateEvent(eventTemp);
169 173 }
170 174 }
171 175
172 176 void CatalogueController::saveEvent(std::shared_ptr<DBEvent> event)
173 177 {
174 impl->m_CatalogueDao.moveEvent(*event, impl->toSyncRepository(event->getRepository()), true);
178 impl->saveEvent(event, true);
175 179 }
176 180
177 181 std::list<std::shared_ptr<DBCatalogue> >
178 182 CatalogueController::retrieveCatalogues(const QString &repository) const
179 183 {
180 184 QString dbDireName = repository.isEmpty() ? REPOSITORY_DEFAULT : repository;
181 185
182 186 auto cataloguesShared = std::list<std::shared_ptr<DBCatalogue> >{};
183 187 auto catalogues = impl->m_CatalogueDao.getCatalogues(impl->toWorkRepository(dbDireName));
184 188 for (auto catalogue : catalogues) {
185 189 cataloguesShared.push_back(std::make_shared<DBCatalogue>(catalogue));
186 190 }
187 191 return cataloguesShared;
188 192 }
189 193
190 194 void CatalogueController::updateCatalogue(std::shared_ptr<DBCatalogue> catalogue)
191 195 {
192 catalogue->setRepository(impl->toSyncRepository(catalogue->getRepository()));
196 catalogue->setRepository(impl->toWorkRepository(catalogue->getRepository()));
193 197
194 198 impl->m_CatalogueDao.updateCatalogue(*catalogue);
195 199 }
196 200
197 201 void CatalogueController::removeCatalogue(std::shared_ptr<DBCatalogue> catalogue)
198 202 {
199 203 // Remove it from both repository and repository_work
200 204 catalogue->setRepository(impl->toWorkRepository(catalogue->getRepository()));
201 205 impl->m_CatalogueDao.removeCatalogue(*catalogue);
202 206 catalogue->setRepository(impl->toSyncRepository(catalogue->getRepository()));
203 207 impl->m_CatalogueDao.removeCatalogue(*catalogue);
204 208 }
205 209
206 210 void CatalogueController::saveCatalogue(std::shared_ptr<DBCatalogue> catalogue)
207 211 {
208 impl->m_CatalogueDao.moveCatalogue(*catalogue,
209 impl->toSyncRepository(catalogue->getRepository()), true);
212 impl->saveCatalogue(catalogue, true);
210 213 }
211 214
212 215 void CatalogueController::saveAll()
213 216 {
214 217 for (auto repository : impl->m_RepositoryList) {
215 218 // Save Event
216 219 auto events = this->retrieveEvents(repository);
217 220 for (auto event : events) {
218 this->saveEvent(event);
221 impl->saveEvent(event, false);
219 222 }
220 223
221 224 // Save Catalogue
222 225 auto catalogues = this->retrieveCatalogues(repository);
223 226 for (auto catalogue : catalogues) {
224 this->saveCatalogue(catalogue);
227 impl->saveCatalogue(catalogue, false);
225 228 }
226 229 }
230
231 impl->savAllDB();
227 232 }
228 233
229 234 void CatalogueController::initialize()
230 235 {
231 236 qCDebug(LOG_CatalogueController()) << tr("CatalogueController init")
232 237 << QThread::currentThread();
233 238 impl->m_WorkingMutex.lock();
234 239 impl->m_CatalogueDao.initialize();
235 240 auto defaultRepositoryLocation
236 241 = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
237 242
238 243 QDir defaultRepositoryLocationDir;
239 244 if (defaultRepositoryLocationDir.mkpath(defaultRepositoryLocation)) {
240 245 defaultRepositoryLocationDir.cd(defaultRepositoryLocation);
241 246 auto defaultRepository = defaultRepositoryLocationDir.absoluteFilePath(REPOSITORY_DEFAULT);
242 247 qCInfo(LOG_CatalogueController()) << tr("Persistant data loading from: ")
243 248 << defaultRepository;
244 249 this->addDB(defaultRepository);
245 250 }
246 251 else {
247 252 qCWarning(LOG_CatalogueController())
248 253 << tr("Cannot load the persistent default repository from ")
249 254 << defaultRepositoryLocation;
250 255 }
251 256
252 257 qCDebug(LOG_CatalogueController()) << tr("CatalogueController init END");
253 258 }
254 259
255 260 void CatalogueController::finalize()
256 261 {
257 262 impl->m_WorkingMutex.unlock();
258 263 }
259 264
260 265 void CatalogueController::waitForFinish()
261 266 {
262 267 QMutexLocker locker{&impl->m_WorkingMutex};
263 268 }
264 269
265 270 void CatalogueController::CatalogueControllerPrivate::copyDBtoDB(const QString &dbFrom,
266 271 const QString &dbTo)
267 272 {
268 273 auto cataloguesShared = std::list<std::shared_ptr<DBCatalogue> >{};
269 274 auto catalogues = m_CatalogueDao.getCatalogues(dbFrom);
270 275 for (auto catalogue : catalogues) {
271 276 cataloguesShared.push_back(std::make_shared<DBCatalogue>(catalogue));
272 277 }
273 278
274 279 auto eventsShared = std::list<std::shared_ptr<DBEvent> >{};
275 280 auto events = m_CatalogueDao.getEvents(dbFrom);
276 281 for (auto event : events) {
277 282 eventsShared.push_back(std::make_shared<DBEvent>(event));
278 283 }
279 284
280 285 for (auto catalogue : cataloguesShared) {
281 286 m_CatalogueDao.copyCatalogue(*catalogue, dbTo, true);
282 287 }
283 288
284 289 for (auto event : eventsShared) {
285 290 m_CatalogueDao.copyEvent(*event, dbTo, true);
286 291 }
287 292 }
288 293
289 294 QString CatalogueController::CatalogueControllerPrivate::toWorkRepository(QString repository)
290 295 {
291 296 auto syncRepository = toSyncRepository(repository);
292 297
293 return QString("%1_%2").arg(syncRepository, REPOSITORY_WORK_SUFFIX);
298 return QString("%1%2").arg(syncRepository, REPOSITORY_WORK_SUFFIX);
294 299 }
295 300
296 301 QString CatalogueController::CatalogueControllerPrivate::toSyncRepository(QString repository)
297 302 {
298 303 auto syncRepository = repository;
299 304 if (repository.endsWith(REPOSITORY_WORK_SUFFIX)) {
300 305 syncRepository.remove(REPOSITORY_WORK_SUFFIX);
301 306 }
302 307 else if (repository.endsWith(REPOSITORY_TRASH_SUFFIX)) {
303 308 syncRepository.remove(REPOSITORY_TRASH_SUFFIX);
304 309 }
305 310 return syncRepository;
306 311 }
312
313 void CatalogueController::CatalogueControllerPrivate::savAllDB()
314 {
315 for (auto repository : m_RepositoryList) {
316 auto defaultRepositoryLocation
317 = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
318 m_CatalogueDao.saveDB(defaultRepositoryLocation, repository);
319 }
320 }
321
322 void CatalogueController::CatalogueControllerPrivate::saveEvent(std::shared_ptr<DBEvent> event,
323 bool persist)
324 {
325 m_CatalogueDao.moveEvent(*event, toSyncRepository(event->getRepository()), true);
326 if (persist) {
327 savAllDB();
328 }
329 }
330
331 void CatalogueController::CatalogueControllerPrivate::saveCatalogue(
332 std::shared_ptr<DBCatalogue> catalogue, bool persist)
333 {
334 m_CatalogueDao.moveCatalogue(*catalogue, toSyncRepository(catalogue->getRepository()), true);
335 if (persist) {
336 savAllDB();
337 }
338 }
General Comments 0
You need to be logged in to leave comments. Login now