#ifndef EVENT_MANAGER_H #define EVENT_MANAGER_H 1 #include "ContentManager.hpp" #include "Filesystem.hpp" #include #include #include #include #include #include using EvUserData = void *; using EvFunction = std::function; struct ev_callback { EvFunction cb; EvUserData ud; }; using EvUrlCallback = std::tuple; class EventManager { public: EventManager(std::shared_ptr & cmgr); ~EventManager(); bool Init(std::string = "127.0.0.1", uint16_t port = 9000); void SetDefaultCallback(EvFunction fn, EvUserData dat); void AddCallback(std::string url, EvFunction fn, EvUserData dat); private: std::shared_ptr m_ContentManager; struct ev_callback m_DefaultCallback; std::vector m_UrlCallbacks; struct event_config * m_EvConfig = nullptr; struct event_base * m_EvBase = nullptr; struct evhttp * m_EvHttp = nullptr; struct evconnlistener * m_EvListener = nullptr; struct event * m_EvTermEvent = nullptr; }; #endif