summaryrefslogtreecommitdiffstats
path: root/src/systeminfo/mac/qdeviceinfo_mac.mm
blob: 599e179c1bc776b81f473f5fac3ec09afd4afa51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtSystems module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** As a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qdeviceinfo_mac_p.h"

#include <QDebug>
#include <QSettings>
#include <QCryptographicHash>
#include <QtCore/private/qcore_mac_p.h>
#include <QSysInfo>

#include <CoreLocation/CLLocation.h>
#include <CoreLocation/CLLocationManager.h>
#include <ScreenSaver/ScreenSaverDefaults.h>
#include <CoreWLAN/CoreWLAN.h>
#include <CoreServices/CoreServices.h>
#include <CoreFoundation/CFNotificationCenter.h>
#include <IOBluetooth/IOBluetooth.h>
#if defined(slots)
#undef slots
#endif
#include <QTKit/QTKit.h>
#include <IOKit/pwr_mgt/IOPM.h>
#include <IOKit/pwr_mgt/IOPMLib.h>

#include <CoreFoundation/CFDictionary.h>

#include <sys/types.h>
#include <sys/sysctl.h>
#include <QMetaType>

bool hasIOServiceMatching(const QString &classstr)
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    io_iterator_t ioIterator = NULL;
    IOServiceGetMatchingServices(kIOMasterPortDefault, IOServiceNameMatching(classstr.toLatin1()), &ioIterator);
    if (ioIterator) {
        [pool drain];
        return true;
    }
    [pool drain];
    return false;
}
QT_BEGIN_NAMESPACE

QDeviceInfoPrivate::QDeviceInfoPrivate(QDeviceInfo *parent)
    : QObject(parent)
    , q_ptr(parent)
    ,btThread(0)
{
}

QDeviceInfoPrivate::~QDeviceInfoPrivate()
{
    if (btThread->isRunning())
        btThread->stop();
}

bool QDeviceInfoPrivate::hasFeature(QDeviceInfo::Feature feature)
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    bool featureSupported = false;
    switch (feature) {
    case QDeviceInfo::BluetoothFeature:
        {
            IOBluetoothHostController* controller = [IOBluetoothHostController defaultController];
            if (controller != NULL) {
                featureSupported = true;
            }
        }
        break;
    case QDeviceInfo::CameraFeature:
        {
           NSArray * videoDevices;
           videoDevices = [[QTCaptureDevice inputDevicesWithMediaType:QTMediaTypeVideo] arrayByAddingObjectsFromArray:[QTCaptureDevice inputDevicesWithMediaType:QTMediaTypeMuxed]];
           if ([videoDevices count] > 0) {
               featureSupported = true;
           }
        }
        break;
    case QDeviceInfo::FmRadioFeature:
    case QDeviceInfo::FmTransmitterFeature:
        break;
    case QDeviceInfo::InfraredFeature:
        {
            if (hasIOServiceMatching("AppleIRController")) {
                featureSupported = true;
            }
        }
        break;
    case QDeviceInfo::LedFeature:
        {
//kHIDPage_LEDs
        }
        break;
    case QDeviceInfo::MemoryCardFeature:
        {
// IOSCSIPeripheralDeviceType0E
            if (hasIOServiceMatching("IOUSBMassStorageClass")) {
                featureSupported = true;
            }
        }
        break;
    case QDeviceInfo::UsbFeature:
        {
            if (hasIOServiceMatching("AppleUSBOHCI")) {
                featureSupported = true;
            }
            if (hasIOServiceMatching("AppleUSBEHCI")) {
                featureSupported = true;
            }
        }
        break;
    case QDeviceInfo::VibrationFeature:
        {
        }
        break;
    case QDeviceInfo::WlanFeature:
        {
        NSArray *wifiInterfaces = [CWInterface supportedInterfaces];
        if (wifiInterfaces || wifiInterfaces.count > 0)
            featureSupported = true;
        }
        break;
    case QDeviceInfo::SimFeature:
        {
        }
        break;
    case QDeviceInfo::PositioningFeature:
        {
            if ([CLLocationManager locationServicesEnabled]) {
                featureSupported = true;
            }
        }
        break;
    case QDeviceInfo::VideoOutFeature:
        {
            ComponentDescription description = {'vout', 0, 0, 0L, 1L << 0};
            if ( ::CountComponents(&description) > 0) {
                featureSupported = true;
            }
        }
        break;
    case QDeviceInfo::HapticsFeature:
    case QDeviceInfo::NfcFeature:
        break;
    default:
        featureSupported = false;
        break;
    };
    [pool drain];
    return featureSupported;
}

