blob: 32314c7d7b01fe9f6b23353d43f28a7fe582ba68 [file] [log] [blame]
//
// load_balancing_option.cpp
//
// Author: Lutz Bichler
//
// This file is part of the BMW Some/IP implementation.
//
// Copyright © 2013, 2014 Bayerische Motoren Werke AG (BMW).
// All rights reserved.
//
#include <vsomeip/serializer.hpp>
#include <vsomeip/deserializer.hpp>
#include <vsomeip/service_discovery/impl/load_balancing_option_impl.hpp>
namespace vsomeip {
namespace service_discovery {
load_balancing_option_impl::load_balancing_option_impl() {
length_ = 1 + 2 + 2;
type_ = option_type::LOAD_BALANCING;
priority_ = 0;
weight_ = 0;
}
load_balancing_option_impl::~load_balancing_option_impl() {
}
bool load_balancing_option_impl::operator ==(const option &_other) const {
if (_other.get_type() != option_type::LOAD_BALANCING)
return false;
const load_balancing_option_impl& other
= reinterpret_cast<const load_balancing_option_impl&>(_other);
return (priority_ == other.priority_
&& weight_ == other.weight_);
}
priority load_balancing_option_impl::get_priority() const {
return priority_;
}
void load_balancing_option_impl::set_priority(priority _priority) {
priority_ = _priority;
}
weight load_balancing_option_impl::get_weight() const {
return weight_;
}
void load_balancing_option_impl::set_weight(weight _weight) {
weight_ = _weight;
}
bool load_balancing_option_impl::serialize(vsomeip::serializer *_to) const {
bool is_successful = option_impl::serialize(_to);
is_successful = is_successful && _to->serialize(static_cast<uint16_t>(priority_));
is_successful = is_successful && _to->serialize(static_cast<uint16_t>(weight_));
return is_successful;
}
bool load_balancing_option_impl::deserialize(vsomeip::deserializer *_from) {
bool is_successful = option_impl::deserialize(_from);
uint16_t tmp_priority = 0;
is_successful = is_successful && _from->deserialize(tmp_priority);
priority_ = static_cast<priority>(tmp_priority);
uint16_t tmp_weight = 0;
is_successful = is_successful && _from->deserialize(tmp_weight);
weight_ = static_cast<weight>(tmp_weight);
return is_successful;
}
} // namespace service_discovery
} // namespace vsomeip