summaryrefslogtreecommitdiff
path: root/implementation/runtime/include/runtime_impl.hpp
blob: c376e6d2fd3337f8ab0722b5180f6a09b27d171a (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
// 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_RUNTIME_IMPL_HPP
#define VSOMEIP_RUNTIME_IMPL_HPP

#include <vsomeip/runtime.hpp>
#include <map>
#include <mutex>

namespace vsomeip {

class runtime_impl: public runtime {
public:

    static std::string get_property(const std::string &_name);
    static void set_property(const std::string &_name, const std::string &_value);

    static std::shared_ptr<runtime> get();

    virtual ~runtime_impl();

    std::shared_ptr<application> create_application(
            const std::string &_name);

    std::shared_ptr<message> create_message(bool _reliable) const;
    std::shared_ptr<message> create_request(bool _reliable) const;
    std::shared_ptr<message> create_response(
            const std::shared_ptr<message> &_request) const;
    std::shared_ptr<message> create_notification(bool _reliable) const;

    std::shared_ptr<payload> create_payload() const;
    std::shared_ptr<payload> create_payload(const byte_t *_data,
            uint32_t _size) const;
    std::shared_ptr<payload> create_payload(
            const std::vector<byte_t> &_data) const;

    std::shared_ptr<application> get_application(
            const std::string &_name) const;

    void remove_application( const std::string &_name);

private:
    static std::shared_ptr<runtime> the_runtime_;
    static std::map<std::string, std::string> properties_;

    std::map<std::string, std::weak_ptr<application>> applications_;

    mutable std::mutex applications_mutex_;
    static uint32_t postfix_id;
};

} // namespace vsomeip

#endif // VSOMEIP_RUNTIME_IMPL_HPP