int QDeviceInfoPrivate::imeiCount()
{
    return -1;
}

QDeviceInfo::LockTypeFlags QDeviceInfoPrivate::activatedLocks()
{
  // QSettings seems to not work on mac.
    // FIXME
//    // find out if auto login is being used.
//    QSettings loginSettings("/Library/Preferences/com.apple.loginwindow.plist", QSettings::NativeFormat);
//    QString autologinname = loginSettings.value("autoLoginUser").toString();

//    QSettings zwoptexList("/Library/Preferences/com.apple.screensaver.plist",QSettings::NativeFormat);
//    QStringList keys = zwoptexList.allKeys();
//    qDebug() << "keys" << keys;
//    for (int i = 0; i < keys.size(); i++) {
//        QString tempString = keys.at(i);
//        qDebug() << tempString;
//    }

//// find out if locked screensaver is used.
//    int passWordProtected = 0;
////#if defined(QT_ARCH_X86_64)  && !defined(MAC_SDK_10_6)
//    QSettings screensaverSettings("/Library/Preferences/com.apple.screensaver.plist", QSettings::NativeFormat);
//    passWordProtected = screensaverSettings.value("askForPassword").toInt();

////    ScreenSaverDefaults *ssDefaults;
////    ssDefaults = [ScreenSaverDefaults defaultsForModuleWithName:@"com.apple.screensaver"];
////    passWordProtected = [ssDefaults integerForKey:@"askForPassword"];
////#endif
//    qDebug() <<passWordProtected;
//    if (autologinname.isEmpty() || passWordProtected == 1) {
        return QDeviceInfo::UnknownLock;
//    }

//    return QDeviceInfo::NoLock;
}

QDeviceInfo::LockTypeFlags QDeviceInfoPrivate::enabledLocks()
{
    return QDeviceInfo::UnknownLock;
}

QDeviceInfo::ThermalState QDeviceInfoPrivate::thermalState()
{
    // TODO fixme
//    int value = 0;
//    int it = 0;
//    kern_return_t kr;
//    io_iterator_t hwSensors;
//    io_service_t hwSensorService;
//    CFMutableDictionaryRef sensorDict;

//    kr = IOServiceGetMatchingServices(kIOMasterPortDefault,
//                                      IOServiceNameMatching("IOHWSensor"), &hwSensors);

//    while ((hwSensorService = IOIteratorNext(hwSensors))) {
//        kr = IORegistryEntryCreateCFProperties(hwSensorService, &sensorDict, kCFAllocatorDefault, kNilOptions);
//        if (kr == KERN_SUCCESS) {
//            SInt32 currentValue;
//            CFNumberRef sensorValue;
//            CFStringRef sensorType;
//            if (CFStringCompare(sensorType, CFSTR("temperature"), 0) != kCFCompareEqualTo)
//                continue;

//            sensorValue = (const __CFNumber *)CFDictionaryGetValue((CFDictionaryRef)sensorDict,
//                                                                   CFSTR("current-value"));

//            (void)CFNumberGetValue(sensorValue, kCFNumberSInt32Type,
//                                   (void *)&currentValue);
//            value += currentValue;
//            it++;
//        }
//        CFRelease(sensorDict);
//        IOObjectRelease(hwSensorService);
//    }

//    IOObjectRelease(hwSensors);

//    qDebug() << "average value" << (value / it) / 65536;

    //    IOServiceMatching("IOHWSensor");
//    static io_connect_t dataPort = 0;

//    kern_return_t kreturn;
//    io_service_t ioService;

//    ioService = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("IOHWSensor"));
//    if (!ioService) {
//        qDebug() << "IOHWSensor error";
//        return QDeviceInfo::UnknownThermal;
//    }

//    qDebug() << ioService->getProperty("current-value");;

//    kreturn = IOServiceOpen(ioService, mach_task_self(), 0, &dataPort);
//    IOObjectRelease(ioService);
//    if (kreturn != KERN_SUCCESS) {
//        qDebug() << "IOServiceOpen "<< kreturn;
//        return QDeviceInfo::UnknownThermal;
//    }

//    uint64_t inputValues[1] = {0};

//    uint32_t outputCount = 1;
//    uint64_t outputValues[1];

//    kreturn = IOConnectCallScalarMethod(dataPort,1,inputValues,1,outputValues,&outputCount);
//    if (kreturn != KERN_SUCCESS) {
//        qDebug() << "keyboard error";
//        return QDeviceInfo::UnknownThermal;
//    }

//    uint32_t  getlevel = 0;
//    CFStringRef thermal_key = NULL;
//    IOReturn ret = kIOReturnError;

//    ret = IOPMGetThermalWarningLevel(&getlevel);
//        if ((kIOReturnSuccess == ret)) {
//            qDebug() << getlevel;
//        }
    return QDeviceInfo::UnknownThermal;
}

