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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:2; tab-width:2; indent-tabs-mode:f -*- */
  2. /*
  3.  * classifier-nix.cc
  4.  * Copyright (C) 2000 by the University of Southern California
  5.  * $Id: classifier-nix.cc,v 1.7 2006/02/21 15:20:19 mahrenho Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. /*
  47.  * NixVector classifier for stateless routing
  48.  * contributed to ns from 
  49.  * George F. Riley, Georgia Tech, Spring 2000
  50.  *
  51.  */
  52. #include "config.h"
  53. #ifdef HAVE_STL
  54. #include <stdio.h>
  55. #include "ip.h"
  56. #include "nixvec.h"
  57. #include "classifier-nix.h"
  58. #include "hdr_nv.h"
  59. /* Define the TCL Class */
  60. static class NixClassifierClass : public TclClass {
  61. public:
  62. NixClassifierClass() : TclClass("Classifier/Nix") {}
  63. TclObject* create(int, const char*const*) {
  64. return (new NixClassifier());
  65. }
  66. } class_nix_classifier;
  67. /****************** NixClassifier Methods ************/
  68. NsObject* NixClassifier::find(Packet* p)
  69. {
  70. if (m_NodeId == NODE_NONE)
  71. {
  72. printf("NixClassifier::find(), Unknown node idn");
  73. return(NULL);
  74. }
  75. NixNode* pN = NixNode::GetNodeObject(m_NodeId);
  76. hdr_ip* ip = hdr_ip::access(p);
  77. if ((nodeid_t)ip->daddr() == pN->Id())
  78. { // Arrived at destination, pass on to the dmux object
  79. // if(0)printf("Returning Dmux objet %pn", m_Dmux);
  80. return m_Dmux;
  81. }
  82. hdr_nv* nv = hdr_nv::access(p);
  83. NixVec* pNv = nv->nv();
  84. if (pNv == NULL)
  85. {
  86. printf("Error! NixClassifier %s called with no NixVectorn", name());
  87. return(NULL);
  88. }
  89. if (pN == NULL)
  90. {
  91. printf("NixClassifier::find(), can't find node id %ldn", m_NodeId);
  92. return(NULL);
  93. }
  94. Nix_t Nix = pNv->Extract(pN->GetNixl(), nv->used()); // Get the next nix
  95.   nodeid_t n = pN->GetNeighbor(Nix,pNv); // this is just for debug print
  96.   NsObject* nsobj = pN->GetNsNeighbor(Nix);
  97. if(0)printf("Classifier %s, Node %ld next hop %ld (%s)n",
  98.  name(), pN->Id(), n, nsobj->name());
  99. return(nsobj); // And return the nexthop head object
  100. }
  101. int NixClassifier::command(int argc, const char*const* argv)
  102. {
  103. if (argc == 3 && strcmp(argv[1],"set-node-id") == 0)
  104. {
  105. m_NodeId = atoi(argv[2]);
  106. return(TCL_OK);
  107. }
  108. if (argc == 4 && strcmp(argv[1],"install") == 0)
  109. {
  110. int target = atoi(argv[2]);
  111. NixNode* pN = NixNode::GetNodeObject(m_NodeId);
  112. if (pN)
  113. {
  114. if(0)printf("%s NixClassifier::Command node %ld install %s %sn",
  115.  name(), pN->Id(), argv[2], argv[3]);
  116. if ((nodeid_t)target == pN->Id())
  117. { // This is the only case we care about, need to note the dmux obj
  118. m_Dmux = (NsObject*)TclObject::lookup(argv[3]);
  119. //if(0)printf("m_Dmux obj is %pn", m_Dmux);
  120. }
  121. }
  122. return(TCL_OK);
  123. }
  124. return (Classifier::command(argc, argv));
  125. }
  126.  
  127. #endif // HAVE_STL