1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies). |
4 | ** Contact: http://www.qt-project.org/legal |
5 | ** |
6 | ** This file is part of the QtSystems module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL21$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at http://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 2.1 or version 3 as published by the Free |
20 | ** Software Foundation and appearing in the file LICENSE.LGPLv21 and |
21 | ** LICENSE.LGPLv3 included in the packaging of this file. Please review the |
22 | ** following information to ensure the GNU Lesser General Public License |
23 | ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and |
24 | ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
25 | ** |
26 | ** As a special exception, The Qt Company gives you certain additional |
27 | ** rights. These rights are described in The Qt Company LGPL Exception |
28 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
29 | ** |
30 | ** $QT_END_LICENSE$ |
31 | ** |
32 | ****************************************************************************/ |
33 | |
34 | // |
35 | // W A R N I N G |
36 | // ------------- |
37 | // |
38 | // This file is not part of the Qt API. It exists purely as an |
39 | // implementation detail. This header file may change from version to |
40 | // version without notice, or even be removed. |
41 | // |
42 | // We mean it. |
43 | // |
44 | |
45 | #ifndef QNETWORKINFO_LINUX_P_H |
46 | #define QNETWORKINFO_LINUX_P_H |
47 | |
48 | #include <qnetworkinfo.h> |
49 | |
50 | #include <QtCore/qmap.h> |
51 | |
52 | #if !defined(QT_NO_UDEV) |
53 | struct udev; |
54 | struct udev_monitor; |
55 | #endif // QT_NO_UDEV |
56 | |
57 | QT_BEGIN_NAMESPACE |
58 | |
59 | class QTimer; |
60 | |
61 | #if !defined(QT_NO_OFONO) |
62 | class QOfonoWrapper; |
63 | #endif |
64 | |
65 | #if !defined(QT_NO_UDEV) |
66 | class QSocketNotifier; |
67 | #endif // QT_NO_UDEV |
68 | |
69 | class QNetworkInfoPrivate : public QObject |
70 | { |
71 | Q_OBJECT |
72 | |
73 | public: |
74 | QNetworkInfoPrivate(QNetworkInfo *parent = 0); |
75 | ~QNetworkInfoPrivate(); |
76 | |
77 | int networkInterfaceCount(QNetworkInfo::NetworkMode mode); |
78 | int networkSignalStrength(QNetworkInfo::NetworkMode mode, int interface); |
79 | QNetworkInfo::CellDataTechnology currentCellDataTechnology(int interface); |
80 | QNetworkInfo::NetworkMode currentNetworkMode(); |
81 | QNetworkInfo::NetworkStatus networkStatus(QNetworkInfo::NetworkMode mode, int interface); |
82 | #ifndef QT_NO_NETWORKINTERFACE |
83 | QNetworkInterface interfaceForMode(QNetworkInfo::NetworkMode mode, int interface); |
84 | #endif // QT_NO_NETWORKINTERFACE |
85 | QString cellId(int interface); |
86 | QString currentMobileCountryCode(int interface); |
87 | QString currentMobileNetworkCode(int interface); |
88 | QString homeMobileCountryCode(int interface); |
89 | QString homeMobileNetworkCode(int interface); |
90 | QString imsi(int interface); |
91 | QString locationAreaCode(int interface); |
92 | QString macAddress(QNetworkInfo::NetworkMode mode, int interface); |
93 | QString networkName(QNetworkInfo::NetworkMode mode, int interface); |
94 | |
95 | Q_SIGNALS: |
96 | void cellIdChanged(int interface, const QString &id); |
97 | void currentCellDataTechnologyChanged(int interface, QNetworkInfo::CellDataTechnology tech); |
98 | void currentMobileCountryCodeChanged(int interface, const QString &mcc); |
99 | void currentMobileNetworkCodeChanged(int interface, const QString &mnc); |
100 | void currentNetworkModeChanged(QNetworkInfo::NetworkMode mode); |
101 | void locationAreaCodeChanged(int interface, const QString &lac); |
102 | void networkInterfaceCountChanged(QNetworkInfo::NetworkMode mode, int count); |
103 | void networkNameChanged(QNetworkInfo::NetworkMode mode, int interface, const QString &name); |
104 | void networkSignalStrengthChanged(QNetworkInfo::NetworkMode mode, int interface, int strength); |
105 | void networkStatusChanged(QNetworkInfo::NetworkMode mode, int interface, QNetworkInfo::NetworkStatus status); |
106 | |
107 | protected: |
108 | void connectNotify(const QMetaMethod &signal); |
109 | void disconnectNotify(const QMetaMethod &signal); |
110 | |
111 | private Q_SLOTS: |
112 | #if !defined(QT_NO_UDEV) |
113 | void onUdevChanged(); |
114 | #endif // QT_NO_UDEV |
115 | |
116 | void onTimeout(); |
117 | |
118 | private: |
119 | QNetworkInfo * const q_ptr; |
120 | Q_DECLARE_PUBLIC(QNetworkInfo) |
121 | |
122 | int getNetworkInterfaceCount(QNetworkInfo::NetworkMode mode); |
123 | int getNetworkSignalStrength(QNetworkInfo::NetworkMode mode, int interface); |
124 | QNetworkInfo::NetworkMode getCurrentNetworkMode(); |
125 | QNetworkInfo::NetworkStatus getNetworkStatus(QNetworkInfo::NetworkMode mode, int interface); |
126 | QString getNetworkName(QNetworkInfo::NetworkMode mode, int interface); |
127 | |
128 | bool watchCurrentNetworkMode; |
129 | bool watchNetworkInterfaceCount; |
130 | bool watchNetworkSignalStrength; |
131 | bool watchNetworkStatus; |
132 | bool watchNetworkName; |
133 | QNetworkInfo::NetworkMode currentMode; |
134 | QMap<QNetworkInfo::NetworkMode, int> networkInterfaceCounts; |
135 | QMap<QPair<QNetworkInfo::NetworkMode, int>, int> networkSignalStrengths; |
136 | QMap<QPair<QNetworkInfo::NetworkMode, int>, QNetworkInfo::NetworkStatus> networkStatuses; |
137 | QMap<QPair<QNetworkInfo::NetworkMode, int>, QString> networkNames; |
138 | |
139 | QTimer *timer; |
140 | |
141 | #if !defined(QT_NO_OFONO) |
142 | QOfonoWrapper *ofonoWrapper; |
143 | #endif |
144 | |
145 | #if !defined(QT_NO_UDEV) |
146 | QSocketNotifier *udevNotifier; |
147 | struct udev *udevHandle; |
148 | struct udev_monitor *udevMonitor; |
149 | #endif // QT_NO_UDEV |
150 | }; |
151 | |
152 | QT_END_NAMESPACE |
153 | |
154 | #endif // QNETWORKINFO_LINUX_P_H |
155 | |