This repository was archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathmyWsHandler.cpp
55 lines (49 loc) · 1.77 KB
/
myWsHandler.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "myWsHandler.hpp"
namespace wsgate{
MyWsHandler::MyWsHandler(EHSConnection *econn, EHS *ehs, MyRawSocketHandler *rsh)
: m_econn(econn)
, m_ehs(ehs)
, m_rsh(rsh){
}
void MyWsHandler::on_message(std::string hdr, std::string data){
if (1 == (hdr[0] & 0x0F)) {
// A text message
if (':' == data[1]) {
switch (data[0]) {
case 'D':
log::debug << "JS: " << data.substr(2) << endl;
break;
case 'I':
log::info << "JS: " << data.substr(2) << endl;
break;
case 'W':
log::warn << "JS: " << data.substr(2) << endl;
break;
case 'E':
log::err << "JS: " << data.substr(2) << endl;
break;
}
}
return;
}
// binary message;
m_rsh->OnMessage(m_econn, data);
}
void MyWsHandler::on_close(){
log::debug << "GOT Close" << endl;
ehs_autoptr<GenericResponse> r(new GenericResponse(0, m_econn));
m_ehs->AddResponse(ehs_move(r));
}
bool MyWsHandler::on_ping(const std::string & data){
log::debug << "GOT Ping: '" << data << "'" << endl;
return true;
}
void MyWsHandler::on_pong(const std::string & data){
log::debug << "GOT Pong: '" << data << "'" << endl;
}
void MyWsHandler::do_response(const std::string & data){
ehs_autoptr<GenericResponse> r(new GenericResponse(0, m_econn));
r->SetBody(data.data(), data.length());
m_ehs->AddResponse(ehs_move(r));
}
}