Update the post insert behaviour of the RtcomEventLogger backend to update storage...
[qwerkisync] / DBBackends / RtcomEventLogger.h
1 /*
2  * Copyright (C) 2011, Jamie Thompson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License as published by the Free Software Foundation; either
7  * version 3 of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; If not, see
16  * <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef DBBACKENDS_RTCOMEVENTLOGGER_H
20 #define DBBACKENDS_RTCOMEVENTLOGGER_H
21
22 #include "iDBBackend.h"
23 #include "Settings.h"
24
25 class _RTComElAttachment;
26 typedef _RTComElAttachment RTComElAttachment;
27 class _RTComElEvent;
28 typedef _RTComElEvent RTComElEvent;
29 class _RTComEl;
30 typedef _RTComEl RTComEl;
31
32 template <typename T1> class QList;
33 class QString;
34 class QStringList;
35
36 #include <QHash>
37
38 namespace DBBackends
39 {
40         namespace RtcomEventLoggerComponents { class TriggerDisabler; }
41
42         class RtcomEventLogger : public iDBBackend
43         {
44         public:
45                 RtcomEventLogger(const Settings &settings);
46                 RtcomEventLogger(const Settings &settings, const EventTypes::RtcomEvent &event);
47
48                 virtual void PreInsert();
49                 virtual void Insert(EventTypes::iEvent &event, const NumberToNameLookup &numberToNameLookup);
50                 virtual void PostInsert();
51                 virtual void Process(EventProcessors::iEventProcessor &eventProcessor);
52
53         protected:
54                 const Settings &CurrentSettings() const { return m_Settings; }
55
56         protected:
57                 virtual EventTypes::iEvent *const CreateEvent(RTComElEvent &revent, QList<RTComElAttachment*> &rattachments);
58                 void ProcessService(EventProcessors::iEventProcessor &processor, const EventTypes::eEventTypes service, const RTComEl &el);
59
60                 virtual const QList<uint> &InsertedIDs() const { return m_InsertedIDs; }
61
62         public:
63                 virtual void ClearInsertedIDs();
64
65         private:
66                 void UpdateInsertedStorageTimes();
67                 void Reindex();
68                 QStringList IntsToStringList(QList<uint> &values);
69
70                 const Settings &m_Settings;
71
72                 QHash<EventTypes::eEventTypes, int> m_ServiceIDs;
73
74                 QList<uint> m_InsertedIDs;
75                 QList<uint> &InsertedIDs() { return m_InsertedIDs; }
76
77                 RtcomEventLoggerComponents::TriggerDisabler *m_TriggerDisabler;
78         };
79 }
80
81 #endif // DBBACKENDS_RTCOMEVENTLOGGER_H