Usage
Instantiating a server
xeus-zmq provides server building functions that can be passed to the kernel constructor:
#include <iostream>
#include <memory>
#include "xeus/xkernel.hpp"
#include "xeus/xkernel_configuration.hpp"
#include "xeus-zmq/xzmq_context.hpp"
#include "xeus-zmq/xserver_zmq.hpp"
#include "xmock_interpreter.hpp"
int main(int argc, char* argv[])
{
std::string file_name = (argc == 1) ? "connection.json" : argv[2];
xeus::xconfiguration config = xeus::load_configuration(file_name);
auto context = xeus::make_zmq_context();
using interpreter_ptr = std::unique_ptr<my_custom_interpreter>;
interpreter_ptr interpreter = interpreter_ptr(new my_custom_interpreter());
xeus::xkernel kernel(config,
xeus::get_user_name(),
std::move(context),
std::move(interpreter),
xeus::make_xserver_default);
std::cout << "starting kernel" << std::endl;
kernel.start();
return 0;
}
xeus-zmq provides three different implementations for the server:
xserver_zmq_defaultis the default server implementation; it runs three threads, one for publishing, one for the heartbeat messages, and the main thread for handling the shell, control and stdin sockets. To instantiate this implementation, includexserver_zmq.hppand call themake_xserver_defaultfunction.xserver_control_mainruns an additional thread for handling the shell and the stdin sockets. Therefore, the main thread only listens to the control socket. This allows us to easily implement interruption of code execution. This server is required if you want to plug a debugger in the kernel. To instantiate this implementation, includexserver_zmq_split.hppand call themake_xserver_control_mainfunction.xserver_shell_mainis similar toxserver_control_mainexcept that the main thread handles the shell and the stdin sockets while the additional thread listens to the control socket. This server is required if you want to plug a debugger that does not support native threads and requires the code to be run by the main thread. To instantiate this implementation, includexserver_zmq_split.hppand call themake_xserver_shell_mainfunction.
Instantiating a client
xeus-zmq provides client building functions that can be used by custom clients and end users. For starters on usage, have a look at our ipc client class and the ipc client implementation file.
xeus-zmq currently provides a single implementation for the client:
xclient_zmqis the primary client implementation, it runs two threads, one for sending a “ping” message to the heartbeat every 100ms, and one for polling the iopub socket and pushing the received message into a queue. The main thread waits for messages by either popping messages from the queue or polling the shell and the control sockets for received messages. To instantiate this implementation, includexclient_zmq.hppand call themake_xclient_zmqfunction.