Import Functions
Learn how to import functions from other plugins written in different languages and use them in your own.
To use functions from another plugin in your C++ plugin, you need to generate language-specific header files. These headers provide the necessary wrappers to call functions exported by other plugins. This guide explains how to generate these headers and how to use them in your C++ plugin.
Generating Header Files
Plugify provides a unified generator tool to automatically generate header files for importing functions from other plugins. These headers include wrapper functions that handle the function calls and parameter passing.
Steps to Generate Header Files
Using the Online Generator:
Visit plugify-gen tool to generate header files through a user-friendly web interface. Simply upload your plugin manifest file (.pplugin) and select C++ as the target language to generate the corresponding .hpp header file.
Using the Command-Line Tool:
You can also download and use the generator tool locally from the plugify-gen repository.
Example usage:
Include the Generated Header:
- The tool will generate a header file (e.g.,
plugin_from_another_language.hpp) in the specified output folder. - Include this header in your C++ plugin source files to use the exported functions.
Using Generated Wrapper Functions
The generated header file contains wrapper functions that allow you to call functions from the other plugin. These wrappers handle the function address lookup and parameter passing.
Example Generated Header
Here’s an example of a generated header file for a plugin named plugin_from_another_language:
How It Works
- The wrapper function (
ParamCallback) retrieves the address of the exported function usingplg::GetMethodPtrorplg::GetMethodPtr2. - The function address is stored in a static variable (
__func) to avoid repeated lookups. - The wrapper function directly passes the parameters to the exported function, leveraging the C++ calling convention.
Example: Using the Generated Header
Here’s how you can use the generated header in your C++ plugin:
When is Header Generation Necessary?
Header generation is essential when importing functions from plugins written in statically-typed languages like C++ or C#. Without these headers, the compiler cannot reference the exported functions. For dynamically-typed languages like Python, header generation is not necessary because method binding happens at runtime.
Best Practices
- Use the Generator Tool: Always use the Plugify generator tool (online or command-line) to generate headers for imported functions.
- Include Generated Headers: Include the generated headers in your plugin source files to access the exported functions.
- Test Thoroughly: Test the imported functions to ensure they work as expected.
- Document Dependencies: Clearly document the plugins and functions your plugin depends on.
Conclusion
Importing functions from another plugin in C++ is straightforward when you use the Plugify generator tool to generate the necessary headers. These headers provide wrapper functions that handle function address lookup and parameter passing, making it easy to integrate functionality from other plugins. By following the steps and best practices outlined in this guide, you can create robust and interoperable plugins in the Plugify ecosystem.