Make the `Server` keep a `shared_ptr` instead of a raw Library pointer.

We want to be sure that `Library` actually exists when we use it.
While it is not a silver bullet (user can still create a shared_ptr on
a raw pointer), making the `Server` keep `shared_ptr` on the library
help us a lot here.
This commit is contained in:
Matthieu Gautier 2023-09-25 16:15:32 +02:00
parent efcbf6ef1e
commit a5557eeb25
6 changed files with 14 additions and 14 deletions

View File

@ -36,7 +36,7 @@ namespace kiwix
* *
* @param library The library to serve. * @param library The library to serve.
*/ */
Server(Library* library, NameMapper* nameMapper=nullptr); Server(std::shared_ptr<Library> library, NameMapper* nameMapper=nullptr);
virtual ~Server(); virtual ~Server();
@ -66,7 +66,7 @@ namespace kiwix
std::string getAddress(); std::string getAddress();
protected: protected:
Library* mp_library; std::shared_ptr<Library> mp_library;
NameMapper* mp_nameMapper; NameMapper* mp_nameMapper;
std::string m_root = ""; std::string m_root = "";
std::string m_addr = ""; std::string m_addr = "";

View File

@ -29,7 +29,7 @@
namespace kiwix { namespace kiwix {
Server::Server(Library* library, NameMapper* nameMapper) : Server::Server(std::shared_ptr<Library> library, NameMapper* nameMapper) :
mp_library(library), mp_library(library),
mp_nameMapper(nameMapper), mp_nameMapper(nameMapper),
mp_server(nullptr) mp_server(nullptr)

View File

@ -406,7 +406,7 @@ public:
}; };
InternalServer::InternalServer(Library* library, InternalServer::InternalServer(std::shared_ptr<Library> library,
NameMapper* nameMapper, NameMapper* nameMapper,
std::string addr, std::string addr,
int port, int port,
@ -787,7 +787,7 @@ std::unique_ptr<Response> InternalServer::handle_no_js(const RequestContext& req
{ {
const auto url = request.get_url(); const auto url = request.get_url();
const auto urlParts = kiwix::split(url, "/", true, false); const auto urlParts = kiwix::split(url, "/", true, false);
HTMLDumper htmlDumper(mp_library, mp_nameMapper); HTMLDumper htmlDumper(mp_library.get(), mp_nameMapper);
htmlDumper.setRootLocation(m_root); htmlDumper.setRootLocation(m_root);
htmlDumper.setLibraryId(getLibraryId()); htmlDumper.setLibraryId(getLibraryId());
auto userLang = request.get_user_language(); auto userLang = request.get_user_language();
@ -958,7 +958,7 @@ std::unique_ptr<Response> InternalServer::handle_search_request(const RequestCon
const auto pageLength = getSearchPageSize(request); const auto pageLength = getSearchPageSize(request);
/* Get the results */ /* Get the results */
SearchRenderer renderer(search->getResults(start-1, pageLength), mp_nameMapper, mp_library, start, SearchRenderer renderer(search->getResults(start-1, pageLength), mp_nameMapper, mp_library.get(), start,
search->getEstimatedMatches()); search->getEstimatedMatches());
renderer.setSearchPattern(searchInfo.pattern); renderer.setSearchPattern(searchInfo.pattern);
renderer.setSearchBookQuery(searchInfo.bookFilterQuery); renderer.setSearchBookQuery(searchInfo.bookFilterQuery);

View File

@ -92,7 +92,7 @@ class OPDSDumper;
class InternalServer { class InternalServer {
public: public:
InternalServer(Library* library, InternalServer(std::shared_ptr<Library> library,
NameMapper* nameMapper, NameMapper* nameMapper,
std::string addr, std::string addr,
int port, int port,
@ -178,7 +178,7 @@ class InternalServer {
int m_ipConnectionLimit; int m_ipConnectionLimit;
struct MHD_Daemon* mp_daemon; struct MHD_Daemon* mp_daemon;
Library* mp_library; std::shared_ptr<Library> mp_library;
NameMapper* mp_nameMapper; NameMapper* mp_nameMapper;
SearchCache searchCache; SearchCache searchCache;

View File

@ -82,7 +82,7 @@ std::unique_ptr<Response> InternalServer::handle_catalog(const RequestContext& r
} }
zim::Uuid uuid; zim::Uuid uuid;
kiwix::OPDSDumper opdsDumper(mp_library, mp_nameMapper); kiwix::OPDSDumper opdsDumper(mp_library.get(), mp_nameMapper);
opdsDumper.setRootLocation(m_root); opdsDumper.setRootLocation(m_root);
opdsDumper.setLibraryId(getLibraryId()); opdsDumper.setLibraryId(getLibraryId());
std::vector<std::string> bookIdsToDump; std::vector<std::string> bookIdsToDump;
@ -164,7 +164,7 @@ std::unique_ptr<Response> InternalServer::handle_catalog_v2_root(const RequestCo
std::unique_ptr<Response> InternalServer::handle_catalog_v2_entries(const RequestContext& request, bool partial) std::unique_ptr<Response> InternalServer::handle_catalog_v2_entries(const RequestContext& request, bool partial)
{ {
OPDSDumper opdsDumper(mp_library, mp_nameMapper); OPDSDumper opdsDumper(mp_library.get(), mp_nameMapper);
opdsDumper.setRootLocation(m_root); opdsDumper.setRootLocation(m_root);
opdsDumper.setLibraryId(getLibraryId()); opdsDumper.setLibraryId(getLibraryId());
const auto bookIds = search_catalog(request, opdsDumper); const auto bookIds = search_catalog(request, opdsDumper);
@ -185,7 +185,7 @@ std::unique_ptr<Response> InternalServer::handle_catalog_v2_complete_entry(const
+ urlNotFoundMsg; + urlNotFoundMsg;
} }
OPDSDumper opdsDumper(mp_library, mp_nameMapper); OPDSDumper opdsDumper(mp_library.get(), mp_nameMapper);
opdsDumper.setRootLocation(m_root); opdsDumper.setRootLocation(m_root);
opdsDumper.setLibraryId(getLibraryId()); opdsDumper.setLibraryId(getLibraryId());
const auto opdsFeed = opdsDumper.dumpOPDSCompleteEntry(entryId); const auto opdsFeed = opdsDumper.dumpOPDSCompleteEntry(entryId);
@ -198,7 +198,7 @@ std::unique_ptr<Response> InternalServer::handle_catalog_v2_complete_entry(const
std::unique_ptr<Response> InternalServer::handle_catalog_v2_categories(const RequestContext& request) std::unique_ptr<Response> InternalServer::handle_catalog_v2_categories(const RequestContext& request)
{ {
OPDSDumper opdsDumper(mp_library, mp_nameMapper); OPDSDumper opdsDumper(mp_library.get(), mp_nameMapper);
opdsDumper.setRootLocation(m_root); opdsDumper.setRootLocation(m_root);
opdsDumper.setLibraryId(getLibraryId()); opdsDumper.setLibraryId(getLibraryId());
return ContentResponse::build( return ContentResponse::build(
@ -210,7 +210,7 @@ std::unique_ptr<Response> InternalServer::handle_catalog_v2_categories(const Req
std::unique_ptr<Response> InternalServer::handle_catalog_v2_languages(const RequestContext& request) std::unique_ptr<Response> InternalServer::handle_catalog_v2_languages(const RequestContext& request)
{ {
OPDSDumper opdsDumper(mp_library, mp_nameMapper); OPDSDumper opdsDumper(mp_library.get(), mp_nameMapper);
opdsDumper.setRootLocation(m_root); opdsDumper.setRootLocation(m_root);
opdsDumper.setLibraryId(getLibraryId()); opdsDumper.setLibraryId(getLibraryId());
return ContentResponse::build( return ContentResponse::build(

View File

@ -140,7 +140,7 @@ void ZimFileServer::run(int serverPort, std::string indexTemplateString)
} else { } else {
nameMapper.reset(new kiwix::HumanReadableNameMapper(*library, false)); nameMapper.reset(new kiwix::HumanReadableNameMapper(*library, false));
} }
server.reset(new kiwix::Server(library.get(), nameMapper.get())); server.reset(new kiwix::Server(library, nameMapper.get()));
server->setRoot(cfg.root); server->setRoot(cfg.root);
server->setAddress(address); server->setAddress(address);
server->setPort(serverPort); server->setPort(serverPort);