summaryrefslogtreecommitdiff
path: root/implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp
blob: 4b6c3b4a0d4f90726d409734c46e5a0742f1761a (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
// 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_E2E_PROFILE_CUSTOM_PROTECTOR_HPP
#define VSOMEIP_E2E_PROFILE_CUSTOM_PROTECTOR_HPP

#include <mutex>
#include "../profile_custom/profile_custom.hpp"
#include "../profile_interface/protector.hpp"

namespace vsomeip {
namespace e2e {
namespace profile_custom {

class protector final : public vsomeip::e2e::profile_interface::protector {
  public:
    protector(void) = delete;

    explicit protector(const profile_config &_config) : config_(_config){};

    void protect(e2e_buffer &_buffer) override final;

  private:

    void write_crc(e2e_buffer &_buffer, uint32_t _computed_crc);

  private:
    profile_config config_;
    std::mutex protect_mutex_;
};

} // namespace profile_custom
} // namespace e2e
} // namespace vsomeip

#endif // VSOMEIP_E2E_PROFILE_CUSTOM_PROTECTOR_HPP