Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to get a list of opened sessions ? #58

Closed
jagernicolas opened this issue Jul 16, 2020 · 5 comments
Closed

How to get a list of opened sessions ? #58

jagernicolas opened this issue Jul 16, 2020 · 5 comments

Comments

@jagernicolas
Copy link

jagernicolas commented Jul 16, 2020

Hi,
I'd like to send messages from the server to every client connected (using websocket). I don't see how to do that. I was expecting to find a list with all the sessions opened.

there is a way to send messages to each client from the server (using websocket) ?

thx

@IronsDu
Copy link
Owner

IronsDu commented Jul 16, 2020

@jagernicolas
Hi, see here:

auto wsEnterCallback = [](const HttpSession::Ptr& httpSession,
WebSocketFormat::WebSocketFrameType opcode,
const std::string& payload) {
std::cout << "frame enter of type:" << int(opcode) << std::endl;
std::cout << "payload is:" << payload << std::endl;
// echo frame
auto frame = std::make_shared<std::string>();
WebSocketFormat::wsFrameBuild(payload.c_str(),
payload.size(),
*frame,
WebSocketFormat::WebSocketFrameType::TEXT_FRAME,
true,
false);
httpSession->send(frame);

When session enter, We can push HttpSession::Ptr into session list(need mutex).

And, we can use HttpSessionHandlers::setClosedCallback for remove session from session list, like this:

.configureEnterCallback([httpEnterCallback, wsEnterCallback](const HttpSession::Ptr& httpSession, HttpSessionHandlers& handlers) {
handlers.setHttpCallback(httpEnterCallback);
handlers.setWSCallback(wsEnterCallback);

@IronsDu
Copy link
Owner

IronsDu commented Jul 16, 2020

also add some code in this:

auto enterCallback = [host](const HttpSession::Ptr& httpSession, HttpSessionHandlers& handlers) {
HttpRequest request;
request.setMethod(HttpRequest::HTTP_METHOD::HTTP_METHOD_GET);
request.setUrl("/ws");
request.addHeadValue("Host", host);
request.addHeadValue("Upgrade", "websocket");
request.addHeadValue("Connection", "Upgrade");
request.addHeadValue("Sec-WebSocket-Key", "dGhlIHNhbXBsZSBub25jZQ==");
request.addHeadValue("Sec-WebSocket-Version", "13");
std::string requestStr = request.getResult();
httpSession->send(requestStr.c_str(), requestStr.size());
handlers.setWSConnected([](const HttpSession::Ptr& session, const HTTPParser&) {
for (int i = 0; i < 200; i++)
{
sendPacket(session, "hello, world!", 13);
}
});
handlers.setWSCallback([](const HttpSession::Ptr& session,
WebSocketFormat::WebSocketFrameType, const std::string& payload) {
std::cout << payload << std::endl;
sendPacket(session, "hello, world!", 13);
count += 1;
});
};

@jagernicolas
Copy link
Author

Hi @IronsDu ,
I was exactly doing that... however here my mistake,
std::list<HttpSession::Ptr&> list;
instead of
std::list<HttpSession::Ptr> list;

auto wsEnterCallback = [&list](const HttpSession::Ptr& httpSession, 
         WebSocketFormat::WebSocketFrameType opcode, 
         const std::string& payload) { 
             std::cout << "frame enter of type:" << int(opcode) << std::endl; 
             std::cout << "payload is:" << payload << std::endl; 
             // echo frame 

             liste.push_back(session); // TODO: add mutex

             auto frame = std::make_shared<std::string>(); 
             WebSocketFormat::wsFrameBuild(payload.c_str(), 
                 payload.size(), 
                 *frame, 
                 WebSocketFormat::WebSocketFrameType::TEXT_FRAME, 
                 true, 
                 false); 
             httpSession->send(frame); 

I will make a short example, would you me to share it with you ? I could make a PR when it's done (today or tomorrow)

@jagernicolas
Copy link
Author

jagernicolas commented Jul 16, 2020

nevermind, I just saw that your example BenchWebsocket.cpp show that.

thx @IronsDu for your quick support!

@IronsDu
Copy link
Owner

IronsDu commented Jul 17, 2020

Thank you. You can make a PR for this example.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants