blob: c8d91f2649104729f16008b5a93f26f51b5a871b [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/session_options.hpp"
#include "proton/session.hpp"
#include "proton/connection.hpp"
#include "proton/container.hpp"
#include <proton/session.h>
#include "messaging_adapter.hpp"
#include "container_impl.hpp"
#include "proton_bits.hpp"
namespace proton {
template <class T> struct option {
T value;
bool set;
option() : value(), set(false) {}
option& operator=(const T& x) { value = x; set = true; return *this; }
void update(const option<T>& x) { if (x.set) *this = x.value; }
};
class session_options::impl {
public:
option<proton_handler *> handler;
void apply(session& s) {
if (s.uninitialized()) {
if (handler.set) {
pn_record_t *record = pn_session_attachments(unwrap(s));
// FIXME aconway 2016-05-04: container_impl specific
internal::pn_ptr<pn_handler_t> chandler =
static_cast<container_impl&>(s.connection().container()).cpp_handler(handler.value);
pn_record_set_handler(record, chandler.get());
}
}
}
};
session_options::session_options() : impl_(new impl()) {}
session_options::session_options(const session_options& x) : impl_(new impl()) {
*this = x;
}
session_options::~session_options() {}
session_options& session_options::operator=(const session_options& x) {
*impl_ = *x.impl_;
return *this;
}
session_options& session_options::handler(class messaging_handler *h) { impl_->handler = h->messaging_adapter_.get(); return *this; }
void session_options::apply(session& s) const { impl_->apply(s); }
} // namespace proton