Development/Tutorials/Solid/Introduction: Difference between revisions

From KDE TechBase
(Mark for updating)
 
(23 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{Improve}}
== What is Solid ==
== What is Solid ==
Solid is the new hardware device framework for KDE 4 that features, among other things, a hardware discovery layer which allows you to detect and use devices regardless of operating system or architecture. You can learn more about the Solid project at [http://solid.kde.org solid.kde.org].
Solid is the new hardware device framework for KDE 4 that features, among other things, a hardware discovery layer which allows you to detect and use devices regardless of operating system or architecture. You can learn more about the Solid project at [http://solid.kde.org solid.kde.org].


== Who is this tutorial for? ==
For a more detailed (still not complete!) description, read [[Development/Architecture/KDE4/Solid|here]].
This tutorial is written for developers looking to use the Solid hardware discovery layer within their applications.  It can also serve as a good starting point for developers looking to start working on the Solid framework.


== Prerequisites ==
The API documentation can be found at [http://api.kde.org/frameworks-api/frameworks5-apidocs/solid/html/index.html api.kde.org]
* A working KDE4 development environment. Documentation on setting up a KDE environment can be found [[Getting_Started|here]].


== Listing Devices ==
== Who are those tutorials for? ==
Our first program will be a simple console based app that gets a list of all the hardware devices and prints them out to the screen.
This tutorial is written for developers looking to use the Solid hardware discovery layer within their applicationsIt can also serve as a good starting point for developers looking to start working on the Solid framework.
 
<code cppqt>
    Solid::DeviceManager &manager = Solid::DeviceManager::self();
</code>
 
This gets us the device managerAll the devices are queried through and returned from the device manager.  Once we have the list of devices we can interact with them as follows:
 
<code cppqt>foreach( Solid::Device device, manager.allDevices() )
{
    //print the name of device
    kDebug() << device.udi() << endl;
}
</code>
 
device.udi() returns the Unique Device Identifier for the device as a QString. Even if you have more than one identical device, the UDI is guaranteed to be unique.  For example if have a MythTV box with two PVR-250 T.V. capture cards in it, we will be able to refer to card #1 by it's UDI and card #2 by it's UDI.
 
The complete program along with the CMake files necessary to build it can be found under "[http://websvn.kde.org/trunk/KDE/kdelibs/solid/examples/tutorial1/ kdelibs/solid/examples/tutorial1/]".
 
== Searching for specific devices ==
This second program makes uses of filters built into the solid framework.  Using these filters you can list only devices according to supported capabilities, sub-devices of a given parent, and various predicates.  In our example we'll be limiting our list to only audio hardware.  A full list of capabilities can be viewed under the Solid::Capability namespace.
 
<code cppqt>Solid::DeviceManager &manager = Solid::DeviceManager::self();
DeviceList devices = manager.findDevicesFromQuery( "",
    Solid::Capability::AudioHw );
//get a list of all devices that are AudioHw
foreach ( Solid::Device device, devices )
{
    kDebug() << device.udi() << endl;
}
</code>


In this example Solid::DeviceManager::findDevicesFromQuery looks for a device with any parent and the Solid::Capability::AudioHw capability.  If we had wanted to specify an AudioHw device with the parent "real_specific_parent" it would look like this:
== Solid core library tutorials ==
   
<code cppqt>manager.findDevicesFromQuery( "real_specific_parent",
                              Solid::Capability::AudioHw )</code>
The complete program along with the CMake files required to build it can be found under "[http://websvn.kde.org/trunk/KDE/kdelibs/solid/examples/tutorial2/ kdelibs/solid/examples/tutorial2/]".


== What do we do with a device once we get it? ==
;[[Development/Tutorials/Solid/Device_Discovery|Listing Devices]]
Now that we got a device, what do we do with it?  First lets look at the relationship between the Solid::Device and Solid::Capability. A Solid::Device can contain many Solid::Capability.  A device can be tested to have a capability in the following way:
:''How to use the Solid core library to discover the hardware and interact with the system.''
<code cppqt>Solid::DeviceManager &manager = Solid::DeviceManager::self();
   
//get a Processor
Solid::DeviceList list = manager.findDevicesFromQuery( "",
                            Solid::Capability::Processor );


//take the first Processor
;[[Development/Tutorials/Solid/Network_Management|Accessing Network Information]]
Solid::Device device = list[0];
:''How to use the Solid system to get information about the network''
if ( device.is<Solid::Processor>() ) {
    kDebug() << "We've got a processor!" << endl;
} else {
    kDebug() << "Device is not a processor." << endl;
}
</code>


To actually use this device as a processor we need to do the following:
;[[Development/Tutorials/Solid/Device_Actions|Creating a Device Action]]
<code cppqt>
:''When your application is interested in registering actions with the system for removable hardware''
    Solid::Processor *processor = device.as<Solid::Processor>();
</code>
The complete program along with the CMake files required to build it can be found under "[http://websvn.kde.org/trunk/KDE/kdelibs/solid/examples/tutorial3/ kdelibs/solid/examples/tutorial3/]".


[[Category:Tutorial]]
[[Category:C++]]
[[Category:C++]]
[[Category:KDE4]]
[[Category:Solid]]

Latest revision as of 11:18, 31 May 2019

Warning
This section needs improvements: Please help us to

cleanup confusing sections and fix sections which contain a todo


What is Solid

Solid is the new hardware device framework for KDE 4 that features, among other things, a hardware discovery layer which allows you to detect and use devices regardless of operating system or architecture. You can learn more about the Solid project at solid.kde.org.

For a more detailed (still not complete!) description, read here.

The API documentation can be found at api.kde.org

Who are those tutorials for?

This tutorial is written for developers looking to use the Solid hardware discovery layer within their applications. It can also serve as a good starting point for developers looking to start working on the Solid framework.

Solid core library tutorials

Listing Devices
How to use the Solid core library to discover the hardware and interact with the system.
Accessing Network Information
How to use the Solid system to get information about the network
Creating a Device Action
When your application is interested in registering actions with the system for removable hardware