writer.c
817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <stdlib.h>
#include <stdio.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->buffer = va_arg(*params, Cbuf);
this->response_queue = new(HttpMessageQueue);
}
static
void
dtor(void * _this)
{
HttpResponseWriter this = _this;
delete(&(this->response_queue));
if (TRUE == this->ourLock)
cbufRelease(this->buffer);
if (NULL != this->cur_response)
delete(&(this->cur_response));
}
INIT_IFACE(Class, ctor, dtor, NULL);
INIT_IFACE(StreamWriter, (fptr_streamWriterWrite)httpResponseWriterWrite);
CREATE_CLASS(HttpResponseWriter, NULL, IFACE(Class), IFACE(StreamWriter));
// vim: set ts=4 sw=4: