RequestWorker: take unique ptr (fixes regression)
This commit is contained in:
parent
8364ace683
commit
ec10c764d5
@ -137,7 +137,7 @@ int main(int argc, char **argv)
|
|||||||
cache->clear();
|
cache->clear();
|
||||||
|
|
||||||
HandlerFactory handlerFactory{config.handlersConfig, siteTemplate, *database.get(), urlProvider, *cache.get()};
|
HandlerFactory handlerFactory{config.handlersConfig, siteTemplate, *database.get(), urlProvider, *cache.get()};
|
||||||
RequestWorker requestWorker{handlerFactory, *database->createSessionDao().get(), siteTemplate};
|
RequestWorker requestWorker{handlerFactory, database->createSessionDao(), siteTemplate};
|
||||||
|
|
||||||
auto interface = createGateway(config);
|
auto interface = createGateway(config);
|
||||||
|
|
||||||
|
@ -17,17 +17,17 @@ class RequestWorker
|
|||||||
UrlProvider *urlProvider;
|
UrlProvider *urlProvider;
|
||||||
ICache *cache;
|
ICache *cache;
|
||||||
HandlerFactory *handlerFactory;
|
HandlerFactory *handlerFactory;
|
||||||
SessionDao *sessionDao;
|
std::unique_ptr<SessionDao> sessionDao;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Session retrieveSession(std::string token) const;
|
Session retrieveSession(std::string token) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
RequestWorker(HandlerFactory &handlerFactory, SessionDao &sessionDao, Template &templ)
|
RequestWorker(HandlerFactory &handlerFactory, std::unique_ptr<SessionDao> sessionDao, Template &templ)
|
||||||
{
|
{
|
||||||
this->handlerFactory = &handlerFactory;
|
this->handlerFactory = &handlerFactory;
|
||||||
this->templ = &templ;
|
this->templ = &templ;
|
||||||
this->sessionDao = &sessionDao;
|
this->sessionDao = std::move(sessionDao);
|
||||||
}
|
}
|
||||||
|
|
||||||
Response processRequest(const Request &r);
|
Response processRequest(const Request &r);
|
||||||
|
Loading…
Reference in New Issue
Block a user