| /* |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| * |
| |
| */ |
| |
| #include "TestOptions.h" |
| #include "qpid/client/SubscriptionManager.h" |
| #include "qpid/client/Connection.h" |
| #include "qpid/client/AsyncSession.h" |
| #include "qpid/sys/Time.h" |
| #include "qpid/sys/Thread.h" |
| #include "qpid/sys/Runnable.h" |
| #include "qpid/sys/Monitor.h" |
| #include "qpid/framing/Uuid.h" |
| #include <string> |
| #include <iostream> |
| |
| using std::cerr; |
| using std::cout; |
| using std::endl; |
| using std::exception; |
| using std::string; |
| using namespace qpid::client::arg; // For keyword args |
| using qpid::client::AsyncSession; |
| using qpid::client::Connection; |
| using qpid::client::Message; |
| using qpid::client::SubscriptionManager; |
| using qpid::framing::Uuid; |
| |
| namespace qpid { |
| namespace tests { |
| |
| struct PingOptions : public qpid::TestOptions { |
| int timeout; // Timeout in seconds. |
| bool quiet; // No output |
| PingOptions() : timeout(1), quiet(false) { |
| addOptions() |
| ("timeout,t", optValue(timeout, "SECONDS"), "Max time to wait.") |
| ("quiet,q", optValue(quiet), "Don't print anything to stderr/stdout."); |
| } |
| }; |
| |
| }} // namespace qpid::tests |
| |
| int main(int argc, char** argv) { |
| try { |
| qpid::tests::PingOptions opts; |
| opts.parse(argc, argv); |
| opts.con.heartbeat = (opts.timeout+1)/2; |
| Connection connection; |
| opts.open(connection); |
| if (!opts.quiet) cout << "Opened connection." << endl; |
| AsyncSession s = connection.newSession(); |
| string qname(Uuid(true).str()); |
| s.queueDeclare(queue=qname, autoDelete=true, exclusive=true); |
| s.messageTransfer(content=Message("hello", qname)); |
| if (!opts.quiet) cout << "Sent message." << endl; |
| SubscriptionManager subs(s); |
| subs.get(qname); |
| if (!opts.quiet) cout << "Received message." << endl; |
| s.sync(); |
| s.close(); |
| connection.close(); |
| if (!opts.quiet) cout << "Success." << endl; |
| return 0; |
| } catch (const exception& e) { |
| cerr << "Error: " << e.what() << endl; |
| return 1; |
| } |
| } |