more docu, bugfixes and bugnotes

This commit is contained in:
Christian Grothoff 2015-06-05 15:41:03 +02:00
parent 776482ef85
commit 56ca616eb3

View File

@ -1674,7 +1674,8 @@ postgres_insert_deposit (void *cls,
* @param cls the `struct PostgresClosure` with the plugin-specific state * @param cls the `struct PostgresClosure` with the plugin-specific state
* @param session database handle to use * @param session database handle to use
* @param session_hash hash over the melt to use to locate the session * @param session_hash hash over the melt to use to locate the session
* @param[out] refresh_session where to store the result * @param[out] refresh_session where to store the result, can be NULL
* to just check if the session exists
* @return #GNUNET_YES on success, * @return #GNUNET_YES on success,
* #GNUNET_NO if not found, * #GNUNET_NO if not found,
* #GNUNET_SYSERR on DB failure * #GNUNET_SYSERR on DB failure
@ -1690,55 +1691,53 @@ postgres_get_refresh_session (void *cls,
TALER_PQ_query_param_auto_from_type(session_hash), TALER_PQ_query_param_auto_from_type(session_hash),
TALER_PQ_query_param_end TALER_PQ_query_param_end
}; };
int ret;
uint16_t num_oldcoins_nbo; uint16_t num_oldcoins_nbo;
uint16_t num_newcoins_nbo; uint16_t num_newcoins_nbo;
uint16_t noreveal_index_nbo; uint16_t noreveal_index_nbo;
ret = GNUNET_SYSERR;
result = TALER_PQ_exec_prepared (session->conn, result = TALER_PQ_exec_prepared (session->conn,
"get_refresh_session", "get_refresh_session",
params); params);
if (PGRES_TUPLES_OK != PQresultStatus (result)) if (PGRES_TUPLES_OK != PQresultStatus (result))
{ {
BREAK_DB_ERR (result); BREAK_DB_ERR (result);
goto cleanup; PQclear (result);
return GNUNET_SYSERR;
} }
if (0 == PQntuples (result)) if (0 == PQntuples (result))
{ {
ret = GNUNET_NO; PQclear (result);
goto cleanup; return GNUNET_NO;
} }
GNUNET_assert (1 == PQntuples (result)); GNUNET_assert (1 == PQntuples (result));
/* We're done if the caller is only interested in whether the session exists
* or not */
if (NULL == refresh_session) if (NULL == refresh_session)
{ {
ret = GNUNET_YES; /* We're done if the caller is only interested in whether the
goto cleanup; * session exists or not */
PQclear (result);
return GNUNET_YES;
} }
memset (refresh_session, 0, sizeof (struct TALER_MINTDB_RefreshSession)); memset (refresh_session, 0, sizeof (struct TALER_MINTDB_RefreshSession));
struct TALER_PQ_ResultSpec rs[] = {
/* NOTE: maybe create a TALER_PQ_RS type for 16-bit numbers? */
TALER_PQ_result_spec_auto_from_type("num_oldcoins", &num_oldcoins_nbo),
TALER_PQ_result_spec_auto_from_type("num_newcoins", &num_newcoins_nbo),
TALER_PQ_result_spec_auto_from_type("noreveal_index", &noreveal_index_nbo),
TALER_PQ_result_spec_end
};
if (GNUNET_OK != TALER_PQ_extract_result (result, rs, 0))
{ {
GNUNET_break (0); struct TALER_PQ_ResultSpec rs[] = {
goto cleanup; /* NOTE: maybe create a TALER_PQ_RS type for 16-bit numbers? #3827 */
TALER_PQ_result_spec_auto_from_type("num_oldcoins", &num_oldcoins_nbo),
TALER_PQ_result_spec_auto_from_type("num_newcoins", &num_newcoins_nbo),
TALER_PQ_result_spec_auto_from_type("noreveal_index", &noreveal_index_nbo),
TALER_PQ_result_spec_end
};
if (GNUNET_OK != TALER_PQ_extract_result (result, rs, 0))
{
GNUNET_break (0);
PQclear (result);
return GNUNET_SYSERR;
}
} }
refresh_session->num_oldcoins = ntohs (num_oldcoins_nbo); refresh_session->num_oldcoins = ntohs (num_oldcoins_nbo);
refresh_session->num_newcoins = ntohs (num_newcoins_nbo); refresh_session->num_newcoins = ntohs (num_newcoins_nbo);
refresh_session->noreveal_index = ntohs (noreveal_index_nbo); refresh_session->noreveal_index = ntohs (noreveal_index_nbo);
ret = GNUNET_YES; PQclear (result);
return GNUNET_YES;
cleanup:
if (NULL != result)
PQclear (result);
return ret;
} }
@ -1764,7 +1763,7 @@ postgres_create_refresh_session (void *cls,
uint16_t noreveal_index_nbo; uint16_t noreveal_index_nbo;
struct TALER_PQ_QueryParam params[] = { struct TALER_PQ_QueryParam params[] = {
TALER_PQ_query_param_auto_from_type(session_hash), TALER_PQ_query_param_auto_from_type(session_hash),
/* Note: Maybe create a TALER_PQ_QP for 16-bit numbers? */ /* Note: Maybe create a TALER_PQ_QP for 16-bit numbers? #3827 */
TALER_PQ_query_param_auto_from_type(&num_oldcoins_nbo), TALER_PQ_query_param_auto_from_type(&num_oldcoins_nbo),
TALER_PQ_query_param_auto_from_type(&num_newcoins_nbo), TALER_PQ_query_param_auto_from_type(&num_newcoins_nbo),
TALER_PQ_query_param_auto_from_type(&noreveal_index_nbo), TALER_PQ_query_param_auto_from_type(&noreveal_index_nbo),
@ -1795,6 +1794,8 @@ postgres_create_refresh_session (void *cls,
* @param session the shared database session * @param session the shared database session
* @param coin_info the public coin info * @param coin_info the public coin info
* @return #GNUNET_SYSERR upon error; #GNUNET_OK upon success * @return #GNUNET_SYSERR upon error; #GNUNET_OK upon success
* @deprecated (certainly should not be in public API, not sure if
* we want to keep this normalization internally, #3811)
*/ */
static int static int
postgres_insert_known_coin (void *cls, postgres_insert_known_coin (void *cls,
@ -1832,6 +1833,8 @@ postgres_insert_known_coin (void *cls,
* @return #GNUNET_SYSERR upon error; #GNUNET_NO if no coin is found; #GNUNET_OK * @return #GNUNET_SYSERR upon error; #GNUNET_NO if no coin is found; #GNUNET_OK
* if upon succesfullying retrieving the record data info @a * if upon succesfullying retrieving the record data info @a
* coin_info * coin_info
* @deprecated (certainly should not be in public API, not sure if
* we want to keep this normalization internally, #3811)
*/ */
static int static int
postgres_get_known_coin (void *cls, postgres_get_known_coin (void *cls,
@ -1862,24 +1865,22 @@ postgres_get_known_coin (void *cls,
return GNUNET_NO; return GNUNET_NO;
} }
GNUNET_assert (1 == nrows); /* due to primary key */ GNUNET_assert (1 == nrows); /* due to primary key */
struct TALER_PQ_ResultSpec rs[] = {
TALER_PQ_result_spec_rsa_public_key ("denom_pub", &coin_info->denom_pub.rsa_public_key),
TALER_PQ_result_spec_rsa_signature ("denom_sig", &coin_info->denom_sig.rsa_signature),
TALER_PQ_result_spec_end
};
if (GNUNET_OK != TALER_PQ_extract_result (result, rs, 0))
{ {
PQclear (result); struct TALER_PQ_ResultSpec rs[] = {
GNUNET_break (0); TALER_PQ_result_spec_rsa_public_key ("denom_pub", &coin_info->denom_pub.rsa_public_key),
GNUNET_free (coin_info); TALER_PQ_result_spec_rsa_signature ("denom_sig", &coin_info->denom_sig.rsa_signature),
return GNUNET_SYSERR; TALER_PQ_result_spec_end
};
if (GNUNET_OK != TALER_PQ_extract_result (result, rs, 0))
{
PQclear (result);
GNUNET_break (0);
return GNUNET_SYSERR;
}
} }
PQclear (result); PQclear (result);
/* no need to copy if the src and dest are same */ coin_info->coin_pub = *coin_pub;
if (coin_pub != &coin_info->coin_pub)
(void) memcpy (&coin_info->coin_pub,
coin_pub,
sizeof (struct TALER_CoinSpendPublicKeyP));
return GNUNET_OK; return GNUNET_OK;
} }