REPE Plugin Interface¶
The REPE plugin interface provides a standardized way to build ABI-stable dynamic plugins that integrate with glz::registry and glz::asio_server. This enables plugin-based RPC systems where plugins can be compiled separately from the host application.
Motivation¶
Building plugin-based RPC systems requires:
- ABI stability - Plugins compiled with different compilers/versions must interoperate
- Simple C interface - Avoids C++ ABI issues across shared library boundaries
- Integration with glz::registry - Leverage existing REPE infrastructure
- Thread safety - Support concurrent calls from server handlers
- Lifecycle management - Clean initialization and shutdown of plugin resources
Headers¶
// Pure C interface (no Glaze dependencies)
#include "glaze/rpc/repe/plugin.h"
// C++ helper for implementing plugins with glz::registry
#include "glaze/rpc/repe/plugin_helper.hpp"
C Interface (plugin.h)¶
The C header defines the ABI-stable plugin contract. It has no C++ or Glaze dependencies and can be used by both plugin implementations and host applications.
Interface Version¶
Plugins and hosts should check version compatibility before use. When the plugin interface changes, this version is incremented.
Note: The interface version is retrieved via a standalone function
repe_plugin_interface_version()(not from the struct) for ABI safety. This allows the host to check version compatibility before interpreting therepe_plugin_datastruct layout.
Types¶
// ABI-stable buffer for request/response data
typedef struct repe_buffer {
const char* data;
uint64_t size;
} repe_buffer;
// Result codes for plugin operations
typedef enum repe_result {
REPE_OK = 0,
REPE_ERROR_INIT_FAILED = 1,
REPE_ERROR_INVALID_CONFIG = 2,
REPE_ERROR_ALREADY_INITIALIZED = 3
} repe_result;
// Plugin metadata struct
typedef struct repe_plugin_data {
const char* name; // Plugin name (e.g., "calculator")
const char* version; // Plugin version (e.g., "1.0.0")
const char* root_path; // RPC path prefix (e.g., "/calculator")
} repe_plugin_data;
Required Plugin Exports¶
Plugins must export these symbols with C linkage:
// Interface version for compatibility checking (standalone for ABI safety)
uint32_t repe_plugin_interface_version(void);
// Plugin metadata (returns pointer to static struct)
const repe_plugin_data* repe_plugin_info(void);
// Request processing
repe_buffer repe_plugin_call(const char* request, uint64_t request_size);
The repe_plugin_info() function must return a pointer that remains valid for the plugin's entire lifetime. The recommended pattern is to use a file-scope static:
static const repe_plugin_data plugin_info = {
.name = "calculator",
.version = "1.0.0",
.root_path = "/calculator"
};
const repe_plugin_data* repe_plugin_info(void) {
return &plugin_info;
}
Optional Plugin Exports¶
These may be NULL if not needed:
// Initialize plugin with optional configuration
repe_result repe_plugin_init(const char* config, uint64_t config_size);
// Cleanup resources before unload
void repe_plugin_shutdown(void);
C++ Helper (plugin_helper.hpp)¶
The C++ helper provides convenient functions for implementing plugins using glz::registry.
Thread-Local Response Buffer¶
namespace glz::repe {
// Thread-local buffer for plugin responses
// Grows as needed but does not shrink during thread lifetime
inline thread_local std::string plugin_response_buffer;
}
plugin_error_response¶
Creates a properly formatted REPE error response:
namespace glz::repe {
void plugin_error_response(
error_code ec,
std::string_view error_msg,
uint64_t id = 0
);
}
Parameters:
- ec - The error code to set in the response
- error_msg - Human-readable error message for the body
- id - Request ID to echo back (default: 0)
The response is written to plugin_response_buffer. This function uses encode_error_buffer internally for zero-copy error encoding.
plugin_call¶
Template function that dispatches a REPE request to a registry using the zero-copy API:
namespace glz::repe {
template <typename Registry>
repe_buffer plugin_call(
Registry& registry,
const char* request,
uint64_t request_size
);
}
Parameters:
- registry - The glz::registry<> to dispatch calls to
- request - Raw REPE request bytes
- request_size - Size of request data
Returns: repe_buffer pointing to plugin_response_buffer
Note: Plugin initialization should be done via repe_plugin_init before any calls. The plugin is responsible for ensuring initialization before calling plugin_call.
Zero-Copy Implementation: This function uses the registry's span-based call internally:
The request is parsed with zero-copy (query and body are views into the original buffer), and the response is written directly to the plugin's thread-local buffer.Error Handling:
- Parse failures → error_code::parse_error
- Registry call exceptions → caught and returned as error responses
- Unknown endpoints → error_code::method_not_found
Plugin Implementation Example¶
#include <glaze/rpc/repe/plugin_helper.hpp>
#include <mutex>
// Define your API struct
// Note: glz::registry supports functions with 0 or 1 parameter
struct calculator_api {
double value = 0.0;
double get_value() { return value; }
void set_value(double v) { value = v; }
double increment() { return ++value; }
};
template <>
struct glz::meta<calculator_api> {
using T = calculator_api;
static constexpr auto value = object(
&T::value, &T::get_value, &T::set_value, &T::increment
);
};
namespace {
calculator_api api_instance;
glz::registry<> internal_registry;
std::once_flag init_flag;
void ensure_initialized() {
std::call_once(init_flag, []() {
internal_registry.on<glz::root<"/calculator">>(api_instance);
});
}
}
// File-scope static plugin metadata (initialized at load time)
static const repe_plugin_data plugin_info = {
"calculator", // name
"1.0.0", // version
"/calculator" // root_path
};
// Plugin exports with C linkage
extern "C" {
// Required: Interface version for ABI compatibility
uint32_t repe_plugin_interface_version() {
return REPE_PLUGIN_INTERFACE_VERSION;
}
// Required: Plugin metadata
const repe_plugin_data* repe_plugin_info() {
return &plugin_info;
}
// Optional: Explicit initialization with configuration
repe_result repe_plugin_init(const char* /*config*/, uint64_t /*config_size*/) {
try {
ensure_initialized();
return REPE_OK;
}
catch (...) {
return REPE_ERROR_INIT_FAILED;
}
}
// Optional: Cleanup resources on unload
void repe_plugin_shutdown() {
// Release any held resources here
}
// Required: Request processing
repe_buffer repe_plugin_call(const char* request, uint64_t request_size) {
ensure_initialized(); // Plugin ensures initialization before dispatch
return glz::repe::plugin_call(internal_registry, request, request_size);
}
}
Host Integration Example¶
Loading Plugins (POSIX)¶
#include <glaze/rpc/repe/plugin.h>
#include <dlfcn.h>
#include <optional>
#include <string>
struct loaded_plugin {
std::string name;
std::string version;
std::string root_path;
void* handle = nullptr;
// Function pointers
uint32_t (*interface_version_fn)(void) = nullptr;
const repe_plugin_data* (*info_fn)(void) = nullptr;
repe_result (*init_fn)(const char*, uint64_t) = nullptr;
void (*shutdown_fn)(void) = nullptr;
repe_buffer (*call_fn)(const char*, uint64_t) = nullptr;
~loaded_plugin() {
if (handle) {
if (shutdown_fn) shutdown_fn();
dlclose(handle);
}
}
repe_buffer call(const char* req, uint64_t size) const {
return call_fn(req, size);
}
};
std::optional<loaded_plugin> load_plugin(const std::string& path) {
loaded_plugin plugin;
plugin.handle = dlopen(path.c_str(), RTLD_NOW | RTLD_LOCAL);
if (!plugin.handle) {
return std::nullopt;
}
// Load required symbols
plugin.interface_version_fn =
(uint32_t(*)(void))dlsym(plugin.handle, "repe_plugin_interface_version");
plugin.info_fn =
(const repe_plugin_data*(*)(void))dlsym(plugin.handle, "repe_plugin_info");
plugin.call_fn =
(repe_buffer(*)(const char*, uint64_t))dlsym(plugin.handle, "repe_plugin_call");
// Load optional symbols (may be NULL)
plugin.init_fn =
(repe_result(*)(const char*, uint64_t))dlsym(plugin.handle, "repe_plugin_init");
plugin.shutdown_fn =
(void(*)(void))dlsym(plugin.handle, "repe_plugin_shutdown");
// Validate required symbols
if (!plugin.interface_version_fn || !plugin.info_fn || !plugin.call_fn) {
return std::nullopt;
}
// Check interface version BEFORE accessing struct
if (plugin.interface_version_fn() != REPE_PLUGIN_INTERFACE_VERSION) {
return std::nullopt;
}
// Now safe to access plugin info struct
const repe_plugin_data* info = plugin.info_fn();
if (!info || !info->name || !info->root_path) {
return std::nullopt;
}
plugin.name = info->name;
plugin.version = info->version ? info->version : "";
plugin.root_path = info->root_path;
// Initialize if init function is provided
if (plugin.init_fn) {
if (plugin.init_fn(nullptr, 0) != REPE_OK) {
return std::nullopt;
}
}
return plugin;
}
Server Integration with glz::asio_server¶
#include <glaze/ext/glaze_asio.hpp>
#include <glaze/rpc/repe/plugin.h>
int main() {
std::vector<loaded_plugin> plugins;
// Load plugins
if (auto plugin = load_plugin("./plugins/libcalculator.so")) {
plugins.push_back(std::move(*plugin));
}
glz::asio_server server{};
server.port = 8080;
// Custom call handler routes to plugins (zero-copy API)
server.call = [&](std::span<const char> request, std::string& response_buffer) {
// Zero-copy parse to get the query for routing
auto parse_result = glz::repe::parse_request(request);
if (!parse_result) {
glz::repe::encode_error_buffer(
glz::error_code::parse_error,
response_buffer,
"Failed to parse request"
);
return;
}
const auto& req = parse_result.request;
for (const auto& plugin : plugins) {
if (req.query.starts_with(plugin.root_path)) {
// Forward raw request to plugin (zero-copy)
auto result = plugin.call(request.data(), request.size());
// Copy plugin response to our buffer
response_buffer.assign(result.data, result.size);
return;
}
}
glz::repe::response_builder resp{response_buffer};
resp.reset(req);
resp.set_error(glz::error_code::method_not_found, "No plugin registered for path");
};
server.run();
}
Thread Safety¶
Thread-Local Buffer¶
The plugin_response_buffer is thread_local, meaning:
- Each thread has its own independent buffer
- Concurrent calls from different threads are safe
- The buffer is valid until the next call to
plugin_callorplugin_error_responseon the same thread
[!WARNING] Do not store the returned
repe_bufferpointer for later use. The memory will be overwritten by subsequent calls on the same thread.
Registry Thread Safety¶
The glz::registry itself does not provide internal locking. If your plugin state can be accessed concurrently:
- Use
std::atomicfor simple values - Use
glz::async_stringfor strings - Implement your own synchronization for complex state
See REPE RPC for more details on thread-safe classes.
Platform Considerations¶
Shared Library Loading¶
| Platform | Load | Symbol Lookup | Unload |
|---|---|---|---|
| Linux/macOS | dlopen() |
dlsym() |
dlclose() |
| Windows | LoadLibrary() |
GetProcAddress() |
FreeLibrary() |
Shared Library Naming¶
| Platform | Convention | Example |
|---|---|---|
| Linux | lib<name>.so |
libcalculator.so |
| macOS | lib<name>.dylib |
libcalculator.dylib |
| Windows | <name>.dll |
calculator.dll |
API Reference¶
C Interface (plugin.h)¶
| Symbol | Required | Description |
|---|---|---|
REPE_PLUGIN_INTERFACE_VERSION |
- | Macro defining current interface version (2) |
repe_buffer |
- | POD struct: {const char* data, uint64_t size} |
repe_result |
- | Enum: REPE_OK, REPE_ERROR_* |
repe_plugin_data |
- | Struct: {name, version, root_path} |
repe_plugin_interface_version() |
Yes | Returns interface version (standalone for ABI safety) |
repe_plugin_info() |
Yes | Returns pointer to plugin metadata struct |
repe_plugin_init() |
No | Initialize with optional config |
repe_plugin_shutdown() |
No | Cleanup before unload |
repe_plugin_call() |
Yes | Process REPE request |
C++ Helper (plugin_helper.hpp)¶
| Symbol | Description |
|---|---|
glz::repe::plugin_response_buffer |
Thread-local response buffer |
glz::repe::plugin_error_response() |
Create formatted REPE error (zero-copy) |
glz::repe::plugin_call() |
Dispatch request to registry (zero-copy) |
Compatibility¶
- C Standard: C99 (for
plugin.h) - C++ Standard: C++23 (for
plugin_helper.hpp, same as Glaze) - Platforms: Linux, macOS, Windows
- Dependencies: None for
plugin.h; Glaze headers forplugin_helper.hpp