File: plugins.rst

package info (click to toggle)
adios2 2.10.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 33,764 kB
  • sloc: cpp: 175,964; ansic: 160,510; f90: 14,630; yacc: 12,668; python: 7,275; perl: 7,126; sh: 2,825; lisp: 1,106; xml: 1,049; makefile: 579; lex: 557
file content (255 lines) | stat: -rw-r--r-- 11,466 bytes parent folder | download | duplicates (2)
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#########
 Plugins
#########

ADIOS now has the ability for users to load their own engines and operators through the plugin interface.
The basic steps for doing this are:

1. Write your plugin class, which needs to inherit from the appropriate ``Plugin*Interface`` class.
2. Build as a shared library and add the path to your shared library to the ``ADIOS2_PLUGIN_PATH`` environment variable.
3. Start using your plugin in your application.

These steps are discussed in further detail below.

*************************
Writing Your Plugin Class
*************************


Engine Plugin
-------------

Your engine plugin class needs to inherit from the ``PluginEngineInterface`` class in the ``adios2/engine/plugin/PluginEngineInterface.h`` header.
Depending on the type of engine you want to implement, you'll need to override a number of methods that are inherited from the ``adios2::core::Engine`` class.
These are briefly described in the following table.
More detailed documentation can be found in ``adios2/core/Engine.h``.

========================= ===================== ===========================================================
 **Method**                **Engine Type**       **Description**
========================= ===================== ===========================================================
``BeginStep()``            Read/Write            Indicates the beginning of a step
``EndStep()``              Read/Write            Indicates the end of a step
``CurrentStep()``          Read/Write            Returns current step info
``DoClose()``              Read/Write            Close a particular transport
``Init()``                 Read/Write            Engine initialization
``InitParameters()``       Read/Write            Initialize parameters
``InitTransports()``       Read/Write            Initialize transports
``PerformPuts()``          Write                 Execute all deferred mode ``Put``
``Flush()``                Write                 Flushes data and metadata to a transport
``DoPut()``                Write                 Implementation for ``Put``
``DoPutSync()``            Write                 Implementation for ``Put`` (Sync mode)
``DoPutDeferred()``        Write                 Implementation for ``Put`` (Deferred Mode)
``PerformGets()``          Read                  Execute all deferred mode ``Get``
``DoGetSync()``            Read                  Implementation for ``Get`` (Sync mode)
``DoGetDeferred()``        Read                  Implementation for ``Get`` (Deferred Mode)
========================= ===================== ===========================================================

Examples showing how to implement an engine plugin can be found in ``examples/plugins/engine``.
An example write engine is ``ExampleWritePlugin.h``, while an example read engine is in ``ExampleReadPlugin.h``.
The writer is a simple file writing engine that creates a directory (called ``ExamplePlugin`` by default) and writes variable information to vars.txt and actual data to data.txt.
The reader example reads the files output by the writer example.

In addition to implementing the methods above, you'll need to implement ``EngineCreate()`` and ``EngineDestroy()`` functions so ADIOS can create/destroy the engine object.
Because of C++ name mangling, you'll need to use ``extern "C"``.
Looking at ``ExampleWritePlugin.h``, this looks like:

.. code-block:: c++

    extern "C" {

    adios2::plugin::ExampleWritePlugin *
    EngineCreate(adios2::core::IO &io, const std::string &name,
                 const adios2::Mode mode, adios2::helper::Comm comm)
    {
        return new adios2::plugin::ExampleWritePlugin(io, name, mode,
                                                            comm.Duplicate());
    }

    void EngineDestroy(adios2::plugin::ExampleWritePlugin * obj)
    {
        delete obj;
    }

    }

Operator Plugin
---------------

Your operator plugin class needs to inherit from the ``PluginOperatorInterface`` class in the ``adios2/operator/plugin/PluginOperatorInterface.h`` header.
There's three methods that you'll need to override from the ``adios2::core::Operator`` class, which are described below.

========================= ===========================================================
 **Method**                **Description**
========================= ===========================================================
``Operate()``              Performs the operation, e.g., compress data
``InverseOperate()``       Performs the inverse operation, e.g., decompress data
``IsDataTypeValid()``      Checks that a given data type can be processed
========================= ===========================================================

An example showing how to implement an operator plugin can be found at ``plugins/EncryptionOperator.h`` and ``plugins/EncryptionOperator.cpp``.
This operator uses `libsodium <https://doc.libsodium.org/>`_ for encrypting and decrypting data.

In addition to implementing the methods above, you'll need to implement ``OperatorCreate()`` and ``OperatorDestroy()`` functions so ADIOS can create/destroy the operator object.
Because of C++ name mangling, you'll need to use ``extern "C"``.
Looking at ``EncryptionOperator``, this looks like:

.. code-block:: c++

    extern "C" {

    adios2::plugin::EncryptionOperator *
    OperatorCreate(const adios2::Params &parameters)
    {
        return new adios2::plugin::EncryptionOperator(parameters);
    }

    void OperatorDestroy(adios2::plugin::EncryptionOperator * obj)
    {
        delete obj;
    }

    }

********************
Build Shared Library
********************

To build your plugin, your CMake should look something like the following (using the plugin engine example described above):

