Fixed a bug that caused connections to not being found when keyboard is closed during...
[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 "source.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 = 2;
43     static const int CONNECTION_LOOKUP_RETRIES = 8;
44     static const int GPRS_SCANS = 2;
45     static const int WLAN_SCANS = 5;
46     static const int WAIT_BETWEEN_RETRIES = 500;
47     static const int ERROR_BANNER_TIMEOUT = 4500;
48
49 protected:
50     virtual void timerEvent(QTimerEvent* event);
51
52 private slots:
53     void requestFinished(QVector <Source::Result> const& results, Source::SearchDetails const& details, bool error);
54     void incomingCall(QDBusObjectPath path, QString numbe);
55     void callTerminate();
56     void showTimedMessage();
57
58 private:
59     Q_DISABLE_COPY(CallListener);
60
61     void search(Source::SearchDetails const& details);
62     void showResult(QString const& text);
63     void showDelayedResult(QString const& text, int delay);
64     void searchInit();
65     void searchClose();
66     bool handleConnection();
67     void showError(QString const& msg, int delay = 0);
68     bool is3g();
69     void sleep(int ms);
70     void sendRetrySignal(QString const& iap, bool retry);
71     QString createResult(QString const& name, QString const& street, QString const& city);
72     QString timedMessage_;
73     Source* source_;
74     Source::SourceId sourceId_;
75     QMap<QString, QString> sourceConfig_;
76     bool closeConnection_;
77     bool initialized_;
78     InformationBox* box_;
79     QLabel* label_;
80     static QDBusConnection systemBus_;
81     int retries_;
82     QString currentSearch_;
83     int timer_;
84 };
85
86 #endif // CALLLISTENER_H