The client part of a request-response example. Sends requests and prints out responses. Requires an intermediary that supports the AMQP 1.0 dynamic nodes on which the responses are received. The requests are sent through the 'examples' node.
#include "options.hpp"
#include <iostream>
#include <vector>
private:
std::string url;
std::vector<std::string> requests;
public:
client(const std::string &u, const std::vector<std::string>& r) : url(u), requests(r) {}
receiver_options opts = receiver_options().source(source_options().dynamic(true));
}
void send_request() {
req.
body(requests.front());
}
send_request();
}
if (requests.empty()) return;
std::cout << requests.front() <<
" => " << response.
body() << std::endl;
requests.erase(requests.begin());
if (!requests.empty()) {
send_request();
} else {
}
}
};
int main(int argc, char **argv) {
std::string url("127.0.0.1:5672/examples");
example::options opts(argc, argv);
opts.add_value(url, 'a', "address", "connect and send to URL", "URL");
try {
opts.parse();
std::vector<std::string> requests;
requests.push_back("Twas brillig, and the slithy toves");
requests.push_back("Did gire and gymble in the wabe.");
requests.push_back("All mimsy were the borogroves,");
requests.push_back("And the mome raths outgrabe.");
client c(url, requests);
return 0;
} catch (const example::bad_option& e) {
std::cout << opts << std::endl << e.what() << std::endl;
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
}
return 1;
}
void close()
Close the connection.
receiver open_receiver(const std::string &addr)
Open a receiver for addr on default_session().
A top-level container of connections, sessions, and links.
Definition: container.hpp:50
void run()
Run the container in the current thread.
returned< sender > open_sender(const std::string &addr_url)
Open a connection and sender for addr_url.
A received message.
Definition: delivery.hpp:40
class connection connection() const
The connection that owns this link.
An AMQP message.
Definition: message.hpp:48
void reply_to(const std::string &)
Set the address for replies.
void body(const value &x)
Set the body. Equivalent to body() = x.
Handler for Proton messaging events.
Definition: messaging_handler.hpp:69
virtual void on_message(delivery &, message &)
A message is received.
virtual void on_receiver_open(receiver &)
The remote peer opened the link.
virtual void on_container_start(container &)
The container event loop is starting.
Options for creating a receiver.
Definition: receiver_options.hpp:59
A channel for receiving messages.
Definition: receiver.hpp:41
class source source() const
Get the source node.
A channel for sending messages.
Definition: sender.hpp:40
tracker send(const message &m)
Send a message on the sender.
Options for creating a source node for a sender or receiver.
Definition: source_options.hpp:46
std::string address() const
The address of the source.
class connection connection() const
Return the connection for this transfer.
A connection to a remote AMQP peer.
A top-level container of connections, sessions, and links.
Handler for Proton messaging events.
Options for creating a receiver.
Options for creating a source node for a sender or receiver.
A tracker for a sent message.