1st attempt at an initial import.
[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
24 class Settings;
25
26 class _RTComElAttachment;
27 typedef _RTComElAttachment RTComElAttachment;
28 class _RTComElEvent;
29 typedef _RTComElEvent RTComElEvent;
30
31 template <typename T1> class QList;
32
33 #include <QHash>
34
35 namespace DBBackends
36 {
37         class RtcomEventLogger : public iDBBackend
38         {
39         public:
40                 RtcomEventLogger(const Settings &settings);
41                 RtcomEventLogger(const Settings &settings, const EventTypes::RtcomEvent &event);
42
43                 virtual void Insert(EventTypes::iEvent &event, const NumberToNameLookup &numberToNameLookup);
44                 virtual void Process(EventProcessors::iEventProcessor &eventProcessor);
45
46         protected:
47                 const Settings &CurrentSettings() const { return m_Settings; }
48
49         protected:
50                 virtual EventTypes::iEvent *const CreateEvent(RTComElEvent &revent, QList<RTComElAttachment*> &rattachments);
51
52         private:
53                 const Settings &m_Settings;
54
55                 enum ServiceID
56                 {
57                         SERVICE_ID_CALL,
58                         SERVICE_ID_CHAT,
59                         SERVICE_ID_SMS,
60                         SERVICE_ID_MMS,
61                         SERVICE_ID_SIZE
62                 };
63
64                 QHash<ServiceID, int> m_ServiceIDs;
65         };
66 }
67
68 #endif // DBBACKENDS_RTCOMEVENTLOGGER_H