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
141
142
143
144
145
146
147
148
|
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceUtil/IceUtil.h>
#include <Ice/Ice.h>
#include <IceDiscovery/PluginI.h>
#include <IceDiscovery/LocatorI.h>
#include <IceDiscovery/LookupI.h>
using namespace std;
using namespace IceDiscovery;
//
// Plugin factory function.
//
extern "C"
{
ICE_DECLSPEC_EXPORT Ice::Plugin*
createIceDiscovery(const Ice::CommunicatorPtr& communicator, const string&, const Ice::StringSeq&)
{
return new PluginI(communicator);
}
}
PluginI::PluginI(const Ice::CommunicatorPtr& communicator) : _communicator(communicator)
{
}
void
PluginI::initialize()
{
Ice::PropertiesPtr properties = _communicator->getProperties();
bool ipv4 = properties->getPropertyAsIntWithDefault("Ice.IPv4", 1) > 0;
bool preferIPv6 = properties->getPropertyAsInt("Ice.PreferIPv6Address") > 0;
string address;
if(ipv4 && !preferIPv6)
{
address = properties->getPropertyWithDefault("IceDiscovery.Address", "239.255.0.1");
}
else
{
address = properties->getPropertyWithDefault("IceDiscovery.Address", "ff15::1");
}
int port = properties->getPropertyAsIntWithDefault("IceDiscovery.Port", 4061);
string interface = properties->getProperty("IceDiscovery.Interface");
if(properties->getProperty("IceDiscovery.Multicast.Endpoints").empty())
{
ostringstream os;
os << "udp -h \"" << address << "\" -p " << port;
if(!interface.empty())
{
os << " --interface \"" << interface << "\"";
}
properties->setProperty("IceDiscovery.Multicast.Endpoints", os.str());
}
if(properties->getProperty("IceDiscovery.Reply.Endpoints").empty())
{
ostringstream os;
os << "udp";
if(!interface.empty())
{
os << " -h \"" << interface << "\"";
}
properties->setProperty("IceDiscovery.Reply.Endpoints", os.str());
}
if(properties->getProperty("IceDiscovery.Locator.Endpoints").empty())
{
properties->setProperty("IceDiscovery.Locator.AdapterId", IceUtil::generateUUID());
}
_multicastAdapter = _communicator->createObjectAdapter("IceDiscovery.Multicast");
_replyAdapter = _communicator->createObjectAdapter("IceDiscovery.Reply");
_locatorAdapter = _communicator->createObjectAdapter("IceDiscovery.Locator");
//
// Setup locatory registry.
//
LocatorRegistryIPtr locatorRegistry = new LocatorRegistryI(_communicator);
Ice::LocatorRegistryPrx locatorRegistryPrx =
Ice::LocatorRegistryPrx::uncheckedCast(_locatorAdapter->addWithUUID(locatorRegistry));
string lookupEndpoints = properties->getProperty("IceDiscovery.Lookup");
if(lookupEndpoints.empty())
{
ostringstream os;
os << "udp -h \"" << address << "\" -p " << port;
if(!interface.empty())
{
os << " --interface \"" << interface << "\"";
}
lookupEndpoints = os.str();
}
Ice::ObjectPrx lookupPrx = _communicator->stringToProxy("IceDiscovery/Lookup -d:" + lookupEndpoints);
lookupPrx = lookupPrx->ice_collocationOptimized(false); // No collocation optimization for the multicast proxy!
try
{
// Ensure we can establish a connection to the multicast proxy
lookupPrx->ice_getConnection();
}
catch(const Ice::LocalException& ex)
{
ostringstream os;
os << "unable to establish multicast connection, IceDiscovery will be disabled:\n";
os << "proxy = " << lookupPrx << '\n';
os << ex;
throw Ice::PluginInitializationException(__FILE__, __LINE__, os.str());
}
//
// Add lookup and lookup reply Ice objects
//
_lookup = new LookupI(locatorRegistry, LookupPrx::uncheckedCast(lookupPrx), properties);
_multicastAdapter->add(_lookup, _communicator->stringToIdentity("IceDiscovery/Lookup"));
Ice::ObjectPrx lookupReply = _replyAdapter->addWithUUID(new LookupReplyI(_lookup))->ice_datagram();
_lookup->setLookupReply(LookupReplyPrx::uncheckedCast(lookupReply));
//
// Setup locator on the communicator.
//
Ice::ObjectPrx loc = _locatorAdapter->addWithUUID(new LocatorI(_lookup, locatorRegistryPrx));
_communicator->setDefaultLocator(Ice::LocatorPrx::uncheckedCast(loc));
_multicastAdapter->activate();
_replyAdapter->activate();
_locatorAdapter->activate();
}
void
PluginI::destroy()
{
_multicastAdapter->destroy();
_replyAdapter->destroy();
_locatorAdapter->destroy();
_lookup->destroy();
}
|