Browse Source

http: use std::move to move HTTPRequest into HTTPWorkItem

Thanks to Cory Fields for the idea.
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
f0188f9178
  1. 6
      src/httpserver.cpp

6
src/httpserver.cpp

@ -44,8 +44,8 @@ static const size_t MAX_HEADERS_SIZE = 8192; @@ -44,8 +44,8 @@ static const size_t MAX_HEADERS_SIZE = 8192;
class HTTPWorkItem : public HTTPClosure
{
public:
HTTPWorkItem(HTTPRequest* req, const std::string &path, const HTTPRequestHandler& func):
req(req), path(path), func(func)
HTTPWorkItem(std::unique_ptr<HTTPRequest> req, const std::string &path, const HTTPRequestHandler& func):
req(std::move(req)), path(path), func(func)
{
}
void operator()()
@ -281,7 +281,7 @@ static void http_request_cb(struct evhttp_request* req, void* arg) @@ -281,7 +281,7 @@ static void http_request_cb(struct evhttp_request* req, void* arg)
// Dispatch to worker thread
if (i != iend) {
std::unique_ptr<HTTPWorkItem> item(new HTTPWorkItem(hreq.release(), path, i->handler));
std::unique_ptr<HTTPWorkItem> item(new HTTPWorkItem(std::move(hreq), path, i->handler));
assert(workQueue);
if (workQueue->Enqueue(item.get()))
item.release(); /* if true, queue took ownership */

Loading…
Cancel
Save