REPE RPC¶
[!WARNING]
The
glz::asio_server,glz::asio_client, andglz::repe::registry, are all under active development and should not be considered stable.
Glaze provides support for the REPE RPC format along with client/server implementations (currently asio).
JSON Pointer syntax is used to refer to fields in C++ structures.
REPE Registry¶
The glz::repe::registry produces an API for function invocation and variable access for server implementations.
The registry does not currently support adding methods from RPC calls or adding methods once RPC calls can be made.
REPE registry locking and thread safety¶
The glz::repe::registry allows users to expose C++ classes directly to the registry as an interface for network RPC calls and POST/GET calls.
[!IMPORTANT]
Like most registry implementations, no locks are acquired for reading/writing to the registry and all thread safety must be managed by the user. This allows flexible, performant interfaces to be developed on top of the registry. It is recommended to register safe types, such as
std::atomic<int>. Glaze provides some higher level thread safe classes to be used in these asynchronous interfaces.
Thread Safe Classes¶
glz::async_stringinglaze/thread/async_string.hpp- Provides a thread safe
std::stringwrapper, which Glaze can read/write from safely in asynchronous calls.
asio¶
[!NOTE]
glz::asio_serverandglz::asio_clientrequire ASIO (standalone or Boost.Asio) to build. Glaze does not include this dependency within its CMake files. See the ASIO Setup Guide for installation instructions.
Error Handling¶
The glz::asio_server provides an error_handler callback to manage exceptions thrown during request processing. By default, exceptions are caught, and an error response is sent to the client. To log or monitor these errors on the server, assign a callback:
server.error_handler = [](const std::string& error_msg) {
std::cerr << "Server error: " << error_msg << '\n';
};
Custom Call Handler¶
The glz::asio_server provides an optional call member that allows intercepting all incoming REPE calls before they reach the registry. This enables custom routing, middleware patterns, and plugin dispatch.
The handler uses a zero-copy API where the request is provided as a span and the response is written directly to a buffer:
glz::asio_server server{.port = 8080, .concurrency = 4};
my_api api{};
server.on(api);
// Set custom call handler (zero-copy API)
server.call = [&](std::span<const char> request, std::string& response_buffer) {
// Zero-copy parse - query and body are views into the request buffer
auto result = glz::repe::parse_request(request);
if (!result) {
glz::repe::encode_error_buffer(glz::error_code::parse_error, response_buffer, "Failed to parse request");
return;
}
const auto& req = result.request;
glz::repe::response_builder resp{response_buffer};
// Custom routing based on path
if (req.query.starts_with("/custom/")) {
resp.reset(req);
resp.set_body_raw(R"({"handled": "custom"})", glz::repe::body_format::JSON);
}
else {
// Delegate to registry (also zero-copy)
server.registry.call(request, response_buffer);
}
};
server.run();
When call is set, it is invoked instead of registry.call() for every request. This allows:
- Custom routing: Route requests to different handlers based on path prefixes
- Middleware: Add logging, authentication, or metrics before/after registry calls
- Multi-registry patterns: Dispatch to different registries based on request metadata
- Plugin systems: Forward messages to dynamically loaded plugins
If call is not set (the default), requests are processed directly by the registry.
Zero-Copy Types¶
The zero-copy API uses these types:
glz::repe::parse_request(span): Parses a request with zero-copy. Returns aparse_resultcontaining arequest_view.glz::repe::request_view: Views into the original request buffer (query and body arestd::string_view).glz::repe::response_builder: Writes responses directly to a buffer without intermediate copies.glz::repe::state_view: Pairs arequest_viewwith aresponse_builderfor a procedure to read from and write to.glz::repe::read_params<Opts>(value, state): Reads a request body intovalue. Returnstrueon success and writes the error response itself on failure, except for a notification, which is left unanswered.
See REPE Buffer Handling for detailed documentation of these types.
Reading a body with read_params¶
read_params is what the registry's own endpoints use to turn a request body into a value, and a custom handler can call it directly. It needs a state_view, which a handler builds from the request it parsed and the builder it writes through:
server.call = [&](std::span<const char> request, std::string& response_buffer) {
auto result = glz::repe::parse_request(request);
if (!result) {
glz::repe::encode_error_buffer(glz::error_code::parse_error, response_buffer, "Failed to parse request");
return;
}
glz::repe::response_builder resp{response_buffer};
glz::repe::state_view state{result.request, resp}; // must be a named lvalue
my_params params{};
if (state.has_body()) {
if (!glz::repe::read_params<glz::registry_read_opts<glz::opts{}>>(params, state)) {
return; // read_params has written the error response, or withheld it from a notification
}
}
// ... act on params, then write a response through `resp`
};
Three things are easy to get wrong:
Opts must have null_terminated turned off. A request arrives as a span over bytes the handler does not own, with no '\0' after it, and a null_terminated read drops its end checks and runs off the end of that buffer. glz::registry_read_opts<Opts> is the registry's own options transform and turns the flag off for you; passing a bare glz::opts{} is a heap overflow on a body that ends at the edge of the buffer.
state must be a named lvalue. The parameter is state_view&. A temporary binds to a different overload and fails to compile inside the header rather than at your call site.
false does not always mean a response was written. A notification is answered by silence whether the read succeeds or fails, so a notification whose body will not parse returns false with state.out untouched. Returning immediately on false, as above, is correct either way. A handler that instead inspects the response buffer, or appends to it, has to allow for it being empty: answering a notification desynchronizes the connection, because the client never reads a reply for one and will take it as the answer to the next call.
read_params returns bool¶
It returned the number of bytes consumed through v7.9.1, and callers tested that count for zero to detect failure:
// before
if (glz::repe::read_params<Opts>(params, state) == 0) { return; }
// now
if (!glz::repe::read_params<Opts>(params, state)) { return; }
The count test is wrong on a buffer with no null terminator: a variant alternative that resolves by shape walks to the end of the buffer and rewinds its iterator, so a completed read reports zero bytes consumed. Reading 42.5 into a std::variant<std::string, amount> succeeds, applies the value, and reports zero.
This did not bite in v7.9.1, where the registry still read with the terminator assumption in place and the same read reported four bytes. It became reachable when registry reads were bounded by the buffer instead, at which point a well-formed non-notify request could be taken for a failure and answered with nothing at all. The bool is correct in both regimes, and the count was not used for anything else.
Note that the old signature returned size_t, so if (read_params(...) == 0) still compiles against the new one and inverts. Any custom handler carrying that idiom needs the edit above.
Registering Multiple Objects with glz::merge¶
By default, when you register an object with server.on(obj), the root path "" returns that object's JSON representation. If you call server.on() multiple times with different objects, the last registered object will be returned at the root path "". Each service's member endpoints are all registered regardless.
To combine multiple objects into a single merged view at the root path, use glz::merge:
struct sensors_t {
double temperature = 25.0;
double humidity = 60.0;
};
struct settings_t {
int refresh_rate = 100;
std::string mode = "auto";
};
sensors_t sensors{};
settings_t settings{};
// Create a merged view of both objects
auto merged = glz::merge{sensors, settings};
glz::registry server{};
server.on(merged);
Now queries work as follows:
""returns the combined view:{"temperature":25.0,"humidity":60.0,"refresh_rate":100,"mode":"auto"}/temperaturereturns25.0/refresh_ratereturns100- Individual field writes work: writing to
/temperatureupdatessensors.temperature
Important Notes¶
glz::merge stores references, not copies. The original objects must remain alive for the duration of the registry's use. Changes to the original objects are reflected when queried.
The merged root endpoint is read-only. Writing to the "" path returns an error. This limitation exists because efficiently parsing JSON into multiple distinct objects would require either:
- Multiple parse passes (O(N) where N is the number of merged objects)
- An intermediate representation with extra memory allocation
- Runtime dispatch overhead that loses glaze's compile-time optimizations
Individual field paths remain writable, so you can still update any field via its specific path (e.g., /temperature, /mode).