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:

  1. drogon_ctl create controller -w EchoWebsock
  1. //EchoWebsock.cc
  2. #include "EchoWebsock.h"
  3. void EchoWebsock::handleNewMessage(const WebSocketConnectionPtr &wsConnPtr,std::string &&message)
  4. {
  5. //write your application logic here
  6. }
  7. void EchoWebsock::handleNewConnection(const HttpRequestPtr &req,const WebSocketConnectionPtr &wsConnPtr)
  8. {
  9. //write your application logic here
  10. }
  11. void EchoWebsock::handleConnectionClosed(const WebSocketConnectionPtr &wsConnPtr)
  12. {
  13. //write your application logic here
  14. }

After edited:

  1. //EchoWebsock.cc
  2. {
  3. //write your application logic here
  4. wsConnPtr->send(message);
  5. }
  6. void EchoWebsock::handleNewConnection(const HttpRequestPtr &req,const WebSocketConnectionPtr &wsConnPtr)
  7. {
  8. //write your application logic here
  9. }
  10. void EchoWebsock::handleConnectionClosed(const WebSocketConnectionPtr &wsConnPtr)
  11. {
  12. //write your application logic here
  13. }

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 as token. 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:

  1. //Send a websocket message, the encoding and encapsulation
  2. //of the message are the responsibility of the framework
  3. void send(const std::string &msg);
  4. //Local and remote addresses of the websocket
  5. const trantor::InetAddress &localAddr() const;
  6. const trantor::InetAddress &peerAddr() const;
  7. //The connection state of the weosocket
  8. bool connected() const;
  9. bool disconnected() const;
  10. //close websocket
  11. void shutdown();//close write
  12. void forceClose();//close
  13. //set up and get the context of the websocket, and store some business data from users.
  14. //the any type means that you can store any type of object.
  15. void setContext(const any &context);

05