Multi-platform app that allows your devices to communicate
Find a file
Aleix Pol c7cee37330 Port away from KServiceTrader
Uses KPluginLoader+KPluginMetadata instead.
Describes plugins in json instead of desktop files. These desktop files are
then embedded into the .so file. All the plugins will be in a kdeconnect/
directory, and those will be the ones to look for.

Note it doesn't drop the KService dependency as KIOCore is a KDE Connect
dependency as well.

REVIEW: 123042
2015-03-19 16:36:53 +01:00
cli Fix kdeconnect-cli after DevicesModel refactoring 2015-03-16 02:58:22 +01:00
cmake don't install library dev files until there is an API/ABI policy 2015-03-12 12:42:10 +01:00
core Port away from KServiceTrader 2015-03-19 16:36:53 +01:00
daemon Includes cleanup 2015-03-13 21:20:58 -07:00
fileitemactionplugin Merge branch 'master' into frameworks 2015-03-01 21:33:47 -08:00
icon Fixed deprecation warning 2014-11-29 00:17:42 -08:00
interfaces Port away from KServiceTrader 2015-03-19 16:36:53 +01:00
kcm Port away from KServiceTrader 2015-03-19 16:36:53 +01:00
kcmplugin Added a baseclass for the plugins' KCMs and a class for the plugins' config 2015-03-13 21:22:21 -07:00
kio Fixed deprecation warning 2015-02-23 22:07:28 -08:00
plasmoid Fix how the plasmoid status is specified 2015-03-13 00:56:25 +01:00
plugins Port away from KServiceTrader 2015-03-19 16:36:53 +01:00
tests testsocketlinereader: USE QTEST_GUILESS_MAIN 2015-03-17 18:37:59 +01:00
.gitignore Git: ignore *.kdev4 2014-06-29 17:46:39 +02:00
.reviewboardrc Submit .reviewboardrc file 2014-06-18 02:42:07 +02:00
CMakeLists.txt Port away from KServiceTrader 2015-03-19 16:36:53 +01:00
COPYING add missing licence file 2013-09-13 19:30:36 +02:00
kdeconnect-non-plasma.desktop Install a desktop file to use the plasmoid in a windowed mode 2014-11-10 04:02:03 +01:00
kdeconnect-version.h.in Version number is now set in a single place 2015-02-04 23:52:07 -08:00
KDEConnectMacros.cmake Port away from KServiceTrader 2015-03-19 16:36:53 +01:00
README Documentation 2013-09-24 14:14:34 +02:00

Class diagram
==============

   Backend_1  ...  Backend_N
           \   |  /
            Daemon
           /   |  \
     Device_1  ...  Device_N
                   /         \
                   |-Plugin_1 |-DeviceLink_1
                   |-Plugin_2 |-DeviceLink_2
                   |- ...     |-...
                   |-Plugin_N |-DeviceLink_N


Daemon instantiates Backends

Backends manage to create DeviceLinks with the devices they can reach, and Q_EMIT them to the Daemon.

When the Daemon receives a DeviceLink from a backend:
    - If it already knows the Device, adds the new DeviceLink to the existing Device, as a new way to reach it.
    - If not, it creates a new untrusted (yet to be paired) Device.

Devices contain a list of DeviceLinks, plus a list of Plugins (instantiated automatically)

Information for and from Plugins is encapsulated in NetworkPackages.

When a DeviceLink receives a NetworkPackage from the device in the other end, Device will notify all the plugins.

When a Plugin wants to send a NetworkPackage, it does so using the pointer to Device



The NetworkPackage format
=========================

NetworkPackages are independent and self-contained pieces of information that
are sent from one device to another (via a DeviceLink) serialized in json.

The basic structure of a NetworkPackage is the following:

{
  "id": 123456789,
  "type": "org.kde.whatever",
  "body": {

   },
  "version": 5
}

Each type of package defines what it should contain inside its "body", so only
the emisor plugin and receiver plugin of this type of package need agree about
its content. Each plugin should provide a README explaining what does it write
in the "body" section, to ease porting to other platforms.

If the package has a payload attached, it will also contain two more fields:
 "payloadSize": The size of the file, or -1 if it is a stream without known end
 "payloadTransferInfo": Another JSON Object containing the information that the
                        backend wants to send to the peer backend, to actually
                        transfer the payload.

Encrypted network packages have the following format:

 "type": is always set to "kdeconnect.encrypted".
 "id": contains a new valid id (ie: not the same id as the unencrypted package).
 "version": contains the package version.
 "body": contains a "data" array that carries the original package encrypted.

The "data" array is filled the following way:

 1. The original package is serialized.
 2. The serialized string is divided in chunks small enough to be encrypted with
    the other device's public key.
 3. Each chunk is encrypted and appended to the array in order.