Development/Tutorials/Solid/Network Management

    From KDE TechBase
    Warning
    This page needs a review and probably holds information that needs to be fixed.

    Parts to be reviewed:

    • Port to KF5
    • Add more content

    Prerequisites

    This tutorial assumes that you have read Introduction to Solid and are familiar with the Solid hardware framework. If you want to use any backends other than the fake backends provided in kdelibs, you will need to compile and install kdebase.

    Features of the Solid Network Manager

    The Solid Network Manager provides many useful features that have, up until now, been missing from KDE. These include:

    • Notification of connection state. This allows applications to know when there is no internet connection, allowing them to not bother the user with "Connection Error" messages
    • Notification of wireless connection state.
    • Access to network devices and interfaces.
    • Device <-> interface cross-referencing.

    Note that there is a difference between the devices and the interfaces. The device is a representation of the device itself and all the things that normally are associated with a PCI/USB device such as: bus address, IRQ, etc. The interface is the name of the device e.g. 'eth0' which is used for commands like 'ifconfig.'

    Let's begin

    Our first program is going to be the most common use of the network manager, checking the network status of the system. This will be useful for programs like KMail which will be able to see if the computer has network connectivity. It would then be able to judge whether or not it should check for mail.

    //test to see if networking is enabled on the system
    if(Solid::Networking::status() == Solid::Networking::Connected)
    {
        kDebug() << "Networking is enabled. Feel free to go online!";
    }
    else
    {
        kDebug() << "Network not available.";
    }
    

    To get informed about changes in network connectivity you'll have to connect to the events of Solid::Networking::notifier().

    Cross-referencing devices to interfaces

    It is no longer required for the user to figure out which device corresponds to a given interface as the NetworkManager has the ability to cross-reference a device to its interface name. This can be done with the following code:

    //get a reference to the device manager
    Solid::DeviceManager &manager = Solid::DeviceManager::self();
        
    //get a network device
    Solid::DeviceList netlist = manager.findDevicesFromQuery(Solid::Capability::NetworkHw, QString());
        
    //check to see if no network devices were found
    if(netlist.empty() )
    {
        kDebug() << "No network devices found!";
    }
        
    Solid::Device device = netlist[0];
    Solid::NetworkHw *netdev = device.as<Solid::NetworkHw>();
    //keep the program from crashing in the event that there's a bug in solid
    if(!netdev)
    {
        kDebug() << "Device could not be converted. There is a bug.";
        return 0;
    }
        
    kDebug() << "The iface of" << device.udi() << "is" << netdev->ifaceName();
    

    Initializing devices

    Encryption

    Putting it all together