b5a2c3ca0afced0f2f76bce6adc1636c0251182a
[jenirok] / src / common / connectionmanager.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 CONNECTIONMANAGER_H
20 #define CONNECTIONMANAGER_H
21
22 #include <QtCore/QObject>
23 #include <QtCore/QTimerEvent>
24 #include <QtCore/QString>
25 #include <QtCore/QByteArray>
26 #include <QtCore/QList>
27 #include <QtDBus/QDBusInterface>
28 #include <QtDBus/QDBusMessage>
29
30 class ConnectionManager : public QObject
31 {
32     Q_OBJECT
33
34 public:
35
36     enum ConnectionType {NO_TYPE, WLAN, GPRS};
37     enum Error {NO_ERROR, NO_AVAILABLE_CONNECTIONS, INVALID_IAP, UNKNOWN_ERROR};
38
39     struct Connection
40     {
41         ConnectionType type;
42         QString id;
43         QString name;
44         int strength;
45     };
46
47     ConnectionManager(QObject* parent = 0);
48     ~ConnectionManager();
49     bool connect();
50     bool connect(Connection const& connection);
51     bool connect(QString const& id);
52     bool getBestConnection(Connection& connection, ConnectionType type = NO_TYPE);
53     bool disconnect(bool force = false);
54     bool isConnected();
55     bool scanConnections(QList<Connection>& connections, ConnectionType type = NO_TYPE);
56     Error error() const;
57     static unsigned int const TIMEOUT = 15000;
58     static unsigned int const WAIT_AFTER_CONNECT = 400;
59
60 protected:
61     virtual void timerEvent(QTimerEvent* event);
62
63 private slots:
64     void stateChange(const QDBusMessage& rep);
65     void connectionChange(const QDBusMessage& rep);
66     void scanResult(const QDBusMessage& rep);
67
68 private:
69     void sleep(unsigned int ms);
70     bool waitSignal(bool* ready);
71     bool stateReady_;
72     bool connectionReady_;
73     bool scanReady_;
74     static bool connected_;
75     bool timeout_;
76     int numberOfConnections_;
77     int scannedConnections_;
78     int timer_;
79     ConnectionType searchType_;
80     Error error_;
81     QList<Connection>* connections_;
82     QDBusInterface* icd2interface_;
83 };
84
85 #endif