 |
Cadabra
Computer algebra system for field theory problems
|
Go to the documentation of this file.
4 #include <websocketpp/server.hpp>
5 #include <websocketpp/config/asio_no_tls.hpp>
6 #include <websocketpp/common/functional.hpp>
9 #include <boost/uuid/uuid.hpp>
11 #include <pybind11/pybind11.h>
12 #include <pybind11/embed.h>
36 Server(
const std::string& socket);
55 void write(
const std::string& txt);
57 std::string
str()
const;
85 virtual uint64_t
send(
const std::string& output,
const std::string& msg_type, uint64_t parent_id=0,
bool last_in_sequence=
false);
89 bool handles(
const std::string& otype)
const;
102 void on_socket_init(websocketpp::connection_hdl hdl, boost::asio::ip::tcp::socket & s);
104 void on_open(websocketpp::connection_hdl hdl);
105 void on_close(websocketpp::connection_hdl hdl);
119 websocketpp::connection_hdl
hdl;
122 typedef std::map<websocketpp::connection_hdl,
Connection,
143 Block(websocketpp::connection_hdl,
const std::string&, uint64_t
id);
144 websocketpp::connection_hdl
hdl;
156 std::string
run_string(
const std::string&,
bool handle_output=
true);
178 std::future<std::string>
job;
184 void dispatch_message(websocketpp::connection_hdl,
const std::string& json_string);
void send_json(const std::string &)
Definition: Server.cc:450
CatchOutput catchOut
Definition: Server.hh:62
Block(websocketpp::connection_hdl, const std::string &, uint64_t id)
Definition: Server.cc:329
websocketpp::config::asio_client::message_type::ptr message_ptr
Definition: ComputeThread.hh:13
std::string input
Definition: Server.hh:145
ConnectionMap connections
Definition: Server.hh:124
std::thread runner
Definition: Server.hh:136
Definition: Server.hh:141
Stopwatch server_stopwatch
Definition: Server.hh:64
std::string error
Definition: Server.hh:147
pybind11::object main_namespace
Definition: Server.hh:189
virtual ~Server()
Definition: Server.cc:48
websocketpp::connection_hdl hdl
Definition: Server.hh:119
void on_socket_init(websocketpp::connection_hdl hdl, boost::asio::ip::tcp::socket &s)
Definition: Server.cc:207
std::string socket_name
Definition: Server.hh:107
uint64_t cell_id
Definition: Server.hh:148
std::mutex ws_mutex
Definition: Server.hh:132
Connection()
Definition: Server.cc:214
WebsocketServer wserver
Definition: Server.hh:106
Definition: Stopwatch.hh:107
void write(const std::string &txt)
Definition: Server.cc:61
bool started
Definition: Server.hh:177
void clear()
Definition: Server.cc:67
void stop_block()
Halt the currently running block and prevent execution of any further blocks that may still be on the...
Definition: Server.cc:321
CatchOutput()
Definition: Server.cc:53
std::string collect
Definition: Server.hh:59
void wait_for_job()
Start a thread which waits for blocks to appear on the block queue, and executes them in turn.
Definition: Server.cc:243
void on_close(websocketpp::connection_hdl hdl)
Definition: Server.cc:228
std::condition_variable block_available
Definition: Server.hh:138
std::string output
Definition: Server.hh:146
Definition: Server.hh:115
std::string authentication_token
Definition: Server.hh:128
void init()
Definition: Server.cc:98
virtual uint64_t send(const std::string &output, const std::string &msg_type, uint64_t parent_id=0, bool last_in_sequence=false)
Raw code to send a string (which must be JSON formatted) as a message to the client.
Definition: Server.cc:417
std::future< std::string > job
Definition: Server.hh:178
pybind11::module main_module
Definition: Server.hh:188
std::string architecture() const
Definition: Server.cc:78
CatchOutput catchErr
Definition: Server.hh:62
virtual void on_block_finished(Block)
Called by the run_block() thread upon completion of the task.
Definition: Server.cc:406
std::mutex block_available_mutex
Definition: Server.hh:137
websocketpp::connection_hdl current_hdl
Definition: Server.hh:151
bool handles(const std::string &otype) const
Definition: Server.cc:411
websocketpp::server< websocketpp::config::asio > WebsocketServer
Definition: Server.hh:101
void run()
The only user-visible part: just instantiate a server object and start it with run().
Definition: Server.cc:509
virtual void on_kernel_fault(Block)
Definition: Server.cc:483
websocketpp::connection_hdl hdl
Definition: Server.hh:144
uint64_t return_cell_id
Definition: Server.hh:172
boost::uuids::uuid uuid
Definition: Server.hh:120
std::string run_string(const std::string &, bool handle_output=true)
Definition: Server.cc:154
pybind11::scoped_interpreter guard
Definition: Server.hh:187
uint64_t current_id
Definition: Server.hh:152
Stopwatch sympy_stopwatch
Definition: Server.hh:65
Python output catching.
Definition: Server.hh:50
void on_message(websocketpp::connection_hdl hdl, WebsocketServer::message_ptr msg)
Definition: Server.cc:334
void dispatch_message(websocketpp::connection_hdl, const std::string &json_string)
Takes a JSON encoded message and performs the required action to process it.
Definition: Server.cc:351
Server()
Definition: Server.cc:31
void on_open(websocketpp::connection_hdl hdl)
Definition: Server.cc:219
std::queue< Block > block_queue
Definition: Server.hh:150
virtual void on_block_error(Block)
Definition: Server.cc:457
std::map< websocketpp::connection_hdl, Connection, std::owner_less< websocketpp::connection_hdl > > ConnectionMap
Definition: Server.hh:123
std::string str() const
Definition: Server.cc:73