#include "ContentManager.hpp" #include "EventManager.hpp" #include "Filesystem.hpp" #include "TemplateManager.hpp" #include "content/blog/Blog.hpp" #include "content/static/Static.hpp" #include #include #include int main(int argc, char ** argv) { std::string wwwroot = "./wwwroot"; char const * host = "127.0.0.1"; uint16_t port = 9000; if (argc <= 1 || argc > 5) { std::cout << "usage: cpp-web [HOST] [PORT] [STATIC-WWWROOT] [DYNAMIC-WWWROOT]" << std::endl; if (argc > 5) { return 1; } } if (argc > 1) { host = argv[1]; } if (argc > 2) { port = atoi(argv[2]); } std::shared_ptr tmgr = std::make_shared(); std::shared_ptr cmgr = std::make_shared(); cmgr->SetTemplateSystem(tmgr); { std::shared_ptr static_fs = std::make_shared(); if (argc > 3) { if (static_fs->Scan(argv[3]) != true) { return 1; } } std::cout << "Static fs: " << wwwroot << std::endl; static_fs->Scan(wwwroot, {"html", "tmpl"}, true); cmgr->RegisterModule(std::make_shared("/static", static_fs)); } { Filesystem dynamic_fs; if (argc > 4) { if (dynamic_fs.Scan(argv[4]) != true) { return 1; } } std::cout << "Dynamic fs: " << wwwroot << std::endl; dynamic_fs.Scan(wwwroot, {"html", "tmpl"}, false); tmgr->ParseTemplates(dynamic_fs); } cmgr->RegisterModule(std::make_shared("/", "./pages", "index.html")); cmgr->RegisterModule(std::make_shared("/blog", "./blog", "blog/index.html")); if (cmgr->InitAll() == false) { std::cout << "InitAll() failed." << std::endl; return 1; } EventManager evmgr(cmgr); evmgr.Init(host, port); // cmgr.ShutdownAll(); }