blob: 3daa92531441be9281fb6cc923e00bbefc178bbc [file] [log] [blame]
/*
*
* 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 "proton/container.hpp"
#include "proton/error_condition.hpp"
#include "proton/error_condition.hpp"
#include "proton/listen_handler.hpp"
#include "proton/listener.hpp"
#include "proton/thread_safe.hpp"
#include "container_impl.hpp"
namespace proton {
container::container(messaging_handler& h, const std::string& id) :
impl_(new impl(*this, id, &h)) {}
container::container(const std::string& id) :
impl_(new impl(*this, id)) {}
container::~container() {}
returned<connection> container::connect(const std::string &url) {
return connect(url, connection_options());
}
returned<sender> container::open_sender(const std::string &url) {
return open_sender(url, proton::sender_options(), connection_options());
}
returned<sender> container::open_sender(const std::string &url, const proton::sender_options &lo) {
return open_sender(url, lo, connection_options());
}
returned<sender> container::open_sender(const std::string &url, const proton::connection_options &co) {
return open_sender(url, sender_options(), co);
}
returned<receiver> container::open_receiver(const std::string &url) {
return open_receiver(url, proton::receiver_options(), connection_options());
}
returned<receiver> container::open_receiver(const std::string &url, const proton::receiver_options &lo) {
return open_receiver(url, lo, connection_options());
}
returned<receiver> container::open_receiver(const std::string &url, const proton::connection_options &co) {
return open_receiver(url, receiver_options(), co);
}
namespace{
struct listen_opts : public listen_handler {
connection_options opts;
listen_opts(const connection_options& o) : opts(o) {}
connection_options on_accept() { return opts; }
void on_close() { delete this; }
};
}
listener container::listen(const std::string& url, const connection_options& opts) {
// Note: listen_opts::on_close() calls delete(this) so this is not a leak.
// The container will always call on_closed() even if there are errors or exceptions.
listen_opts* lh = new listen_opts(opts);
return listen(url, *lh);
}
listener container::listen(const std::string &url) {
return listen(url, connection_options());
}
void container::stop() { stop(error_condition()); }
returned<connection> container::connect(const std::string& url, const connection_options& opts) {
return impl_->connect(url, opts);
}
listener container::listen(const std::string& url, listen_handler& l) { return impl_->listen(url, l); }
void container::stop_listening(const std::string& url) { impl_->stop_listening(url); }
void container::run() { impl_->run(); }
void container::auto_stop(bool set) { impl_->auto_stop(set); }
void container::stop(const error_condition& err) { impl_->stop(err); }
returned<sender> container::open_sender(
const std::string &url,
const class sender_options &o,
const connection_options &c) {
return impl_->open_sender(url, o, c);
}
returned<receiver> container::open_receiver(
const std::string&url,
const class receiver_options &o,
const connection_options &c) {
return impl_->open_receiver(url, o, c);
}
std::string container::id() const { return impl_->id(); }
void container::schedule(duration d, void_function0& f) { return impl_->schedule(d, f); }
#if PN_CPP_HAS_STD_FUNCTION
void container::schedule(duration d, std::function<void()> f) { return impl_->schedule(d, f); }
#endif
void container::client_connection_options(const connection_options& c) { impl_->client_connection_options(c); }
connection_options container::client_connection_options() const { return impl_->client_connection_options(); }
void container::server_connection_options(const connection_options &o) { impl_->server_connection_options(o); }
connection_options container::server_connection_options() const { return impl_->server_connection_options(); }
void container::sender_options(const class sender_options &o) { impl_->sender_options(o); }
class sender_options container::sender_options() const { return impl_->sender_options(); }
void container::receiver_options(const class receiver_options & o) { impl_->receiver_options(o); }
class receiver_options container::receiver_options() const { return impl_->receiver_options(); }
} // namespace proton