From: Adam Dickmeiss Date: Fri, 25 May 2012 12:16:31 +0000 (+0200) Subject: frontend_net: report stuff to helper method X-Git-Tag: v1.3.37~8 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=cb4456f564de9bb46f60aef81474f22ef1bd6dca;p=metaproxy-moved-to-github.git frontend_net: report stuff to helper method --- diff --git a/src/filter_frontend_net.cpp b/src/filter_frontend_net.cpp index cf28e9b..57fab7a 100644 --- a/src/filter_frontend_net.cpp +++ b/src/filter_frontend_net.cpp @@ -90,7 +90,7 @@ namespace metaproxy_1 { yazpp_1::IPDU_Observable *the_PDU_Observable, int fd); void recv_GDU(Z_GDU *apdu, int len); - + void report(Z_HTTP_Request *hreq); void failNotify(); void timeoutNotify(); void connectNotify(); @@ -275,6 +275,49 @@ yf::FrontendNet::ZAssocChild::~ZAssocChild() { } +void yf::FrontendNet::ZAssocChild::report(Z_HTTP_Request *hreq) +{ + mp::odr o; + + Z_GDU *gdu_res = o.create_HTTP_Response(m_session, hreq, 200); + + Z_HTTP_Response *hres = gdu_res->u.HTTP_Response; + + mp::wrbuf w; + size_t i; + int number_total = 0; + + for (i = 0; m_p->m_duration_lim[i] != 0.0; i++) + number_total += m_p->m_duration_freq[i]; + number_total += m_p->m_duration_freq[i]; + + wrbuf_puts(w, "\n"); + wrbuf_puts(w, "\n"); + wrbuf_printf(w, " \n", number_total); + for (i = 0; m_p->m_duration_lim[i] != 0.0; i++) + { + if (m_p->m_duration_freq[i] > 0) + wrbuf_printf( + w, " \n", + i > 0 ? m_p->m_duration_lim[i - 1] : 0.0, + m_p->m_duration_lim[i], m_p->m_duration_freq[i]); + } + + if (m_p->m_duration_freq[i] > 0) + wrbuf_printf( + w, " \n", + m_p->m_duration_lim[i - 1], m_p->m_duration_freq[i]); + wrbuf_puts(w, " \n"); + wrbuf_puts(w, "\n"); + + hres->content_len = w.len(); + hres->content_buf = (char *) w.buf(); + + int len; + send_GDU(gdu_res, &len); +} + void yf::FrontendNet::ZAssocChild::recv_GDU(Z_GDU *z_pdu, int len) { m_no_requests++; @@ -288,45 +331,7 @@ void yf::FrontendNet::ZAssocChild::recv_GDU(Z_GDU *z_pdu, int len) if (m_p->m_stat_req.length() && !strcmp(hreq->path, m_p->m_stat_req.c_str())) { - mp::odr o; - - Z_GDU *gdu_res = o.create_HTTP_Response(m_session, hreq, 200); - - Z_HTTP_Response *hres = gdu_res->u.HTTP_Response; - - mp::wrbuf w; - size_t i; - int number_total = 0; - - for (i = 0; m_p->m_duration_lim[i] != 0.0; i++) - number_total += m_p->m_duration_freq[i]; - number_total += m_p->m_duration_freq[i]; - - wrbuf_puts(w, "\n"); - wrbuf_puts(w, "\n"); - wrbuf_printf(w, " \n", number_total); - for (i = 0; m_p->m_duration_lim[i] != 0.0; i++) - { - if (m_p->m_duration_freq[i] > 0) - wrbuf_printf( - w, " \n", - i > 0 ? m_p->m_duration_lim[i - 1] : 0.0, - m_p->m_duration_lim[i], m_p->m_duration_freq[i]); - } - - if (m_p->m_duration_freq[i] > 0) - wrbuf_printf( - w, " \n", - m_p->m_duration_lim[i - 1], m_p->m_duration_freq[i]); - wrbuf_puts(w, " \n"); - wrbuf_puts(w, "\n"); - - hres->content_len = w.len(); - hres->content_buf = (char *) w.buf(); - - int len; - send_GDU(gdu_res, &len); + report(hreq); return; } } @@ -480,7 +485,6 @@ yf::FrontendNet::Rep::Rep() m_duration_lim[21] = 0; } - yf::FrontendNet::Rep::~Rep() { if (az) @@ -492,7 +496,7 @@ yf::FrontendNet::Rep::~Rep() } az = 0; } - + yf::FrontendNet::~FrontendNet() { }