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 INSTITUTE OF TELEMATICS 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 | #include "Node.h" |
---|
40 | |
---|
41 | #include "ariba/overlay/BaseOverlay.h" |
---|
42 | #include "ariba/utility/types/OverlayParameterSet.h" |
---|
43 | #include "ariba/communication/EndpointDescriptor.h" |
---|
44 | |
---|
45 | using ariba::communication::EndpointDescriptor; |
---|
46 | |
---|
47 | namespace ariba { |
---|
48 | |
---|
49 | Node::Node(AribaModule& ariba_mod, const Name& node_name) : |
---|
50 | ariba_mod(ariba_mod), name(node_name) { |
---|
51 | base_overlay = new BaseOverlay(); |
---|
52 | } |
---|
53 | |
---|
54 | Node::~Node() { |
---|
55 | delete base_overlay; |
---|
56 | base_overlay = NULL; |
---|
57 | } |
---|
58 | |
---|
59 | void Node::join(const Name& vnetname) { |
---|
60 | spovnetId = vnetname.toSpoVNetId(); |
---|
61 | nodeId = generateNodeId(name); |
---|
62 | |
---|
63 | const communication::EndpointDescriptor* ep = |
---|
64 | ariba_mod.getBootstrapNode(vnetname); |
---|
65 | if( ep == NULL ) return; |
---|
66 | |
---|
67 | ariba_mod.base_comm->start(ariba_mod.ip_addr, ariba_mod.tcp_port); |
---|
68 | base_overlay->start( *ariba_mod.base_comm, nodeId ); |
---|
69 | base_overlay->joinSpoVNet( spovnetId, *ep); |
---|
70 | } |
---|
71 | |
---|
72 | void Node::initiate(const Name& vnetname, const SpoVNetProperties& parm) { |
---|
73 | utility::OverlayParameterSet ovrpset = |
---|
74 | (utility::OverlayParameterSet::_OverlayStructure) |
---|
75 | parm.getBaseOverlayType(); |
---|
76 | |
---|
77 | spovnetId = vnetname.toSpoVNetId(); |
---|
78 | nodeId = generateNodeId(name); |
---|
79 | |
---|
80 | ariba_mod.base_comm->start(ariba_mod.ip_addr, ariba_mod.tcp_port); |
---|
81 | |
---|
82 | base_overlay->start( *ariba_mod.base_comm, nodeId ); |
---|
83 | base_overlay->createSpoVNet( spovnetId ); |
---|
84 | |
---|
85 | ariba_mod.addBootstrapNode(vnetname, |
---|
86 | new EndpointDescriptor(ariba_mod.base_comm->getEndpointDescriptor())); |
---|
87 | } |
---|
88 | |
---|
89 | void Node::leave() { |
---|
90 | base_overlay->leaveSpoVNet(); |
---|
91 | ariba_mod.base_comm->stop(); |
---|
92 | base_overlay->stop(); |
---|
93 | } |
---|
94 | |
---|
95 | const SpoVNetProperties& Node::getSpoVNetProperties() const { |
---|
96 | return SpoVNetProperties::DEFAULT; |
---|
97 | } |
---|
98 | |
---|
99 | const SpoVNetID& Node::getSpoVNetId() const { |
---|
100 | return spovnetId; |
---|
101 | } |
---|
102 | |
---|
103 | const NodeID& Node::getNodeId(const LinkID& lid) const { |
---|
104 | if( lid == LinkID::UNSPECIFIED ) return nodeId; |
---|
105 | else return base_overlay->getNodeID( lid ); |
---|
106 | } |
---|
107 | |
---|
108 | NodeID Node::generateNodeId(const Name& name) const { |
---|
109 | if (name == Name::UNSPECIFIED) return Name::random().toNodeId(); |
---|
110 | else return name.toNodeId(); |
---|
111 | } |
---|
112 | |
---|
113 | vector<NodeID> Node::getNeighborNodes() const { |
---|
114 | return base_overlay->getOverlayNeighbors(); |
---|
115 | } |
---|
116 | |
---|
117 | LinkID Node::establishLink(const NodeID& nid, const ServiceID& sid, |
---|
118 | const LinkProperties& req, const DataMessage& msg) { |
---|
119 | return base_overlay->establishLink(nid, sid); |
---|
120 | } |
---|
121 | |
---|
122 | void Node::dropLink(const LinkID& lnk) { |
---|
123 | base_overlay->dropLink(lnk); |
---|
124 | } |
---|
125 | |
---|
126 | seqnum_t Node::sendMessage(const DataMessage& msg, const NodeID& nid, |
---|
127 | const ServiceID& sid, const LinkProperties& req) { |
---|
128 | return base_overlay->sendMessage((Message*) msg, nid, sid); |
---|
129 | } |
---|
130 | |
---|
131 | seqnum_t Node::sendMessage(const DataMessage& msg, const LinkID& lnk) { |
---|
132 | return base_overlay->sendMessage((Message*) msg, lnk); |
---|
133 | } |
---|
134 | |
---|
135 | void Node::sendBroadcastMessage(const DataMessage& msg, const ServiceID& sid) { |
---|
136 | return base_overlay->broadcastMessage((Message*)msg, sid); |
---|
137 | } |
---|
138 | |
---|
139 | bool Node::bind(NodeListener* listener) { |
---|
140 | return base_overlay->bind(listener); |
---|
141 | } |
---|
142 | |
---|
143 | bool Node::unbind(NodeListener* listener) { |
---|
144 | return base_overlay->unbind(listener); |
---|
145 | } |
---|
146 | |
---|
147 | bool Node::bind(CommunicationListener* listener, const ServiceID& sid) { |
---|
148 | // bind the listener |
---|
149 | bool ret = base_overlay->bind(listener, sid); |
---|
150 | |
---|
151 | // now that we have a listener, we can ask if sniffing is ok |
---|
152 | if( ariba_mod.sideport_sniffer != NULL ){ |
---|
153 | bool allow = listener->onEnableSideportListener(); |
---|
154 | base_overlay->registerSidePort(ariba_mod.sideport_sniffer); |
---|
155 | } |
---|
156 | |
---|
157 | return ret; |
---|
158 | } |
---|
159 | |
---|
160 | bool Node::unbind(CommunicationListener* listener, const ServiceID& sid) { |
---|
161 | return base_overlay->unbind(listener, sid); |
---|
162 | } |
---|
163 | |
---|
164 | // service directory |
---|
165 | /* |
---|
166 | void Node::put(const Identifier<>& key, Message* value) { |
---|
167 | } |
---|
168 | |
---|
169 | void Node::get(const Identifier<>& key) { |
---|
170 | |
---|
171 | } |
---|
172 | */ |
---|
173 | |
---|
174 | // @see Module.h |
---|
175 | void Node::initialize() { |
---|
176 | |
---|
177 | } |
---|
178 | |
---|
179 | // @see Module.h |
---|
180 | void Node::start() { |
---|
181 | |
---|
182 | } |
---|
183 | |
---|
184 | // @see Module.h |
---|
185 | void Node::stop() { |
---|
186 | |
---|
187 | } |
---|
188 | |
---|
189 | // @see Module.h |
---|
190 | string Node::getName() const { |
---|
191 | |
---|
192 | } |
---|
193 | |
---|
194 | // @see Module.h |
---|
195 | void Node::setProperty(string key, string value) { |
---|
196 | |
---|
197 | } |
---|
198 | |
---|
199 | // @see Module.h |
---|
200 | const string Node::getProperty(string key) const { |
---|
201 | |
---|
202 | } |
---|
203 | |
---|
204 | // @see Module.h |
---|
205 | const vector<string> Node::getProperties() const { |
---|
206 | |
---|
207 | } |
---|
208 | |
---|
209 | } // namespace ariba |
---|