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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
*
* Copyright (c) 1997 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the Computer Systems
* Engineering Group at Lawrence Berkeley Laboratory.
* 4. Neither the name of the University nor of the Laboratory may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Header: /cvsroot/nsnam/ns-2/common/node.cc,v 1.34 2002/05/30 17:44:03 haldar Exp $
*
* CMU-Monarch project's Mobility extensions ported by Padma Haldar,
* 10/98.
*/
#include <stdio.h>
#include <stdarg.h>
#include "address.h"
#include "config.h"
#ifdef HAVE_STL
#include "nix/nixnode.h"
#endif //HAVE_STL
#include "node.h"
static class LinkHeadClass : public TclClass {
public:
LinkHeadClass() : TclClass("Connector/LinkHead") {}
TclObject* create(int, const char*const*) {
return (new LinkHead);
}
} class_link_head;
LinkHead::LinkHead() : net_if_(0), node_(0), type_(0) { }
int32_t LinkHead::label()
{
if (net_if_)
return net_if_->intf_label();
printf("Configuration error: Network Interface missing\n");
exit(1);
// Make msvc happy
return 0;
}
int LinkHead::command(int argc, const char*const* argv)
{
if (argc == 3) {
if(strcmp(argv[1], "setnetinf") == 0) {
net_if_ =
(NetworkInterface*) TclObject::lookup(argv[2]);
if (net_if_ == 0)
return TCL_ERROR;
return TCL_OK;
} else if(strcmp(argv[1], "setnode") == 0) {
node_ = (Node*) TclObject::lookup(argv[2]);
if (node_ == 0)
return TCL_ERROR;
return TCL_OK;
}
}
return (Connector::command(argc, argv));
}
static class NodeClass : public TclClass {
public:
NodeClass() : TclClass("Node") {}
TclObject* create(int, const char*const*) {
return (new Node);
}
} class_node;
struct node_head Node::nodehead_ = { 0 }; // replaces LIST_INIT macro
char Node::nwrk_[NODE_NAMLOG_BUFSZ];
/* Additions for NixRouting */
int NixRoutingUsed = -1;
Node::Node() :
address_(-1), nodeid_ (-1), namChan_(0),
rtnotif_(NULL),
#ifdef HAVE_STL
nixnode_(NULL),
#endif //HAVE_STL
energy_model_(NULL), location_(NULL)
{
LIST_INIT(&ifhead_);
LIST_INIT(&linklisthead_);
insert(&(Node::nodehead_)); // insert self into static list of nodes
#ifdef HAVE_STL
// Mods for Nix-Vector routing
if (NixRoutingUsed < 0) {
// Find out if nix routing is in use
Tcl& tcl = Tcl::instance();
tcl.evalf("Simulator set nix-routing");
tcl.resultAs(&NixRoutingUsed);
}
if (NixRoutingUsed) {
// Create the NixNode pointer
if(0)printf("Nix routing in use, creating NixNode\n");
nixnode_ = new NixNode();
}
#endif //HAVE_STL
neighbor_list_ = NULL;
}
Node::~Node()
{
LIST_REMOVE(this, entry);
}
int
Node::command(int argc, const char*const* argv)
{
Tcl& tcl = Tcl::instance();
if (argc == 2) {
#ifdef HAVE_STL
// Mods for Nix-Vector Routing
if(strcmp(argv[1], "populate-objects") == 0) {
if (nixnode_) {
nixnode_->PopulateObjects();
}
return TCL_OK;
}
// End mods for Nix-Vector routing
#endif // HAVE_STL
if(strcmp(argv[1], "address?") == 0) {
tcl.resultf("%d", address_);
return TCL_OK;
}
} else if (argc == 3) {
#ifdef HAVE_STL
// Mods for Nix-Vector Routing
if (strcmp(argv[1], "get-nix-vector") == 0) {
if (nixnode_) {
nixnode_->GetNixVector(atol(argv[2]));
}
return TCL_OK;
}
#endif //HAVE_STL
if (strcmp(argv[1], "set-neighbor") == 0) {
#ifdef HAVE_STL
if (nixnode_) {
nixnode_->AddAdj(atol(argv[2]));
}
#endif //HAVE_STL
return(TCL_OK);
}
if (strcmp(argv[1], "addr") == 0) {
address_ = Address::instance().str2addr(argv[2]);
#ifdef HAVE_STL
if (nixnode_) {
nixnode_->Id(address_);
}
#endif //HAVE_STL
return TCL_OK;
// End mods for Nix-Vector routing
} else if (strcmp(argv[1], "nodeid") == 0) {
nodeid_ = atoi(argv[2]);
return TCL_OK;
} else if(strcmp(argv[1], "addlinkhead") == 0) {
LinkHead* slhp = (LinkHead*)TclObject::lookup(argv[2]);
if (slhp == 0)
return TCL_ERROR;
slhp->insertlink(&linklisthead_);
return TCL_OK;
} else if (strcmp(argv[1], "addenergymodel") == 0) {
energy_model_=(EnergyModel*)TclObject::lookup(argv[2]);
if(!energy_model_)
return TCL_ERROR;
return TCL_OK;
} else if (strcmp(argv[1], "namattach") == 0) {
int mode;
namChan_ = Tcl_GetChannel(tcl.interp(), (char*)argv[2],
&mode);
if (namChan_ == 0) {
tcl.resultf("node: can't attach %s", argv[2]);
return (TCL_ERROR);
}
return (TCL_OK);
} else if (strcmp(argv[1], "add-neighbor") == 0) {
Node * node = (Node *)TclObject::lookup(argv[2]);
if (node == 0) {
tcl.resultf("Invalid node %s", argv[2]);
return (TCL_ERROR);
}
addNeighbor(node);
return TCL_OK;
}
}
return ParentNode::command(argc,argv);
}
void Node::route_notify(RoutingModule *rtm) {
if (rtnotif_ == NULL)
rtnotif_ = rtm;
else
rtnotif_->route_notify(rtm);
}
void Node::unreg_route_notify(RoutingModule *rtm) {
if (rtnotif_) {
if (rtnotif_ == rtm) {
//RoutingModule *tmp = rtnotif_;
rtnotif_= rtnotif_->next_rtm_;
//free (tmp);
}
else
rtnotif_->unreg_route_notify(rtm);
}
}
void Node::add_route(char *dst, NsObject *target) {
if (rtnotif_)
rtnotif_->add_route(dst, target);
}
void Node::delete_route(char *dst, NsObject *nullagent) {
if (rtnotif_)
rtnotif_->delete_route(dst, nullagent);
}
void Node::set_table_size(int nn) {
if (rtnotif_)
rtnotif_->set_table_size(nn);
}
void Node::set_table_size(int level, int csize) {
if (rtnotif_)
rtnotif_->set_table_size(level, csize);
}
void Node::addNeighbor(Node * neighbor) {
neighbor_list_node* nlistItem = (neighbor_list_node *)malloc(sizeof(neighbor_list_node));
nlistItem->nodeid = neighbor->nodeid();
nlistItem->next = neighbor_list_;
neighbor_list_=nlistItem;
}
void Node::namlog(const char* fmt, ...)
{
// Don't do anything if we don't have a log file.
if (namChan_ == 0)
return;
va_list ap;
va_start(ap, fmt);
vsprintf(nwrk_, fmt, ap);
namdump();
}
void Node::namdump()
{
int n = 0;
/* Otherwise nwrk_ isn't initialized */
n = strlen(nwrk_);
if (n >= NODE_NAMLOG_BUFSZ-1) {
fprintf(stderr,
"Node::namdump() exceeds buffer size. Bail out.\n");
abort();
}
if (n > 0) {
/*
* tack on a newline (temporarily) instead
* of doing two writes
*/
nwrk_[n] = '\n';
nwrk_[n + 1] = 0;
(void)Tcl_Write(namChan_, nwrk_, n + 1);
nwrk_[n] = 0;
}
}
// Given an interface label for a NetworkInterface on this node, we return
// the head of that link
NsObject* Node::intf_to_target(int32_t label)
{
LinkHead *lhp = linklisthead_.lh_first;
for (; lhp; lhp = lhp->nextlinkhead())
if (label == lhp->label())
return ((NsObject*) lhp);
return NULL;
}
// A class static method. Return the node instance from the static node list
Node* Node::get_node_by_address (nsaddr_t id)
{
Node * tnode = nodehead_.lh_first;
for (; tnode; tnode = tnode->nextnode()) {
if (tnode->address_ == id ) {
return (tnode);
}
}
return NULL;
}
|