summaryrefslogtreecommitdiff
path: root/implementation/endpoints/include/local_client_endpoint_impl.hpp
blob: 3eae19137300c581b242c2332d3d5193d0dff42e (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// 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/.

#ifndef VSOMEIP_V3_LOCAL_CLIENT_ENDPOINT_IMPL_HPP_
#define VSOMEIP_V3_LOCAL_CLIENT_ENDPOINT_IMPL_HPP_

#include <boost/asio/io_service.hpp>
#include <boost/asio/local/stream_protocol.hpp>

#ifdef _WIN32
#include <boost/asio/ip/tcp.hpp>
#endif

#include <vsomeip/defines.hpp>

#include "client_endpoint_impl.hpp"

namespace vsomeip_v3 {

#ifdef _WIN32
typedef client_endpoint_impl<
            boost::asio::ip::tcp
        > local_client_endpoint_base_impl;
#else
typedef client_endpoint_impl<
            boost::asio::local::stream_protocol
        > local_client_endpoint_base_impl;
#endif

class local_client_endpoint_impl: public local_client_endpoint_base_impl {
public:
    local_client_endpoint_impl(const std::shared_ptr<endpoint_host>& _endpoint_host,
                               const std::shared_ptr<routing_host>& _routing_host,
                               const endpoint_type& _remote,
                               boost::asio::io_service &_io,
                               const std::shared_ptr<configuration>& _configuration);

    virtual ~local_client_endpoint_impl();

    void start();
    void stop();

    bool is_local() const;

    bool get_remote_address(boost::asio::ip::address &_address) const;
    std::uint16_t get_remote_port() const;

    void restart(bool _force);
    void print_status();

    bool is_reliable() const;

    // this overrides client_endpoint_impl::send to disable the pull method
    // for local communication
    bool send(const uint8_t *_data, uint32_t _size);
    bool send(const std::vector<byte_t>& _cmd_header, const byte_t *_data,
              uint32_t _size);
    void get_configured_times_from_endpoint(
            service_t _service, method_t _method,
            std::chrono::nanoseconds *_debouncing,
            std::chrono::nanoseconds *_maximum_retention) const;
private:
    void send_queued(message_buffer_ptr_t _buffer);

    void send_magic_cookie();

    void connect();
    void receive();
    void receive_cbk(boost::system::error_code const &_error,
                     std::size_t _bytes);
    void set_local_port();
    std::string get_remote_information() const;
    bool check_packetizer_space(std::uint32_t _size);
    bool tp_segmentation_enabled(service_t _service, method_t _method) const;
    std::uint32_t get_max_allowed_reconnects() const;
    void max_allowed_reconnects_reached();

    message_buffer_t recv_buffer_;

    // send data
    message_buffer_ptr_t send_data_buffer_;
};

} // namespace vsomeip_v3

#endif // VSOMEIP_V3_LOCAL_CLIENT_ENDPOINT_IMPL_HPP_