1 | // [License]
|
---|
2 | // The Ariba-Underlay Copyright
|
---|
3 | //
|
---|
4 | // Copyright (c) 2008-2009, Institute of Telematics, UniversitÀt Karlsruhe (TH)
|
---|
5 | //
|
---|
6 | // Institute of Telematics
|
---|
7 | // UniversitÀt Karlsruhe (TH)
|
---|
8 | // Zirkel 2, 76128 Karlsruhe
|
---|
9 | // Germany
|
---|
10 | //
|
---|
11 | // Redistribution and use in source and binary forms, with or without
|
---|
12 | // modification, are permitted provided that the following conditions are
|
---|
13 | // met:
|
---|
14 | //
|
---|
15 | // 1. Redistributions of source code must retain the above copyright
|
---|
16 | // notice, this list of conditions and the following disclaimer.
|
---|
17 | // 2. Redistributions in binary form must reproduce the above copyright
|
---|
18 | // notice, this list of conditions and the following disclaimer in the
|
---|
19 | // documentation and/or other materials provided with the distribution.
|
---|
20 | //
|
---|
21 | // THIS SOFTWARE IS PROVIDED BY THE INSTITUTE OF TELEMATICS ``AS IS'' AND
|
---|
22 | // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
23 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
---|
24 | // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARIBA PROJECT OR
|
---|
25 | // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
---|
26 | // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
---|
27 | // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
---|
28 | // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
---|
29 | // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
---|
30 | // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
---|
31 | // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
32 | //
|
---|
33 | // The views and conclusions contained in the software and documentation
|
---|
34 | // are those of the authors and should not be interpreted as representing
|
---|
35 | // official policies, either expressed or implied, of the Institute of
|
---|
36 | // Telematics.
|
---|
37 | // [License]
|
---|
38 |
|
---|
39 | #ifndef BASEOVERLAY_H_
|
---|
40 | #define BASEOVERLAY_H_
|
---|
41 |
|
---|
42 | #include <map>
|
---|
43 | #include <iostream>
|
---|
44 | #include <algorithm>
|
---|
45 | #include <ctime>
|
---|
46 | #include <list>
|
---|
47 | #include <vector>
|
---|
48 | #include <deque>
|
---|
49 | #include <boost/foreach.hpp>
|
---|
50 |
|
---|
51 | #include "ariba/utility/messages.h"
|
---|
52 | #include "ariba/utility/types.h"
|
---|
53 | #include "ariba/utility/misc/Helper.h"
|
---|
54 | #include "ariba/utility/misc/Demultiplexer.hpp"
|
---|
55 | #include "ariba/utility/logging/Logging.h"
|
---|
56 | #include "ariba/utility/system/Timer.h"
|
---|
57 |
|
---|
58 | #include "ariba/communication/EndpointDescriptor.h"
|
---|
59 | #include "ariba/communication/BaseCommunication.h"
|
---|
60 | #include "ariba/communication/CommunicationEvents.h"
|
---|
61 |
|
---|
62 | #include "ariba/overlay/modules/OverlayInterface.h"
|
---|
63 | #include "ariba/overlay/modules/OverlayFactory.h"
|
---|
64 | #include "ariba/overlay/modules/OverlayStructureEvents.h"
|
---|
65 | #include "ariba/overlay/OverlayBootstrap.h"
|
---|
66 |
|
---|
67 | // forward declarations
|
---|
68 | namespace ariba {
|
---|
69 | class NodeListener;
|
---|
70 | class CommunicationListener;
|
---|
71 | class SideportListener;
|
---|
72 | namespace utility {
|
---|
73 | class OvlVis;
|
---|
74 | }
|
---|
75 | }
|
---|
76 |
|
---|
77 | using std::vector;
|
---|
78 | using std::list;
|
---|
79 | using std::cout;
|
---|
80 | using std::map;
|
---|
81 | using std::make_pair;
|
---|
82 | using std::pair;
|
---|
83 | using std::find;
|
---|
84 | using std::deque;
|
---|
85 |
|
---|
86 | // ariba interface
|
---|
87 | using ariba::NodeListener;
|
---|
88 | using ariba::SideportListener;
|
---|
89 | using ariba::CommunicationListener;
|
---|
90 |
|
---|
91 | // overlay
|
---|
92 | using ariba::overlay::OverlayBootstrap;
|
---|
93 |
|
---|
94 | // communication
|
---|
95 | using ariba::communication::EndpointDescriptor;
|
---|
96 | using ariba::communication::BaseCommunication;
|
---|
97 | using ariba::communication::CommunicationEvents;
|
---|
98 |
|
---|
99 | // utilities
|
---|
100 | using ariba::utility::NodeID;
|
---|
101 | using ariba::utility::SpoVNetID;
|
---|
102 | using ariba::utility::LinkID;
|
---|
103 | using ariba::utility::Identifier;
|
---|
104 | using ariba::utility::ServiceID;
|
---|
105 | using ariba::utility::QoSParameterSet;
|
---|
106 | using ariba::utility::SecurityParameterSet;
|
---|
107 | using ariba::utility::Demultiplexer;
|
---|
108 | using ariba::utility::MessageReceiver;
|
---|
109 | using ariba::utility::MessageSender;
|
---|
110 | using ariba::utility::seqnum_t;
|
---|
111 | using ariba::utility::Timer;
|
---|
112 | using ariba::utility::OvlVis;
|
---|
113 |
|
---|
114 | #define ovl OvlVis::instance()
|
---|
115 | #define ovlId OvlVis::NETWORK_ID_BASE_OVERLAY
|
---|
116 |
|
---|
117 | namespace ariba {
|
---|
118 | namespace overlay {
|
---|
119 |
|
---|
120 | class LinkDescriptor;
|
---|
121 |
|
---|
122 | class BaseOverlay: public MessageReceiver,
|
---|
123 | public CommunicationEvents,
|
---|
124 | public OverlayStructureEvents,
|
---|
125 | protected Timer {
|
---|
126 |
|
---|
127 | friend class OneHop;
|
---|
128 | friend class Chord;
|
---|
129 | friend class ariba::SideportListener;
|
---|
130 |
|
---|
131 | use_logging_h( BaseOverlay );
|
---|
132 |
|
---|
133 | public:
|
---|
134 |
|
---|
135 | /**
|
---|
136 | * Constructs an empty non-functional base overlay instance
|
---|
137 | */
|
---|
138 | BaseOverlay();
|
---|
139 |
|
---|
140 | /**
|
---|
141 | * Destructs a base overlay instance
|
---|
142 | */
|
---|
143 | virtual ~BaseOverlay();
|
---|
144 |
|
---|
145 | /**
|
---|
146 | * Starts the Base Overlay instance
|
---|
147 | */
|
---|
148 | void start(BaseCommunication& _basecomm, const NodeID& _nodeid);
|
---|
149 |
|
---|
150 | /**
|
---|
151 | * Stops the Base Overlay instance
|
---|
152 | */
|
---|
153 | void stop();
|
---|
154 |
|
---|
155 | /**
|
---|
156 | * Starts a link establishment procedure to the specfied node
|
---|
157 | * for the service with id service
|
---|
158 | *
|
---|
159 | * @param node Destination node id
|
---|
160 | * @param service Service to connect to
|
---|
161 | * @param linkid Link identifier to be used with this link
|
---|
162 | */
|
---|
163 | const LinkID establishLink(const NodeID& node, const ServiceID& service,
|
---|
164 | const LinkID& linkid = LinkID::UNSPECIFIED);
|
---|
165 |
|
---|
166 | /**
|
---|
167 | * Starts a link establishment procedure to the specified
|
---|
168 | * endpoint and to the specified service. Concurrently it tries to
|
---|
169 | * establish a relay link over the overlay using the nodeid
|
---|
170 | */
|
---|
171 | const LinkID establishLink(const EndpointDescriptor& ep, const NodeID& nodeid,
|
---|
172 | const ServiceID& service, const LinkID& linkid = LinkID::UNSPECIFIED);
|
---|
173 |
|
---|
174 | /**
|
---|
175 | * Starts a link establishment procedure to the specified
|
---|
176 | * endpoint and to the specified service
|
---|
177 | */
|
---|
178 | const LinkID establishLink(const EndpointDescriptor& ep,
|
---|
179 | const ServiceID& service, const LinkID& linkid = LinkID::UNSPECIFIED);
|
---|
180 |
|
---|
181 | /// drops a link
|
---|
182 | void dropLink(const LinkID& link);
|
---|
183 |
|
---|
184 | /// sends a message over an existing link
|
---|
185 | seqnum_t sendMessage(const Message* message, const LinkID& link);
|
---|
186 |
|
---|
187 | /// sends a message to a node and a specific service
|
---|
188 | seqnum_t sendMessage(const Message* message, const NodeID& node,
|
---|
189 | const ServiceID& service);
|
---|
190 |
|
---|
191 | /**
|
---|
192 | * Send out a message to all nodes that are known in the overlay structure.
|
---|
193 | * Depending on the structure of the overlay, this can be very different.
|
---|
194 | */
|
---|
195 | void broadcastMessage(Message* message, const ServiceID& service);
|
---|
196 |
|
---|
197 | /**
|
---|
198 | * Returns the end-point descriptor of a link.
|
---|
199 | *
|
---|
200 | * @param link the link id of the requested end-point
|
---|
201 | * @return The end-point descriptor of the link's end-point
|
---|
202 | */
|
---|
203 | const EndpointDescriptor& getEndpointDescriptor(const LinkID& link =
|
---|
204 | LinkID::UNSPECIFIED) const;
|
---|
205 |
|
---|
206 | /**
|
---|
207 | * Get a list of overlay neighbors.
|
---|
208 | *
|
---|
209 | * @return A list of overlay neighbors.
|
---|
210 | */
|
---|
211 | vector<NodeID> getOverlayNeighbors() const;
|
---|
212 |
|
---|
213 | /**
|
---|
214 | * Returns a end-endpoint descriptor of a overlay neighbor.
|
---|
215 | * If the node is not known -- an unspecified endpoint descriptor is
|
---|
216 | * returned.
|
---|
217 | *
|
---|
218 | * @param node The node identifer of a overlay neighbor.
|
---|
219 | * @return The end-point descriptor of the node or unspecified.
|
---|
220 | */
|
---|
221 | const EndpointDescriptor& getEndpointDescriptor(const NodeID& node) const;
|
---|
222 |
|
---|
223 | // TODO: Doc
|
---|
224 | bool bind(CommunicationListener* listener, const ServiceID& sid);
|
---|
225 |
|
---|
226 | // TODO: Doc
|
---|
227 | bool unbind(CommunicationListener* listener, const ServiceID& sid);
|
---|
228 |
|
---|
229 | // TODO: Doc
|
---|
230 | bool bind(NodeListener* listener);
|
---|
231 |
|
---|
232 | // TODO: Doc
|
---|
233 | bool unbind(NodeListener* listener);
|
---|
234 |
|
---|
235 | // TODO: Doc
|
---|
236 | bool registerSidePort(SideportListener* _sideport);
|
---|
237 |
|
---|
238 | // TODO: Doc
|
---|
239 | bool unregisterSidePort(SideportListener* _sideport);
|
---|
240 |
|
---|
241 | /**
|
---|
242 | * Returns the own nodeID or the NodeID of the specified link
|
---|
243 | *
|
---|
244 | * @param lid The link identifier
|
---|
245 | * @return The NodeID of the link
|
---|
246 | */
|
---|
247 | const NodeID& getNodeID(const LinkID& lid = LinkID::UNSPECIFIED) const;
|
---|
248 |
|
---|
249 | /**
|
---|
250 | * Return all Links for the specified remote nodeid, or all links when
|
---|
251 | * the node id given is set to unspecified
|
---|
252 | *
|
---|
253 | * @param nid The node id to request links for, or unspecified for all links
|
---|
254 | * @return a vector that contains all the link ids requested
|
---|
255 | */
|
---|
256 | vector<LinkID> getLinkIDs(const NodeID& nid = NodeID::UNSPECIFIED) const;
|
---|
257 |
|
---|
258 | /**
|
---|
259 | * Join a existing sponaneous virtual network (spovnet).
|
---|
260 | *
|
---|
261 | * @param id A spovnet identifier
|
---|
262 | * @param boot A bootstrap node
|
---|
263 | */
|
---|
264 | void joinSpoVNet(const SpoVNetID& id, const EndpointDescriptor& boot);
|
---|
265 |
|
---|
266 | /**
|
---|
267 | * Initiates a new spontaneous virtual network.
|
---|
268 | * This makes this BaseOverlay to the SpoVNet-Initiator.
|
---|
269 | *
|
---|
270 | * @param id The spovnet identifier
|
---|
271 | */
|
---|
272 | void createSpoVNet(const SpoVNetID& id, const OverlayParameterSet& param =
|
---|
273 | OverlayParameterSet::DEFAULT, const SecurityParameterSet& sec =
|
---|
274 | SecurityParameterSet::DEFAULT, const QoSParameterSet& qos =
|
---|
275 | QoSParameterSet::DEFAULT);
|
---|
276 |
|
---|
277 | /**
|
---|
278 | * Let the node leave the SpoVNet.
|
---|
279 | */
|
---|
280 | void leaveSpoVNet();
|
---|
281 |
|
---|
282 | protected:
|
---|
283 |
|
---|
284 | /**
|
---|
285 | * @see ariba::communication::CommunicationEvents.h
|
---|
286 | */
|
---|
287 | virtual void onLinkUp(const LinkID& id, const NetworkLocator* local,
|
---|
288 | const NetworkLocator* remote);
|
---|
289 |
|
---|
290 | /**
|
---|
291 | * @see ariba::communication::CommunicationEvents.h
|
---|
292 | */
|
---|
293 | virtual void onLinkDown(const LinkID& id, const NetworkLocator* local,
|
---|
294 | const NetworkLocator* remote);
|
---|
295 |
|
---|
296 | /**
|
---|
297 | * @see ariba::communication::CommunicationEvents.h
|
---|
298 | */
|
---|
299 | virtual void onLinkChanged(const LinkID& id,
|
---|
300 | const NetworkLocator* oldlocal, const NetworkLocator* newlocal,
|
---|
301 | const NetworkLocator* oldremote, const NetworkLocator* newremote);
|
---|
302 |
|
---|
303 | /**
|
---|
304 | * @see ariba::communication::CommunicationEvents.h
|
---|
305 | */
|
---|
306 | virtual void onLinkFail(const LinkID& id, const NetworkLocator* local,
|
---|
307 | const NetworkLocator* remote);
|
---|
308 |
|
---|
309 | /**
|
---|
310 | * @see ariba::communication::CommunicationEvents.h
|
---|
311 | */
|
---|
312 | virtual void onLinkQoSChanged(const LinkID& id,
|
---|
313 | const NetworkLocator* local, const NetworkLocator* remote,
|
---|
314 | const QoSParameterSet& qos);
|
---|
315 |
|
---|
316 | /**
|
---|
317 | * @see ariba::communication::CommunicationEvents.h
|
---|
318 | */
|
---|
319 | virtual bool onLinkRequest(const LinkID& id, const NetworkLocator* local,
|
---|
320 | const NetworkLocator* remote);
|
---|
321 |
|
---|
322 | /**
|
---|
323 | * Processes a received message from BaseCommunication
|
---|
324 | *
|
---|
325 | * In case of a message routed by the overlay the source identifies
|
---|
326 | * the node the message came from!
|
---|
327 | */
|
---|
328 | virtual bool receiveMessage(const Message* message, const LinkID& link,
|
---|
329 | const NodeID& source = NodeID::UNSPECIFIED);
|
---|
330 |
|
---|
331 | //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
332 |
|
---|
333 | /// handles an incoming message with link descriptor
|
---|
334 | bool handleMessage(const Message* message,
|
---|
335 | const LinkID& boLink, const LinkID& bcLink, const NodeID& remoteNode );
|
---|
336 |
|
---|
337 | //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
338 | /**
|
---|
339 | * This method is called, when a routed message arrives from the
|
---|
340 | * overlay.
|
---|
341 | *
|
---|
342 | * @see OverlayStructureEvents.h
|
---|
343 | */
|
---|
344 | virtual void incomingRouteMessage(Message* msg,
|
---|
345 | const LinkID& link = LinkID::UNSPECIFIED,
|
---|
346 | const NodeID& source = NodeID::UNSPECIFIED);
|
---|
347 |
|
---|
348 | /**
|
---|
349 | * This method is called, when a new node joined the network
|
---|
350 | *
|
---|
351 | * @see OverlayStructureEvents.h
|
---|
352 | */
|
---|
353 | virtual void onNodeJoin(const NodeID& node);
|
---|
354 |
|
---|
355 | /**
|
---|
356 | * Timer Event method
|
---|
357 | */
|
---|
358 | virtual void eventFunction();
|
---|
359 |
|
---|
360 | private:
|
---|
361 |
|
---|
362 | /// The state of the BaseOverlay
|
---|
363 | typedef enum _BaseOverlayState {
|
---|
364 | BaseOverlayStateInvalid = 0,
|
---|
365 | BaseOverlayStateInitiator = 1,
|
---|
366 | BaseOverlayStateJoinInitiated = 2,
|
---|
367 | BaseOverlayStateCompleted = 3,
|
---|
368 | } BaseOverlayState;
|
---|
369 |
|
---|
370 | BaseOverlayState state; ///< Current Base-Overlay state
|
---|
371 | BaseCommunication* bc; ///< reference to the base communication
|
---|
372 | NodeID nodeId; ///< the node id of this node
|
---|
373 | SpoVNetID spovnetId; ///< the spovnet id of the currently joined overlay
|
---|
374 | LinkID initiatorLink; ///< the link id of the link to the initiator node
|
---|
375 | NodeID spovnetInitiator;///< The initiator node
|
---|
376 |
|
---|
377 | /// the service id communication listeners
|
---|
378 | Demultiplexer<CommunicationListener*, ServiceID> communicationListeners;
|
---|
379 |
|
---|
380 | /// the node listeners
|
---|
381 | typedef vector<NodeListener*> NodeListenerVector;
|
---|
382 | NodeListenerVector nodeListeners;
|
---|
383 |
|
---|
384 | /// the sideport listener
|
---|
385 | SideportListener* sideport;
|
---|
386 |
|
---|
387 | /// the used overlay structure
|
---|
388 | OverlayInterface* overlayInterface;
|
---|
389 |
|
---|
390 | /// The link mapping of the node
|
---|
391 | vector<LinkDescriptor*> links;
|
---|
392 | void eraseDescriptor(const LinkID& link, bool communication = false);
|
---|
393 |
|
---|
394 | /// returns a link descriptor for the given id
|
---|
395 | LinkDescriptor* getDescriptor(const LinkID& link,
|
---|
396 | bool communication = false);
|
---|
397 |
|
---|
398 | /// returns a link descriptor for the given id
|
---|
399 | const LinkDescriptor* getDescriptor(const LinkID& link,
|
---|
400 | bool communication = false) const;
|
---|
401 |
|
---|
402 | /// returns a auto-link descriptor for the given node and service id
|
---|
403 | LinkDescriptor* getAutoDescriptor(const NodeID& node, const ServiceID& service);
|
---|
404 |
|
---|
405 | /// adds a new link descriptor or uses an existing one
|
---|
406 | LinkDescriptor* addDescriptor(const LinkID& link = LinkID::UNSPECIFIED);
|
---|
407 |
|
---|
408 | /// returns a direct link relay descriptor to the given relay node
|
---|
409 | LinkDescriptor* getRelayDescriptor( const NodeID& relayNode );
|
---|
410 |
|
---|
411 | /// find a proper relay node that is directly connected to this node
|
---|
412 | const NodeID findRelayNode( const NodeID& id );
|
---|
413 |
|
---|
414 | /// forwards a message over relays/overlay/directly using link descriptor
|
---|
415 | seqnum_t sendMessage( Message* message, const LinkDescriptor* ld );
|
---|
416 |
|
---|
417 | /// creates a link descriptor, applys relay semantics if possible
|
---|
418 | LinkDescriptor* createLinkDescriptor(
|
---|
419 | const NodeID& remoteNode, const ServiceID& service, const LinkID& link_id );
|
---|
420 |
|
---|
421 | // map of a link request map a nonce to a LinkID
|
---|
422 | typedef map<const uint32_t, LinkID> PendingLinkMap;
|
---|
423 | PendingLinkMap pendingLinks;
|
---|
424 |
|
---|
425 | void showLinkState();
|
---|
426 |
|
---|
427 | /**
|
---|
428 | * nodes with pending joines. TODO: should be cleaned every
|
---|
429 | * some seconds, add timestamps to each, and check on occasion
|
---|
430 | */
|
---|
431 | typedef vector<NodeID> JoiningNodes;
|
---|
432 | JoiningNodes joiningNodes;
|
---|
433 |
|
---|
434 | int counter;
|
---|
435 |
|
---|
436 | /**
|
---|
437 | * Bootstrapper for our spovnet
|
---|
438 | */
|
---|
439 | OverlayBootstrap overlayBootstrap;
|
---|
440 | };
|
---|
441 |
|
---|
442 | }} // namespace ariba, overlay
|
---|
443 |
|
---|
444 | #endif /*BASEOVERLAY_H_*/
|
---|