aboutsummaryrefslogtreecommitdiff
path: root/src/my
diff options
context:
space:
mode:
authorChristophe Genevey Metat <genevey.christophe@gmail.com>2016-05-19 16:30:11 +0000
committerChristophe Genevey Metat <genevey.christophe@gmail.com>2016-05-19 16:30:11 +0000
commit81224501b6a9483907571508460e41617643050f (patch)
treed414d8ef3d65b5d1495cb901ba66014aa8f8c1cc /src/my
parentf1f8aa05f4c44042a4d59300b44955481bb3c2b0 (diff)
downloadgnunet-81224501b6a9483907571508460e41617643050f.tar.gz
gnunet-81224501b6a9483907571508460e41617643050f.zip
GNUNET extract result libgnunetmy
Diffstat (limited to 'src/my')
-rw-r--r--src/my/my.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/my/my.c b/src/my/my.c
index 62b1ede09..71d30dd16 100644
--- a/src/my/my.c
+++ b/src/my/my.c
@@ -90,5 +90,49 @@ GNUNET_MY_exec_prepared (struct GNUNET_MYSQL_Context *mc,
90 return GNUNET_OK; 90 return GNUNET_OK;
91} 91}
92 92
93/**
94 * Extract results from a query result according
95 * to the given specification. If colums are NULL,
96 * the destination is not modified, and #GNUNET_NO is returned
97 *
98 *
99 * @param result
100 * @param row, the row from the result to extract
101 * @param result specificatio to extract for
102 * @return
103 #GNUNET_YES if all results could be extracted
104 #GNUNET_NO if at least one result was NULL
105 #GNUNET_SYSERR if a result was invalid
106*/
107int
108GNUNET_MY_extract_result (MYSQL_BIND * result,
109 int row,
110 struct GNUNET_MY_ResultSpec *specs)
111{
112 unsigned int i ;
113 int had_null = GNUNET_NO ;
114 int ret ;
115
116 for(i = 0 ; NULL != specs[i].conv ; i++)
117 {
118 struct GNUNET_MY_ResultSpec * spec ;
119
120 spec = &specs[i] ;
121 ret = spec->conv(spec->conv_cls,
122 NULL, //wait GNUNET_MY_QueryParam
123 result);
124
125 if(ret == GNUNET_SYSERR)
126 return GNUNET_SYSERR ;
127
128 if(spec->result_size != NULL)
129 *spec->result_size = spec->dst_size;
130 }
131
132 if(GNUNET_YES == had_null)
133 return GNUNET_NO ;
134
135 return GNUNET_OK ;
136}
93 137
94/* end of my.c */ 138/* end of my.c */