summaryrefslogtreecommitdiffstats
path: root/doc/src/sharedlibrary.qdoc
blob: abc3a408029b76e661fa2f421c210f428f5ee037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.  For licensing terms and
** conditions see http://qt.digia.com/licensing.  For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights.  These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt GUI Toolkit.
** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE
**
****************************************************************************/

/*!
    \group deployment
    \page sharedlibrary.html
    \ingroup buildsystem

    \title Creating Shared Libraries
    The following sections list certain things that should be taken into
    account when creating shared libraries.

    \section1 Using Symbols from Shared Libraries

    Symbols - functions, variables or classes - contained in shared libraries
    intended to be used by \e{clients}, such as applications or other
    libraries, must be marked in a special way. These symbols are called
    \e{public symbols} that are \e{exported} or made publicly visible.

    The remaining symbols should not be visible from the outside. On most
    platforms, compilers will hide them by default. On some platforms, a
    special compiler option is required to hide these symbols.

    When compiling a shared library, it must be marked for \e{export}. To use
    the shared library from a client, some platforms may require a special
    \e{import} declaration as well.

    Depending on your target platform, Qt provides special macros that contain
    the necessary definitions:
    \list
        \o  \c{Q_DECL_EXPORT} must be added to the declarations of symbols used
            when compiling a shared library.
        \o  \c{Q_DECL_IMPORT} must be added to the declarations of symbols used
            when compiling a client that uses the shared library.
    \endlist

    Now, we need to ensure that the right macro is invoked -- whether we
    compile a share library itself, or just the client using the shared
    library.
    Typically, this can be solved by adding a special header.

    Let us assume we want to create a shared library called \e{mysharedlib}.
    A special header for this library, \c{mysharedlib_global.h}, looks like
    this:

    \code
        #include <QtCore/QtGlobal>

        #if defined(MYSHAREDLIB_LIBRARY)
        #  define MYSHAREDLIB_EXPORT Q_DECL_EXPORT
        #else
        #  define MYSHAREDLIB_EXPORT Q_DECL_IMPORT
        #endif
    \endcode

    In the \c{.pro} file of the shared library, we add:

    \code
        DEFINES += MYSHAREDLIB_LIBRARY
    \endcode

    In each header of the library, we specify the following:

    \code
        #include "mysharedlib_global.h"

        MYSHAREDLIB_EXPORT void foo();
        class MYSHAREDLIB_EXPORT MyClass...
    \endcode
    This ensures that the right macro is seen by both library and clients. We
    also use this technique in Qt's sources.


    \section1 Header File Considerations

    Typically, clients will include only the public header files of shared
    libraries. These libraries might be installed in a different location, when
    deployed. Therefore, it is important to exclude other internal header files
    that were used when building the shared library.

    For example, the library might provide a class that wraps a hardware device
    and contains a handle to that device, provided by some 3rd-party library:

    \code
        #include <footronics/device.h>

        class MyDevice {
        private:
	    FOOTRONICS_DEVICE_HANDLE handle;
        };
    \endcode  

    A similar situation arises with forms created by Qt Designer when using
    aggregation or multiple inheritance:

    \code
        #include "ui_widget.h"

        class MyWidget : public QWidget {
        private:
	    Ui::MyWidget m_ui;
        };
    \endcode  

    When deploying the library, there should be no dependency to the internal
    headers \c{footronics/device.h} or \c{ui_widget.h}.

    This can be avoided by making use of the \e{Pointer to implementation}
    idiom described in various C++ programming books. For classes with
    \e{value semantics}, consider using QSharedDataPointer.


    \section1  Binary compatibility

    For clients loading a shared library, to work correctly, the memory
    layout of the classes being used must match exactly the memory layout of
    the library version that was used to compile the client. In other words,
    the library found by the client at runtime must be \e{binary compatible}
    with the version used at compile time.

    This is usually not a problem if the client is a self-contained software
    package that ships all the libraries it needs.

    However, if the client application relies on a shared library that belongs
    to a different installation package or to the operating system, then we
    need to think of a versioning scheme for shared libraries and decide at
    which level \e{Binary compatibility} is to be maintained. For example, Qt
    libraries of the same \e{major version number} are guaranteed to be binary
    compatible.

    Maintaining \e{Binary compatibility} places some restrictions on the changes
    you can make to the classes. A good explanation can be found at
    \l{http://techbase.kde.org/Policies/Binary_Compatibility_Issues_With_C++}
    {KDE - Policies/Binary Compatibility Issues With C++}. These issues should
    be considered right from the start of library design.
    We recommend that the principle of \e{Information hiding} and the
    \e{Pointer to implementation} technique be used wherever possible.
*/