Skip to content

Latest commit

 

History

History
771 lines (653 loc) · 24.7 KB

qconnectionagent.cpp

File metadata and controls

771 lines (653 loc) · 24.7 KB
 
1
2
/****************************************************************************
**
Jun 12, 2017
Jun 12, 2017
3
** Copyright (C) 2014-2017 Jolla Ltd
4
5
6
7
8
9
10
11
12
13
14
15
16
** Contact: lorn.potter@gmail.com
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
****************************************************************************/
#include "qconnectionagent.h"
Apr 7, 2014
Apr 7, 2014
17
#include "connectiond_adaptor.h"
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <connman-qt5/useragent.h>
#include <connman-qt5/networkmanager.h>
#include <connman-qt5/networktechnology.h>
#include <connman-qt5/networkservice.h>
#include <QtDBus/QDBusConnection>
#include <QObject>
#include <QSettings>
#define CONND_SERVICE "com.jolla.Connectiond"
#define CONND_PATH "/Connectiond"
#define CONND_SESSION_PATH = "/ConnectionSession"
QConnectionAgent::QConnectionAgent(QObject *parent) :
QObject(parent),
ua(0),
netman(NetworkManagerFactory::createInstance()),
currentNetworkState(QString()),
isEthernet(false),
connmanAvailable(false),
tetheringWifiTech(0),
tetheringEnabled(false),
flightModeSuppression(false),
May 8, 2014
May 8, 2014
43
scanTimeoutInterval(1),
Jul 7, 2015
Jul 7, 2015
44
45
delayedTethering(false),
valid(true)
Jul 7, 2015
Jul 7, 2015
47
new ConnAdaptor(this);
48
49
QDBusConnection dbus = QDBusConnection::sessionBus();
Jun 1, 2017
Jun 1, 2017
50
if (!dbus.registerObject(CONND_PATH, this)) {
Jun 1, 2017
Jun 1, 2017
51
qDebug() << "QConnectionAgent: Could not register object to path" << CONND_PATH;
Jul 7, 2015
Jul 7, 2015
52
valid = false;
Jun 1, 2017
Jun 1, 2017
55
if (!dbus.registerService(CONND_SERVICE)) {
Jun 1, 2017
Jun 1, 2017
56
qDebug() << "QConnectionAgent: could not register service" << CONND_SERVICE;
Jul 7, 2015
Jul 7, 2015
57
valid = false;
Apr 15, 2014
Apr 15, 2014
60
connect(this,SIGNAL(configurationNeeded(QString)),this,SLOT(openConnectionDialog(QString)));
Jul 7, 2015
Jul 7, 2015
62
connect(netman,SIGNAL(availabilityChanged(bool)),this,SLOT(connmanAvailabilityChanged(bool)));
63
64
65
connect(netman,SIGNAL(servicesListChanged(QStringList)),this,SLOT(servicesListChanged(QStringList)));
connect(netman,SIGNAL(stateChanged(QString)),this,SLOT(networkStateChanged(QString)));
connect(netman,SIGNAL(offlineModeChanged(bool)),this,SLOT(offlineModeChanged(bool)));
Apr 15, 2014
Apr 15, 2014
66
67
connect(netman,SIGNAL(servicesChanged()),this,SLOT(servicesChanged()));
connect(netman,SIGNAL(technologiesChanged()),this,SLOT(techChanged()));
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
QFile connmanConf("/etc/connman/main.conf");
if (connmanConf.open(QIODevice::ReadOnly | QIODevice::Text)) {
while (!connmanConf.atEnd()) {
QString line = connmanConf.readLine();
if (line.startsWith("DefaultAutoConnectTechnologies")) {
QString token = line.section(" = ",1,1).simplified();
techPreferenceList = token.split(",");
break;
}
}
connmanConf.close();
}
if (techPreferenceList.isEmpty())
//ethernet,bluetooth,cellular,wifi is default
techPreferenceList << "bluetooth" << "wifi" << "cellular" << "ethernet";
connmanAvailable = QDBusConnection::systemBus().interface()->isServiceRegistered("net.connman");
scanTimer = new QTimer(this);
connect(scanTimer,SIGNAL(timeout()),this,SLOT(scanTimeout()));
scanTimer->setSingleShot(true);
Jul 7, 2015
Jul 7, 2015
90
if (connmanAvailable && valid)
91
92
93
94
95
96
97
setup();
}
QConnectionAgent::~QConnectionAgent()
{
}
Jul 7, 2015
Jul 7, 2015
98
bool QConnectionAgent::isValid() const
Jul 7, 2015
Jul 7, 2015
100
return valid;
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
}
// from useragent
void QConnectionAgent::onUserInputRequested(const QString &servicePath, const QVariantMap &fields)
{
qDebug() << servicePath;
// gets called when a connman service gets called to connect and needs more configurations.
Q_EMIT userInputRequested(servicePath, fields);
}
// from useragent
void QConnectionAgent::onUserInputCanceled()
{
qDebug() ;
Q_EMIT userInputCanceled();
}
// from useragent
void QConnectionAgent::onErrorReported(const QString &servicePath, const QString &error)
{
Jun 24, 2014
Jun 24, 2014
121
122
123
124
// Suppress errors when switching to offline mode
if (error == "connect-failed" && servicePath.contains("cellular") && netman->offlineMode())
return;
Aug 25, 2014
Aug 25, 2014
125
if (!tetheringWifiTech) return;
Jun 24, 2014
Jun 24, 2014
126
127
128
129
// Suppress errors when switching to tethering mode
if ((delayedTethering || tetheringWifiTech->tethering()) && servicePath.contains(QStringLiteral("wifi")))
return;
130
131
132
133
134
135
136
137
138
qDebug() << "<<<<<<<<<<<<<<<<<<<<" << servicePath << error;
Q_EMIT errorReported(servicePath, error);
}
// from useragent
void QConnectionAgent::onConnectionRequest()
{
sendConnectReply("Suppress", 15);
qDebug() << flightModeSuppression;
Jul 9, 2014
Jul 9, 2014
139
bool okToRequest = true;
Oct 1, 2014
Oct 1, 2014
140
141
142
Q_FOREACH (Service elem, orderedServicesList) {
qDebug() << "checking" << elem.service->name() << elem.service->autoConnect();
if (elem.service->autoConnect()) {
Jul 9, 2014
Jul 9, 2014
143
144
145
146
147
okToRequest = false;
break;
}
}
if (!flightModeSuppression && okToRequest) {
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
Q_EMIT connectionRequest();
}
}
void QConnectionAgent::sendConnectReply(const QString &in0, int in1)
{
ua->sendConnectReply(in0, in1);
}
void QConnectionAgent::sendUserReply(const QVariantMap &input)
{
qDebug() << Q_FUNC_INFO;
ua->sendUserReply(input);
}
void QConnectionAgent::servicesListChanged(const QStringList &list)
{
Oct 1, 2014
Oct 1, 2014
165
166
167
168
169
bool changed = false;
Q_FOREACH(const QString &path, list) {
if (orderedServicesList.indexOf(path) == -1) {
//added
170
qDebug() << Q_FUNC_INFO << "added" << path;
Oct 1, 2014
Oct 1, 2014
171
172
changed = true;
break;
173
174
175
}
}
Oct 1, 2014
Oct 1, 2014
176
177
178
179
180
181
182
183
if (!changed)
Q_FOREACH (Service elem, orderedServicesList) {
if (list.indexOf(elem.path) == -1) {
//removed
qDebug() << Q_FUNC_INFO << "removed" << elem.path;
changed = true;
break;
}
Oct 1, 2014
Oct 1, 2014
185
186
187
if (changed)
updateServices();
188
189
190
191
192
193
194
195
}
void QConnectionAgent::serviceErrorChanged(const QString &error)
{
qDebug() << error;
if (error == "Operation aborted")
return;
NetworkService *service = static_cast<NetworkService *>(sender());
Apr 19, 2014
Apr 19, 2014
196
197
198
199
200
201
202
203
if (error == "connect-failed"
&& (service->type() == "cellular") && netman->offlineMode()) {
return;
}
if (error == "In progress" || error.contains("Method")) // catch dbus errors and discard
return;
204
205
206
207
208
209
Q_EMIT errorReported(service->path(),error);
}
void QConnectionAgent::serviceStateChanged(const QString &state)
{
NetworkService *service = static_cast<NetworkService *>(sender());
May 29, 2014
May 29, 2014
210
211
if (!service)
return;
212
213
214
qDebug() << state << service->name() << service->strength();
qDebug() << "currentNetworkState" << currentNetworkState;
Jun 27, 2014
Jun 27, 2014
215
216
217
218
219
220
if (state == "ready" && service->type() == "wifi"
&& !delayedTethering
&& netman->defaultRoute()->type() == "cellular") {
netman->defaultRoute()->requestDisconnect();
}
May 29, 2014
May 29, 2014
221
222
if (!service->favorite() || !netman->getTechnology(service->type())
|| !netman->getTechnology(service->type())->powered()) {
223
224
225
226
227
228
qDebug() << "not fav or not powered";
return;
}
if (state == "disconnect") {
ua->sendConnectReply("Clear");
}
Apr 30, 2014
Apr 30, 2014
229
230
231
232
if (state == "failure") {
if (delayedTethering && service->type() == "cellular" && tetheringWifiTech->tethering()) {
Q_EMIT tetheringFinished(false);
}
233
234
// serviceInProgress.clear();
// // service->requestDisconnect();
Apr 30, 2014
Apr 30, 2014
235
}
Apr 30, 2014
Apr 30, 2014
237
238
239
if (delayedTethering && service->type() == "wifi" && state == "association") {
service->requestDisconnect();
}
Jun 27, 2014
Jun 27, 2014
240
241
242
243
if (state == "online") {
Q_EMIT connectionState(state, service->type());
Apr 30, 2014
Apr 30, 2014
244
245
246
247
248
249
250
251
252
if (service->type() == "wifi" && delayedTethering) {
netman->getTechnology(service->type())->setTethering(true);
}
if (service->type() == "cellular" && delayedTethering) {
if (!tetheringWifiTech->tethering()) {
tetheringWifiTech->setTethering(true);
}
}
}
253
254
//auto migrate
if (state == "idle") {
Apr 30, 2014
Apr 30, 2014
255
256
257
258
if (service->type() == "wifi" && delayedTethering) {
netman->getTechnology(service->type())->setTethering(true);
}
} else {
Oct 1, 2014
Oct 1, 2014
259
updateServices();
260
261
262
263
264
265
266
267
268
269
}
currentNetworkState = state;
QSettings confFile;
confFile.beginGroup("Connectionagent");
confFile.setValue("connected",currentNetworkState);
}
// from plugin/qml
void QConnectionAgent::connectToType(const QString &type)
{
Apr 17, 2014
Apr 17, 2014
270
271
if (!netman)
return;
Apr 17, 2014
Apr 17, 2014
273
if (netman->technologyPathForType(type).isEmpty()) {
274
275
276
277
Q_EMIT errorReported("","Type not valid");
return;
}
Oct 10, 2014
Oct 10, 2014
278
// Connman is using "cellular" and "wifi" as part of the service path
Aug 28, 2014
Aug 28, 2014
279
280
281
282
283
284
285
286
287
QString convType;
if (type.contains("mobile")) {
convType="cellular";
} else if (type.contains("wlan")) {
convType="wifi";
} else {
convType=type;
}
Oct 10, 2014
Oct 10, 2014
288
bool found = false;
Oct 1, 2014
Oct 1, 2014
289
Q_FOREACH (Service elem, orderedServicesList) {
Oct 10, 2014
Oct 10, 2014
290
if (elem.path.contains(convType)) {
Oct 1, 2014
Oct 1, 2014
291
292
if (!isStateOnline(elem.service->state())) {
if (elem.service->autoConnect()) {
Jun 9, 2014
Jun 9, 2014
293
qDebug() << "<<<<<<<<<<< requestConnect() >>>>>>>>>>>>";
Oct 1, 2014
Oct 1, 2014
294
elem.service->requestConnect();
Aug 28, 2014
Aug 28, 2014
295
return;
Oct 10, 2014
Oct 10, 2014
296
297
298
} else if (!elem.path.contains("cellular")) {
// ignore cellular that are not on autoconnect
found = true;
Apr 17, 2014
Apr 17, 2014
300
301
} else {
return;
302
303
304
}
}
}
Apr 17, 2014
Apr 17, 2014
305
Oct 10, 2014
Oct 10, 2014
306
307
308
309
310
311
// Can't connect to the service of a type that doesn't exist
if (!found)
return;
// Substitute "wifi" with "wlan" for lipstick
if (type.contains("wifi"))
Aug 28, 2014
Aug 28, 2014
312
313
314
convType="wlan";
Q_EMIT configurationNeeded(convType);
315
316
317
318
319
320
321
}
void QConnectionAgent::onScanFinished()
{
qDebug() << "<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>";
}
Oct 1, 2014
Oct 1, 2014
322
void QConnectionAgent::updateServices()
323
324
{
qDebug() << Q_FUNC_INFO;
Oct 1, 2014
Oct 1, 2014
325
ServiceList oldServices = orderedServicesList;
326
327
328
329
330
331
332
333
334
335
orderedServicesList.clear();
Q_FOREACH (const QString &tech,techPreferenceList) {
QVector<NetworkService*> services = netman->getServices(tech);
Q_FOREACH (NetworkService *serv, services) {
const QString servicePath = serv->path();
qDebug() << "known service:" << serv->name() << serv->strength();
Oct 1, 2014
Oct 1, 2014
336
337
338
339
Service elem;
elem.path = servicePath;
elem.service = serv;
orderedServicesList << elem;
340
341
342
if (!oldServices.contains(servicePath)) {
//new!
Apr 15, 2014
Apr 15, 2014
343
qDebug() <<"new service"<< servicePath;
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
QObject::connect(serv, SIGNAL(stateChanged(QString)),
this,SLOT(serviceStateChanged(QString)), Qt::UniqueConnection);
QObject::connect(serv, SIGNAL(connectRequestFailed(QString)),
this,SLOT(serviceErrorChanged(QString)), Qt::UniqueConnection);
QObject::connect(serv, SIGNAL(errorChanged(QString)),
this,SLOT(servicesError(QString)), Qt::UniqueConnection);
QObject::connect(serv, SIGNAL(autoConnectChanged(bool)),
this,SLOT(serviceAutoconnectChanged(bool)), Qt::UniqueConnection);
}
}
}
}
void QConnectionAgent::servicesError(const QString &errorMessage)
{
if (errorMessage.isEmpty())
return;
NetworkService *serv = static_cast<NetworkService *>(sender());
qDebug() << serv->name() << errorMessage;
Q_EMIT onErrorReported(serv->path(), errorMessage);
}
void QConnectionAgent::networkStateChanged(const QString &state)
{
qDebug() << state;
QSettings confFile;
confFile.beginGroup("Connectionagent");
if (state != "online")
confFile.setValue("connected","offline");
else
confFile.setValue("connected","online");
if ((state == "online" && netman->defaultRoute()->type() == "cellular")
|| (state == "idle")) {
Apr 30, 2014
Apr 30, 2014
382
383
384
385
if (tetheringWifiTech && tetheringWifiTech->powered()
&& !tetheringWifiTech->tethering())
tetheringWifiTech->scan();
386
387
388
389
// on gprs, scan wifi every scanTimeoutInterval minutes
if (scanTimeoutInterval != 0)
scanTimer->start(scanTimeoutInterval * 60 * 1000);
}
Apr 30, 2014
Apr 30, 2014
390
391
392
393
394
395
396
397
398
399
400
401
if (delayedTethering && state == "online") {
if (tetheringWifiTech->tethering()) {
if (netman->defaultRoute()->type() == "cellular") {
delayedTethering = false;
Q_EMIT tetheringFinished(true);
}
} else {
tetheringWifiTech->setTethering(true);
}
}
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
}
void QConnectionAgent::connmanAvailabilityChanged(bool b)
{
qDebug() << Q_FUNC_INFO;
connmanAvailable = b;
if (b) {
setup();
currentNetworkState = netman->state();
} else {
currentNetworkState = "error";
}
}
void QConnectionAgent::setup()
{
qDebug() << Q_FUNC_INFO
<< connmanAvailable;
if (connmanAvailable) {
qDebug() << Q_FUNC_INFO
<< netman->state();
Jul 7, 2015
Jul 7, 2015
424
delete ua;
425
426
427
428
429
430
431
432
433
434
435
436
437
ua = new UserAgent(this);
connect(ua,SIGNAL(userInputRequested(QString,QVariantMap)),
this,SLOT(onUserInputRequested(QString,QVariantMap)));
connect(ua,SIGNAL(connectionRequest()),this,SLOT(onConnectionRequest()));
connect(ua,SIGNAL(errorReported(QString, QString)),this,SLOT(onErrorReported(QString, QString)));
connect(ua,SIGNAL(userInputCanceled()),this,SLOT(onUserInputCanceled()));
connect(ua,SIGNAL(userInputRequested(QString,QVariantMap)),
this,SLOT(onUserInputRequested(QString,QVariantMap)), Qt::UniqueConnection);
connect(ua,SIGNAL(browserRequested(QString,QString)),
this,SLOT(browserRequest(QString,QString)), Qt::UniqueConnection);
Oct 1, 2014
Oct 1, 2014
438
updateServices();
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
offlineModeChanged(netman->offlineMode());
QSettings confFile;
confFile.beginGroup("Connectionagent");
scanTimeoutInterval = confFile.value("scanTimerInterval", "1").toUInt(); //in minutes
if (isStateOnline(netman->state())) {
qDebug() << "default route type:" << netman->defaultRoute()->type();
if (netman->defaultRoute()->type() == "ethernet")
isEthernet = true;
if (netman->defaultRoute()->type() == "cellular" && scanTimeoutInterval != 0)
scanTimer->start(scanTimeoutInterval * 60 * 1000);
}
qDebug() << "config file says" << confFile.value("connected", "online").toString();
}
}
Apr 15, 2014
Apr 15, 2014
457
void QConnectionAgent::technologyPowerChanged(bool powered)
458
459
{
NetworkTechnology *tech = static_cast<NetworkTechnology *>(sender());
Jun 12, 2014
Jun 12, 2014
460
461
if (tech->type() != "wifi")
return;
Sep 29, 2014
Sep 29, 2014
462
463
464
465
if (tetheringWifiTech)
qDebug() << tetheringWifiTech->name() << powered;
else
qDebug() << "tetheringWifiTech is null";
Apr 30, 2014
Apr 30, 2014
466
Jun 12, 2014
Jun 12, 2014
467
468
469
if (netman && powered && delayedTethering) {
// wifi tech might not be ready, so delay this
QTimer::singleShot(1000,this,SLOT(setWifiTetheringEnabled()));
Apr 30, 2014
Apr 30, 2014
470
}
471
472
473
474
}
void QConnectionAgent::techChanged()
{
Apr 30, 2014
Apr 30, 2014
475
476
if (!netman)
return;
477
478
479
480
if (netman->getTechnologies().isEmpty()) {
knownTechnologies.clear();
}
if (!netman->getTechnology("wifi")) {
Jun 12, 2017
Jun 12, 2017
481
delayedTethering = false;
482
483
484
485
486
487
488
489
490
491
492
493
494
tetheringWifiTech = 0;
return;
}
if (tetheringWifiTech) {
tetheringEnabled = tetheringWifiTech->tethering();
}
Q_FOREACH(NetworkTechnology *technology,netman->getTechnologies()) {
if (!knownTechnologies.contains(technology->path())) {
knownTechnologies << technology->path();
if (technology->type() == "wifi") {
tetheringWifiTech = technology;
connect(tetheringWifiTech,SIGNAL(poweredChanged(bool)),this,SLOT(technologyPowerChanged(bool)));
Apr 15, 2014
Apr 15, 2014
495
connect(tetheringWifiTech,SIGNAL(scanFinished()),this,SLOT(onScanFinished()));
Apr 30, 2014
Apr 30, 2014
496
497
connect(tetheringWifiTech, SIGNAL(tetheringChanged(bool)),
this,SLOT(techTetheringChanged(bool)), Qt::UniqueConnection);
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
}
} else {
knownTechnologies.removeOne(technology->path());
}
}
}
void QConnectionAgent::browserRequest(const QString &servicePath, const QString &url)
{
Q_UNUSED(servicePath)
qDebug() << servicePath;
qDebug() << url;
Q_EMIT requestBrowser(url);
}
bool QConnectionAgent::isStateOnline(const QString &state)
{
if (state == "online" || state == "ready")
return true;
return false;
}
Apr 30, 2014
Apr 30, 2014
521
void QConnectionAgent::techTetheringChanged(bool on)
Apr 15, 2014
Apr 15, 2014
522
{
Apr 30, 2014
Apr 30, 2014
523
524
525
526
527
528
529
530
531
532
533
qDebug() << on;
tetheringEnabled = on;
NetworkTechnology *technology = static_cast<NetworkTechnology *>(sender());
if (on && delayedTethering && technology) {
QVector <NetworkService *> services = netman->getServices("cellular");
if (services.isEmpty())
return;
NetworkService* cellService = services.at(0);
if (cellService) {
if (cellService->state() == "idle"|| cellService->state() == "failure") {
Jun 9, 2014
Jun 9, 2014
534
qDebug() << "<<<<<<<<<<< requestConnect() >>>>>>>>>>>>";
Apr 30, 2014
Apr 30, 2014
535
536
537
538
539
540
541
542
543
cellService->requestConnect();
} else if (cellService->connected()) {
delayedTethering = false;
Q_EMIT tetheringFinished(true);
}
} else {
stopTethering();
}
}
Apr 15, 2014
Apr 15, 2014
544
545
}
546
547
548
549
550
551
552
553
554
555
void QConnectionAgent::offlineModeChanged(bool b)
{
flightModeSuppression = b;
if (b) {
QTimer::singleShot(5 * 1000 * 60,this,SLOT(flightModeDialogSuppressionTimeout())); //5 minutes
}
}
void QConnectionAgent::flightModeDialogSuppressionTimeout()
{
Jul 7, 2015
Jul 7, 2015
556
flightModeSuppression = false;
557
558
559
560
561
}
void QConnectionAgent::serviceAutoconnectChanged(bool on)
{
NetworkService *service = qobject_cast<NetworkService *>(sender());
Apr 15, 2014
Apr 15, 2014
562
563
if (!service)
return;
564
qDebug() << service->path() << "AutoConnect is" << on;
Apr 15, 2014
Apr 15, 2014
565
566
if (!on) {
Apr 15, 2014
Apr 15, 2014
567
568
if (service->state() != "idle")
service->requestDisconnect();
569
570
571
}
}
Apr 15, 2014
Apr 15, 2014
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
bool QConnectionAgent::isBestService(NetworkService *service)
{
qDebug() << Q_FUNC_INFO
<< service->path()
<< tetheringEnabled
<< netman->defaultRoute()->path().contains(service->path())
<< (netman->defaultRoute()->state() != "online");
if (tetheringEnabled) return false;
if (netman->offlineMode() && service->type() == "cellular") return false;
if (netman->defaultRoute()->type() == "wifi" && service->type() == "cellular") return false;
if (netman->defaultRoute()->path().contains(service->path())) return false;
return true;
}
588
589
void QConnectionAgent::scanTimeout()
{
Apr 30, 2014
Apr 30, 2014
590
if (!tetheringWifiTech || tetheringWifiTech->tethering())
Jul 7, 2015
Jul 7, 2015
591
return;
Apr 30, 2014
Apr 30, 2014
592
593
if (tetheringWifiTech->powered() && !tetheringWifiTech->connected() && netman->defaultRoute()->type() != "wifi" ) {
594
595
596
597
598
599
600
tetheringWifiTech->scan();
qDebug() << "start scanner" << scanTimeoutInterval;
if (scanTimeoutInterval != 0) {
scanTimer->start(scanTimeoutInterval * 60 * 1000);
}
}
}
Apr 15, 2014
Apr 15, 2014
601
602
603
604
605
606
void QConnectionAgent::servicesChanged()
{
qDebug();
disconnect(netman,SIGNAL(servicesChanged()),this,SLOT(servicesChanged()));
Oct 1, 2014
Oct 1, 2014
607
updateServices();
Apr 15, 2014
Apr 15, 2014
608
609
610
611
612
613
}
QString QConnectionAgent::findBestConnectableService()
{
for (int i = 0; i < orderedServicesList.count(); i++) {
Oct 1, 2014
Oct 1, 2014
614
QString path = orderedServicesList.at(i).path;
Apr 15, 2014
Apr 15, 2014
615
Oct 1, 2014
Oct 1, 2014
616
NetworkService *service = orderedServicesList.at(i).service;
Apr 15, 2014
Apr 15, 2014
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
if (!service)
continue;
qDebug() << "looking at"
<< service->name()
<< service->autoConnect();
bool online = isStateOnline(netman->defaultRoute()->state());
qDebug() << "state is"<< online << netman->defaultRoute()->path();
if (!service->autoConnect()) {
continue;
}
qDebug() <<Q_FUNC_INFO<< "continued"
<< online
<< (netman->defaultRoute()->path() == service->path())
<< netman->defaultRoute()->strength()
<< service->strength();
if ((netman->defaultRoute()->type() == "wifi" && service->type() == "wifi")
&& netman->defaultRoute()->strength() > service->strength())
return QString(); //better quality already connected
if (netman->defaultRoute()->type() == "wifi" && service->type() != "wifi")
return QString(); // prefer connected wifi
if (isBestService(service)
Aug 22, 2014
Aug 22, 2014
645
&& service->favorite()) {
Apr 15, 2014
Apr 15, 2014
646
647
648
649
650
651
652
653
654
qDebug() << path;
return path;
}
}
return QString();
}
void QConnectionAgent::removeAllTypes(const QString &type)
{
Oct 1, 2014
Oct 1, 2014
655
656
Q_FOREACH (Service elem, orderedServicesList) {
if (elem.path.contains(type))
Oct 1, 2014
Oct 1, 2014
657
orderedServicesList.remove(elem.path);
Apr 15, 2014
Apr 15, 2014
658
659
}
}
Apr 15, 2014
Apr 15, 2014
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
void QConnectionAgent::openConnectionDialog(const QString &type)
{
// open Connection Selector
QDBusInterface *connSelectorInterface = new QDBusInterface(QStringLiteral("com.jolla.lipstick.ConnectionSelector"),
QStringLiteral("/"),
QStringLiteral("com.jolla.lipstick.ConnectionSelectorIf"),
QDBusConnection::sessionBus(),
this);
connSelectorInterface->connection().connect(QStringLiteral("com.jolla.lipstick.ConnectionSelector"),
QStringLiteral("/"),
QStringLiteral("com.jolla.lipstick.ConnectionSelectorIf"),
QStringLiteral("connectionSelectorClosed"),
this,
SLOT(connectionSelectorClosed(bool)));
QList<QVariant> args;
args.append(type);
QDBusMessage reply = connSelectorInterface->callWithArgumentList(QDBus::NoBlock,
QStringLiteral("openConnection"), args);
}
Apr 30, 2014
Apr 30, 2014
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
void QConnectionAgent::startTethering(const QString &type)
{
if (!netman | (type != "wifi")) { //we only support wifi for now
Q_EMIT tetheringFinished(false);
return;
}
NetworkTechnology *tetherTech = netman->getTechnology(type);
if (!tetherTech) {
Q_EMIT tetheringFinished(false);
return;
}
QVector <NetworkService *> services = netman->getServices("cellular");
if (services.isEmpty()) {
Q_EMIT tetheringFinished(false);
return;
}
NetworkService *cellService = services.at(0);
if (!cellService || netman->offlineMode()) {
Q_EMIT tetheringFinished(false);
return;
}
QSettings confFile;
confFile.beginGroup("Connectionagent");
bool cellConnected = cellService->connected();
bool cellAutoconnect = cellService->autoConnect();
// save cellular connection state
confFile.setValue("tetheringCellularConnected",cellConnected);
confFile.setValue("tetheringCellularAutoconnect",cellAutoconnect);
bool techPowered = tetherTech->powered();
// save wifi powered state
confFile.setValue("tetheringTechPowered",techPowered);
confFile.setValue("tetheringType",type);
delayedTethering = true;
Aug 25, 2014
Aug 25, 2014
724
725
tetheringWifiTech = tetherTech;
Apr 30, 2014
Apr 30, 2014
726
727
728
729
730
731
732
if (!techPowered) {
tetherTech->setPowered(true);
} else {
tetherTech->setTethering(true);
}
}
Jul 11, 2014
Jul 11, 2014
733
void QConnectionAgent::stopTethering(bool keepPowered)
Apr 30, 2014
Apr 30, 2014
734
735
736
737
738
739
740
741
742
743
744
745
{
delayedTethering = false;
QSettings confFile;
confFile.beginGroup("Connectionagent");
NetworkTechnology *tetherTech = netman->getTechnology(confFile.value("tetheringType","wifi").toString());
if (tetherTech && tetherTech->tethering()) {
tetherTech->setTethering(false);
}
bool b = confFile.value("tetheringCellularConnected").toBool();
bool ab = confFile.value("tetheringCellularAutoconnect").toBool();
Oct 1, 2014
Oct 1, 2014
746
747
748
Q_FOREACH (Service elem, orderedServicesList) {
if (elem.path.contains("cellular")) {
if (isStateOnline(elem.service->state())) {
Apr 30, 2014
Apr 30, 2014
749
750
qDebug() << "disconnect mobile data";
if (!b)
Oct 1, 2014
Oct 1, 2014
751
elem.service->requestDisconnect();
Apr 30, 2014
Apr 30, 2014
752
if (!ab)
Oct 1, 2014
Oct 1, 2014
753
elem.service->setAutoConnect(false);
Apr 30, 2014
Apr 30, 2014
754
755
756
757
758
}
}
}
b = confFile.value("tetheringTechPowered").toBool();
Jul 11, 2014
Jul 11, 2014
759
if (!b && tetherTech && !keepPowered) {
Apr 30, 2014
Apr 30, 2014
760
761
762
763
tetherTech->setPowered(false);
}
Q_EMIT tetheringFinished(false);
}
Jun 12, 2014
Jun 12, 2014
764
765
766
767
768
769
770
771
void QConnectionAgent::setWifiTetheringEnabled()
{
if (tetheringWifiTech) {
qDebug() << "set tethering";
tetheringWifiTech->setTethering(delayedTethering);
}
}