summaryrefslogtreecommitdiff
path: root/tools/get.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/get.c')
-rw-r--r--tools/get.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/tools/get.c b/tools/get.c
new file mode 100644
index 0000000..6efccd1
--- /dev/null
+++ b/tools/get.c
@@ -0,0 +1,41 @@
+#include "config.h"
+
+#include <stdio.h>
+
+#include <popt.h>
+
+#include "common.h"
+#include "common_consume.h"
+
+static int do_get(amqp_connection_state_t conn)
+{
+ amqp_rpc_reply_t r
+ = amqp_basic_get(conn, 1, setup_queue(conn), 1);
+ die_rpc(r, "basic.get");
+
+ if (r.reply.id == AMQP_BASIC_GET_EMPTY_METHOD)
+ return 0;
+
+ copy_body(conn, 1);
+ return 1;
+}
+
+int main(int argc, const char **argv)
+{
+ amqp_connection_state_t conn;
+ int got_something;
+
+ struct poptOption options[] = {
+ INCLUDE_OPTIONS(connect_options),
+ INCLUDE_OPTIONS(consume_queue_options),
+ POPT_AUTOHELP
+ { NULL, 0, 0, NULL, 0 }
+ };
+
+ process_all_options(argc, argv, options);
+
+ conn = make_connection();
+ got_something = do_get(conn);
+ close_connection(conn);
+ return got_something ? 0 : 2;
+}