5 #include <websocketpp/config/asio_no_tls_client.hpp> 6 #include <websocketpp/client.hpp> 7 #include <websocketpp/common/thread.hpp> 8 #include <websocketpp/common/functional.hpp> 10 #include <glibmm/spawn.h> 12 typedef websocketpp::client<websocketpp::config::asio_client>
WSClient;
13 typedef websocketpp::config::asio_client::message_type::ptr
message_ptr;
14 typedef websocketpp::lib::lock_guard<websocketpp::lib::mutex>
scoped_lock;
113 void on_open(websocketpp::connection_hdl hdl);
114 void on_fail(websocketpp::connection_hdl hdl);
115 void on_close(websocketpp::connection_hdl hdl);
void on_fail(websocketpp::connection_hdl hdl)
Definition: ComputeThread.cc:144
int server_stderr
Definition: ComputeThread.hh:127
int server_stdout
Definition: ComputeThread.hh:127
A base class with all the logic to manipulate a Cadabra notebook document.
Definition: DocumentThread.hh:38
Glib::Pid server_pid
Definition: ComputeThread.hh:126
void on_open(websocketpp::connection_hdl hdl)
Definition: ComputeThread.cc:208
websocketpp::config::asio_client::message_type::ptr message_ptr
Definition: ComputeThread.hh:13
void terminate()
Terminate the compute thread, in preparation for shutting down the client altogether.
Definition: ComputeThread.cc:107
GUIBase * gui
Definition: ComputeThread.hh:90
void try_spawn_server()
Definition: ComputeThread.cc:166
DocumentThread * docthread
Definition: ComputeThread.hh:91
websocketpp::client< websocketpp::config::asio_client > WSClient
Definition: ComputeThread.hh:12
void on_close(websocketpp::connection_hdl hdl)
Definition: ComputeThread.cc:235
void restart_kernel()
Restart the kernel.
Definition: ComputeThread.cc:486
Each cell is identified by a serial number 'id' which is used to keep track of it across network call...
Definition: DataCell.hh:51
void all_cells_nonrunning()
Set all cells to be non-running (e.g.
Definition: ComputeThread.cc:132
void init()
Definition: ComputeThread.cc:48
std::thread::id gui_thread_id
Definition: ComputeThread.hh:96
void cell_finished_running(DataCell::id_t)
Definition: ComputeThread.cc:249
Abstract base class with methods that need to be implemented by any GUI.
Definition: GUIBase.hh:16
websocketpp::lib::lock_guard< websocketpp::lib::mutex > scoped_lock
Definition: ComputeThread.hh:14
void try_connect()
Definition: ComputeThread.cc:56
void on_message(websocketpp::connection_hdl hdl, message_ptr msg)
Definition: ComputeThread.cc:260
Functions to handle the exchange properties of two or more symbols in a product.
Definition: Algorithm.cc:1626
void execute_cell(DTree::iterator)
In order to execute code on the server, call the following from the GUI thread.
Definition: ComputeThread.cc:392
int number_of_cells_executing(void) const
Definition: ComputeThread.cc:462
void set_master(GUIBase *, DocumentThread *)
Determine the objects that this compute thread should be talking to.
Definition: ComputeThread.cc:42
WSClient wsclient
Definition: ComputeThread.hh:106
void stop()
Stop the current cell execution on the server and remove all other cells from the run queue as well...
Definition: ComputeThread.cc:467
std::map< DataCell::id_t, DTree::iterator > running_cells
Definition: ComputeThread.hh:103
~ComputeThread()
Definition: ComputeThread.cc:30
bool restarting_kernel
Definition: ComputeThread.hh:107
WSClient::connection_ptr connection
Definition: ComputeThread.hh:108
ComputeThread()
If the ComputeThread is constructed with a null pointer to the gui, there will be no gui updates...
Definition: ComputeThread.cc:19
bool connection_is_open
Definition: ComputeThread.hh:107
unsigned short port
Definition: ComputeThread.hh:128
void run()
Main entry point, which will connect to the server and then start an event loop to handle communicati...
Definition: ComputeThread.cc:95
Base class which talks to the server and sends Action objects back to the DocumentThread.
Definition: ComputeThread.hh:35
websocketpp::connection_hdl our_connection_hdl
Definition: ComputeThread.hh:109