-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouteManagerBase.cpp
More file actions
141 lines (116 loc) · 3.93 KB
/
Copy pathRouteManagerBase.cpp
File metadata and controls
141 lines (116 loc) · 3.93 KB
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
135
136
137
138
139
140
#include "MicroMiddleware/Interfaces/RouteManagerBase.h"
#include "MicroMiddleware/CommonDefines.h"
//#include "MicroMiddleware/MiddlewareSettings.h"
namespace MicroMiddleware
{
/* -------------------------------------------------------
class RouteManagerInterface
---------------------------------------------------------*/
RouteManagerInterface::RouteManagerInterface()
{
}
RouteManagerInterface::~RouteManagerInterface()
{
}
/* -------------------------------------------------------
functions
---------------------------------------------------------*/
int RouteManagerInterface::GetInterfaceId() const
{
return RouteManagerInterfaceId;
}
std::string RouteManagerInterface::GetInterfaceName() const
{
return RPC_FUNCTION_STRING;
}
/* -------------------------------------------------------
Proxy
---------------------------------------------------------*/
RouteManagerProxy::RouteManagerProxy(const std::string &serviceName, const std::string &connectedToName)
: INetProxy(serviceName, connectedToName, RouteManagerInterface::GetInterfaceName())
{
}
RouteManagerProxy::~RouteManagerProxy()
{
}
InterfaceHandle RouteManagerProxy::ConnectToPeer(InterfaceHandle &hostHandle, InterfaceHandle &remoteHandle)
{
NetworkLib::SerializeWriter::Ptr writer = BeginMarshal(RouteManagerInterface::RmiConnectToPeer);
hostHandle.Write(writer.get());
remoteHandle.Write(writer.get());
EndMarshal(writer);
SerializeReader::Ptr reader = BeginUnmarshal();
InterfaceHandle returnHandle;
returnHandle.Read(reader.get());
EndUnmarshal(reader);
return returnHandle;
}
void RouteManagerProxy::SetConnection(HostInformation &info)
{
iDebug() << COMPONENT_FUNCTION << "WARNING! Not implemented : " << GetServiceName();
cout << COMPONENT_FUNCTION << "HostInformation from INetConnection: " << info << endl;
//MutexLocker lock(&mutex_);
/*cout << COMPONENT_FUNCTION << GetServiceName() << endl;
ServiceConnectionManager *service = ServiceConnectionManager::GetOrCreate();
if(info.GetOnlineStatus() == HostInformation::ONLINE)
{
info.SetComponentName(GetServiceName());
service->RegisterService(info);
}
else
{
ASSERT(info.GetOnlineStatus() == HostInformation::OFFLINE);
service->RemoveService(GetServiceName());
}*/
}
/* -------------------------------------------------------
Stub
---------------------------------------------------------*/
RouteManagerStub::RouteManagerStub(const std::string &serviceName, RouteManagerInterface* serverInterface)
: INetStub(serviceName, serverInterface->GetInterfaceName())
, routeManager_(serverInterface)
{
}
RouteManagerStub::~RouteManagerStub()
{
}
bool RouteManagerStub::RPCall(const RpcIdentifier &rpc, SerializeReader::Ptr &reader)
{
switch(rpc.GetMethodId())
{
case RouteManagerInterface::RmiConnectToPeer:
{
InterfaceHandle hostHandle, remoteHandle;
ReceiveRpcObject(&hostHandle, reader);
ReceiveRpcObject(&remoteHandle, reader);
EndUnmarshal(reader);
InterfaceHandle returnHandle = routeManager_->ConnectToPeer(hostHandle, remoteHandle);
NetworkLib::SerializeWriter::Ptr writer = BeginMarshal(RouteManagerInterface::RmiConnectToPeer);
returnHandle.Write(writer.get());
return EndMarshal(writer);
}
default:
cerr << COMPONENT_FUNCTION << " RMI not implemented " << rpc.GetMethodId()<< endl;
return true;
}
return true;
}
void RouteManagerStub::SetConnection(HostInformation &info)
{
iDebug() << COMPONENT_FUNCTION << "WARNING! Not implemented : " << GetServiceName();
cout << COMPONENT_FUNCTION << "HostInformation from INetConnection: " << info << endl;
/*//MutexLocker lock(&mutex_);
cout << COMPONENT_FUNCTION << GetServiceName() << endl;
ServiceConnectionManager *service = ServiceConnectionManager::GetOrCreate();
if(info.GetOnlineStatus() == HostInformation::ONLINE)
{
info.SetComponentName(GetServiceName());
service->RegisterService(info);
}
else
{
ASSERT(info.GetOnlineStatus() == HostInformation::OFFLINE);
service->RemoveService(GetServiceName());
}*/
}
}