Development/Tutorials/Solid/Network Management

From KDE TechBase
Revision as of 10:38, 20 March 2007 by Tampakrap (talk | contribs)

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'll 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.

//get a reference to the network manager Solid::NetworkManager &netmanager = Solid::NetworkManager::self();

//test to see if networking is enabled on the system if(netmanager.isNetworkingEnabled() ) {

   kDebug() << "Networking is enabled.  Feel free to go online!"
            << endl;

} else {

   kDebug() << "Network not available." << endl;

}

As of 28DEC2006 there are no signals that report a change in the network status so polling is required.

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);

//check to see if no network devices were found if(netlist.empty() ) {

   kDebug() << "No network devices found!" << endl;
   return 0;

}

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."
            << endl;
   return 0;

}

kDebug() << "The iface of " << device.udi() << " is "

        << netdev->ifaceName() << endl;

Initializing devices

Encryption

Putting it all together