The source file of the WebSocketController
can be generated by the drogon_ctl
tool. The command format is as follows:
Suppose we want to implement a simple echo function through websocket, that is, the server simply sends back the message sent by the client. We can create the implementation class EchoWebsock of WebSocketController
through drogon_ctl
, as follows:
drogon_ctl create controller -w EchoWebsock
//EchoWebsock.cc
#include "EchoWebsock.h"
void EchoWebsock::handleNewMessage(const WebSocketConnectionPtr &wsConnPtr,std::string &&message)
{
//write your application logic here
}
void EchoWebsock::handleNewConnection(const HttpRequestPtr &req,const WebSocketConnectionPtr &wsConnPtr)
{
//write your application logic here
}
void EchoWebsock::handleConnectionClosed(const WebSocketConnectionPtr &wsConnPtr)
{
//write your application logic here
}
After edited:
//EchoWebsock.cc
{
//write your application logic here
wsConnPtr->send(message);
}
void EchoWebsock::handleNewConnection(const HttpRequestPtr &req,const WebSocketConnectionPtr &wsConnPtr)
{
//write your application logic here
}
void EchoWebsock::handleConnectionClosed(const WebSocketConnectionPtr &wsConnPtr)
{
//write your application logic here
}
First, in this example, the controller is registered to the /echo
path via the WS_PATH_ADD
macro. The usage of the WS_PATH_ADD
macro is similar to the macros of other controllers introduced earlier. One can also register the path with several Filters. Since websocket is handled separately in the framework, it can be repeated with the paths of the first two controllers(HttpSimpleController
and HttpApiController
) without affecting each other.
Note: Like the usual HTTP protocol, http websocket can be sniffed. If security is required, encryption should be provided by HTTPS. Of course, it is also possible for users to complete encryption and decryption on the server and client side, but HTTPS is more convenient. The underlying layer is handled by drogon
, and users only need to care about business logic.
The user-defined websocket controller class inherits from the drogon::WebSocketController
class template. The template parameter is a subclass type. The user needs to implement the following three virtual functions to process the establishment, shutdown, and messages of the websocket:
handleNewConnection
is called after the websocket is established. req is the setup request sent by the client. At this time, the framework has returned the response. What users can do is to get some additional information through req, such astoken
. wsConn is a smart pointer to this websocket object, and the commonly used interface will be discussed later.- is called after the websocket receives the new message. The message is stored in the message variable. Note that the message is the message payload. The framework has finished the decapsulation and decoding of the message. The user can directly process the message itself.
handleConnectionClosed
is called after the websocket connection is closed, and the user can do some finishing work.
WebSocketConnection
The common interfaces of the WebSocketConnection object are as follows:
//Send a websocket message, the encoding and encapsulation
//of the message are the responsibility of the framework
void send(const std::string &msg);
//Local and remote addresses of the websocket
const trantor::InetAddress &localAddr() const;
const trantor::InetAddress &peerAddr() const;
//The connection state of the weosocket
bool connected() const;
bool disconnected() const;
//close websocket
void shutdown();//close write
void forceClose();//close
//set up and get the context of the websocket, and store some business data from users.
//the any type means that you can store any type of object.
void setContext(const any &context);