Blame Examples/amqp_sendstring.c

Packit Service d45470
/*
Packit Service d45470
 * ***** BEGIN LICENSE BLOCK *****
Packit Service d45470
 * Version: MIT
Packit Service d45470
 *
Packit Service d45470
 * Portions created by Alan Antonuk are Copyright (c) 2012-2013
Packit Service d45470
 * Alan Antonuk. All Rights Reserved.
Packit Service d45470
 *
Packit Service d45470
 * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
Packit Service d45470
 * All Rights Reserved.
Packit Service d45470
 *
Packit Service d45470
 * Portions created by Tony Garnock-Jones are Copyright (c) 2009-2010
Packit Service d45470
 * VMware, Inc. and Tony Garnock-Jones. All Rights Reserved.
Packit Service d45470
 *
Packit Service d45470
 * Permission is hereby granted, free of charge, to any person
Packit Service d45470
 * obtaining a copy of this software and associated documentation
Packit Service d45470
 * files (the "Software"), to deal in the Software without
Packit Service d45470
 * restriction, including without limitation the rights to use, copy,
Packit Service d45470
 * modify, merge, publish, distribute, sublicense, and/or sell copies
Packit Service d45470
 * of the Software, and to permit persons to whom the Software is
Packit Service d45470
 * furnished to do so, subject to the following conditions:
Packit Service d45470
 *
Packit Service d45470
 * The above copyright notice and this permission notice shall be
Packit Service d45470
 * included in all copies or substantial portions of the Software.
Packit Service d45470
 *
Packit Service d45470
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Packit Service d45470
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit Service d45470
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Packit Service d45470
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
Packit Service d45470
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
Packit Service d45470
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
Packit Service d45470
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit Service d45470
 * SOFTWARE.
Packit Service d45470
 * ***** END LICENSE BLOCK *****
Packit Service d45470
 */
Packit Service d45470
Packit Service d45470
#include <stdint.h>
Packit Service d45470
#include <stdio.h>
Packit Service d45470
#include <stdlib.h>
Packit Service d45470
#include <string.h>
Packit Service d45470
Packit Service d45470
#include <amqp.h>
Packit Service d45470
#include <amqp_tcp_socket.h>
Packit Service d45470
Packit Service d45470
#include "utils.h"
Packit Service d45470
Packit Service d45470
int main(int argc, char const *const *argv) {
Packit Service d45470
  char const *hostname;
Packit Service d45470
  int port, status;
Packit Service d45470
  char const *exchange;
Packit Service d45470
  char const *routingkey;
Packit Service d45470
  char const *messagebody;
Packit Service d45470
  amqp_socket_t *socket = NULL;
Packit Service d45470
  amqp_connection_state_t conn;
Packit Service d45470
Packit Service d45470
  if (argc < 6) {
Packit Service d45470
    fprintf(
Packit Service d45470
        stderr,
Packit Service d45470
        "Usage: amqp_sendstring host port exchange routingkey messagebody\n");
Packit Service d45470
    return 1;
Packit Service d45470
  }
Packit Service d45470
Packit Service d45470
  hostname = argv[1];
Packit Service d45470
  port = atoi(argv[2]);
Packit Service d45470
  exchange = argv[3];
Packit Service d45470
  routingkey = argv[4];
Packit Service d45470
  messagebody = argv[5];
Packit Service d45470
Packit Service d45470
  conn = amqp_new_connection();
Packit Service d45470
Packit Service d45470
  socket = amqp_tcp_socket_new(conn);
Packit Service d45470
  if (!socket) {
Packit Service d45470
    die("creating TCP socket");
Packit Service d45470
  }
Packit Service d45470
Packit Service d45470
  status = amqp_socket_open(socket, hostname, port);
Packit Service d45470
  if (status) {
Packit Service d45470
    die("opening TCP socket");
Packit Service d45470
  }
Packit Service d45470
Packit Service d45470
  die_on_amqp_error(amqp_login(conn, "/", 0, 131072, 0, AMQP_SASL_METHOD_PLAIN,
Packit Service d45470
                               "guest", "guest"),
Packit Service d45470
                    "Logging in");
Packit Service d45470
  amqp_channel_open(conn, 1);
Packit Service d45470
  die_on_amqp_error(amqp_get_rpc_reply(conn), "Opening channel");
Packit Service d45470
Packit Service d45470
  {
Packit Service d45470
    amqp_basic_properties_t props;
Packit Service d45470
    props._flags = AMQP_BASIC_CONTENT_TYPE_FLAG | AMQP_BASIC_DELIVERY_MODE_FLAG;
Packit Service d45470
    props.content_type = amqp_cstring_bytes("text/plain");
Packit Service d45470
    props.delivery_mode = 2; /* persistent delivery mode */
Packit Service d45470
    die_on_error(amqp_basic_publish(conn, 1, amqp_cstring_bytes(exchange),
Packit Service d45470
                                    amqp_cstring_bytes(routingkey), 0, 0,
Packit Service d45470
                                    &props, amqp_cstring_bytes(messagebody)),
Packit Service d45470
                 "Publishing");
Packit Service d45470
  }
Packit Service d45470
Packit Service d45470
  die_on_amqp_error(amqp_channel_close(conn, 1, AMQP_REPLY_SUCCESS),
Packit Service d45470
                    "Closing channel");
Packit Service d45470
  die_on_amqp_error(amqp_connection_close(conn, AMQP_REPLY_SUCCESS),
Packit Service d45470
                    "Closing connection");
Packit Service d45470
  die_on_error(amqp_destroy_connection(conn), "Ending connection");
Packit Service d45470
  return 0;
Packit Service d45470
}