| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- /*Software License
- Copyright(C) 2024[liuyingjie]
- License Terms
- Usage Rights
- Any individual or entity is free to use, copy, and distribute the binary form of this software without modification to the source code, without the need to disclose the source code.
- If the source code is modified, the modifications must be open - sourced under the same license.This means that the modifications must be disclosed and accompanied by a copy of this license.
- Future Versions Updates
- From this version onwards, all future releases will be governed by the terms of the latest version of the license.This license will automatically be nullified and replaced by the new version.
- Users must comply with the terms of the new license issued in future releases.
- Liability and Disclaimer
- This software is provided “as is”, without any express or implied warranties, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non - infringement.In no event shall the author or copyright holder be liable for any claims, damages, or other liabilities, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
- Contact Information
- If you have any questions, please contact us: 1585346868@qq.com Or visit our website fwlua.com.
- */
- #include "net/http_router.h"
- #if USE_NET_HTTP_WEBSITE
- #include <regex>
- #include "net/http_reqpack.h"
- #include "net/http_request.h"
- #include "net/http_response.h"
- #include "net/http_server.h"
- #include "net/http_center.h"
- #include "net/http_controller.h"
- #include "net/http_interceptor.h"
- #include "net/http_website.h"
- #include "net/http_agent.h"
- #include "net/http_cache.h"
- #include "net/http_cdn.h"
- #include "net/http_subscribe.h"
- #include "HPSocket/HPSocket.h"
- #include "util/system.h"
- #if HTTP_LUA_ENGINE == 1
- #include "httplua/Lrequest.h"
- #include "httplua/Lresponse.h"
- #endif
- ylib::network::http::router::router()
- {
-
- m_threadpool = nullptr;
- m_interceptor = std::make_unique<network::http::interceptor>();
- m_subscribe = std::make_unique<network::http::subscribe>();
- }
- ylib::network::http::router::~router()
- {
- close();
- }
- bool network::http::router::start(const router_config &config)
- {
- m_config = config;
- //启动线程池
- {
- if (m_config.threadpool.size > 1)
- {
- m_threadpool = HP_Create_ThreadPool();
- if (this->m_threadpool->Start(
- m_config.threadpool.size,
- m_config.threadpool.queuemax,
- m_config.threadpool.queuemax == 0 ? TRP_WAIT_FOR : TRP_CALL_FAIL, 0) == false)
- {
- //销毁Socket任务线程池
- HP_Destroy_ThreadPool(this->m_threadpool);
- this->m_threadpool = nullptr;
- m_lastErrorDesc = "threadpool init failed";
- return false;
- }
- }
- }
- ::ithread::start();
- return true;
- }
- void network::http::router::close()
- {
- ::ithread::stop();
- ::ithread::wait();
- if (this->m_threadpool != nullptr)
- {
- this->m_threadpool->Stop(-1);
- delete this->m_threadpool;
- this->m_threadpool = nullptr;
- }
- m_interceptor->clear();
- m_subscribe->clear();
- }
- network::http::interceptor* network::http::router::interceptor(){
- m_interceptor->center(center());
- return m_interceptor.get();
- }
- network::http::subscribe* ylib::network::http::router::subscribe()
- {
- m_subscribe->center(center());
- return m_subscribe.get();
- }
- void network::http::router::other(std::function<void(network::http::request*,network::http::response*)> callback)
- {
- this->m_callback_other = callback;
- }
- void ylib::network::http::router::on_recved(std::function<void(const ylib::buffer &begin, ylib::buffer* end)> callback)
- {
- m_callback_recved = callback;
- }
- void ylib::network::http::router::on_sendbefore(std::function<void(const ylib::buffer &begin, ylib::buffer* end)> callback)
- {
- m_callback_sendbefore = callback;
- }
- VOID __HP_CALL TaskProc_function(PVOID pvArg)
- {
- network::http::router::thread_param_info* tp_info = (network::http::router::thread_param_info*)pvArg;
- tp_info->router->__thread_callback(tp_info->reqpack);
- delete tp_info->reqpack;
- delete tp_info;
- }
- void ylib::network::http::router::__thread_callback(reqpack* rp)
- {
-
- /*======== ======CDN服务==============*/
- if (is_cdn(rp))
- return;
- /*rp->response()->send((nstring)"OK");
- return;*/
- /*======== ======缓存判断==============*/
- if(rp->website()->cache()->have_send(rp))
- {
- ylib::log->info("cached,"+rp->filepath(),"router");
- return;
- }
- /*======== ======代理请求==============*/
- if (is_proxy(rp))
- return;
- /*===============正常请求=================*/
-
- try
- {
- // 拦截器过滤
- if (m_interceptor->trigger(rp->filepath(), rp) == false)
- {
- // 已拒绝继续执行
- return;
- }
- // 订阅
- if (m_subscribe->trigger(rp->filepath(), rp))
- return; // 已被处理
- // 其它
- if (m_callback_other != nullptr)
- m_callback_other(rp->request().get(), rp->response().get());
- }
- catch (const std::exception& e)
- {
- rp->response()->send((std::string)e.what(), 500, "Internal Server Error");
- }
- }
- size_t ylib::network::http::router::queue_size()
- {
- return m_handle_queue.size();
- }
- void ylib::network::http::router::push(reqpack *rp)
- {
- m_handle_queue.push(rp);
- }
- bool ylib::network::http::router::is_cdn(reqpack* rp)
- {
- auto cdn = rp->website()->cdn();
- if(cdn->config().enable == false)
- return false;
- if(cdn->config().manager == false)
- return false;
- std::string move_url = cdn->host();
- if(move_url.empty()){
- rp->response()->send((std::string)"CDN: Currently no available nodes",503,"Service Unavailable");
- return true;
- }
- move_url.append(rp->filepath());
- rp->response()->redirect(move_url,true);
- return true;
- }
- #if HTTP_LUA_ENGINE == 1
- void ylib::network::http::router::lua_engine(reqpack* rp, const network::http::subscribe_info& sub)
- {
- sol::state lua;
- if (sub.lua_init_state != nullptr)
- {
- sub.lua_init_state(lua);
- }
-
- try {
- lua.open_libraries(sol::lib::base);
- sol::protected_function_result result = lua.script_file(sub.lua_filepath, sol::script_pass_on_error); // 尝试加载并执行脚本
- if (!result.valid()) {
- sol::error err = result;
- throw ylib::exception(err.what());
- }
- Lrequest request(rp->request());
- Lresponse response(rp->response());
- request.regist(&lua);
- response.regist(&lua);
- result = lua["access"](request, response);
- if (!result.valid()) {
- sol::error err = result;
- throw ylib::exception(err.what());
- }
- }
- catch (const sol::error& err) {
- throw ylib::exception(err.what());
- }
- }
- #endif
- bool ylib::network::http::router::is_proxy(reqpack* rp)
- {
- #if USE_NET_HTTP_AGENT == 1
- //获取请求首行,判断代理
- auto proxys = rp->website()->proxy();
- for (size_t i = 0; i < proxys->m_count; i++)
- {
- network::http::proxy* proxy = proxys->get(i);
- if (std::regex_match(rp->filepath().c_str(), proxy->src_express))
- {
- rp->server()->agent()->request(3000, rp, proxy);
- return true;
- }
- }
- #endif
- return false;
- }
- bool ylib::network::http::router::run()
- {
- //std::string time_output = time::now_time();
- //std::cout << "Debug(1):\t" << time_output << std::endl;
- reqpack* rp = nullptr;
- while (m_handle_queue.pop(rp))
- {
- if (m_threadpool == nullptr)
- {
- #if 0
- ((IHttpServer*)rp->server()->hpserver())->SendResponse(rp->connid(), 200, "OK", nullptr, 0, (const BYTE*)"AAA", 3);
- return true;
- #endif
- // 单线程
- this->__thread_callback(rp);
- delete rp;
- }
- else
- {
- //thread_param_info* tp_info = new thread_param_info();//m_threadparam_queue->create();
- thread_param_info* tp_info = new thread_param_info;
- tp_info->reqpack = rp;
- tp_info->router = this;
- if (m_threadpool->Submit(TaskProc_function, (PVOID)tp_info) == FALSE)
- {
- //线程池繁忙
- std::string ipaddress;
- ushort port = 0;
- tp_info->reqpack->server()->remote(rp->connid(), ipaddress, port);
- #if HTTP_ROUTER_PRINT == 1
- ylib::log->error("Thread posting failed,Remote: "+ ipaddress+",Filepath: " + rp->filepath(),"router");
- #endif
- // 发送繁忙回复
- ((IHttpServer*)tp_info->reqpack->server()->hpserver())->SendResponse((CONNID)rp->connid(), 503, "Service Unavailable");
- // 销毁资源
- //
- delete tp_info->reqpack;
- delete tp_info;
- }
- }
-
- }
- //std::cout << "Debug(2.1):\t" << time_output << std::endl;
- //Sleep(1000);
- ylib::system::sleep_msec(1);
- //std::cout << "Debug(2):\t" << time_output << std::endl;
- return true;
- }
- #endif
-
|