summaryrefslogtreecommitdiff
path: root/implementation/endpoints/src/endpoint_definition.cpp
blob: 9547836944fbae84381b2304f7cfb0a184e51b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <vsomeip/constants.hpp>

#include "../include/endpoint_definition.hpp"

namespace vsomeip_v3 {

std::map<std::tuple<service_t, instance_t, boost::asio::ip::address, uint16_t, bool>,
         std::shared_ptr<endpoint_definition> > endpoint_definition::definitions_;

std::mutex endpoint_definition::definitions_mutex_;

std::shared_ptr<endpoint_definition>
endpoint_definition::get(const boost::asio::ip::address &_address,
                         uint16_t _port, bool _is_reliable, service_t _service, instance_t _instance) {
    auto key = std::make_tuple(_service, _instance, _address, _port, _is_reliable);
    std::lock_guard<std::mutex> its_lock(definitions_mutex_);
    std::shared_ptr<endpoint_definition> its_result;

    auto found_endpoint = definitions_.find(key);
    if (found_endpoint != definitions_.end()) {
        its_result = found_endpoint->second;
    }

    if (!its_result) {
            its_result = std::make_shared<endpoint_definition>(
                             _address, _port, _is_reliable);
            definitions_[key] = its_result;
    }

    return its_result;
}

endpoint_definition::endpoint_definition(
        const boost::asio::ip::address &_address, uint16_t _port,
        bool _is_reliable)
        : address_(_address), port_(_port), remote_port_(_port),
          is_reliable_(_is_reliable) {
}

const boost::asio::ip::address & endpoint_definition::get_address() const {
    return address_;
}

uint16_t endpoint_definition::get_port() const {
    return port_;
}

bool endpoint_definition::is_reliable() const {
    return is_reliable_;
}

uint16_t endpoint_definition::get_remote_port() const {
    return remote_port_;
}

void endpoint_definition::set_remote_port(uint16_t _port) {
    remote_port_ = _port;
}


} // namespace vsomeip_v3