/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the QtSensors module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3$ ** 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 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "winrtorientationsensor.h" #include "winrtcommon.h" #include #include #include #include #include using namespace Microsoft::WRL; using namespace Microsoft::WRL::Wrappers; using namespace ABI::Windows::Foundation; using namespace ABI::Windows::Devices::Sensors; typedef ITypedEventHandler SimpleOrientationReadingHandler; QT_USE_NAMESPACE class WinRtOrientationSensorPrivate { public: WinRtOrientationSensorPrivate(WinRtOrientationSensor *p) : q(p) { token.value = 0; } QOrientationReading reading; ComPtr sensor; EventRegistrationToken token; HRESULT readingChanged(ISimpleOrientationSensor *, ISimpleOrientationSensorOrientationChangedEventArgs *args) { SimpleOrientation value; HRESULT hr = args->get_Orientation(&value); if (FAILED(hr)) { qCWarning(lcWinRtSensors) << "Failed to get orientation value." << qt_error_string(hr); return hr; } DateTime dateTime; hr = args->get_Timestamp(&dateTime); if (FAILED(hr)) { qCWarning(lcWinRtSensors) << "Failed to get compass reading timestamp." << qt_error_string(hr); return hr; } switch (value) { default: reading.setOrientation(QOrientationReading::Undefined); break; case SimpleOrientation_NotRotated: reading.setOrientation(QOrientationReading::TopUp); break; case SimpleOrientation_Rotated90DegreesCounterclockwise: reading.setOrientation(QOrientationReading::RightUp); break; case SimpleOrientation_Rotated180DegreesCounterclockwise: reading.setOrientation(QOrientationReading::TopDown); break; case SimpleOrientation_Rotated270DegreesCounterclockwise: reading.setOrientation(QOrientationReading::LeftUp); break; case SimpleOrientation_Faceup: reading.setOrientation(QOrientationReading::FaceUp); break; case SimpleOrientation_Facedown: reading.setOrientation(QOrientationReading::FaceDown); break; } reading.setTimestamp(dateTimeToMsSinceEpoch(dateTime)); q->newReadingAvailable(); return S_OK; } private: WinRtOrientationSensor *q; }; WinRtOrientationSensor::WinRtOrientationSensor(QSensor *sensor) : QSensorBackend(sensor), d_ptr(new WinRtOrientationSensorPrivate(this)) { Q_D(WinRtOrientationSensor); HRESULT hr = QEventDispatcherWinRT::runOnXamlThread([d]() { HStringReference classId(RuntimeClass_Windows_Devices_Sensors_SimpleOrientationSensor); ComPtr factory; HRESULT hr = RoGetActivationFactory(classId.Get(), IID_PPV_ARGS(&factory)); if (FAILED(hr)) { qCWarning(lcWinRtSensors) << "Unable to initialize orientation sensor factory." << qt_error_string(hr); return hr; } hr = factory->GetDefault(&d->sensor); if (FAILED(hr)) { qCWarning(lcWinRtSensors) << "Unable to get default orientation sensor." << qt_error_string(hr); } return hr; }); if (FAILED(hr) || !d->sensor) { sensorError(hr); return; } setReading(&d->reading); } WinRtOrientationSensor::~WinRtOrientationSensor() { } void WinRtOrientationSensor::start() { Q_D(WinRtOrientationSensor); if (!d->sensor) return; if (d->token.value) return; HRESULT hr = QEventDispatcherWinRT::runOnXamlThread([d]() { ComPtr callback = Callback(d, &WinRtOrientationSensorPrivate::readingChanged); return d->sensor->add_OrientationChanged(callback.Get(), &d->token); }); if (FAILED(hr)) { qCWarning(lcWinRtSensors) << "Unable to attach to reading changed event." << qt_error_string(hr); sensorError(hr); return; } } void WinRtOrientationSensor::stop() { Q_D(WinRtOrientationSensor); if (!d->sensor) return; if (!d->token.value) return; HRESULT hr = QEventDispatcherWinRT::runOnXamlThread([d]() { return d->sensor->remove_OrientationChanged(d->token); }); if (FAILED(hr)) { qCWarning(lcWinRtSensors) << "Unable to detach from reading changed event." << qt_error_string(hr); sensorError(hr); return; } d->token.value = 0; }