writer.c 829 Bytes
#include <stdlib.h>

#include "class.h"
#include "interface/class.h"
#include "interface/stream_writer.h"

#include "http/message/queue.h"
#include "http/response/writer.h"

static
void
ctor(void * _this, va_list * params)
{
	HttpResponseWriter this = _this;

	this->response_queue = new(HttpMessageQueue);
}

static
void
dtor(void * _this)
{
	HttpResponseWriter this = _this;

	delete(&(this->response_queue));

	if (NULL != this->cur_response)
		delete(&(this->cur_response));
}

static
void
_clone(void * _this, void * _base)
{
	HttpResponseWriter this = _this;

	this->response_queue = new(HttpMessageQueue);
}

INIT_IFACE(Class, ctor, dtor, _clone);
INIT_IFACE(StreamWriter, (fptr_streamWriterWrite)httpResponseWriterWrite);
CREATE_CLASS(HttpResponseWriter, NULL, IFACE(Class), IFACE(StreamWriter));

// vim: set ts=4 sw=4: