summaryrefslogtreecommitdiff
path: root/src/test/src-gen/core/v1/commonapi/tests/managed/RootInterfaceStubDefault.cpp
blob: 9a060177fc7b030d1112feecff36af7710a798ce (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* This file was generated by the CommonAPI Generators.
* Used org.genivi.commonapi.core 3.1.4.v201511201311.
* Used org.franca.core 0.9.1.201412191134.
*
* 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 <v1/commonapi/tests/managed/RootInterfaceStubDefault.hpp>
#include <assert.h>

namespace v1 {
namespace commonapi {
namespace tests {
namespace managed {

RootInterfaceStubDefault::RootInterfaceStubDefault():
        remoteEventHandler_(this),
        autoInstanceCounter_(0),
        interfaceVersion_(RootInterface::getInterfaceVersion()) {
}

const CommonAPI::Version& RootInterfaceStubDefault::getInterfaceVersion(std::shared_ptr<CommonAPI::ClientId> _client) {
    (void)_client;
    return interfaceVersion_;
}

RootInterfaceStubRemoteEvent* RootInterfaceStubDefault::initStubAdapter(const std::shared_ptr<RootInterfaceStubAdapter> &_adapter) {
    CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_ = _adapter;
    return &remoteEventHandler_;
}


void RootInterfaceStubDefault::testRootMethod(const std::shared_ptr<CommonAPI::ClientId> _client, int32_t _inInt, std::string _inString, testRootMethodReply_t _reply) {
    (void)_client;
    (void) _inInt;
    (void) _inString;
    RootInterface::testRootMethodError error;
    int32_t outInt = 0;
    std::string outString = "";
    _reply(error, outInt, outString);
}



bool RootInterfaceStubDefault::registerManagedStubLeafInterfaceAutoInstance(std::shared_ptr<::v1::commonapi::tests::managed::LeafInterfaceStub> _stub) {
    autoInstanceCounter_++;
    std::stringstream ss;
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) {
        ss << stubAdapter->getAddress().getInstance() << ".i" << autoInstanceCounter_;
        std::string instance = ss.str();
        return stubAdapter->registerManagedStubLeafInterface(_stub, instance);
    } else {
        return false;
    }
}
bool RootInterfaceStubDefault::registerManagedStubLeafInterface(std::shared_ptr<::v1::commonapi::tests::managed::LeafInterfaceStub> _stub, const std::string &_instance) {
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) 
        return stubAdapter->registerManagedStubLeafInterface(_stub, _instance);
    else
        return false;
}
bool RootInterfaceStubDefault::deregisterManagedStubLeafInterface(const std::string &_instance) {
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) 
        return stubAdapter->deregisterManagedStubLeafInterface(_instance);
    else
        return false;
}
std::set<std::string>& RootInterfaceStubDefault::getLeafInterfaceInstances() {
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) {
        return stubAdapter->getLeafInterfaceInstances();
    } else {
        static std::set<std::string> emptySet = std::set<std::string>();
        return emptySet;
    }
}
bool RootInterfaceStubDefault::registerManagedStubBranchInterfaceAutoInstance(std::shared_ptr<::v1::commonapi::tests::managed::BranchInterfaceStub> _stub) {
    autoInstanceCounter_++;
    std::stringstream ss;
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) {
        ss << stubAdapter->getAddress().getInstance() << ".i" << autoInstanceCounter_;
        std::string instance = ss.str();
        return stubAdapter->registerManagedStubBranchInterface(_stub, instance);
    } else {
        return false;
    }
}
bool RootInterfaceStubDefault::registerManagedStubBranchInterface(std::shared_ptr<::v1::commonapi::tests::managed::BranchInterfaceStub> _stub, const std::string &_instance) {
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) 
        return stubAdapter->registerManagedStubBranchInterface(_stub, _instance);
    else
        return false;
}
bool RootInterfaceStubDefault::deregisterManagedStubBranchInterface(const std::string &_instance) {
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) 
        return stubAdapter->deregisterManagedStubBranchInterface(_instance);
    else
        return false;
}
std::set<std::string>& RootInterfaceStubDefault::getBranchInterfaceInstances() {
    assert((CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock()) !=NULL);
    auto stubAdapter = CommonAPI::Stub<RootInterfaceStubAdapter, RootInterfaceStubRemoteEvent>::stubAdapter_.lock();
    if (stubAdapter) {
        return stubAdapter->getBranchInterfaceInstances();
    } else {
        static std::set<std::string> emptySet = std::set<std::string>();
        return emptySet;
    }
}

RootInterfaceStubDefault::RemoteEventHandler::RemoteEventHandler(RootInterfaceStubDefault *_defaultStub)
    : 
      defaultStub_(_defaultStub) {
}

} // namespace managed
} // namespace tests
} // namespace commonapi
} // namespace v1