summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-02-12 16:06:37 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-02-12 16:06:37 +0100
commit8aa66c6023fde8f0a8ea9a50e8c9283814521825 (patch)
tree861614f83c8ee66c3d2a76dbcabdac011a845980 /src
parent1f007d83fd0df2f200db28e0e22a00b7ef9170bd (diff)
downloadexchange-8aa66c6023fde8f0a8ea9a50e8c9283814521825.tar.gz
exchange-8aa66c6023fde8f0a8ea9a50e8c9283814521825.tar.bz2
exchange-8aa66c6023fde8f0a8ea9a50e8c9283814521825.zip
Properly shutdown.
Diffstat (limited to 'src')
-rw-r--r--src/exchange-tools/taler-wire.c80
1 files changed, 58 insertions, 22 deletions
diff --git a/src/exchange-tools/taler-wire.c b/src/exchange-tools/taler-wire.c
index dfe40335d..f5016c03a 100644
--- a/src/exchange-tools/taler-wire.c
+++ b/src/exchange-tools/taler-wire.c
@@ -82,6 +82,10 @@ void *since_when_bin;
*/
char *destination_account_url;
+/**
+ * Handle for the wire transfer preparation task.
+ */
+struct TALER_WIRE_PrepareHandle *ph;
/**
* Wire plugin handle.
@@ -144,13 +148,19 @@ confirmation_cb (void *cls,
if (GNUNET_YES != success)
{
fprintf (stderr,
- "The wire transfer didn't execute correctly\n");
+ "The wire transfer didn't execute correctly.\n");
GNUNET_assert (NULL != emsg);
fprintf (stderr,
emsg);
+ GNUNET_SCHEDULER_shutdown ();
return;
}
+
+ fprintf (stdout,
+ "Wire transfer executed successfully.\n");
+
global_ret = 0;
+ GNUNET_SCHEDULER_shutdown ();
}
@@ -177,7 +187,16 @@ prepare_cb (void *cls,
{
fprintf (stderr,
"Could not execute the wire transfer\n");
- return;
+
+ plugin_handle->prepare_wire_transfer_cancel
+ (plugin_handle->cls,
+ ph);
+
+ plugin_handle->execute_wire_transfer_cancel
+ (plugin_handle->cls,
+ eh);
+
+ GNUNET_SCHEDULER_shutdown ();
}
}
@@ -190,19 +209,23 @@ execute_wire_transfer ()
{
struct TALER_Amount a;
struct TALER_WireTransferIdentifierRawP wtid;
- struct TALER_WIRE_PrepareHandle *ph;
-
- /* Not the best thing to fail a assert here. */
- GNUNET_assert (GNUNET_YES == transfer);
if (GNUNET_OK != TALER_string_to_amount (amount,
&a))
{
fprintf (stderr,
"Amount string incorrect.\n");
+ GNUNET_SCHEDULER_shutdown ();
+ return;
+ }
+ if (NULL == destination_account_url)
+ {
+ fprintf (stderr,
+ "Please give destination"
+ " account URL (--destination/-d)\n");
+ GNUNET_SCHEDULER_shutdown ();
return;
}
-
if (NULL == (ph = plugin_handle->prepare_wire_transfer
(plugin_handle->cls,
account_section,
@@ -215,11 +238,8 @@ execute_wire_transfer ()
{
fprintf (stderr,
"Could not prepare the wire transfer\n");
- return;
+ GNUNET_SCHEDULER_shutdown ();
}
-
- plugin_handle->prepare_wire_transfer_cancel (plugin_handle->cls,
- ph);
}
/**
@@ -235,6 +255,7 @@ execute_history ()
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Missing since-when option\n");
+ GNUNET_SCHEDULER_shutdown ();
return;
}
@@ -258,12 +279,25 @@ execute_history ()
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Could not request the transaction history.\n");
+ GNUNET_SCHEDULER_shutdown ();
return;
}
}
/**
+ * Gets executed upon shutdown. Main duty is
+ * wire-plugin unloading.
+ *
+ * @param cls closure.
+ */
+void
+do_shutdown (void *cls)
+{
+ TALER_WIRE_plugin_unload (plugin_handle);
+}
+
+/**
* Main function that will be run.
*
* @param cls closure
@@ -313,6 +347,9 @@ run (void *cls,
else
fprintf (stderr,
"Please give either --history/-H or --transfer/t\n");
+
+ GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
+ NULL);
}
/**
@@ -333,7 +370,8 @@ main (int argc,
GNUNET_GETOPT_option_flag ('H',
"history",
- "Ask to get the list of transactions.",
+ "Ask to get the list of"
+ " transactions.",
&history),
GNUNET_GETOPT_option_flag ('t',
@@ -378,16 +416,14 @@ main (int argc,
(GNUNET_OK == GNUNET_log_setup ("taler-wire",
NULL,
NULL)); /* filename */
-
- if (GNUNET_OK != GNUNET_PROGRAM_run
- (argc,
- argv,
- "taler-wire",
- "CLI bank client.",
- options,
- &run,
- NULL))
- return 1;
+ GNUNET_PROGRAM_run
+ (argc,
+ argv,
+ "taler-wire",
+ "CLI bank client.",
+ options,
+ &run,
+ NULL);
return global_ret;
}