d82814da825e84ba057cf9a4696c66398b2df1b7
[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
35 #include <QHash>
36
37 namespace DBBackends
38 {
39         namespace RtcomEventLoggerComponents { class TriggerDisabler; }
40
41         class RtcomEventLogger : public iDBBackend
42         {
43         public:
44                 RtcomEventLogger(const Settings &settings);
45                 RtcomEventLogger(const Settings &settings, const EventTypes::RtcomEvent &event);
46
47                 virtual void PreInsert();
48                 virtual void Insert(EventTypes::iEvent &event, const NumberToNameLookup &numberToNameLookup);
49                 virtual void PostInsert();
50                 virtual void Process(EventProcessors::iEventProcessor &eventProcessor);
51
52         protected:
53                 const Settings &CurrentSettings() const { return m_Settings; }
54
55         protected:
56                 virtual EventTypes::iEvent *const CreateEvent(RTComElEvent &revent, QList<RTComElAttachment*> &rattachments);
57                 void ProcessService(EventProcessors::iEventProcessor &processor, const EventTypes::eEventTypes service, const RTComEl &el);
58
59                 virtual const QList<int> &InsertedIDs() const { return m_InsertedIDs; }
60
61         public:
62                 virtual void ClearInsertedIDs();
63
64         private:
65                 void Reindex();
66
67                 const Settings &m_Settings;
68
69                 QHash<EventTypes::eEventTypes, int> m_ServiceIDs;
70
71                 QList<int> m_InsertedIDs;
72                 QList<int> &InsertedIDs() { return m_InsertedIDs; }
73
74                 RtcomEventLoggerComponents::TriggerDisabler *m_TriggerDisabler;
75         };
76 }
77
78 #endif // DBBACKENDS_RTCOMEVENTLOGGER_H