Connection handling improved again. Added ability to bybass general Maemo connectivit...
[jenirok] / src / daemon / calllistener.h
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef CALLLISTENER_H
20 #define CALLLISTENER_H
21
22 #include <QtCore/QObject>
23 #include <QtCore/QString>
24 #include <QtGui/QLabel>
25 #include <QtDBus/QDBusConnection>
26 #include <QtDBus/QDBusObjectPath>
27 #include "informationbox.h"
28 #include "eniro.h"
29
30 class CallListener: public QObject
31 {
32     Q_OBJECT
33
34 public:
35     CallListener();
36     ~CallListener();
37     bool begin();
38     void end();
39     static const int REQUEST_TIMEOUT = 10000;
40     static const int BANNER_DELAY = 350;
41     static const int SEARCH_RETRIES = 2;
42     static const int CONNECT_RETRIES = 3;
43     static const int CONNECTION_LOOKUP_RETRIES = 15;
44     static const int WAIT_BETWEEN_RETRIES = 1000;
45     static const int ERROR_BANNER_TIMEOUT = 4000;
46
47 protected:
48     virtual void timerEvent(QTimerEvent* event);
49
50 private slots:
51     void requestFinished(QVector <Eniro::Result> const& results, Eniro::SearchDetails const& details, bool error);
52     void incomingCall(QDBusObjectPath path, QString numbe);
53     void callTerminate();
54     void showTimedMessage();
55
56 private:
57     Q_DISABLE_COPY(CallListener);
58
59     void search(Eniro::SearchDetails const& details);
60     void showResult(QString const& text);
61     void showDelayedResult(QString const& text, int delay);
62     void searchInit();
63     void searchClose();
64     bool handleConnection();
65     void showError(QString const& msg);
66     void sleep(int ms);
67     QString createResult(QString const& name, QString const& street, QString const& city);
68     QString timedMessage_;
69     Eniro* eniro_;
70     bool closeConnection_;
71     bool initialized_;
72     InformationBox* box_;
73     QLabel* label_;
74     static QDBusConnection systemBus_;
75     int retries_;
76     QString currentSearch_;
77     Eniro::Site site_;
78     QString connectionName_;
79     int timer_;
80     bool autoconnect_;
81 };
82
83 #endif // CALLLISTENER_H