.. code-block:: cmake

    find_package(ADIOS2 REQUIRED)
    set(BUILD_SHARED_LIBS ON)
    add_library(PluginEngineWrite
      ExampleWritePlugin.cpp
    )
    target_link_libraries(PluginEngineWrite adios2::cxx11 adios2::core)

When using the Plugin Engine, ADIOS will check for your plugin at the path specified in the ``ADIOS2_PLUGIN_PATH`` environment variable.
If ``ADIOS2_PLUGIN_PATH`` is not set, and a path is not specified when loading your plugin (see below steps for using a plugin in your application), then the usual ``dlopen`` search is performed (see the `dlopen man page <https://man7.org/linux/man-pages/man3/dlopen.3.html>`_).

.. note::
    The ``ADIOS2_PLUGIN_PATH`` environment variable can contain multiple paths, which must be separated with a ``:``.


When building on Windows, you will likely need to explicitly export the Create and Destroy symbols for your plugin, as symbols are invisible by default on Windows.
To do this in a portable way across platforms, you can add something similar to the following lines to your CMakeLists.txt:

.. code-block:: cmake

    include(GenerateExportHeader)
    generate_export_header(PluginEngineWrite BASE_NAME plugin_engine_write)
    target_include_directories(PluginEngineWrite PUBLIC
        $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
        $<INSTALL_INTERFACE:include>)


Then in your plugin header, you'll need to ``#include "plugin_engine_write_export.h"``. Then edit your function defintions as follows:

.. code-block:: c++

    extern "C" {

    PLUGIN_ENGINE_WRITE_EXPORT adios2::plugin::ExampleWritePlugin *
        EngineCreate(adios2::core::IO &io, const std::string &name,
                 const adios2::Mode mode, adios2::helper::Comm comm);

    PLUGIN_ENGINE_WRITE_EXPORT void
        EngineDestroy(adios2::plugin::ExampleWritePlugin * obj);

    }


***********************************
Using Your Plugin in an Application
***********************************

For both types of plugins, loading the plugin is done by setting the ``PluginName`` and ``PluginLibrary`` parameters in an  ``adios2::Params`` object or ``<parameter>`` XML tag.

Engine Plugins
--------------

For engine plugins, this looks like:

.. code-block:: c++

    adios2::ADIOS adios;
    adios2::IO io = adios.DeclareIO("writer");
    io.SetEngine("Plugin");
    adios2::Params params;
    params["PluginName"] = "WritePlugin";
    params["PluginLibrary"] = "PluginEngineWrite";
    // If the engine plugin has any other parameters, these can be added to
    // the same params object and they will be forwarded to the engine
    io.SetParameters(params);

Where "WritePlugin" is the name that ADIOS will use to keep track of the plugin, and "PluginEngineWrite" is the shared library name.
At this point you can open the engine and use it as you would any other ADIOS engine.
You also shouldn't need to make any changes to your CMake files for your application.

The second option is using an ADIOS XML config file. If you'd like to load your plugins through an XML config file, the following shows an example XML when using Engine Plugins:

.. code-block:: xml

    <adios-config>
        <io name="writer">
            <engine type="Plugin">
                <parameter key="PluginName" value="WritePlugin" />
                <parameter key="PluginLibrary" value="PluginEngineWrite" />
                <!-- any parameters needed for your plugin can be added here in the parameter tag -->
            </engine>
        </io>
        <io name="reader">
            <engine type="Plugin">
                <parameter key="PluginName" value="ReadPlugin" />
                <parameter key="PluginLibrary" value="PluginEngineRead" />
                <!-- any parameters needed for your plugin can be added here in the parameter tag -->
            </engine>
        </io>
    </adios-config>

The examples ``examples/plugins/engine/examplePluginEngine_write.cpp`` and ``examples/plugins/engine/examplePluginEngine_read.cpp`` are an example of how to use the engine plugins described above.


Operator Plugins
----------------

For operator plugins, the code to use your plugin looks like:

.. code-block:: c++

    // for an adios2::Variable<T> var
    adios2::Params params;
    params["PluginName"] = "MyOperator";
    params["PluginLibrary"] = "EncryptionOperator";
    // example param required for the EncryptionOperator
    params["SecretKeyFile"] = "test-key";
    var.AddOperation("plugin", params);

If you'd like to load your operator plugin through an XML config file, the following shows an example:

.. code-block:: xml

    <adios-config>
        <io name="writer">
            <variable name="data">
                <operation type="plugin">
                    <parameter key="PluginName" value="OperatorPlugin"/>
                    <parameter key="PluginLibrary" value="EncryptionOperator" />
                    <parameter key="SecretKeyFile" value="test-key" />
                </operation>
            </variable>
            <engine type="BP5">
            </engine>
        </io>
    </adios-config>


The examples ``examples/plugins/operator/examplePluginOperator_write.cpp`` and ``examples/plugins/engine/examplePluginOperator_read.cpp`` show an example of how to use the ``EncryptionOperator`` plugin described above.

.. note::
    You don't need to add the ``lib`` prefix or the shared library ending (e.g., ``.so``, ``.dll``, etc.) when 
    setting ``PluginLibrary``.
    ADIOS will add these when searching for your plugin library.
    If you do add the prefix/suffix, ADIOS will still be able to find your plugin.
    It's also possible to put the full path to the shared library here, instead of using ``ADIOS2_PLUGIN_PATH``.