summaryrefslogtreecommitdiff
path: root/interface/vsomeip/handler.hpp
blob: 7e2bbe9f2751d7816a383df0971c69a9e49c767a (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_HANDLER_HPP_
#define VSOMEIP_V3_HANDLER_HPP_

#include <functional>
#include <memory>
#include <tuple>

#include <vsomeip/primitive_types.hpp>

namespace vsomeip_v3 {

class message;

typedef std::function< void (state_type_e) > state_handler_t;
typedef std::function< void (const std::shared_ptr< message > &) > message_handler_t;
typedef std::function< void (service_t, instance_t, bool) > availability_handler_t;
typedef std::function< bool (client_t, uid_t, gid_t, bool) > subscription_handler_t;
typedef std::function< void (const uint16_t) > error_handler_t;
typedef std::function< void (const service_t, const instance_t, const eventgroup_t,
                             const event_t, const uint16_t) > subscription_status_handler_t;
typedef std::function< void (client_t, uid_t, gid_t, bool, std::function< void (const bool) > )> async_subscription_handler_t;

typedef std::function< void (const std::vector<std::pair<service_t, instance_t>> &_services) > offered_services_handler_t;
typedef std::function< void () > watchdog_handler_t;

struct ip_address_t {
    union {
        ipv4_address_t v4_;
        ipv6_address_t v6_;
    } address_;
    bool is_v4_;

    bool operator<(const ip_address_t& _other) const {
        if (is_v4_ && _other.is_v4_) {
            return address_.v4_ < _other.address_.v4_;
        } else if (!is_v4_ && !_other.is_v4_) {
            return address_.v6_ < _other.address_.v6_;
        } else if (is_v4_ && !_other.is_v4_) {
            return true;
        } else {
            return false;
        }
    }

    bool operator==(const ip_address_t& _other) const {
        if (is_v4_ && _other.is_v4_) {
            return address_.v4_ == _other.address_.v4_;
        } else if (!is_v4_ && !_other.is_v4_) {
            return address_.v6_ == _other.address_.v6_;
        } else {
            return false;
        }
    }

    bool operator!=(const ip_address_t& _other) const {
        return !(*this == _other);
    }

};

struct remote_info_t {
    ip_address_t ip_;
    std::uint16_t first_;
    std::uint16_t last_;
    bool is_range_;
    bool is_reliable_;

    bool operator<(const remote_info_t& _other) const {
        return std::tie(ip_, first_, last_, is_range_, is_reliable_) <
                std::tie(_other.ip_, _other.first_, _other.last_,
                         _other.is_range_, _other.is_reliable_);
    }
};

typedef std::function<bool(const remote_info_t&)> sd_acceptance_handler_t;
typedef std::function<void(const ip_address_t&)> reboot_notification_handler_t;
typedef std::function<void()> routing_ready_handler_t;
typedef std::function<void(routing_state_e)> routing_state_handler_t;
typedef std::function<void(security_update_state_e)> security_update_handler_t;

} // namespace vsomeip_v3

#endif // VSOMEIP_V3_HANDLER_HPP_