Connection handling in daemon improved. Added settings to allow automatic connection...
[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 #include "connectionmanager.h"
30
31 class CallListener: public QObject
32 {
33     Q_OBJECT
34
35 public:
36     CallListener();
37     ~CallListener();
38     void begin();
39     void end();
40     static const int REQUEST_TIMEOUT = 10000;
41     static const int BANNER_DELAY = 350;
42     static const int NUMBER_OF_RETRIES = 2;
43     static const int CONNECT_RETRIES = 2;
44     static const int ERROR_BANNER_TIMEOUT = 5000;
45
46 private slots:
47     void requestFinished(QVector <Eniro::Result> const& results, Eniro::SearchDetails const& details, bool error);
48     void incomingCall(QDBusObjectPath path, QString numbe);
49     void callTerminate();
50     void showTimedMessage();
51
52 private:
53     Q_DISABLE_COPY(CallListener);
54
55     void search(Eniro::SearchDetails const& details);
56     void showResult(QString const& text);
57     void showDelayedResult(QString const& text, int delay);
58     void searchInit();
59     void searchClose();
60     bool handleConnection();
61     void showError(QString const& msg);
62     QString createResult(QString const& name, QString const& street, QString const& city);
63     QString timedMessage_;
64     Eniro* eniro_;
65     ConnectionManager* connectionManager_;
66     bool closeConnection_;
67     bool initialized_;
68     InformationBox* box_;
69     QLabel* label_;
70     static QDBusConnection systemBus_;
71     int retries_;
72     QString currentSearch_;
73     Eniro::Site site_;
74     QString connectionName_;
75     bool autoconnect_;
76 };
77
78 #endif // CALLLISTENER_H