Added parsing of CSV-formatted Symbian event logs
[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         class RtcomEventLogger : public iDBBackend
40         {
41         public:
42                 RtcomEventLogger(const Settings &settings);
43                 RtcomEventLogger(const Settings &settings, const EventTypes::RtcomEvent &event);
44
45                 virtual void Insert(EventTypes::iEvent &event, const NumberToNameLookup &numberToNameLookup);
46                 virtual void PostInsert();
47                 virtual void Process(EventProcessors::iEventProcessor &eventProcessor);
48
49         protected:
50                 const Settings &CurrentSettings() const { return m_Settings; }
51
52         protected:
53                 virtual EventTypes::iEvent *const CreateEvent(RTComElEvent &revent, QList<RTComElAttachment*> &rattachments);
54                 void ProcessService(EventProcessors::iEventProcessor &processor, const EventTypes::eEventTypes service, const RTComEl &el);
55
56                 virtual const QList<int> &InsertedIDs() const { return m_InsertedIDs; }
57
58         public:
59                 virtual void ClearInsertedIDs();
60
61         private:
62                 void Reindex();
63                 QList<int> &InsertedIDs() { return m_InsertedIDs; }
64
65         private:
66                 const Settings &m_Settings;
67                 const QString mk_DBPath;
68                 QList<int> m_InsertedIDs;
69
70                 QHash<EventTypes::eEventTypes, int> m_ServiceIDs;
71         };
72 }
73
74 #endif // DBBACKENDS_RTCOMEVENTLOGGER_H