Frameworks/Policies: Difference between revisions

From KDE Community Wiki
(Update requirements to match the Qt 5.8 requirements)
(One intermediate revision by one other user not shown)
Line 13: Line 13:
* Functional Qt Addons cannot have runtime dependencies;
* Functional Qt Addons cannot have runtime dependencies;
* Integration Qt Addons can have an optional runtime dependencies and aim at integrating with the underlying OS/Platform;
* Integration Qt Addons can have an optional runtime dependencies and aim at integrating with the underlying OS/Platform;
* Solutions have a mandatory runtime dependencies, it is part of their design and where their added value comes from (think scalability, resource sharing, resilience, etc.).
* Solutions have mandatory runtime dependencies, it is part of their design and where their added value comes from (think scalability, resource sharing, resilience, etc.).


== Framework directory structure ==
== Framework directory structure ==
Line 20: Line 20:
* At the top level we find the common files like README.md, COPYING.LIB, metainfo.yaml...
* At the top level we find the common files like README.md, COPYING.LIB, metainfo.yaml...
* More comprehensive documentation go into a '''docs''' subdirectory
* More comprehensive documentation go into a '''docs''' subdirectory
* The source code for the targets go into '''src''' subdirectory, if several payload are built (like a core lib and a gui layer on top) then src will contain one subdirectory per library: core, gui, widgets, etc.
* The source code for the targets go into '''src''' subdirectory, if several payloads are built (like a core lib and a gui layer on top) then src will contain one subdirectory per library: core, gui, widgets, etc.
* Code examples go into an '''examples''' subdirectory
* Code examples go into an '''examples''' subdirectory
* Automatic tests go into an '''autotests''' subdirectory
* Automatic tests go into an '''autotests''' subdirectory
Line 32: Line 32:


== Frameworks maintain binary compatibility ==
== Frameworks maintain binary compatibility ==
Just like we did in kdelibs, KDE Frameworks maintain the binary compatibility through their life time, for more details see  the [[Policies/Binary_Compatibility_Issues_With_C++| binary compatibility policy]].
Just like we did in kdelibs, KDE Frameworks maintain the binary compatibility through their lifetime, for more details see  the [[Policies/Binary_Compatibility_Issues_With_C++| binary compatibility policy]].


Note however that this policy is lifted during major version transition, corresponding epics of milestones will be marked as such.
Note however that this policy is lifted during major version transition, corresponding epics of milestones will be marked as such.
Line 65: Line 65:


== Frameworks Qt requirements ==
== Frameworks Qt requirements ==
KDE Frameworks are tested and working with the last 3 minor Qt releases. For instance, once Qt 5.6 was released, the minimum required Qt version changed from Qt 5.3 to Qt 5.4, i.e. the three supported Qt versions became 5.4, 5.5 and 5.6.
KDE Frameworks are tested and working with the last 3 minor Qt releases. For instance, once Qt 5.11 was released, the minimum required Qt version changed from Qt 5.8 to Qt 5.9, i.e. the three supported Qt versions became 5.9, 5.10 and 5.11.
 
In addition, a Qt LTS release remains supported until the next Qt release after the next Qt LTS release.
For instance, when Qt 5.15 is released, Qt 5.12 remains supported until Qt 5.16, to give time for people to migrate from Qt 5.12 LTS to Qt 5.15 LTS. When Qt 5.16 is released, both Qt 5.12 LTS and Qt 5.13 are dropped, to go back to "last 3 minor Qt releases".


== Frameworks compiler requirements and C++11 ==
== Frameworks compiler requirements and C++11 ==
Line 73: Line 76:
* VS2013 (MSVC12)
* VS2013 (MSVC12)


This means all of the C++11 standard can be used.
This means all of the C++11 standards can be used.

Revision as of 09:48, 21 July 2019

Frameworks have a Tier and a Type

Each framework has a clear position in the Tier/Type matrix, its position forces a set of rules on its possible dependencies. This matrix and its rules are summarized in the Frameworks matrix document.


