Early out parsing if we're only processing incoming OR outgoing.
[qwerkisync] / SyncerThread.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 SYNCERTHREAD_H
20 #define SYNCERTHREAD_H
21
22 #include "EventTypes/EventFromFileList.h"
23
24 class Settings;
25
26 #include <QThread>
27 #include <QWaitCondition>
28 #include <QMutex>
29
30 class NumberToNameLookup;
31
32 class SyncerThread : public QThread
33 {
34         Q_OBJECT
35
36 private:
37         QMutex m_Mutex;
38         QWaitCondition m_Condition;
39         bool m_Restart;
40         bool m_Abort;
41
42         Settings& m_Settings;
43
44 protected:
45         virtual void run();
46
47 signals:
48         void EventProcessed(int current, int total);
49
50 public:
51         explicit SyncerThread(Settings& settings);
52         ~SyncerThread();
53
54         void Sync();
55         EventTypes::EventFromFileList ProcessFile(const QString &path, const QList<uint> &recordsToReturn = QList<uint>()) const;
56         uint InsertNewEvent(const EventTypes::iEvent &event, const NumberToNameLookup &numberToNameLookup);
57
58         Settings &CurrentSettings() const { return m_Settings; }
59 };
60
61 #endif // SYNCERTHREAD_H