RequestWorker: take unique ptr (fixes regression)
This commit is contained in:
parent
bae6ae73bf
commit
9bb1fa5a33
@ -142,7 +142,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,16 +17,16 @@ 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);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user