The constraints from Tiers are the following:

  • Tier 1 Frameworks can depend only on Qt official frameworks or other system libraries;
  • Tier 2 Frameworks can depend only on Tier 1 Frameworks, Qt official frameworks, or other system libraries;
  • Tier 3 Frameworks can depend only on other Tier 3 Frameworks, Tier 2 Frameworks, Tier 1 Frameworks, Qt official frameworks, or other system libraries.


The constraints from Types are the following:

  • Functional Qt Addons cannot have runtime dependencies;
  • Integration Qt Addons can have an optional runtime dependencies and aim at integrating with the underlying OS/Platform;
  • Solutions have mandatory runtime dependencies, it is part of their design and where their added value comes from (think scalability, resource sharing, resilience, etc.).

Framework directory structure

All the frameworks will have the same directory structure which will follow some rules:

  • The containing directory has the name of the technology (plasma, kio, itemmodels, etc.);
  • At the top level we find the common files like README.md, COPYING.LIB, metainfo.yaml...
  • More comprehensive documentation go into a docs subdirectory
  • The source code for the targets go into src subdirectory, if several payloads are built (like a core lib and a gui layer on top) then src will contain one subdirectory per library: core, gui, widgets, etc.
  • Code examples go into an examples subdirectory
  • Automatic tests go into an autotests subdirectory
  • Test applications go into a tests subdirectory
  • CMake modules (FindFoo.cmake etc.) or CMake macro files go into cmake subdirectory

Frameworks have automatic unit tests

Enough said really... They must be unit tested with automatic unit tests.

Corollary: When fixing a bug in a framework, the auto-test proving the bug and the fix should come in the same commit.

Frameworks maintain binary compatibility

Just like we did in kdelibs, KDE Frameworks maintain the binary compatibility through their lifetime, for more details see the binary compatibility policy.

Note however that this policy is lifted during major version transition, corresponding epics of milestones will be marked as such.

Frameworks are documented

The API exposed by frameworks are documented using Doxygen. Documentation follows the Frameworks Documentation Policy.

Frameworks are localized

Frameworks adapt to the user language and locale settings. This is described in the Frameworks Localization Policy.

Frameworks buildsystem is consistent

  • each framework should install a CMake configuration file for itself. This includes:
    • a FooConfig.cmake file
    • a FooConfigVersion.cmake file
    • usually a FooTargets.cmake file
    • optionally a file containing macros/functions for using the package
  • no framework should install any other CMake files than mentioned above. Find-modules useful for multiple packages should be upstreamed into extra-cmake-modules if they are generally useful.
  • For especially exotic packages which are not suitable for extra-cmake-modules, it is ok for a framework to have extra find modules, but they should not be installed.
  • Library names are in CamelCase
  • All dependencies between frameworks are documented in the CMakeLists.txt (see for instance kio/src/core/CMakeLists.txt)

For an example, see the framework-template directory in the kdeexamples repository (you can use setup.sh to create a template that matches the name of your framework).

Frameworks commits are reviewed

Make sure all commits in the master branch of a repository part of the KDE Frameworks got a proper review. As such commits must contain either a "Reviewed by:" (for quick pastebin reviews) or a "REVIEW:" (for more formal reviewboard reviews).

Frameworks CI failures are treated as stop the line events

When a commit causes a regression in the CI for one of the frameworks, then all work on the corresponding framework should stop. The only commits allowed in are those working toward a resolution of the problem. Only once the framework is green again that regular work can be resumed.

Frameworks Qt requirements

KDE Frameworks are tested and working with the last 3 minor Qt releases. For instance, once Qt 5.11 was released, the minimum required Qt version changed from Qt 5.8 to Qt 5.9, i.e. the three supported Qt versions became 5.9, 5.10 and 5.11.

In addition, a Qt LTS release remains supported until the next Qt release after the next Qt LTS release. For instance, when Qt 5.15 is released, Qt 5.12 remains supported until Qt 5.16, to give time for people to migrate from Qt 5.12 LTS to Qt 5.15 LTS. When Qt 5.16 is released, both Qt 5.12 LTS and Qt 5.13 are dropped, to go back to "last 3 minor Qt releases".

Frameworks compiler requirements and C++11

The following minimal compiler versions are supported by KDE Frameworks:

  • GCC 4.8
  • Clang 3.3
  • VS2013 (MSVC12)

This means all of the C++11 standards can be used.