New WRBUF wrapper mp::wrbuf
[metaproxy-moved-to-github.git] / src / util.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2012 Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include <metaproxy/util.hpp>
21
22 #include <yaz/odr.h>
23 #include <yaz/pquery.h>
24 #include <yaz/otherinfo.h>
25 #include <yaz/querytowrbuf.h>
26 #include <yaz/oid_db.h>
27 #include <yaz/srw.h>
28
29 #include <iostream>
30
31 namespace mp = metaproxy_1;
32
33 // Doxygen doesn't like mp::util, so we use this instead
34 namespace mp_util = metaproxy_1::util;
35
36 const char * 
37 mp_util::record_composition_to_esn(Z_RecordComposition *comp)
38 {
39     if (comp && comp->which == Z_RecordComp_complex)
40     {
41         if (comp->u.complex->generic 
42             && comp->u.complex->generic->elementSpec
43             && (comp->u.complex->generic->elementSpec->which == 
44                 Z_ElementSpec_elementSetName))
45             return comp->u.complex->generic->elementSpec->u.elementSetName;
46     }
47     else if (comp && comp->which == Z_RecordComp_simple &&
48              comp->u.simple->which == Z_ElementSetNames_generic)
49         return comp->u.simple->u.generic;
50     return 0;
51 }
52
53
54
55 std::string mp_util::http_header_value(const Z_HTTP_Header* header, 
56                                        const std::string name)
57 {
58     while (header && header->name
59            && std::string(header->name) !=  name)
60         header = header->next;
61     
62     if (header && header->name && std::string(header->name) == name
63         && header->value)
64         return std::string(header->value);
65     
66     return std::string();
67 }
68     
69 std::string mp_util::http_headers_debug(const Z_HTTP_Request &http_req)
70 {
71     std::string message("<html>\n<body>\n<h1>"
72                         "Metaproxy SRUtoZ3950 filter"
73                         "</h1>\n");
74     
75     message += "<h3>HTTP Info</h3><br/>\n";
76     message += "<p>\n";
77     message += "<b>Method: </b> " + std::string(http_req.method) + "<br/>\n";
78     message += "<b>Version:</b> " + std::string(http_req.version) + "<br/>\n";
79     message += "<b>Path:   </b> " + std::string(http_req.path) + "<br/>\n";
80
81     message += "<b>Content-Type:</b>"
82         + mp_util::http_header_value(http_req.headers, "Content-Type")
83         + "<br/>\n";
84     message += "<b>Content-Length:</b>"
85         + mp_util::http_header_value(http_req.headers, "Content-Length")
86         + "<br/>\n";
87     message += "</p>\n";    
88     
89     message += "<h3>Headers</h3><br/>\n";
90     message += "<p>\n";    
91     Z_HTTP_Header* header = http_req.headers;
92     while (header){
93         message += "<b>Header: </b> <i>" 
94             + std::string(header->name) + ":</i> "
95             + std::string(header->value) + "<br/>\n";
96         header = header->next;
97     }
98     message += "</p>\n";    
99     message += "</body>\n</html>\n";
100     return message;
101 }
102
103
104 void mp_util::http_response(metaproxy_1::Package &package, 
105                      const std::string &content, 
106                      int http_code)
107 {
108
109     Z_GDU *zgdu_req = package.request().get(); 
110     Z_GDU *zgdu_res = 0; 
111     mp::odr odr;
112     zgdu_res 
113        = odr.create_HTTP_Response(package.session(), 
114                                   zgdu_req->u.HTTP_Request, 
115                                   http_code);
116         
117     zgdu_res->u.HTTP_Response->content_len = content.size();
118     zgdu_res->u.HTTP_Response->content_buf 
119         = (char*) odr_malloc(odr, zgdu_res->u.HTTP_Response->content_len);
120     
121     strncpy(zgdu_res->u.HTTP_Response->content_buf, 
122             content.c_str(),  zgdu_res->u.HTTP_Response->content_len);
123     
124     //z_HTTP_header_add(odr, &hres->headers,
125     //                  "Content-Type", content_type.c_str());
126     package.response() = zgdu_res;
127 }
128
129
130 int mp_util::memcmp2(const void *buf1, int len1,
131                      const void *buf2, int len2)
132 {
133     int d = len1 - len2;
134
135     // compare buffer (common length)
136     int c = memcmp(buf1, buf2, d > 0 ? len2 : len1);
137     if (c > 0)
138         return 1;
139     else if (c < 0)
140         return -1;
141     
142     // compare (remaining bytes)
143     if (d > 0)
144         return 1;
145     else if (d < 0)
146         return -1;
147     return 0;
148 }
149
150
151 std::string mp_util::database_name_normalize(const std::string &s)
152 {
153     std::string r = s;
154     size_t i;
155     for (i = 0; i < r.length(); i++)
156     {
157         int ch = r[i];
158         if (ch >= 'A' && ch <= 'Z')
159             r[i] = ch + 'a' - 'A';
160     }
161     return r;
162
163 }
164
165 void mp_util::piggyback_sr(Z_SearchRequest *sreq,
166                            Odr_int result_set_size,
167                            Odr_int &number_to_present,
168                            const char **element_set_name)
169 {
170     Z_ElementSetNames *esn;
171     const char *smallSetElementSetNames = 0;
172     const char *mediumSetElementSetNames = 0;
173
174     esn = sreq->smallSetElementSetNames;
175     if (esn && esn->which == Z_ElementSetNames_generic)
176         smallSetElementSetNames = esn->u.generic;
177
178     esn = sreq->mediumSetElementSetNames;
179     if (esn && esn->which == Z_ElementSetNames_generic)
180         mediumSetElementSetNames = esn->u.generic;
181
182     piggyback(*sreq->smallSetUpperBound,
183               *sreq->largeSetLowerBound,
184               *sreq->mediumSetPresentNumber,
185               smallSetElementSetNames,
186               mediumSetElementSetNames,
187               result_set_size,
188               number_to_present,
189               element_set_name);
190 }
191
192 void mp_util::piggyback(int smallSetUpperBound,
193                         int largeSetLowerBound,
194                         int mediumSetPresentNumber,
195                         int result_set_size,
196                         int &number_to_present)
197 {
198     Odr_int tmp = number_to_present;
199     piggyback(smallSetUpperBound, largeSetLowerBound, mediumSetPresentNumber,
200               0, 0, result_set_size, tmp, 0);
201     number_to_present = tmp;
202 }
203
204 void mp_util::piggyback(Odr_int smallSetUpperBound,
205                         Odr_int largeSetLowerBound,
206                         Odr_int mediumSetPresentNumber,
207                         const char *smallSetElementSetNames,
208                         const char *mediumSetElementSetNames,
209                         Odr_int result_set_size,
210                         Odr_int &number_to_present,
211                         const char **element_set_name)
212 {
213     // deal with piggyback
214
215     if (result_set_size < smallSetUpperBound)
216     {
217         // small set . Return all records in set
218         number_to_present = result_set_size;
219         if (element_set_name && smallSetElementSetNames)
220             *element_set_name = smallSetElementSetNames;
221             
222     }
223     else if (result_set_size > largeSetLowerBound)
224     {
225         // large set . Return no records
226         number_to_present = 0;
227         if (element_set_name)
228             *element_set_name = 0;
229     }
230     else
231     {
232         // medium set . Return mediumSetPresentNumber records
233         number_to_present = mediumSetPresentNumber;
234         if (number_to_present > result_set_size)
235             number_to_present = result_set_size;
236         if (element_set_name && mediumSetElementSetNames)
237             *element_set_name = mediumSetElementSetNames;
238     }
239 }
240
241 bool mp_util::pqf(ODR odr, Z_APDU *apdu, const std::string &q)
242 {
243     YAZ_PQF_Parser pqf_parser = yaz_pqf_create();
244     
245     Z_RPNQuery *rpn = yaz_pqf_parse(pqf_parser, odr, q.c_str());
246     if (!rpn)
247     {
248         yaz_pqf_destroy(pqf_parser);
249         return false;
250     }
251     yaz_pqf_destroy(pqf_parser);
252     Z_Query *query = (Z_Query *) odr_malloc(odr, sizeof(Z_Query));
253     query->which = Z_Query_type_1;
254     query->u.type_1 = rpn;
255     
256     apdu->u.searchRequest->query = query;
257     return true;
258 }
259
260
261 std::string mp_util::zQueryToString(Z_Query *query)
262 {
263     std::string query_str = "";
264
265     if (query && query->which == Z_Query_type_1)
266     {
267         Z_RPNQuery *rpn = query->u.type_1;
268         
269         if (rpn)
270         {
271             mp::wrbuf w;
272             
273             // put query in w
274             yaz_rpnquery_to_wrbuf(w, rpn);
275             
276             // from w to std::string
277             query_str = std::string(w.buf(), w.len());
278         }
279     }
280
281 #if 0
282     if (query && query->which == Z_Query_type_1){
283         
284         // allocate wrbuf (strings in YAZ!)
285         WRBUF w = wrbuf_alloc();
286         
287         // put query in w
288         yaz_query_to_wrbuf(w, query);
289         
290         // from w to std::string
291         query_str = std::string(wrbuf_buf(w), wrbuf_len(w));
292         
293         // destroy wrbuf
294         wrbuf_free(w, 1);
295     }    
296 #endif
297     return query_str;
298 }
299
300 void mp_util::get_default_diag(Z_DefaultDiagFormat *r,
301                                          int &error_code, std::string &addinfo)
302 {
303     error_code = *r->condition;
304     switch (r->which)
305     {
306     case Z_DefaultDiagFormat_v2Addinfo:
307         addinfo = std::string(r->u.v2Addinfo);
308         break;
309     case Z_DefaultDiagFormat_v3Addinfo:
310         addinfo = r->u.v3Addinfo;
311         break;
312     }
313 }
314
315 void mp_util::get_init_diagnostics(
316     Z_InitResponse *initrs, int &error_code, std::string &addinfo)
317 {
318     Z_External *uif = initrs->userInformationField;
319     
320     if (uif && uif->which == Z_External_userInfo1)
321     {
322         Z_OtherInformation *ui = uif->u.userInfo1;
323         int i;
324         for (i = 0; i < ui->num_elements; i++)
325         {
326             Z_OtherInformationUnit *unit = ui->list[i];
327             if (unit->which == Z_OtherInfo_externallyDefinedInfo &&
328                 unit->information.externallyDefinedInfo &&
329                 unit->information.externallyDefinedInfo->which ==
330                 Z_External_diag1) 
331             {
332                 Z_DiagnosticFormat *diag = 
333                     unit->information.externallyDefinedInfo->u.diag1;
334
335                 if (diag->num > 0)
336                 {
337                     Z_DiagnosticFormat_s *ds = diag->elements[0];
338                     if (ds->which == Z_DiagnosticFormat_s_defaultDiagRec)
339                         mp::util::get_default_diag(ds->u.defaultDiagRec,
340                                                     error_code, addinfo);
341                 }
342             } 
343         }
344     }
345 }
346
347 int mp_util::get_or_remove_vhost_otherinfo(
348     Z_OtherInformation **otherInformation,
349     bool remove_flag,
350     std::list<std::string> &vhosts)
351 {
352     int cat;
353     for (cat = 1; ; cat++)
354     {
355         // check virtual host
356         const char *vhost =
357             yaz_oi_get_string_oid(otherInformation,
358                                   yaz_oid_userinfo_proxy,
359                                   cat /* categoryValue */,
360                                   remove_flag /* delete flag */);
361         if (!vhost)
362             break;
363         vhosts.push_back(std::string(vhost));
364     }
365     --cat;
366     return cat;
367 }
368
369 void mp_util::get_vhost_otherinfo(
370     Z_OtherInformation *otherInformation,
371     std::list<std::string> &vhosts)
372 {
373     get_or_remove_vhost_otherinfo(&otherInformation, false, vhosts);
374 }
375
376 int mp_util::remove_vhost_otherinfo(
377     Z_OtherInformation **otherInformation,
378     std::list<std::string> &vhosts)
379 {
380     return get_or_remove_vhost_otherinfo(otherInformation, true, vhosts);
381 }
382
383 void mp_util::set_vhost_otherinfo(
384     Z_OtherInformation **otherInformation, ODR odr,
385     const std::list<std::string> &vhosts)
386 {
387     int cat;
388     std::list<std::string>::const_iterator it = vhosts.begin();
389
390     for (cat = 1; it != vhosts.end() ; cat++, it++)
391     {
392         yaz_oi_set_string_oid(otherInformation, odr,
393                               yaz_oid_userinfo_proxy, cat, it->c_str());
394     }
395 }
396
397 void mp_util::set_vhost_otherinfo(
398     Z_OtherInformation **otherInformation, ODR odr,
399     const std::string vhost, const int cat)
400 {
401     yaz_oi_set_string_oid(otherInformation, odr,
402                           yaz_oid_userinfo_proxy, cat, vhost.c_str());
403 }
404
405 void mp_util::split_zurl(std::string zurl, std::string &host,
406                          std::list<std::string> &db)
407 {
408     const char *zurl_cstr = zurl.c_str();
409     const char *sep = strchr(zurl_cstr, '/');
410     
411     if (sep)
412     {
413         host = std::string(zurl_cstr, sep - zurl_cstr);
414
415         const char *cp1 = sep+1;
416         while(1)
417         {
418             const char *cp2 = strchr(cp1, '+');
419             if (cp2)
420                 db.push_back(std::string(cp1, cp2 - cp1));
421             else
422             {
423                 db.push_back(std::string(cp1));
424                 break;
425             }
426             cp1 = cp2+1;
427         }
428     }
429     else
430     {
431         host = zurl;
432     }
433 }
434
435 bool mp_util::set_databases_from_zurl(
436     ODR odr, std::string zurl,
437     int *db_num, char ***db_strings)
438 {
439     std::string host;
440     std::list<std::string> dblist;
441
442     split_zurl(zurl, host, dblist);
443    
444     if (dblist.size() == 0)
445         return false;
446     *db_num = dblist.size();
447     *db_strings = (char **) odr_malloc(odr, sizeof(char*) * (*db_num));
448
449     std::list<std::string>::const_iterator it = dblist.begin();
450     for (int i = 0; it != dblist.end(); it++, i++)
451         (*db_strings)[i] = odr_strdup(odr, it->c_str());
452     return true;
453 }
454
455 mp::odr::odr(int type)
456 {
457     m_odr = odr_createmem(type);
458 }
459
460 mp::odr::odr()
461 {
462     m_odr = odr_createmem(ODR_ENCODE);
463 }
464
465 mp::odr::~odr()
466 {
467     odr_destroy(m_odr);
468 }
469
470 mp::odr::operator ODR() const
471 {
472     return m_odr;
473 }
474
475 Z_APDU *mp::odr::create_close(const Z_APDU *in_apdu,
476                               int reason, const char *addinfo)
477 {
478     Z_APDU *apdu = create_APDU(Z_APDU_close, in_apdu);
479     
480     *apdu->u.close->closeReason = reason;
481     if (addinfo)
482         apdu->u.close->diagnosticInformation = odr_strdup(m_odr, addinfo);
483     return apdu;
484 }
485
486 Z_APDU *mp::odr::create_APDU(int type, const Z_APDU *in_apdu)
487 {
488     return mp::util::create_APDU(m_odr, type, in_apdu);
489 }
490
491 Z_APDU *mp_util::create_APDU(ODR odr, int type, const Z_APDU *in_apdu)
492 {
493     Z_APDU *out_apdu = zget_APDU(odr, type);
494     transfer_referenceId(odr, in_apdu, out_apdu);
495     return out_apdu;
496 }
497
498 void mp_util::transfer_referenceId(ODR odr, const Z_APDU *src, Z_APDU *dst)
499 {
500     Z_ReferenceId **id_to = mp::util::get_referenceId(dst);
501     *id_to = 0;
502     if (src)
503     {
504         Z_ReferenceId **id_from = mp::util::get_referenceId(src);
505         if (id_from && *id_from && id_to)
506         {
507             *id_to = (Z_ReferenceId*) odr_malloc (odr, sizeof(**id_to));
508             (*id_to)->size = (*id_to)->len = (*id_from)->len;
509             (*id_to)->buf = (unsigned char*) odr_malloc(odr, (*id_to)->len);
510             memcpy((*id_to)->buf, (*id_from)->buf, (*id_to)->len);
511         }
512         else if (id_to)
513             *id_to = 0;
514     }
515 }
516
517 Z_APDU *mp::odr::create_initResponse(const Z_APDU *in_apdu,
518                                      int error, const char *addinfo)
519 {
520     Z_APDU *apdu = create_APDU(Z_APDU_initResponse, in_apdu);
521     if (error)
522     {
523         apdu->u.initResponse->userInformationField =
524             zget_init_diagnostics(m_odr, error, addinfo);
525         *apdu->u.initResponse->result = 0;
526     }
527     apdu->u.initResponse->implementationName =
528         odr_prepend(m_odr, "Metaproxy",
529                     apdu->u.initResponse->implementationName);
530     apdu->u.initResponse->implementationVersion = 
531         odr_prepend(m_odr,
532                     VERSION, apdu->u.initResponse->implementationVersion);
533                    
534     return apdu;
535 }
536
537 Z_APDU *mp::odr::create_searchResponse(const Z_APDU *in_apdu,
538                                        int error, const char *addinfo)
539 {
540     Z_APDU *apdu = create_APDU(Z_APDU_searchResponse, in_apdu);
541     if (error)
542     {
543         Z_Records *rec = (Z_Records *) odr_malloc(m_odr, sizeof(Z_Records));
544         *apdu->u.searchResponse->searchStatus = 0;
545         apdu->u.searchResponse->records = rec;
546         rec->which = Z_Records_NSD;
547         rec->u.nonSurrogateDiagnostic =
548             zget_DefaultDiagFormat(m_odr, error, addinfo);
549         
550     }
551     return apdu;
552 }
553
554 Z_APDU *mp::odr::create_presentResponse(const Z_APDU *in_apdu,
555                                         int error, const char *addinfo)
556 {
557     Z_APDU *apdu = create_APDU(Z_APDU_presentResponse, in_apdu);
558     if (error)
559     {
560         Z_Records *rec = (Z_Records *) odr_malloc(m_odr, sizeof(Z_Records));
561         apdu->u.presentResponse->records = rec;
562         
563         rec->which = Z_Records_NSD;
564         rec->u.nonSurrogateDiagnostic =
565             zget_DefaultDiagFormat(m_odr, error, addinfo);
566         *apdu->u.presentResponse->presentStatus = Z_PresentStatus_failure;
567     }
568     return apdu;
569 }
570
571 Z_APDU *mp::odr::create_scanResponse(const Z_APDU *in_apdu,
572                                      int error, const char *addinfo)
573 {
574     Z_APDU *apdu = create_APDU(Z_APDU_scanResponse, in_apdu);
575     Z_ScanResponse *res = apdu->u.scanResponse;
576     res->entries = (Z_ListEntries *) odr_malloc(m_odr, sizeof(*res->entries));
577     res->entries->num_entries = 0;
578     res->entries->entries = 0;
579
580     if (error)
581     {
582         *res->scanStatus = Z_Scan_failure;
583
584         res->entries->num_nonsurrogateDiagnostics = 1;
585         res->entries->nonsurrogateDiagnostics = (Z_DiagRec **)
586             odr_malloc(m_odr, sizeof(Z_DiagRec *));
587         res->entries->nonsurrogateDiagnostics[0] = 
588             zget_DiagRec(m_odr, error, addinfo);
589     }
590     else
591     {
592         res->entries->num_nonsurrogateDiagnostics = 0;
593         res->entries->nonsurrogateDiagnostics = 0;
594     }
595     return apdu;
596 }
597
598 Z_GDU *mp::odr::create_HTTP_Response(mp::Session &session,
599                                      Z_HTTP_Request *hreq, int code)
600 {
601     const char *response_version = "1.0";
602     bool keepalive = false;
603     if (!strcmp(hreq->version, "1.0")) 
604     {
605         const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
606         if (v && !strcmp(v, "Keep-Alive"))
607             keepalive = true;
608         else
609             session.close();
610         response_version = "1.0";
611     }
612     else
613     {
614         const char *v = z_HTTP_header_lookup(hreq->headers, "Connection");
615         if (v && !strcmp(v, "close"))
616             session.close();
617         else
618             keepalive = true;
619         response_version = "1.1";
620     }
621
622     Z_GDU *gdu = z_get_HTTP_Response(m_odr, code);
623     Z_HTTP_Response *hres = gdu->u.HTTP_Response;
624     hres->version = odr_strdup(m_odr, response_version);
625     if (keepalive)
626         z_HTTP_header_add(m_odr, &hres->headers, "Connection", "Keep-Alive");
627     
628     return gdu;
629 }
630
631 Z_ReferenceId **mp_util::get_referenceId(const Z_APDU *apdu)
632 {
633     switch (apdu->which)
634     {
635     case  Z_APDU_initRequest:
636         return &apdu->u.initRequest->referenceId; 
637     case  Z_APDU_initResponse:
638         return &apdu->u.initResponse->referenceId;
639     case  Z_APDU_searchRequest:
640         return &apdu->u.searchRequest->referenceId;
641     case  Z_APDU_searchResponse:
642         return &apdu->u.searchResponse->referenceId;
643     case  Z_APDU_presentRequest:
644         return &apdu->u.presentRequest->referenceId;
645     case  Z_APDU_presentResponse:
646         return &apdu->u.presentResponse->referenceId;
647     case  Z_APDU_deleteResultSetRequest:
648         return &apdu->u.deleteResultSetRequest->referenceId;
649     case  Z_APDU_deleteResultSetResponse:
650         return &apdu->u.deleteResultSetResponse->referenceId;
651     case  Z_APDU_accessControlRequest:
652         return &apdu->u.accessControlRequest->referenceId;
653     case  Z_APDU_accessControlResponse:
654         return &apdu->u.accessControlResponse->referenceId;
655     case  Z_APDU_resourceControlRequest:
656         return &apdu->u.resourceControlRequest->referenceId;
657     case  Z_APDU_resourceControlResponse:
658         return &apdu->u.resourceControlResponse->referenceId;
659     case  Z_APDU_triggerResourceControlRequest:
660         return &apdu->u.triggerResourceControlRequest->referenceId;
661     case  Z_APDU_resourceReportRequest:
662         return &apdu->u.resourceReportRequest->referenceId;
663     case  Z_APDU_resourceReportResponse:
664         return &apdu->u.resourceReportResponse->referenceId;
665     case  Z_APDU_scanRequest:
666         return &apdu->u.scanRequest->referenceId;
667     case  Z_APDU_scanResponse:
668         return &apdu->u.scanResponse->referenceId;
669     case  Z_APDU_sortRequest:
670         return &apdu->u.sortRequest->referenceId;
671     case  Z_APDU_sortResponse:
672         return &apdu->u.sortResponse->referenceId;
673     case  Z_APDU_segmentRequest:
674         return &apdu->u.segmentRequest->referenceId;
675     case  Z_APDU_extendedServicesRequest:
676         return &apdu->u.extendedServicesRequest->referenceId;
677     case  Z_APDU_extendedServicesResponse:
678         return &apdu->u.extendedServicesResponse->referenceId;
679     case  Z_APDU_close:
680         return &apdu->u.close->referenceId;
681     }
682     return 0;
683 }
684
685 std::string mp_util::uri_encode(std::string s)
686 {
687     char *x = (char *) xmalloc(1 + s.length() * 3);
688     yaz_encode_uri_component(x, s.c_str());
689     std::string result(x);
690     xfree(x);
691     return result;
692 }
693
694
695 std::string mp_util::uri_decode(std::string s)
696 {
697     char *x = (char *) xmalloc(1 + s.length());
698     yaz_decode_uri_component(x, s.c_str(), s.length());
699     std::string result(x);
700     xfree(x);
701     return result;
702 }
703
704 mp::wrbuf::wrbuf()
705 {
706     m_wrbuf = wrbuf_alloc();
707 }
708
709 mp::wrbuf::~wrbuf()
710 {
711     wrbuf_destroy(m_wrbuf);
712 }
713
714 mp::wrbuf::operator WRBUF() const
715 {
716     return m_wrbuf;
717 }
718
719 size_t mp::wrbuf::len()
720 {
721     return wrbuf_len(m_wrbuf);
722 }
723
724 const char *mp::wrbuf::buf()
725 {
726     return wrbuf_buf(m_wrbuf);
727 }
728
729
730 /*
731  * Local variables:
732  * c-basic-offset: 4
733  * c-file-style: "Stroustrup"
734  * indent-tabs-mode: nil
735  * End:
736  * vim: shiftwidth=4 tabstop=8 expandtab
737  */
738