-1

我想在 VS2017 c++ 项目中使用pion 5.0.6作为小型网络服务器。对于我可以使用的静态路由

add_resource("/my/static/route", <handler>)

我也需要动态路线——比如"/data/:id/info 我该怎么做?

4

1 回答 1

0

对于那些可能需要它的人:我找到了一个将动态路由添加pion网络服务器的解决方案。它需要我在 github 上的 hxoht找到的智能路由器代码,并且工作方式如下

  • 所有路由 - 静态和动态 - 都设置为httpd->add_resource(<url>, <handler);
  • 必须设置一个 404 处理程序,httpd->set_not_found_handler(<handler>);并负责将动态路由分配给上面添加的处理程序。
  • 您的网络服务器类必须派生自pion::http::server,以便按名称查找处理程序httpd->find_request_handler(<url>, <handler>);
  • 在您的 404 处理程序中,您使用该Match::test(<dynamic-route>)方法来检测动态路由 - 就像在以下代码片段中一样:

    void handle_404(http::request_ptr& req, tcp::connection_ptr& con)
    {
        Route target;
        Match dynamic = target.set(req->get_resource());
        for (auto& route : dynamic_routes) // Our list of dynamic routes
        {
            if (dynamic.test(route)) // Does the url match the dynamic route pattern?
            {
                request_handler_t h;
                if (find_request_handler(route, h))
                {
                    auto name = get_param_name(route); // e.g. /a/:b -> "b"
                    value = dynamic.get(name); // Save value in string or map<name, value>
                    h(req, con); // Call original handler with value set properly
                    return;
                }
            }
        }
        // If no match then return a 404.
        http::response_writer_ptr w(http::response_writer::create(con, *req,
        boost::bind(&tcp::connection::finish, con)));
        http::response& res = w->get_response();
        res.set_status_code(http::types::RESPONSE_CODE_NOT_FOUND);
        res.set_status_message(http::types::RESPONSE_MESSAGE_NOT_FOUND);
        w->send();
    }
    

为了以多线程方式使用pion网络服务器,我会将解析后的值存储在请求对象中,该对象将派生自.pion::http::request

这适用于Windows Linux :)

于 2018-06-13T08:44:08.707 回答