Sensors was designed so that multiple sensors could exist for a given type. Why? Consider this example.
The N900 has an accelerometer built-in. It also features bluetooth and can pair with a gaming controller that features an accelerometer. To a developer writing a game these two devices are conceptually the same type.
To avoid the need to know (or check) what the default sensor for a type is, the system will use the default sensor for a type. Most of the time this is what the app developer wants to do. In cases where the app developer wants to select a specific sensor they must call the QSensor::setIdentifier() method before they start the sensor so that the appropriate backend is used.
From a system perspective though, selecting which sensor should be the default gets tricky. The sensors library uses the first registered identifier as the default. This means that the order in which sensor backends are registered is important so the system will allow a config file to determine the default instead.
The config file that determines the default sensor for a type is called Sensors.conf. If present, it is located in /etc/xdg/Nokia. It is read using QSettings so it has the standard formatting of a QSettings .conf file.
The settings live in the Default group and the general format is:
type = identifier
An example Sensors.conf that ensures the N900 accelerometer is used as the default no matter the order in which backends were registered is presented here.
[Default] QAccelerometer = n900.accelerometer
If Sensors.conf specifies an identifier that is not registered then the system will fall back to the first registered identifier as the default.
Note that there is special case logic to prevent the generic plugin's backends from becoming the default when another backend is registered for the same type. This logic means that a backend identifier starting with generic. will only be the default if no other backends have been registered for that type or if it is specified in Sensors.conf.
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.