gpt4 book ai didi

C++ Boost Asio - 如何检测断开连接并列出所有事件连接

转载 作者:行者123 更新时间:2023-12-02 10:10:10 38 4
gpt4 key购买 nike

我正在使用 Boost asio 作为 TCP 服务器解决方案。我希望我的服务器和客户端通过 TCP 二进制协议(protocol)进行通信。
这是我的服务器代码:
服务器.cpp:

#include "Server.h"
#include "Session.h"

using namespace Vibranium;

void Server::do_accept()
{
acceptor_.async_accept(socket_,
[this](boost::system::error_code ec)
{
if (!ec)
{
std::cout << "Connected!" << std::endl;
std::make_shared<Session>(std::move(socket_))->start();
}

do_accept();
});
}
这是 Session.cpp:
#include "Session.h"

void Vibranium::Session::start() {
do_read();
}

void Vibranium::Session::do_read() {
auto self(shared_from_this());
socket_.async_read_some(boost::asio::buffer(data_, max_length),
[this, self](boost::system::error_code ec, std::size_t length)
{
if (!ec)
{
std::cout.write(data_, length);
std::cout << "\n";
do_write(length);
}
});
}

void Vibranium::Session::do_write(std::size_t length) {
auto self(shared_from_this());
boost::asio::async_write(socket_, boost::asio::buffer(data_, length),
[this, self](boost::system::error_code ec, std::size_t /*length*/)
{
if (!ec)
{
do_read();
}
});
}
这里是 Session.h :
#ifndef VIBRANIUM_CORE_SESSION_H
#define VIBRANIUM_CORE_SESSION_H

#include <cstdlib>
#include <iostream>
#include <memory>
#include <utility>
#include <boost/asio.hpp>

using boost::asio::ip::tcp;

namespace Vibranium{
class Session: public std::enable_shared_from_this<Session>
{
public:
Session(tcp::socket socket)
: socket_(std::move(socket))
{
}
void start();

private:
void do_read();
void do_write(std::size_t length);
tcp::socket socket_;
enum { max_length = 1024 };
char data_[max_length];
};
}
#endif //VIBRANIUM_CORE_SESSION_H
这是我启动服务器的方式:
#include "Config.h"
#include "Database/MySQLConnection.h"
#include "Implementation/LoginDatabase.h"
#include "Banner.h"
#include "Server/Server.h"
#include <boost/asio.hpp>

using boost::asio::ip::tcp;
using namespace std;
using namespace Vibranium;

int main() {
//Don't mind Logger::FatalError it's just for coloring!
Banner::Show(Logger::Error,"AuthServer");
Config config("AuthServer");
std::string defaultPort = "8080";
MySQLConnectionInfo mySqlConnectionInfo(config, "LoginDatabaseInfo");
LoginDatabaseConnection loginDatabaseConnection(mySqlConnectionInfo);
loginDatabaseConnection.LoadDatabase();

try
{
boost::asio::io_service io_service;
Server s(io_service, std::stoi(config.GetConfigValue("AuthServerPort", defaultPort)));
io_service.run();
}
catch (std::exception& e)
{
std::cerr << "Exception: " << e.what() << "\n";
}

return 0;
}
所以我在 Server::do_accept() 中发现了新的联系并且很可能在那里我必须填充所有客户端端点的 vector 。所以在后期我可以创建一个函数,例如 Send发送给一个特定的客户和另一个叫 Broadcast发送给所有连接的客户端。
这里有两个问题:
  • 包含所有连接的 vector 的类型应该是什么?我应该在哪里填写?
  • 如何检测断开连接,以便从连接的客户端 vector 中删除客户端?
  • 最佳答案

    1.What should be the type of the vector containing all connections? Where should I fill it?


    您可以创建一个用于存储客户端的套接字 vector :
    vector<tcp::socket> clients; // adding by clients.push_back(move(socket)); after accept'ing
    或者围绕套接字创建一些包装类并使用它,例如。
    class Client
    {
    tcp::socket socket;
    public:
    Client (tcp::socket s) : socket{move(s)} {}
    ... some other logic
    并使用 vector<Client> 用于存储。

    2.How can I detect a disconnection so I can remove a client from that vector of connected clients?


    您可以使用第一次读取/写入套接字的失败作为连接断开的指示器,或者定期使用某种 KEEP ALIVE 消息作为 ping 消息来检测断开(或陈旧)的连接。

    关于C++ Boost Asio - 如何检测断开连接并列出所有事件连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63917790/

    38 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com