QString QDeviceInfoPrivate::imei(int)
{
    return QString();
}

QString QDeviceInfoPrivate::manufacturer()
{
    return QLatin1String("Apple"); //pretty sure we can hardcode this one
}

QString QDeviceInfoPrivate::model()
{
    char modelBuffer[256];
    QString model;
      size_t sz = sizeof(modelBuffer);
      if (0 == sysctlbyname("hw.model", modelBuffer, &sz, NULL, 0)) {
          model = QLatin1String(modelBuffer);
      }
    return  model;
}

QString QDeviceInfoPrivate::productName()
{
    char modelBuffer[256];
    QString model;
      size_t sz = sizeof(modelBuffer);
      if (0 == sysctlbyname("hw.model", modelBuffer, &sz, NULL, 0)) {
          model = QLatin1String(modelBuffer);
      }
      if (model.count() > 3)
          model = model.left(model.count() - 3);
      bool ok;
      model.right(1).toInt(&ok);
      if (ok)
          model.chop(1);
      return model;
}

QString QDeviceInfoPrivate::uniqueDeviceID()
{
    CFStringRef uuidKey = CFSTR(kIOPlatformUUIDKey);
    io_service_t ioService = IOServiceGetMatchingService(kIOMasterPortDefault,
                                                         IOServiceMatching("IOPlatformExpertDevice"));
    QCryptographicHash hash(QCryptographicHash::Sha1);
    if (ioService) {
        CFTypeRef cfStringKey = IORegistryEntryCreateCFProperty(ioService, uuidKey, kCFAllocatorDefault, 0);

        hash.addData(QCFString::toQString((const __CFString*)cfStringKey).toLocal8Bit());
        return QString::fromLatin1(hash.result().toHex());
    }
    hash.addData(QString::number(gethostid()).toLocal8Bit());
    return QString::fromLatin1(hash.result().toHex());
}

QString QDeviceInfoPrivate::version(QDeviceInfo::Version type)
{
    switch (type) {
    case QDeviceInfo::Os:
        {
//        QSettings versionSettings("/System/Library/CoreServices/SystemVersion.plist", QSettings::NativeFormat);
//        return versionSettings.value("ProductVersion").toString();
            NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
            QString ver = QCFString::toQString([[NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"] objectForKey:@"ProductVersion"]);
            [pool drain];
            return ver;
        }
        break;
    case QDeviceInfo::Firmware:
        {
        char firmwareBuffer[256];
        QString firmware;
          size_t sz = sizeof(firmwareBuffer);
          if (0 == sysctlbyname("kern.version", firmwareBuffer, &sz, NULL, 0)) {
              firmware = QLatin1String(firmwareBuffer);
          }
          return firmware;
        }
        break;
    };
    return QString();
}

QString QDeviceInfoPrivate::operatingSystemName()
{
    const QString ver = version(QDeviceInfo::Os);

    if (ver.left(4) == QStringLiteral("10.6"))
        return QStringLiteral("Snow Leopard");
    if (ver.left(4) == QStringLiteral("10.7"))
        return QStringLiteral("Lion");
    if (ver.left(4) == QStringLiteral("10.8"))
        return QStringLiteral("Mountain Lion");
    if (ver.left(4) == QStringLiteral("10.9"))
        return QStringLiteral("Mavericks");
    return ver;
}

QString QDeviceInfoPrivate::boardName()
{
    // I suspect boardname and product are the same for macs.
    return model();
}

static bool isBtPowerOn()
{
    CFMutableDictionaryRef matching = NULL;
    CFMutableDictionaryRef btDictionary = NULL;
    io_registry_entry_t entry = 0;
    matching = IOServiceMatching("IOBluetoothHCIController");
    entry = IOServiceGetMatchingService(kIOMasterPortDefault,matching);
    IORegistryEntryCreateCFProperties(entry, &btDictionary,NULL,0);
    bool powerOn = false;

    if ([[(NSDictionary*)btDictionary objectForKey:@"HCIControllerPowerIsOn"] boolValue]) {
        powerOn = true;
    }
    CFRelease(btDictionary);
    return powerOn;
}

bool QDeviceInfoPrivate::currentBluetoothPowerState()
{
    if (isBtPowerOn())
        return true;
    return false;
}

void QDeviceInfoPrivate::connectNotify(const QMetaMethod &signal)
{
    static const QMetaMethod bluetoothStateChanged = QMetaMethod::fromSignal(&QDeviceInfoPrivate::bluetoothStateChanged);
    if (signal == bluetoothStateChanged) {
        if (!btThread) {
            btThread = new QBluetoothListenerThread();
            btThreadOk = true;
            connect(btThread,SIGNAL(bluetoothPower(bool)), this, SIGNAL(bluetoothStateChanged(bool)),Qt::UniqueConnection);
        }
        btThread->start();
    }
}

void QDeviceInfoPrivate::disconnectNotify(const QMetaMethod &signal)
{
    static const QMetaMethod bluetoothStateChanged = QMetaMethod::fromSignal(&QDeviceInfoPrivate::bluetoothStateChanged);
    if (signal == bluetoothStateChanged) {
        btThread->stop();
   }
}

void btPowerStateChange(void *ref, io_service_t /*service*/, natural_t messageType, void */*info*/)
{
    QBluetoothListenerThread * thread = reinterpret_cast< QBluetoothListenerThread *>(ref);
    switch (messageType) {
    case 3758227457:
    case kIOMessageDeviceWillPowerOff:
    {
        thread->emitBtPower(false);
    }
        break;
    case 3758227458:
    case kIOMessageDeviceHasPoweredOn:
    {
     thread->emitBtPower(true);
    }
        break;
    }
}

QBluetoothListenerThread::QBluetoothListenerThread(QObject *parent)
    :QThread(parent)
{
    mutex.lock();
    keepRunning = true;
    mutex.unlock();
}

QBluetoothListenerThread::~QBluetoothListenerThread()
{
}

void QBluetoothListenerThread::stop()
{
    mutex.lock();
    keepRunning = false;
    mutex.unlock();
    wait();
}

void QBluetoothListenerThread::run()
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

    io_object_t notifyObject;
    io_service_t bluetoothservice;

    io_iterator_t ioIterator;
    mach_port_t masterPort;
    CFMutableDictionaryRef serviceMatchDict;

    if (0 != IOMasterPort(MACH_PORT_NULL, &masterPort)) {
        qDebug() << "IOMasterPort failed";
    }

    serviceMatchDict = IOServiceMatching("IOBluetoothHCIController");
    if (NULL == serviceMatchDict) {
        qDebug() << "IOServiceMatching failed";
    }

    if (0 != IOServiceGetMatchingServices(masterPort, serviceMatchDict, &ioIterator)) {
        qDebug() << "IOServiceGetMatchingServices failed";
    }

    IOReturn ret;

    bluetoothservice = IOIteratorNext(ioIterator);
    if (0 == bluetoothservice) {
        IOObjectRelease(ioIterator);
        qDebug() << "IOIteratorNext failed";
    }
    IOObjectRelease(ioIterator);

    port = IONotificationPortCreate(masterPort);
    if (0 == port) {
        qDebug() << "IONotificationPortCreate failed";
    }

    ret = IOServiceAddInterestNotification(port, bluetoothservice,
                                           kIOGeneralInterest, btPowerStateChange,
                                           this, &notifyObject);
    if (ret != kIOReturnSuccess) {
        qDebug() << "IOServiceAddInterestNotification failed";
        return;
    }

    rl = CFRunLoopGetCurrent();
    rls = IONotificationPortGetRunLoopSource(port);

    CFRunLoopAddSource(rl,
                       rls,
                       kCFRunLoopDefaultMode);
    SInt32 result;
    while (keepRunning &&
           (result = CFRunLoopRunInMode(kCFRunLoopDefaultMode ,1, NO))) {
    }

    CFRunLoopStop(rl);

    IOObjectRelease(bluetoothservice);
    CFRunLoopRemoveSource(rl,
                          rls,
                          kCFRunLoopDefaultMode);
    IONotificationPortDestroy(port);
    [pool release];
}

void QBluetoothListenerThread::setupConnectNotify()
{
    //btConnListener = [[QtBtConnectListener alloc] init];
}

void QBluetoothListenerThread::emitBtPower(bool b)
{
    Q_EMIT bluetoothPower(b);
}


QT_END_NAMESPACE