2016-02-06 17:39:18 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
Copyright (C) 2014, 2015, 2016 GNUnet e.V.
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2016-07-07 17:55:25 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-02-06 17:39:18 +01:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file pq/pq_result_helper.c
|
|
|
|
* @brief functions to initialize parameter arrays
|
|
|
|
* @author Christian Grothoff
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include "taler_pq_lib.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract a currency amount from a query result according to the
|
|
|
|
* given specification.
|
|
|
|
*
|
|
|
|
* @param result the result to extract the amount from
|
|
|
|
* @param row which row of the result to extract the amount from (needed as results can have multiple rows)
|
|
|
|
* @param val_name name of the column with the amount's "value", must include the substring "_val".
|
|
|
|
* @param frac_name name of the column with the amount's "fractional" value, must include the substring "_frac".
|
|
|
|
* @param curr_name name of the column with the amount's currency name, must include the substring "_curr".
|
|
|
|
* @param[out] r_amount_nbo where to store the amount, in network byte order
|
|
|
|
* @return
|
|
|
|
* #GNUNET_YES if all results could be extracted
|
|
|
|
* #GNUNET_NO if at least one result was NULL
|
|
|
|
* #GNUNET_SYSERR if a result was invalid (non-existing field)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
extract_amount_nbo_helper (PGresult *result,
|
2019-08-17 21:35:21 +02:00
|
|
|
int row,
|
|
|
|
const char *currency,
|
|
|
|
const char *val_name,
|
|
|
|
const char *frac_name,
|
|
|
|
struct TALER_AmountNBO *r_amount_nbo)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
|
|
|
int val_num;
|
|
|
|
int frac_num;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
/* These checks are simply to check that clients obey by our naming
|
|
|
|
conventions, and not for any functional reason */
|
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
strstr (val_name,
|
|
|
|
"_val"));
|
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
strstr (frac_name,
|
|
|
|
"_frac"));
|
|
|
|
/* Set return value to invalid in case we don't finish */
|
|
|
|
memset (r_amount_nbo,
|
|
|
|
0,
|
|
|
|
sizeof (struct TALER_AmountNBO));
|
|
|
|
val_num = PQfnumber (result,
|
|
|
|
val_name);
|
|
|
|
frac_num = PQfnumber (result,
|
|
|
|
frac_name);
|
2016-03-19 15:23:11 +01:00
|
|
|
if (val_num < 0)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
2016-02-07 15:02:49 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-17 21:35:21 +02:00
|
|
|
"Field `%s' does not exist in result\n",
|
|
|
|
val_name);
|
2016-02-07 15:02:49 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (frac_num < 0)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-17 21:35:21 +02:00
|
|
|
"Field `%s' does not exist in result\n",
|
|
|
|
frac_name);
|
2016-02-06 17:39:18 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if ( (PQgetisnull (result,
|
|
|
|
row,
|
|
|
|
val_num)) ||
|
|
|
|
(PQgetisnull (result,
|
|
|
|
row,
|
2019-08-17 21:35:21 +02:00
|
|
|
frac_num)) )
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
/* Note that Postgres stores value in NBO internally,
|
|
|
|
so no conversion needed in this case */
|
|
|
|
r_amount_nbo->value = *(uint64_t *) PQgetvalue (result,
|
|
|
|
row,
|
|
|
|
val_num);
|
|
|
|
r_amount_nbo->fraction = *(uint32_t *) PQgetvalue (result,
|
|
|
|
row,
|
|
|
|
frac_num);
|
|
|
|
len = GNUNET_MIN (TALER_CURRENCY_LEN - 1,
|
2019-08-17 21:35:21 +02:00
|
|
|
strlen (currency));
|
2016-02-06 17:39:18 +01:00
|
|
|
memcpy (r_amount_nbo->currency,
|
2019-08-17 21:35:21 +02:00
|
|
|
currency,
|
2016-02-06 17:39:18 +01:00
|
|
|
len);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract data from a Postgres database @a result at row @a row.
|
|
|
|
*
|
2019-08-17 21:35:21 +02:00
|
|
|
* @param cls closure, a `const char *` giving the currency
|
2016-02-06 17:39:18 +01:00
|
|
|
* @param result where to extract data from
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param row row to extract data from
|
2016-02-06 17:39:18 +01:00
|
|
|
* @param fname name (or prefix) of the fields to extract from
|
|
|
|
* @param[in,out] dst_size where to store size of result, may be NULL
|
|
|
|
* @param[out] dst where to store the result
|
|
|
|
* @return
|
|
|
|
* #GNUNET_YES if all results could be extracted
|
|
|
|
* #GNUNET_NO if at least one result was NULL
|
|
|
|
* #GNUNET_SYSERR if a result was invalid (non-existing field)
|
2016-03-19 15:23:11 +01:00
|
|
|
*/
|
2016-02-06 17:39:18 +01:00
|
|
|
static int
|
|
|
|
extract_amount_nbo (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
int row,
|
|
|
|
const char *fname,
|
|
|
|
size_t *dst_size,
|
|
|
|
void *dst)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
const char *currency = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
char *val_name;
|
|
|
|
char *frac_name;
|
|
|
|
int ret;
|
2016-03-19 15:23:11 +01:00
|
|
|
|
2019-09-05 11:23:24 +02:00
|
|
|
if (sizeof (struct TALER_AmountNBO) != *dst_size)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_asprintf (&val_name,
|
2019-08-17 21:35:21 +02:00
|
|
|
"%s_val",
|
|
|
|
fname);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_asprintf (&frac_name,
|
2019-08-17 21:35:21 +02:00
|
|
|
"%s_frac",
|
|
|
|
fname);
|
2016-02-06 17:39:18 +01:00
|
|
|
ret = extract_amount_nbo_helper (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
row,
|
|
|
|
currency,
|
|
|
|
val_name,
|
|
|
|
frac_name,
|
|
|
|
dst);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_free (val_name);
|
|
|
|
GNUNET_free (frac_name);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currency amount expected.
|
|
|
|
*
|
|
|
|
* @param name name of the field in the table
|
|
|
|
* @param[out] amount where to store the result
|
|
|
|
* @return array entry for the result specification to use
|
|
|
|
*/
|
|
|
|
struct GNUNET_PQ_ResultSpec
|
|
|
|
TALER_PQ_result_spec_amount_nbo (const char *name,
|
2019-08-17 21:35:21 +02:00
|
|
|
const char *currency,
|
|
|
|
struct TALER_AmountNBO *amount)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec res = {
|
|
|
|
.conv = &extract_amount_nbo,
|
|
|
|
.cls = (void *) currency,
|
|
|
|
.dst = (void *) amount,
|
|
|
|
.dst_size = sizeof (*amount),
|
|
|
|
.fname = name
|
|
|
|
};
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract data from a Postgres database @a result at row @a row.
|
|
|
|
*
|
2019-08-17 21:35:21 +02:00
|
|
|
* @param cls closure, a `const char *` giving the currency
|
2016-02-06 17:39:18 +01:00
|
|
|
* @param result where to extract data from
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param row row to extract data from
|
2016-02-06 17:39:18 +01:00
|
|
|
* @param fname name (or prefix) of the fields to extract from
|
|
|
|
* @param[in,out] dst_size where to store size of result, may be NULL
|
|
|
|
* @param[out] dst where to store the result
|
|
|
|
* @return
|
|
|
|
* #GNUNET_YES if all results could be extracted
|
|
|
|
* #GNUNET_NO if at least one result was NULL
|
|
|
|
* #GNUNET_SYSERR if a result was invalid (non-existing field)
|
2016-03-19 15:23:11 +01:00
|
|
|
*/
|
2016-02-06 17:39:18 +01:00
|
|
|
static int
|
|
|
|
extract_amount (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
int row,
|
|
|
|
const char *fname,
|
|
|
|
size_t *dst_size,
|
|
|
|
void *dst)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
const char *currency = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct TALER_Amount *r_amount = dst;
|
|
|
|
char *val_name;
|
|
|
|
char *frac_name;
|
|
|
|
struct TALER_AmountNBO amount_nbo;
|
|
|
|
int ret;
|
2016-03-19 15:23:11 +01:00
|
|
|
|
2019-09-05 11:23:24 +02:00
|
|
|
if (sizeof (struct TALER_AmountNBO) != *dst_size)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_asprintf (&val_name,
|
2019-08-17 21:35:21 +02:00
|
|
|
"%s_val",
|
|
|
|
fname);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_asprintf (&frac_name,
|
2019-08-17 21:35:21 +02:00
|
|
|
"%s_frac",
|
|
|
|
fname);
|
2016-02-06 17:39:18 +01:00
|
|
|
ret = extract_amount_nbo_helper (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
row,
|
|
|
|
currency,
|
|
|
|
val_name,
|
|
|
|
frac_name,
|
|
|
|
&amount_nbo);
|
2016-02-06 17:39:18 +01:00
|
|
|
TALER_amount_ntoh (r_amount,
|
|
|
|
&amount_nbo);
|
|
|
|
GNUNET_free (val_name);
|
|
|
|
GNUNET_free (frac_name);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Currency amount expected.
|
|
|
|
*
|
|
|
|
* @param name name of the field in the table
|
2019-08-17 21:35:21 +02:00
|
|
|
* @param currency the currency the amount is in
|
2016-02-06 17:39:18 +01:00
|
|
|
* @param[out] amount where to store the result
|
|
|
|
* @return array entry for the result specification to use
|
|
|
|
*/
|
|
|
|
struct GNUNET_PQ_ResultSpec
|
|
|
|
TALER_PQ_result_spec_amount (const char *name,
|
2019-08-17 21:35:21 +02:00
|
|
|
const char *currency,
|
|
|
|
struct TALER_Amount *amount)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec res = {
|
|
|
|
.conv = &extract_amount,
|
|
|
|
.cls = (void *) currency,
|
|
|
|
.dst = (void *) amount,
|
|
|
|
.dst_size = sizeof (*amount),
|
|
|
|
.fname = name
|
|
|
|
};
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract data from a Postgres database @a result at row @a row.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param result where to extract data from
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param row row to extract data from
|
2016-02-06 17:39:18 +01:00
|
|
|
* @param fname name (or prefix) of the fields to extract from
|
|
|
|
* @param[in,out] dst_size where to store size of result, may be NULL
|
|
|
|
* @param[out] dst where to store the result
|
|
|
|
* @return
|
|
|
|
* #GNUNET_YES if all results could be extracted
|
|
|
|
* #GNUNET_NO if at least one result was NULL
|
|
|
|
* #GNUNET_SYSERR if a result was invalid (non-existing field)
|
2016-03-19 15:23:11 +01:00
|
|
|
*/
|
2016-02-06 17:39:18 +01:00
|
|
|
static int
|
|
|
|
extract_json (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
int row,
|
|
|
|
const char *fname,
|
|
|
|
size_t *dst_size,
|
|
|
|
void *dst)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
|
|
|
json_t **j_dst = dst;
|
|
|
|
const char *res;
|
|
|
|
int fnum;
|
|
|
|
json_error_t json_error;
|
|
|
|
size_t slen;
|
2016-03-19 15:23:11 +01:00
|
|
|
|
2019-09-05 11:23:24 +02:00
|
|
|
(void) cls;
|
|
|
|
(void) dst_size;
|
2016-02-06 17:39:18 +01:00
|
|
|
fnum = PQfnumber (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
fname);
|
2016-02-06 17:39:18 +01:00
|
|
|
if (fnum < 0)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-17 21:35:21 +02:00
|
|
|
"Field `%s' does not exist in result\n",
|
|
|
|
fname);
|
2016-02-06 17:39:18 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (PQgetisnull (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
row,
|
|
|
|
fnum))
|
2016-02-06 17:39:18 +01:00
|
|
|
return GNUNET_NO;
|
|
|
|
slen = PQgetlength (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
row,
|
|
|
|
fnum);
|
2016-02-06 17:39:18 +01:00
|
|
|
res = (const char *) PQgetvalue (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
row,
|
|
|
|
fnum);
|
2016-02-06 17:39:18 +01:00
|
|
|
*j_dst = json_loadb (res,
|
2019-08-17 21:35:21 +02:00
|
|
|
slen,
|
|
|
|
JSON_REJECT_DUPLICATES,
|
|
|
|
&json_error);
|
2016-02-06 17:39:18 +01:00
|
|
|
if (NULL == *j_dst)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2019-08-17 21:35:21 +02:00
|
|
|
"Failed to parse JSON result for field `%s': %s (%s)\n",
|
|
|
|
fname,
|
2016-03-19 15:23:11 +01:00
|
|
|
json_error.text,
|
|
|
|
json_error.source);
|
2016-02-06 17:39:18 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called to clean up memory allocated
|
|
|
|
* by a #GNUNET_PQ_ResultConverter.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param rd result data to clean up
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
clean_json (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
void *rd)
|
2016-02-06 17:39:18 +01:00
|
|
|
{
|
|
|
|
json_t **dst = rd;
|
|
|
|
|
2019-09-05 11:23:24 +02:00
|
|
|
(void) cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
if (NULL != *dst)
|
|
|
|
{
|
|
|
|
json_decref (*dst);
|
|
|
|
*dst = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* json_t expected.
|
|
|
|
*
|
|
|
|
* @param name name of the field in the table
|
|
|
|
* @param[out] jp where to store the result
|
|
|
|
* @return array entry for the result specification to use
|
|
|
|
*/
|
|
|
|
struct GNUNET_PQ_ResultSpec
|
|
|
|
TALER_PQ_result_spec_json (const char *name,
|
|
|
|
json_t **jp)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec res = {
|
|
|
|
.conv = &extract_json,
|
|
|
|
.cleaner = &clean_json,
|
|
|
|
.dst = (void *) jp,
|
|
|
|
.fname = name
|
|
|
|
};
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2017-11-30 17:17:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract data from a Postgres database @a result at row @a row.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param result where to extract data from
|
|
|
|
* @param int row to extract data from
|
|
|
|
* @param fname name (or prefix) of the fields to extract from
|
|
|
|
* @param[in,out] dst_size where to store size of result, may be NULL
|
|
|
|
* @param[out] dst where to store the result
|
|
|
|
* @return
|
|
|
|
* #GNUNET_YES if all results could be extracted
|
|
|
|
* #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
extract_round_time (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
int row,
|
|
|
|
const char *fname,
|
|
|
|
size_t *dst_size,
|
|
|
|
void *dst)
|
|
|
|
{
|
|
|
|
struct GNUNET_TIME_Absolute *udst = dst;
|
|
|
|
const struct GNUNET_TIME_AbsoluteNBO *res;
|
|
|
|
struct GNUNET_TIME_Absolute tmp;
|
|
|
|
int fnum;
|
|
|
|
|
2019-09-05 11:23:24 +02:00
|
|
|
(void) cls;
|
2017-11-30 17:17:37 +01:00
|
|
|
fnum = PQfnumber (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
fname);
|
2017-11-30 17:17:37 +01:00
|
|
|
if (fnum < 0)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (PQgetisnull (result,
|
2019-08-25 16:18:24 +02:00
|
|
|
row,
|
|
|
|
fnum))
|
2017-11-30 17:17:37 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_assert (NULL != dst);
|
|
|
|
if (sizeof (struct GNUNET_TIME_Absolute) != *dst_size)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
res = (struct GNUNET_TIME_AbsoluteNBO *) PQgetvalue (result,
|
|
|
|
row,
|
|
|
|
fnum);
|
|
|
|
tmp = GNUNET_TIME_absolute_ntoh (*res);
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_TIME_round_abs (&tmp));
|
|
|
|
*udst = tmp;
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rounded absolute time expected.
|
|
|
|
* In contrast to #GNUNET_PQ_query_param_absolute_time_nbo(),
|
|
|
|
* this function ensures that the result is rounded and can
|
|
|
|
* be converted to JSON.
|
|
|
|
*
|
|
|
|
* @param name name of the field in the table
|
|
|
|
* @param[out] at where to store the result
|
|
|
|
* @return array entry for the result specification to use
|
|
|
|
*/
|
|
|
|
struct GNUNET_PQ_ResultSpec
|
|
|
|
TALER_PQ_result_spec_absolute_time (const char *name,
|
|
|
|
struct GNUNET_TIME_Absolute *at)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec res = {
|
|
|
|
.conv = &extract_round_time,
|
|
|
|
.dst = (void *) at,
|
|
|
|
.dst_size = sizeof (struct GNUNET_TIME_Absolute),
|
|
|
|
.fname = name
|
|
|
|
};
|
|
|
|
|
2017-11-30 17:17:37 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract data from a Postgres database @a result at row @a row.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param result where to extract data from
|
|
|
|
* @param int row to extract data from
|
|
|
|
* @param fname name (or prefix) of the fields to extract from
|
|
|
|
* @param[in,out] dst_size where to store size of result, may be NULL
|
|
|
|
* @param[out] dst where to store the result
|
|
|
|
* @return
|
|
|
|
* #GNUNET_YES if all results could be extracted
|
|
|
|
* #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
extract_round_time_nbo (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
int row,
|
|
|
|
const char *fname,
|
|
|
|
size_t *dst_size,
|
|
|
|
void *dst)
|
|
|
|
{
|
|
|
|
struct GNUNET_TIME_AbsoluteNBO *udst = dst;
|
|
|
|
const struct GNUNET_TIME_AbsoluteNBO *res;
|
|
|
|
struct GNUNET_TIME_Absolute tmp;
|
|
|
|
int fnum;
|
|
|
|
|
2019-09-05 11:23:24 +02:00
|
|
|
(void) cls;
|
2017-11-30 17:17:37 +01:00
|
|
|
fnum = PQfnumber (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
fname);
|
2017-11-30 17:17:37 +01:00
|
|
|
if (fnum < 0)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (PQgetisnull (result,
|
2019-08-17 21:35:21 +02:00
|
|
|
row,
|
|
|
|
fnum))
|
2017-11-30 17:17:37 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_assert (NULL != dst);
|
|
|
|
if (sizeof (struct GNUNET_TIME_AbsoluteNBO) != *dst_size)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
res = (struct GNUNET_TIME_AbsoluteNBO *) PQgetvalue (result,
|
|
|
|
row,
|
|
|
|
fnum);
|
|
|
|
tmp = GNUNET_TIME_absolute_ntoh (*res);
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_TIME_round_abs (&tmp));
|
|
|
|
*udst = GNUNET_TIME_absolute_hton (tmp);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rounded absolute time in network byte order expected.
|
|
|
|
* In contrast to #GNUNET_PQ_query_param_absolute_time_nbo(),
|
|
|
|
* this function ensures that the result is rounded and can
|
|
|
|
* be converted to JSON.
|
|
|
|
*
|
|
|
|
* @param name name of the field in the table
|
|
|
|
* @param[out] at where to store the result
|
|
|
|
* @return array entry for the result specification to use
|
|
|
|
*/
|
|
|
|
struct GNUNET_PQ_ResultSpec
|
|
|
|
TALER_PQ_result_spec_absolute_time_nbo (const char *name,
|
|
|
|
struct GNUNET_TIME_AbsoluteNBO *at)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec res = {
|
2019-08-25 16:18:24 +02:00
|
|
|
.conv = &extract_round_time_nbo,
|
2019-08-17 21:35:21 +02:00
|
|
|
.dst = (void *) at,
|
|
|
|
.dst_size = sizeof (struct GNUNET_TIME_AbsoluteNBO),
|
|
|
|
.fname = name
|
|
|
|
};
|
|
|
|
|
2017-11-30 17:17:37 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
/* end of pq_result_helper.c */
|