summaryrefslogtreecommitdiff
path: root/src/exchangedb
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-06-18 15:13:13 +0200
committerChristian Grothoff <christian@grothoff.org>2017-06-19 00:17:15 +0200
commitd2c7ef54a7eb906b40032969b5bc45c180003f4b (patch)
tree78192ff99f013e7d926c5f2acd0601c68f5bc485 /src/exchangedb
parentd66a29e383d1a6985906136c9606fcd18cb1c124 (diff)
downloadexchange-d2c7ef54a7eb906b40032969b5bc45c180003f4b.tar.gz
exchange-d2c7ef54a7eb906b40032969b5bc45c180003f4b.tar.bz2
exchange-d2c7ef54a7eb906b40032969b5bc45c180003f4b.zip
convert another function for #5010
Diffstat (limited to 'src/exchangedb')
-rw-r--r--src/exchangedb/perf_taler_exchangedb_interpreter.c6
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c58
-rw-r--r--src/exchangedb/test_exchangedb.c2
3 files changed, 32 insertions, 34 deletions
diff --git a/src/exchangedb/perf_taler_exchangedb_interpreter.c b/src/exchangedb/perf_taler_exchangedb_interpreter.c
index 2e4307547..e378fc932 100644
--- a/src/exchangedb/perf_taler_exchangedb_interpreter.c
+++ b/src/exchangedb/perf_taler_exchangedb_interpreter.c
@@ -1334,15 +1334,15 @@ interpret (struct PERF_TALER_EXCHANGEDB_interpreter_state *state)
case PERF_TALER_EXCHANGEDB_CMD_INSERT_DEPOSIT:
{
int deposit_index;
- int ret;
+ enum GNUNET_DB_QueryStatus qs;
struct TALER_EXCHANGEDB_Deposit *deposit;
deposit_index = state->cmd[state->i].details.insert_deposit.index_deposit;
deposit = state->cmd[deposit_index].exposed.data.deposit;
- ret = state->plugin->insert_deposit (state->plugin->cls,
+ qs = state->plugin->insert_deposit (state->plugin->cls,
state->session,
deposit);
- GNUNET_assert (GNUNET_SYSERR != ret);
+ GNUNET_assert (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs);
state->cmd[state->i].exposed.data.deposit = deposit;
}
break;
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index 37db30d9e..d56afed35 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -3181,11 +3181,9 @@ get_known_coin (void *cls,
* @param cls plugin closure
* @param session the shared database session
* @param coin_info the public coin info
- * @return #GNUNET_SYSERR upon error;
- * #GNUNET_NO on transient error
- * #GNUNET_OK upon success
+ * @return query result status
*/
-static int
+static enum GNUNET_DB_QueryStatus
insert_known_coin (void *cls,
struct TALER_EXCHANGEDB_Session *session,
const struct TALER_CoinPublicInfo *coin_info)
@@ -3200,9 +3198,9 @@ insert_known_coin (void *cls,
GNUNET_CRYPTO_rsa_public_key_hash (coin_info->denom_pub.rsa_public_key,
&denom_pub_hash);
- return execute_prepared_non_select (session,
- "insert_known_coin",
- params);
+ return GNUNET_PQ_eval_prepared_non_select (session->conn,
+ "insert_known_coin",
+ params);
}
@@ -3212,16 +3210,15 @@ insert_known_coin (void *cls,
* @param cls the `struct PostgresClosure` with the plugin-specific state
* @param session connection to the database
* @param deposit deposit information to store
- * @return #GNUNET_OK on success,
- * #GNUNET_NO on transient error
- * #GNUNET_SYSERR on error
+ * @return query result status
*/
-static int
+static enum GNUNET_DB_QueryStatus
postgres_insert_deposit (void *cls,
struct TALER_EXCHANGEDB_Session *session,
const struct TALER_EXCHANGEDB_Deposit *deposit)
{
int ret;
+ enum GNUNET_DB_QueryStatus qs;
struct GNUNET_PQ_QueryParam params[] = {
GNUNET_PQ_query_param_auto_from_type (&deposit->coin.coin_pub),
TALER_PQ_query_param_amount (&deposit->amount_with_fee),
@@ -3248,19 +3245,19 @@ postgres_insert_deposit (void *cls,
}
if (GNUNET_NO == ret) /* if not, insert it */
{
- if (GNUNET_OK !=
- (ret = insert_known_coin (cls,
- session,
- &deposit->coin)))
+ qs = insert_known_coin (cls,
+ session,
+ &deposit->coin);
+ if (0 > qs)
{
- GNUNET_break (GNUNET_NO == ret);
- return ret;
+ GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
+ return qs;
}
}
- return execute_prepared_non_select (session,
- "insert_deposit",
- params);
+ return GNUNET_PQ_eval_prepared_non_select (session->conn,
+ "insert_deposit",
+ params);
}
@@ -3416,6 +3413,7 @@ postgres_create_refresh_session (void *cls,
GNUNET_PQ_query_param_end
};
int ret;
+ enum GNUNET_DB_QueryStatus qs;
/* check if the coin is already known */
ret = get_known_coin (cls,
@@ -3429,12 +3427,12 @@ postgres_create_refresh_session (void *cls,
}
if (GNUNET_NO == ret) /* if not, insert it */
{
- if (GNUNET_OK !=
- (ret = insert_known_coin (cls,
- session,
- &refresh_session->melt.coin)))
+ qs = insert_known_coin (cls,
+ session,
+ &refresh_session->melt.coin);
+ if (0 > qs)
{
- GNUNET_break (GNUNET_NO == ret);
+ GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
return GNUNET_SYSERR;
}
}
@@ -6155,12 +6153,12 @@ postgres_insert_payback_request (void *cls,
}
if (GNUNET_NO == ret) /* if not, insert it */
{
- if (GNUNET_OK !=
- (ret = insert_known_coin (cls,
- session,
- coin)))
+ qs = insert_known_coin (cls,
+ session,
+ coin);
+ if (0 > qs)
{
- GNUNET_break (GNUNET_NO == ret);
+ GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
return ret;
}
}
diff --git a/src/exchangedb/test_exchangedb.c b/src/exchangedb/test_exchangedb.c
index 28e089cf7..319b4dc11 100644
--- a/src/exchangedb/test_exchangedb.c
+++ b/src/exchangedb/test_exchangedb.c
@@ -1768,7 +1768,7 @@ run (void *cls)
deposit.amount_with_fee = value;
deposit.deposit_fee = fee_deposit;
result = 8;
- FAILIF (GNUNET_OK !=
+ FAILIF (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
plugin->insert_deposit (plugin->cls,
session,
&deposit));