summaryrefslogtreecommitdiff
path: root/implementation/tracing/include/channel_impl.hpp
blob: cc2e5831abc7b3748d3dda46018c6bb5ec18dc61 (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
// Copyright (C) 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_TRACE_CHANNEL_IMPL_HPP_
#define VSOMEIP_V3_TRACE_CHANNEL_IMPL_HPP_

#include <atomic>
#include <functional>
#include <map>
#include <mutex>
#include <string>

#include <vsomeip/trace.hpp>

namespace vsomeip_v3 {
namespace trace {

typedef std::function<bool (service_t, instance_t, method_t)> filter_func_t;

class channel_impl : public channel {
public:
    channel_impl(const std::string &_id, const std::string &_name);

    std::string get_id() const;
    std::string get_name() const;

    filter_id_t add_filter(
            const match_t &_match,
            bool _is_positive);

    filter_id_t add_filter(
            const std::vector<match_t> &_matches,
            bool _is_positive);

    filter_id_t add_filter(
            const match_t &_from, const match_t &_to,
            bool _is_positive);

    void remove_filter(
            filter_id_t _id);

    bool matches(service_t _service, instance_t _instance, method_t _method);

private:
    filter_id_t add_filter_intern(const filter_func_t& _func, bool _is_positive);

    std::string id_;
    std::string name_;

    std::atomic<filter_id_t> current_filter_id_;

    std::map<filter_id_t, filter_func_t> positive_;
    std::map<filter_id_t, filter_func_t> negative_;
    std::mutex mutex_; // protects positive_ & negative_
};

} // namespace trace
} // namespace vsomeip_v3

#endif // VSOMEIP_V3_TRACE_CHANNEL_IMPL_HPP_