summaryrefslogtreecommitdiff
path: root/implementation/service_discovery/src/runtime.cpp
blob: 54276fddc7c043319546702576c0caab70f085a1 (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
// 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/.

#include "../include/runtime_impl.hpp"
#include "../../configuration/include/internal.hpp"

#ifdef _WIN32
extern "C"
{
    __declspec(dllexport) std::shared_ptr<vsomeip::sd::runtime> VSOMEIP_SD_RUNTIME_SYMBOL;
}
#else
std::shared_ptr<vsomeip::sd::runtime> VSOMEIP_SD_RUNTIME_SYMBOL(vsomeip::sd::runtime::get());
#endif

#ifdef _WIN32
#define CCALL __cdecl
#pragma section(".CRT$XCU",read)
#define INITIALIZER(f) \
    static void __cdecl f(void); \
    __declspec(allocate(".CRT$XCU")) void(__cdecl*f##_)(void) = f; \
    static void __cdecl f(void)

INITIALIZER(init_vsomeip_sd) {
    VSOMEIP_SD_RUNTIME_SYMBOL = vsomeip::sd::runtime::get();
}
#endif

namespace vsomeip {
namespace sd {

std::shared_ptr<runtime> runtime::get() {
    return runtime_impl::get();
}

} // namespace sd
} // namespace vsomeip