start to written extract_result
[oweals/gnunet.git] / src / my / my.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2016 Inria & GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file my/my.c
22  * @brief library to help with access to a MySQL database
23  * @author Christophe Genevey
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include <mysql/mysql.h>
28 #include "gnunet_my_lib.h"
29
30 #define STRING_SIZE 50
31
32 /**
33  * Run a prepared SELECT statement.
34  *
35  * @param mc mysql context
36  * @param sh handle to SELECT statment
37  * @param params parameters to the statement
38  * @return 
39       #GNUNET_YES if we can prepare all statement
40       #GNUNET_SYSERR if we can't prepare all statement
41  */
42
43 int
44 GNUNET_MY_exec_prepared (struct GNUNET_MYSQL_Context *mc,
45                          struct GNUNET_MYSQL_StatementHandle *sh,
46                          const struct GNUNET_MY_QueryParam *params)
47 {
48   const struct GNUNET_MY_QueryParam *p;
49   unsigned int num;
50   unsigned int i;
51   MYSQL_STMT *stmt;
52
53   num = 0;
54   for (i=0;NULL != params[i].conv;i++)
55     num += params[i].num_params;
56   {
57     MYSQL_BIND qbind[num];
58     unsigned int off;
59
60     memset(qbind, 0, sizeof(qbind));
61     off = 0;
62     for (i=0;NULL != (p = &params[i])->conv;i++)
63     {
64       if (GNUNET_OK !=
65           p->conv (p->conv_cls,
66                    p,
67                    &qbind[off]))
68       {
69         return GNUNET_SYSERR;
70       }
71       off += p->num_params;
72     }
73     stmt = GNUNET_MYSQL_statement_get_stmt (mc, sh);
74     if (mysql_stmt_bind_param (stmt,
75                                qbind))
76     {
77       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "mysql",
78                        _("`%s' failed at %s:%d with error: %s\n"),
79                        "mysql_stmt_bind_param", __FILE__, __LINE__,
80                        mysql_stmt_error (stmt));
81       GNUNET_MYSQL_statements_invalidate (mc);
82       return GNUNET_SYSERR;
83     }
84
85   }
86   if (mysql_stmt_execute (stmt))
87   {
88     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "mysql",
89                      _("`%s' failed at %s:%d with error: %s\n"),
90                      "mysql_stmt_execute", __FILE__, __LINE__,
91                      mysql_stmt_error (stmt));
92     GNUNET_MYSQL_statements_invalidate (mc);
93     return GNUNET_SYSERR;
94   }
95
96   return GNUNET_OK;
97 }
98
99
100 /**
101  * Extract results from a query result according
102  * to the given specification. If colums are NULL,
103  * the destination is not modified, and #GNUNET_NO is returned4
104  *
105  *
106  * @param result
107  * @param row, the row from the result to extract
108  * @param result specificatio to extract for
109  * @return
110     #GNUNET_YES if all results could be extracted
111     #GNUNET_NO if at least one result was NULL
112     #GNUNET_SYSERR if a result was invalid
113 */
114 int
115 GNUNET_MY_extract_result (struct GNUNET_MYSQL_StatementHandle *sh,
116                           struct GNUNET_MY_QueryParam *qp,
117                           struct GNUNET_MY_ResultSpec *rs,
118                           int row)
119 {
120   MYSQL_BIND *result;
121
122   int num_fields;  
123   MYSQL_FIELD *fields;
124   MYSQL_RES *res;
125
126   unsigned int i;
127   unsigned int j;
128   int had_null = GNUNET_NO;
129   int ret;
130   
131   result = NULL;
132   MYSQL_STMT *stmt;
133
134   stmt = GNUNET_MYSQL_statement_get_stmt (NULL /* FIXME */, sh);
135   if (NULL == stmt)
136   {
137     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "mysql",
138                     ("`%s' failed at %s:%d with error: %s\n"),
139                        "mysql_stmt_bind_result", __FILE__, __LINE__,
140                        mysql_stmt_error (stmt));
141     return GNUNET_SYSERR;
142   }
143
144
145   num_fields = mysql_stmt_field_count (stmt);
146   res = mysql_stmt_result_metadata (stmt);
147   fields = mysql_fetch_fields (res);
148
149   int int_data[num_fields];
150   long int long_data[num_fields];
151   short short_data[num_fields];
152   char str_data[STRING_SIZE];
153   int error[num_fields];
154
155   result = (MYSQL_BIND *)malloc (sizeof (MYSQL_BIND)*num_fields);
156   if(!result)
157   {
158     fprintf(stderr, "Error to allocate output buffers\n");
159     return GNUNET_SYSERR;
160   }
161
162   memset(result, 0, sizeof (MYSQL_BIND) * num_fields);
163
164 /** INITIALISER LE MYSQL_BIND ****/
165
166   for(i = 0 ; i< num_fields ;i++)
167   {
168     result[i].buffer_type = fields[i].type; 
169     result[i].is_null = 0;  
170     result[i].error = &error[i];
171
172     switch (fields[i].type)
173     {
174       case MYSQL_TYPE_LONG:
175         result[i].buffer = &(int_data[i]);
176         result[i].buffer_length = sizeof (int_data);
177         break;
178
179       case MYSQL_TYPE_LONGLONG:
180         result[i].buffer = &(long_data[i]);
181         result[i].buffer_length = sizeof (long_data);
182         break;
183
184       case MYSQL_TYPE_STRING:
185         result[i].buffer = (char *)str_data;
186         result[i].buffer_length = sizeof (str_data);
187         break;
188
189       case MYSQL_TYPE_SHORT:
190         result[i].buffer = &(short_data[i]);
191         result[i].buffer_length = sizeof (short_data);
192         break;
193
194       default:
195         fprintf(stderr, "Failed : wrong type : %d!\n", fields[i].type);
196     } 
197   }
198
199   if (mysql_stmt_bind_result(stmt, result))
200   {
201       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "mysql",
202                        _("`%s' failed at %s:%d with error: %s\n"),
203                        "mysql_stmt_bind_result", __FILE__, __LINE__,
204                        mysql_stmt_error (stmt));
205       return GNUNET_SYSERR;
206   }
207
208   /*** FAILED HERE ***/
209   if (mysql_stmt_fetch (stmt))
210   {
211     for(j = 0 ; j < num_fields ;j++)
212     {
213       fprintf(stderr, "Error Bind [%d] : %d\n", j, error[j]);
214     }
215
216     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "mysql",
217                        _("`%s' failed at %s:%d with error: %s\n"),
218                        "mysql_stmt_fetch", __FILE__, __LINE__,
219                        mysql_stmt_error (stmt));
220     return GNUNET_SYSERR;
221   }
222
223 /*
224   while (1)
225   {
226     mysql_stmt_fetch (stmt);
227
228     for (i = 0 ; NULL != rs[i].conv ; i++)
229     {
230       struct GNUNET_MY_ResultSpec *spec;
231
232       spec = &rs[i];
233       ret = spec->conv (spec->conv_cls,
234                         spec,
235                         result);
236
237       if (GNUNET_SYSERR == ret)
238       {
239         return GNUNET_SYSERR;
240       }
241
242       if (NULL != spec->result_size)
243         *spec->result_size = spec->dst_size;
244     }
245   }
246
247   if (GNUNET_YES == had_null)
248     return GNUNET_NO;
249 */
250
251   free (result);
252   return GNUNET_OK;
253 }
254
255 /* end of my.c */