2
0
mirror of https://github.com/boostorg/dll.git synced 2026-01-31 20:12:27 +00:00
Files
dll/doc/tutorial.qbk
2014-08-08 14:25:22 +04:00

82 lines
2.2 KiB
Plaintext

[/
Copyright 2014 Renato Tegon Forti, Antony Polukhin
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
/]
[section Tutorial]
Tutorial is provided to give you an idea of how to create and use plugins.
[section Plugin basics]
The first thing to do when creating your own plugins is define the plugin interface. There is an example
of an abstract class that will be our plugin API:
[import ../example/tutorial_common/plugin_api.hpp]
[plugapi]
Now let's make a DLL/DSO library that will holds implementation of plugin interface and exports it using the
[macroref BOOST_PLUGIN_ALIAS]:
[import ../example/tutorial1/my_plugin_sum.cpp]
[plugcpp_my_plugin_sum]
Simple application that loads plugin using the [funcref boost::plugin::shared_variable_alias]:
[import ../example/tutorial1/tutorial1.cpp]
[callplugcpp_tutorial1]
That application will output:
[pre
Application started
Loading the plugin
Constructing my_plugin_sum
Plugin Version: 1
Plugin Method: 3
Destructing my_plugin_sum ;o)
]
[endsect]
[section Factory method in plugin]
In previous example we were importing from a plugin a single variable. Let's make a class
that uses our plugin API plugin and holds some state:
[import ../example/tutorial2/my_plugin_aggregator.cpp]
[plugcpp_my_plugin_aggregator]
As you may see, `my_namespace::create_plugin` is a factory method, that creates
instances of `my_namespace::my_plugin_aggregator`. We export that method with the name "create_plugin"
using [macroref BOOST_PLUGIN_ALIAS].
[import ../example/tutorial2/tutorial2.cpp]
[callplugcpp_tutorial2]
In that application we have imported the factory method using [funcref boost::plugin::shared_function_alias].
[caution Be careful: `creator` variable holds a reference to the loaded shared library. If this
variable goes out of scope or will be reset, then the *DLL/DSO will be unloaded* and any attempt to
dereference the `plugin` variable will lead to *undefined behavior*. ]
Output of the application will be the following:
[pre
Plugin Version: 1
Plugin Method: 3
Plugin Method second call: 6
Plugin Name: aggregator
]
[endsect]
[endsect]