finish to fix memory leak
[oweals/gnunet.git] / src / my / my_result_helper.c
1  /*
2   This file is part of GNUnet
3   Copyright (C) 2014, 2015, 2016 GNUnet e.V.
4
5   GNUnet is free software; you can redistribute it and/or modify it under the
6   terms of the GNU General Public License as published by the Free Software
7   Foundation; either version 3, or (at your option) any later version.
8
9   GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY
10   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11   A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12
13   You should have received a copy of the GNU General Public License along with
14   GNUnet; see the file COPYING.  If not, If not, see <http://www.gnu.org/licenses/>
15 */
16 /**
17  * @file my/my_result_helper.c
18  * @brief functions to extract result values
19  * @author Christophe Genevey
20  */
21
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24 #include "gnunet_my_lib.h"
25
26
27 /**
28  * extract data from a Mysql database @a result at row @a row
29  *
30  * @param cls closure
31  * @param[in,out] rs
32  * @param stmt the mysql statement that is being run
33  * @param column the column that is being processed
34  * @param[out] result mysql result
35  * @return
36  *   #GNUNET_OK if all results could be extracted
37  *   #GNUNET_SYSERR if a result was invalid
38  */
39 static int
40 pre_extract_varsize_blob (void *cls,
41                           struct GNUNET_MY_ResultSpec *rs,
42                           MYSQL_STMT *stmt,
43                           unsigned int column,
44                           MYSQL_BIND *results)
45 {
46   results[0].buffer = NULL;
47   results[0].buffer_length = 0;
48   results[0].length = &rs->mysql_bind_output_length;
49
50   return GNUNET_OK;
51 }
52
53
54 /**
55  * extract data from a Mysql database @a result at row @a row
56  *
57  * @param cls closure
58  * @param[in,out] rs
59  * @param stmt the mysql statement that is being run
60  * @param column the column that is being processed
61  * @param[out] results
62  * @return
63  *   #GNUNET_OK if all results could be extracted
64  *   #GNUNET_SYSERR if a result was invalid
65  */
66 static int
67 post_extract_varsize_blob (void *cls,
68                            struct GNUNET_MY_ResultSpec *rs,
69                            MYSQL_STMT *stmt,
70                            unsigned int column,
71                            MYSQL_BIND *results)
72 {
73   void *buf;
74   size_t size;
75
76   size = (size_t) rs->mysql_bind_output_length;
77
78   if (rs->mysql_bind_output_length != size)
79     return GNUNET_SYSERR; /* 'unsigned long' does not fit in size_t!? */
80
81   buf = GNUNET_malloc (size);
82
83   results[0].buffer = buf;
84   results[0].buffer_length = size;
85   results[0].buffer_type = MYSQL_TYPE_BLOB;
86
87   if (0 !=
88       mysql_stmt_fetch_column (stmt,
89                                results,
90                                column,
91                                0))
92   {
93     GNUNET_free (buf);
94     return GNUNET_SYSERR;
95   }
96
97   *(void **) rs->dst = buf;
98   *rs->result_size = size;
99
100   return GNUNET_OK;
101 }
102
103
104 /**
105  * extract data from a Mysql database @a result at row @a row
106  *
107  * @param cls closure
108  * @param[in,out] rs
109  */
110 static void
111 cleanup_varsize_blob (void *cls,
112                       struct GNUNET_MY_ResultSpec *rs)
113 {
114   void **ptr = (void **)rs->dst;
115
116   if (NULL != *ptr)
117   {
118     GNUNET_free (*ptr);
119     *ptr = NULL;  
120   }
121 }
122
123
124 /**
125  * Variable-size result expected
126  *
127  * @param[out] dst where to store the result, allocated
128  * @param[out] ptr_size where to store the size of @a dst
129  * @return array entru for the result specification to use
130  */
131 struct GNUNET_MY_ResultSpec
132 GNUNET_MY_result_spec_variable_size (void **dst,
133                                     size_t *ptr_size)
134 {
135   struct GNUNET_MY_ResultSpec res =
136   {
137     .pre_conv = &pre_extract_varsize_blob,
138     .post_conv = &post_extract_varsize_blob,
139     .cleaner = &cleanup_varsize_blob,
140     .dst =  (void *)(dst),
141     .result_size = ptr_size,
142     .num_fields = 1
143   };
144
145   return res;
146 }
147
148
149 /**
150  * Extract data from a Mysql database @a result at row @a row
151  *
152  * @param cls closure
153  * @param[in,out] rs
154  * @param stmt the mysql statement that is being run
155  * @param column the column that is being processed
156  * @param[out] results
157  * @return
158  *  #GNUNET_OK if all results could be extracted
159  *  #GNUNET_SYSERR if a result was invalid(non-existing field or NULL)
160  */
161 static int
162 pre_extract_fixed_blob (void *cls,
163                         struct GNUNET_MY_ResultSpec *rs,
164                         MYSQL_STMT *stmt,
165                         unsigned int column,
166                         MYSQL_BIND *results)
167 {
168   results[0].buffer = rs->dst;
169   results[0].buffer_length = rs->dst_size;
170   results[0].length = &rs->mysql_bind_output_length;
171   results[0].buffer_type = MYSQL_TYPE_BLOB;
172
173   return GNUNET_OK;
174 }
175
176
177 /**
178  * Check size of extracted fixed size data from a Mysql database @a
179  * result at row @a row
180  *
181  * @param cls closure
182  * @param[in,out] rs
183  * @param stmt the mysql statement that is being run
184  * @param column the column that is being processed
185  * @param[out] results
186  * @return
187  *  #GNUNET_OK if all results could be extracted
188  *  #GNUNET_SYSERR if a result was invalid(non-existing field or NULL)
189  */
190 static int
191 post_extract_fixed_blob (void *cls,
192                          struct GNUNET_MY_ResultSpec *rs,
193                          MYSQL_STMT *stmt,
194                          unsigned int column,
195                          MYSQL_BIND *results)
196 {
197   if (rs->dst_size != rs->mysql_bind_output_length)
198     return GNUNET_SYSERR;
199   return GNUNET_OK;
200 }
201
202
203 /**
204  * Fixed-size result expected.
205  *
206  * @param name name of the field in the table
207  * @param[out] dst where to store the result
208  * @param ptr_size number of bytes in @a dst
209  * @return array entry for the result specification to use
210  */
211 struct GNUNET_MY_ResultSpec
212 GNUNET_MY_result_spec_fixed_size (void *ptr,
213                                   size_t ptr_size)
214 {
215   struct GNUNET_MY_ResultSpec res =
216   {
217     .pre_conv = &pre_extract_fixed_blob,
218     .post_conv = &post_extract_fixed_blob,
219     .cleaner = NULL,
220     .dst = (void *)(ptr),
221     .dst_size = ptr_size,
222     .num_fields = 1
223   };
224
225   return res;
226 }
227
228
229 /**
230   * Extract data from a Mysql database @a result at row @a row
231   *
232   * @param cls closure
233   * @param[in,out] rs
234   * @param stmt the mysql statement that is being run
235   * @param column the column that is being processed
236   * @param[out] results
237   * @return
238   *   #GNUNET_OK if all results could be extracted
239   *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
240   */
241 static int
242 pre_extract_rsa_public_key (void *cls,
243                             struct GNUNET_MY_ResultSpec *rs,
244                             MYSQL_STMT *stmt,
245                             unsigned int column,
246                             MYSQL_BIND *results)
247 {
248   results[0].buffer = NULL;
249   results[0].buffer_length = 0;
250   results[0].length = &rs->mysql_bind_output_length;
251   results[0].buffer_type = MYSQL_TYPE_BLOB;
252
253   return GNUNET_OK;
254 }
255
256
257 /**
258   * Check size of extracted fixed size data from a Mysql database @a
259   * result at row @a row
260   *
261   * @param cls closure
262   * @param[in,out] rs
263   * @param stmt the mysql statement that is being run
264   * @param column the column that is being processed
265   * @param[out] results
266   * @return
267   *   #GNUNET_OK if all results could be extracted
268   *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
269   */
270 static int
271 post_extract_rsa_public_key  (void *cls,
272                               struct GNUNET_MY_ResultSpec *rs,
273                               MYSQL_STMT *stmt,
274                               unsigned int column,
275                               MYSQL_BIND *results)
276
277 {
278   struct GNUNET_CRYPTO_RsaPublicKey **pk = rs->dst;
279   void *buf;
280   size_t size;
281
282   size = (size_t) rs->mysql_bind_output_length;
283
284   if (rs->mysql_bind_output_length != size)
285     return GNUNET_SYSERR; /* 'unsigned long' does not fit in size_t!? */
286   buf = GNUNET_malloc (size);
287
288   results[0].buffer = buf;
289   results[0].buffer_length = size;
290   results[0].buffer_type = MYSQL_TYPE_BLOB;
291   if (0 !=
292       mysql_stmt_fetch_column (stmt,
293                                results,
294                                column,
295                                0))
296   {
297     GNUNET_free (buf);
298     return GNUNET_SYSERR;
299   }
300   
301   *pk = GNUNET_CRYPTO_rsa_public_key_decode (buf,
302                                              size);
303   GNUNET_free (buf);
304   if (NULL == *pk)
305   {
306     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
307                 "Results contains bogus public key value (fail to decode)\n");
308     return GNUNET_SYSERR;
309   }
310
311   return GNUNET_OK;
312 }
313
314
315 /**
316  * Function called to clean up memory allocated
317  * by a #GNUNET_MY_ResultConverter.
318  *
319  * @param cls closure
320  * @param rs result data to clean up
321  */
322 static void
323 clean_rsa_public_key (void *cls,
324                       struct GNUNET_MY_ResultSpec *rs)
325 {
326   struct GNUNET_CRYPTO_RsaPublicKey **pk = rs->dst;
327
328   if (NULL != *pk)
329   {
330     GNUNET_CRYPTO_rsa_public_key_free (*pk);
331     *pk = NULL;
332   }
333 }
334
335
336 /**
337   * RSA public key expected
338   *
339   * @param name name of the field in the table
340   * @param[out] rsa where to store the result
341   * @return array entry for the result specification to use
342   */
343 struct GNUNET_MY_ResultSpec
344 GNUNET_MY_result_spec_rsa_public_key (struct GNUNET_CRYPTO_RsaPublicKey **rsa)
345 {
346   struct GNUNET_MY_ResultSpec res = {
347     .pre_conv = &pre_extract_rsa_public_key,
348     .post_conv = &post_extract_rsa_public_key,
349     .cleaner = &clean_rsa_public_key,
350     .dst = (void *) rsa,
351     .dst_size = 0,
352     .num_fields = 1
353   };
354
355   return res;
356 }
357
358
359 /**
360   * Extract data from a Mysql database @a result at row @a row.
361   *
362   * @param cls closure
363   * @param[in,out] rs
364   * @param stmt the mysql statement that is being run
365   * @param column the column that is being processed
366   * @param[out] results
367   * @return
368   *    #GNUNET_OK if all results could be extracted
369   *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
370   */
371 static int
372 pre_extract_rsa_signature (void *cls,
373                       struct GNUNET_MY_ResultSpec *rs,
374                       MYSQL_STMT *stmt,
375                       unsigned int column,
376                       MYSQL_BIND *results)
377 {
378   results[0].buffer = 0;
379   results[0].buffer_length = 0;
380   results[0].length = &rs->mysql_bind_output_length;
381   results[0].buffer_type = MYSQL_TYPE_BLOB;
382
383   return GNUNET_OK;
384 }
385
386
387 /**
388   * Extract data from a Mysql database @a result at row @a row.
389   *
390   * @param cls closure
391   * @param[in,out] rs
392   * @param stmt the mysql statement that is being run
393   * @param column the column that is being processed
394   * @param[out] results
395   * @return
396   *    #GNUNET_OK if all results could be extracted
397   *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
398   */
399 static int
400 post_extract_rsa_signature (void *cls,
401                       struct GNUNET_MY_ResultSpec *rs,
402                       MYSQL_STMT *stmt,
403                       unsigned int column,
404                       MYSQL_BIND *results)
405 {
406   struct GNUNET_CRYPTO_RsaSignature **sig = rs->dst;
407   void *buf;
408   size_t size;
409
410   size = (size_t) rs->mysql_bind_output_length;
411
412   if (rs->mysql_bind_output_length != size)
413     return GNUNET_SYSERR; /* 'unsigned long' does not fit in size_t!? */
414   buf = GNUNET_malloc (size);
415
416   results[0].buffer = buf;
417   results[0].buffer_length = size;
418   results[0].buffer_type = MYSQL_TYPE_BLOB;
419   if (0 !=
420       mysql_stmt_fetch_column (stmt,
421                                results,
422                                column,
423                                0))
424   {
425     GNUNET_free (buf);
426     return GNUNET_SYSERR;
427   }
428
429   *sig = GNUNET_CRYPTO_rsa_signature_decode (buf,
430                                              size);
431   GNUNET_free (buf);
432   if (NULL == *sig)
433   {
434     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
435                 "Resuls contains bogus signature value (fails to decode)\n");
436     return GNUNET_SYSERR;
437   }
438   return GNUNET_OK;
439 }
440
441
442 /**
443  * Function called to clean up memory allocated
444  * by a #GNUNET_MY_ResultConverter.
445  *
446  * @param cls closure
447  * @param rd result data to clean up
448  */
449 static void
450 clean_rsa_signature (void *cls,
451           struct GNUNET_MY_ResultSpec *rs)
452 {
453   struct GNUNET_CRYPTO_RsaSignature **sig = rs->dst;
454
455   if (NULL != *sig)
456   {
457     GNUNET_CRYPTO_rsa_signature_free (*sig);
458     *sig = NULL;
459   }
460 }
461
462
463 /**
464   * RSA signature expected.
465   *
466   * @param[out] sig where to store the result;
467   * @return array entry for the result specification to use
468   */
469 struct GNUNET_MY_ResultSpec
470 GNUNET_MY_result_spec_rsa_signature (struct GNUNET_CRYPTO_RsaSignature **sig)
471 {
472   struct GNUNET_MY_ResultSpec res =
473   {
474     .pre_conv = &pre_extract_rsa_signature,
475     .post_conv = &post_extract_rsa_signature,
476     .cleaner = &clean_rsa_signature,
477     .dst = (void *)sig,
478     .dst_size = 0,
479     .num_fields = 1
480   };
481   return res;
482 }
483
484
485 /**
486   * Extract data from a Mysql database @a result at row @a row
487   *
488   * @param cls closure
489   * @param[in,out] rs
490   * @param stmt the mysql statement that is being run
491   * @param column the column that is being processed
492   * @param[out] results
493   * @return
494   *    #GNUNET_OK if all results could be extracted
495   *    #GNUNET_SYSERR if a result was invalid (non existing field or NULL)
496   */
497 static int
498 pre_extract_string (void * cls,
499                 struct GNUNET_MY_ResultSpec *rs,
500                 MYSQL_STMT *stmt,
501                 unsigned int column,
502                 MYSQL_BIND *results)
503 {
504   results[0].buffer = (char *)rs->dst;
505   results[0].buffer_length = rs->dst_size;
506   results[0].length = &rs->mysql_bind_output_length;
507  
508   return GNUNET_OK;
509 }
510
511
512 /**
513   * Check size of extracted fixed size data from a Mysql database @a
514   *
515   * @param cls closure
516   * @param[in,out] rs
517   * @param stmt the mysql statement that is being run
518   * @param column the column that is being processed
519   * @param[out] results
520   * @return
521   *    #GNUNET_OK if all results could be extracted
522   *    #GNUNET_SYSERR if a result was invalid (non existing field or NULL)
523   */
524 static int
525 post_extract_string (void * cls,
526                 struct GNUNET_MY_ResultSpec *rs,
527                 MYSQL_STMT *stmt,
528                 unsigned int column,
529                 MYSQL_BIND *results)
530 {
531   if (rs->dst_size != rs->mysql_bind_output_length)
532     return GNUNET_SYSERR;
533   return GNUNET_OK;
534 }
535
536
537 /**
538  * 0- terminated string exprected.
539  *
540  * @param[out] dst where to store the result, allocated
541  * @return array entry for the result specification to use
542  */
543 struct GNUNET_MY_ResultSpec
544 GNUNET_MY_result_spec_string (char **dst)
545 {
546   struct GNUNET_MY_ResultSpec res = {
547     .pre_conv = &pre_extract_string,
548     .post_conv = &post_extract_string,
549     .cleaner = NULL,
550     .dst = (void *) dst,
551     .dst_size = 0,
552     .num_fields = 1
553   };
554   return res;
555 }
556
557
558 /**
559  * Absolute time expected
560  *
561  * @param name name of the field in the table
562  * @param[out] at where to store the result
563  * @return array entry for the result specification to use
564   */
565 struct GNUNET_MY_ResultSpec
566 GNUNET_MY_result_spec_absolute_time (struct GNUNET_TIME_Absolute *at)
567 {
568   return GNUNET_MY_result_spec_uint64 (&at->abs_value_us);
569 }
570
571
572 /**
573   * Absolute time in network byte order expected
574   *
575   * @param[out] at where to store the result
576   * @return array entry for the result specification to use
577   */
578 struct GNUNET_MY_ResultSpec
579 GNUNET_MY_result_spec_absolute_time_nbo (struct GNUNET_TIME_AbsoluteNBO *at)
580 {
581   struct GNUNET_MY_ResultSpec res =
582     GNUNET_MY_result_spec_auto_from_type (&at->abs_value_us__);
583   return res;
584 }
585
586
587 /**
588  * Extract data from a Postgres database @a result at row @a row.
589  *
590  * @param cls closure
591  * @param[in,out] rs
592  * @param stmt the mysql statement that is being run
593  * @param column the column that is being processed
594  * @param[out] results
595  * @return
596  *   #GNUNET_YES if all results could be extracted
597  *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
598  */
599 static int
600 pre_extract_uint16 (void *cls,
601                 struct GNUNET_MY_ResultSpec *rs,
602                 MYSQL_STMT *stmt,
603                 unsigned int column,
604                 MYSQL_BIND *results)
605 {
606   results[0].buffer = (char *)rs->dst;
607   results[0].buffer_length = rs->dst_size;
608   results[0].length = &rs->mysql_bind_output_length;
609   results[0].buffer_type = MYSQL_TYPE_SHORT;
610
611   return GNUNET_OK;
612 }
613
614
615 /**
616  * Check size of extracted fixed size data from a Mysql datbase.
617  *
618  * @param cls closure
619  * @param[in,out] rs
620  * @param stmt the mysql statement that is being run
621  * @param column the column that is being processed
622  * @param[out] results
623  * @return
624  *   #GNUNET_YES if all results could be extracted
625  *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
626  */
627 static int
628 post_extract_uint16 (void *cls,
629                 struct GNUNET_MY_ResultSpec *rs,
630                 MYSQL_STMT *stmt,
631                 unsigned int column,
632                 MYSQL_BIND *results)
633 {
634   if (rs->dst_size != rs->mysql_bind_output_length)
635     return GNUNET_SYSERR;
636   return GNUNET_OK;
637 }
638
639
640 /**
641  * uint16_t expected
642  *
643  * @param[out] u16 where to store the result
644  * @return array entry for the result specification to use
645  */
646 struct GNUNET_MY_ResultSpec
647 GNUNET_MY_result_spec_uint16 (uint16_t *u16)
648 {
649   struct GNUNET_MY_ResultSpec res = {
650     .pre_conv = &pre_extract_uint16,
651     .post_conv = &post_extract_uint16,
652     .cleaner = NULL,
653     .dst = (void *) u16,
654     .dst_size = sizeof (*u16),
655     .num_fields = 1
656   };
657   return res;
658 }
659
660
661 /**
662   * Extrac data from a  MYSQL database @a result at row @a row
663   *
664   * @param cls closure
665   * @param cls closure
666   * @param[in,out] rs
667   * @param stmt the mysql statement that is being run
668   * @param column the column that is being processed
669   * @param[out] results
670   * @return
671   *      #GNUNET_OK if all results could be extracted
672   *      #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
673   */
674 static int
675 pre_extract_uint32 (void *cls,
676                 struct GNUNET_MY_ResultSpec *rs,
677                 MYSQL_STMT *stmt,
678                 unsigned int column,
679                 MYSQL_BIND *results)
680 {
681   results[0].buffer = (int *)rs->dst;
682   results[0].buffer_length = rs->dst_size;
683   results[0].length = &rs->mysql_bind_output_length;
684   results[0].buffer_type = MYSQL_TYPE_LONG;
685
686   return GNUNET_OK;
687 }
688
689
690 /**
691   * Extrac data from a  MYSQL database @a result at row @a row
692   *
693   * @param cls closure
694   * @param cls closure
695   * @param[in,out] rs
696   * @param stmt the mysql statement that is being run
697   * @param column the column that is being processed
698   * @param[out] results
699   * @return
700   *      #GNUNET_OK if all results could be extracted
701   *      #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
702   */
703 static int
704 post_extract_uint32 (void *cls,
705                 struct GNUNET_MY_ResultSpec *rs,
706                 MYSQL_STMT * stmt,
707                 unsigned int column,
708                 MYSQL_BIND *results)
709 {
710   if (rs->dst_size != rs->mysql_bind_output_length)
711       return GNUNET_SYSERR;
712   return GNUNET_OK;
713 }
714
715
716 /**
717   * uint32_t expected
718   *
719   * @param[out] u32 where to store the result
720   * @return array entry for the result specification to use
721   */
722 struct GNUNET_MY_ResultSpec
723 GNUNET_MY_result_spec_uint32 (uint32_t *u32)
724 {
725   struct GNUNET_MY_ResultSpec res = {
726     .pre_conv = &pre_extract_uint32,
727     .post_conv = &post_extract_uint32,
728     .cleaner = NULL,
729     .dst = (void *) u32,
730     .dst_size = sizeof (*u32),
731     .num_fields = 1
732   };
733   return res;
734 }
735
736
737 /**
738   * Extract data from a MYSQL database @a result at row @a row
739   *
740   * @param cls closure
741   * @param[in,out] rs
742   * @param stmt the mysql statement that is being run
743   * @param column the column that is being processed
744   * @param[out] results
745   * @return
746   *    #GNUNET_OK if all results could be extracted
747   *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
748   */
749 static int
750 pre_extract_uint64 (void *cls,
751                 struct GNUNET_MY_ResultSpec *rs,
752                 MYSQL_STMT *stmt,
753                 unsigned int column,
754                 MYSQL_BIND *results)
755 {
756   results[0].buffer = rs->dst;
757   results[0].buffer_length = rs->dst_size;
758   results[0].length = &rs->mysql_bind_output_length;
759   results[0].buffer_type = MYSQL_TYPE_LONGLONG;
760
761   return GNUNET_OK;
762 }
763
764
765 /**
766   * Check size of extracted fixe size data from a Mysql database
767   *
768   * @param cls closure
769   * @param[in,out] rs
770   * @param stmt the mysql statement that is being run
771   * @param column the column that is being processed
772   * @param[out] results
773   * @return
774   *    #GNUNET_OK if all results could be extracted
775   *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
776   */
777 static int
778 post_extract_uint64 (void *cls,
779                 struct GNUNET_MY_ResultSpec *rs,
780                 MYSQL_STMT *stmt,
781                 unsigned int column,
782                 MYSQL_BIND *results)
783 {
784   if (rs->dst_size != rs->mysql_bind_output_length)
785     return GNUNET_SYSERR;
786   return GNUNET_OK;
787 }
788
789
790 /**
791   * uint64_t expected.
792   *
793   * @param[out] u64 where to store the result
794   * @return array entry for the result specification to use
795   */
796 struct GNUNET_MY_ResultSpec
797 GNUNET_MY_result_spec_uint64 (uint64_t *u64)
798 {
799   struct GNUNET_MY_ResultSpec res = {
800     .pre_conv = &pre_extract_uint64,
801     .post_conv = &post_extract_uint64,
802     .cleaner = NULL,
803     .dst = (void *) u64,
804     .dst_size = sizeof (*u64),
805     .num_fields = 1
806   };
807   return res;
808 }
809
810
811 /* end of pq_result_helper.c */