Commit 8e4efd07 authored by Max Kellermann's avatar Max Kellermann

output/httpd: wrap the std::list in std::queue

parent f2ad9f6f
......@@ -212,10 +212,19 @@ HttpdClient::ClearQueue()
{
assert(state == RESPONSE);
for (auto page : pages)
while (!pages.empty()) {
Page *page = pages.front();
pages.pop();
#ifndef NDEBUG
assert(queue_size >= page->size);
queue_size -= page->size;
#endif
page->Unref();
pages.clear();
queue_size = 0;
}
assert(queue_size == 0);
}
void
......@@ -273,7 +282,7 @@ HttpdClient::TryWrite()
}
current_page = pages.front();
pages.pop_front();
pages.pop();
current_position = 0;
assert(queue_size >= current_page->size);
......@@ -379,7 +388,7 @@ HttpdClient::PushPage(Page *page)
return;
page->Ref();
pages.push_back(page);
pages.push(page);
queue_size += page->size;
ScheduleWrite();
......
......@@ -23,6 +23,7 @@
#include "event/BufferedSocket.hxx"
#include "Compiler.h"
#include <queue>
#include <list>
#include <stddef.h>
......@@ -53,7 +54,7 @@ class HttpdClient final : BufferedSocket {
/**
* A queue of #Page objects to be sent to the client.
*/
std::list<Page *> pages;
std::queue<Page *, std::list<Page *>> pages;
/**
* The sum of all page sizes in #pages.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment