blob: 7443150cfdeda28e41fdb780d8111a86ea89dd7a [file] [log] [blame]
#ifndef PROTON_CPP_CONTAINERIMPL_H
#define PROTON_CPP_CONTAINERIMPL_H
/*
*
* 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/fwd.hpp"
#include "proton/container.hpp"
#include "proton/connection.hpp"
#include "proton/connection_options.hpp"
#include "proton/duration.hpp"
#include "proton/sender.hpp"
#include "proton/sender_options.hpp"
#include "proton/receiver.hpp"
#include "proton/receiver_options.hpp"
#include "messaging_adapter.hpp"
#include "reactor.hpp"
#include "proton_bits.hpp"
#include "proton_handler.hpp"
#include <list>
#include <map>
#include <string>
namespace proton {
class dispatch_helper;
class connector;
class acceptor;
class url;
class listen_handler;
class container::impl {
public:
impl(container& c, const std::string& id, messaging_handler* = 0);
~impl();
std::string id() const { return id_; }
returned<connection> connect(const std::string&, const connection_options&);
returned<sender> open_sender(
const std::string&, const proton::sender_options &, const connection_options &);
returned<receiver> open_receiver(
const std::string&, const proton::receiver_options &, const connection_options &);
listener listen(const std::string&, listen_handler& lh);
void stop_listening(const std::string&);
void client_connection_options(const connection_options &);
connection_options client_connection_options() const { return client_connection_options_; }
void server_connection_options(const connection_options &);
connection_options server_connection_options() const { return server_connection_options_; }
void sender_options(const proton::sender_options&);
class sender_options sender_options() const { return sender_options_; }
void receiver_options(const proton::receiver_options&);
class receiver_options receiver_options() const { return receiver_options_; }
void run();
void stop(const error_condition& err);
void auto_stop(bool set);
void schedule(duration, void_function0&);
#if PN_CPP_HAS_STD_FUNCTION
void schedule(duration, std::function<void()>);
#endif
// non-interface functionality
class connector;
void configure_server_connection(connection &c);
static void schedule(impl& ci, int delay, proton_handler *h);
static void schedule(container& c, int delay, proton_handler *h);
template <class T> static void set_handler(T s, messaging_handler* h);
private:
class handler_context;
class override_handler;
internal::pn_ptr<pn_handler_t> cpp_handler(proton_handler *h);
container& container_;
reactor reactor_;
// Keep a list of all the handlers used by the container so they last as long as the container
std::list<internal::pn_unique_ptr<proton_handler> > handlers_;
std::string id_;
connection_options client_connection_options_;
connection_options server_connection_options_;
proton::sender_options sender_options_;
proton::receiver_options receiver_options_;
typedef std::map<std::string, acceptor> acceptors;
acceptors acceptors_;
bool auto_stop_;
};
template <class T>
void container::impl::set_handler(T s, messaging_handler* mh) {
pn_record_t *record = internal::get_attachments(unwrap(s));
proton_handler* h = new messaging_adapter(*mh);
impl* ci = s.container().impl_.get();
ci->handlers_.push_back(h);
pn_record_set_handler(record, ci->cpp_handler(h).get());
}
}
#endif /*!PROTON_CPP_CONTAINERIMPL_H*/