parentnode.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. // -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
  2. //
  3. // Time-stamp: <2000-09-15 12:52:53 haoboy>
  4. //
  5. /*
  6.  * parentnode.h
  7.  * Copyright (C) 2000 by the University of Southern California
  8.  * $Id: parentnode.h,v 1.4 2005/08/25 18:58:02 johnh Exp $
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License,
  12.  * version 2, as published by the Free Software Foundation.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License along
  20.  * with this program; if not, write to the Free Software Foundation, Inc.,
  21.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  22.  *
  23.  *
  24.  * The copyright of this module includes the following
  25.  * linking-with-specific-other-licenses addition:
  26.  *
  27.  * In addition, as a special exception, the copyright holders of
  28.  * this module give you permission to combine (via static or
  29.  * dynamic linking) this module with free software programs or
  30.  * libraries that are released under the GNU LGPL and with code
  31.  * included in the standard release of ns-2 under the Apache 2.0
  32.  * license or under otherwise-compatible licenses with advertising
  33.  * requirements (or modified versions of such code, with unchanged
  34.  * license).  You may copy and distribute such a system following the
  35.  * terms of the GNU GPL for this module and the licenses of the
  36.  * other code concerned, provided that you include the source code of
  37.  * that other code when and as the GNU GPL requires distribution of
  38.  * source code.
  39.  *
  40.  * Note that people who make modified versions of this module
  41.  * are not obligated to grant this special exception for their
  42.  * modified versions; it is their choice whether to do so.  The GNU
  43.  * General Public License gives permission to release a modified
  44.  * version without this exception; this exception also makes it
  45.  * possible to release a modified version which carries forward this
  46.  * exception.
  47.  *
  48.  */
  49. #ifndef ns_parentnode_h
  50. #define ns_parentnode_h
  51. #include "address.h"
  52. #include "classifier-addr.h"
  53. #include "rtmodule.h"
  54. class NsObject;
  55. /* Class ParentNode : from which all node types including Node, LanNode etc evolve */
  56. class ParentNode : public TclObject {
  57. public:
  58. ParentNode() : nodeid_(-1), address_(-1) {} 
  59. /*virtual int command(int argc, const char*const* argv) {}*/
  60. virtual inline int address() { return address_;}
  61. virtual inline int nodeid() { return nodeid_;}
  62. virtual void add_route (char *, NsObject *) {}
  63. virtual void delete_route (char *, NsObject *) {}
  64. virtual void set_table_size(int nn) {}
  65. virtual void set_table_size(int lev, int nn) {}
  66. protected:
  67.   int nodeid_;
  68.   int address_;
  69. };
  70. /* LanNode: Lan implementation as a virtual node: 
  71.    LanNode mimics a real
  72.    node and uses an address (id) from Node's address space */
  73. class LanNode : public ParentNode {
  74. public:
  75.   LanNode() : ParentNode() {} 
  76.   virtual int command(int argc, const char*const* argv);
  77. };
  78. /* AbsLanNode:
  79.    It create an abstract LAN.
  80.    An abstract lan is one in which the complex CSMA/CD 
  81.    contention mechanism is replaced by a simple DropTail 
  82.    queue mechanism. */
  83. class AbsLanNode : public ParentNode {
  84. public:
  85.   AbsLanNode() : ParentNode() {} 
  86.   virtual int command(int argc, const char*const* argv);
  87. };
  88. /* Node/Broadcast: used for sun's implementation of MIP;
  89.    why is this version of MIP used when (CMU's) wireless 
  90.    version is also available?? doesn't make sense to have both;
  91. */
  92. class BroadcastNode : public ParentNode {
  93. public:
  94. BroadcastNode() : ParentNode(), classifier_(NULL) {}
  95. virtual int command(int argc, const char*const* argv);
  96. virtual void add_route (char *dst, NsObject *target);
  97. virtual void delete_route (char *dst, NsObject *nullagent);
  98. //virtual void set_table_size(int nn) {}
  99. //virtual void set_table_size(int lev, int nn) {}
  100. private:
  101.   BcastAddressClassifier *classifier_;
  102. };
  103.   
  104. #endif /* ---ns_lannode_h */