Added option to skip the leading zero of an incoming call.
[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 = 8000;
40     static const int BANNER_DELAY = 350;
41     static const int SEARCH_RETRIES = 2;
42     static const int CONNECT_RETRIES = 1;
43     static const int CONNECTION_LOOKUP_RETRIES = 7;
44     static const int GPRS_SCANS = 2;
45     static const int WLAN_SCANS = 4;
46     static const int WAIT_BETWEEN_RETRIES = 400;
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     void handleAnswer();
58     void closeConnection();
59
60 private:
61     Q_DISABLE_COPY(CallListener);
62
63     struct CallDetails
64     {
65         QString number;
66         Source::Result result;
67         bool answered;
68         unsigned int time;
69     };
70
71     void search(Source::SearchDetails const& details);
72     void showResult(QString const& text);
73     void showDelayedResult(QString const& text, int delay);
74     void searchInit();
75     void searchClose();
76     bool handleConnection();
77     void showError(QString const& msg, int delay = 0);
78     bool is3g();
79     void sleep(int ms);
80     void sendRetrySignal(QString const& iap, bool retry);
81     QString createResult(QString const& name, QString const& street, QString const& city);
82     QString timedMessage_;
83     Source* source_;
84     Source::SourceId sourceId_;
85     QMap<QString, QString> sourceConfig_;
86     bool closeConnection_;
87     bool initialized_;
88     InformationBox* box_;
89     QLabel* label_;
90     static QDBusConnection systemBus_;
91     int retries_;
92     int timer_;
93     CallDetails* currentCall_;
94     bool ignoreFirstZero_;
95 };
96
97 #endif // CALLLISTENER_H