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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) 1996 Regents of the University of California.
  4.  * All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  *  This product includes software developed by the MASH Research
  17.  *  Group at the University of California Berkeley.
  18.  * 4. Neither the name of the University nor of the Research Group may be
  19.  *    used to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  * 
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  */
  34. /*
  35.  * Contributed by Rishi Bhargava <rishi_bhargava@yahoo.com> May, 2001.
  36.  */
  37. #include <assert.h>
  38. #include <math.h>
  39. #include <stdio.h>
  40. #include <signal.h>
  41. #include <float.h>
  42. #include "object.h"
  43. #include "agent.h"
  44. #include "trace.h"
  45. #include "packet.h"
  46. #include "scheduler.h"
  47. #include "random.h"
  48. #include "mac.h"
  49. #include "ll.h"
  50. #include "cmu-trace.h"
  51. #include "hdr_src.h"
  52. #include "sragent.h"
  53. #include <fstream>
  54. /*===========================================================================
  55.   SRAgent OTcl linkage
  56. ---------------------------------------------------------------------------*/
  57. static class SRAgentClass : public TclClass {
  58. public:
  59.   SRAgentClass() : TclClass("Agent/SRAgent") {}
  60.   TclObject* create(int, const char*const*) {
  61.     return (new SRAgent);
  62.   }
  63. } class_SRAgent;
  64. /*===========================================================================
  65.   SRAgent methods
  66. ---------------------------------------------------------------------------*/
  67. SRAgent::SRAgent():Agent(PT_TCP), slot_(0), nslot_(0), maxslot_(-1) 
  68. {
  69.   //  cout << " into the constructor " << endl; 
  70. }
  71. SRAgent::~SRAgent()
  72. {
  73.   delete [] slot_;
  74. }
  75. int
  76. SRAgent::command(int argc, const char*const* argv)
  77. {
  78. Tcl& tcl = Tcl::instance(); 
  79. if(argc == 2)
  80.   {
  81.     if (strcmp(argv[1],"reset") == 0)
  82.       {
  83. tcl.resultf("reset done");
  84. return(TCL_OK);
  85.       }
  86.   }
  87. else if(argc == 3) 
  88.   {
  89.     if((strcmp(argv[1], "target") == 0))
  90.       {
  91. target_ = (NsObject *) TclObject::lookup(argv[2]);
  92. if (target_ == 0) {
  93.   tcl.resultf("no such target %s", argv[2]);
  94.   return(TCL_ERROR);
  95. }
  96. tcl.resultf(" The target is successfully set");
  97. return(TCL_OK);
  98.       }
  99.   }
  100. else if(argc == 4)
  101.   {
  102.     if((strcmp(argv[1], "install_slot") == 0))
  103.       {
  104. //cout << " Installing " << argv[2] << " in " << argv[3] << endl;
  105. NsObject* obj = (NsObject*)TclObject::lookup(argv[2]);
  106. if (obj == 0) 
  107.   {
  108.     tcl.resultf("SRAgent: %s lookup of %s failedn", argv[1], argv[2]);
  109.     return TCL_ERROR;
  110.   }
  111. else
  112.   {
  113.     install(atoi(argv[3]), obj);
  114.     return TCL_OK;
  115.   }
  116.       }
  117.   }
  118. else
  119.   {
  120.     if( (strcmp(argv[1], "install_connection") == 0))
  121.       {
  122. h_node *node = (h_node *)malloc(sizeof(h_node));
  123. h_node *list;
  124. node->route_len = argc - 5;
  125. for (int tmp=0; tmp < node->route_len; tmp++)
  126.   node->route[tmp] = atoi(argv[5+tmp]);
  127. node->tag = atoi(argv[2]);
  128. int hash_val = atoi(argv[2])%10;
  129. list = table[hash_val];
  130. node->next = list;
  131. table[hash_val] = node;
  132. return TCL_OK;
  133.       }
  134.   }
  135. return (Agent::command(argc,argv));
  136. }
  137. void SRAgent::install(int slot, NsObject* p)
  138. {
  139. if (slot >= nslot_)
  140. alloc(slot);
  141. slot_[slot] = p;
  142. if (slot >= maxslot_)
  143. maxslot_ = slot;
  144. }
  145. void
  146. SRAgent::recv(Packet* packet, Handler*)
  147. {
  148. //  int i = 0;
  149. //int n;
  150.   hdr_cmn *cmh =  hdr_cmn::access(packet);
  151.   hdr_src *srh =  hdr_src::access(packet);
  152.   hdr_ip *iph = hdr_ip::access(packet);
  153.   assert(cmh->size() >= 0);
  154.   /* insert the route in the header here , also after this the target
  155.    * should have been set.*/
  156.   if (cmh->src_rt_valid)
  157.     {
  158.       //cout << "src rt packet" << endl;
  159.       
  160.       if (srh->cur_addr_ == srh->num_addrs_)
  161.        {
  162.   // supposedly dest reached
  163.   // I can change the packet type and send it to the entry point once again..... this would set things right. This part of the code is managing things at the receiver also..... finally the packet goes to the right agent and not our src rt agent.
  164.   //cout << " setting the packet tye as tcp" << endl; 
  165.          cmh->src_rt_valid = '';
  166.          send(packet,0);
  167.   return;
  168.        }
  169.       
  170.       int slot_no = srh->addrs[srh->cur_addr_++];
  171.       NsObject *node =  slot_[slot_no];
  172.       //cout << "passing to the next hop: " << slot_no << endl;
  173.       
  174.       if (node == NULL)
  175. {
  176.   //cout << "src_rt : null node " << slot_no << " accessed" << endl;
  177.   //cout << "flow id is " << iph->flowid() << endl;
  178.   exit(0);
  179. }
  180.       else
  181. {
  182.   //cout << "packet of type" << cmh->ptype() << endl;
  183.   cmh->src_rt_valid = '1';
  184.   
  185.   node->recv(packet, (Handler *)0);
  186.   
  187. }
  188.       return;
  189.     }
  190.   else
  191.     {
  192.       // packet from the TCP most probably
  193.       h_node *temp_list;
  194.       //cout << " Packet of type: "<< cmh->ptype();
  195.       srh->cur_addr_ = 1;
  196.       int connect_id = iph->flowid();
  197.       //cout << " The flowid is" << connect_id << endl;
  198.       temp_list = table[connect_id%10];
  199.       while (temp_list && temp_list->tag != connect_id)
  200. temp_list = temp_list->next;
  201.       if (temp_list == NULL)
  202. {
  203.   printf(" The connection id is not in routing tabeln");
  204.   exit(0);
  205. }
  206.       
  207.       srh->num_addrs_ = temp_list->route_len;
  208.       // cout << " total number of hops:" << srh->num_addrs_ << endl;
  209.       
  210.       for (int j = 0; j< srh->num_addrs_; j++ )
  211. {
  212.   srh->addrs[j] = temp_list->route[j];
  213.   // cout << " setting the next hop "<< srh->addrs[j];
  214. }
  215.       //cout << endl;
  216.       //set the target before starting anything in the tcl code
  217.       
  218.       cmh->src_rt_valid = '1';
  219.       //      cout << "setting the type to be src_rt" << endl; 
  220.       
  221.       send(packet,0);
  222.       return;
  223.     }
  224.   
  225. }
  226. void SRAgent::alloc(int slot)
  227. {
  228. NsObject** old = slot_;
  229. int n = nslot_;
  230. if (old == NULL)
  231. nslot_ = 32;
  232. while (nslot_ <= slot)
  233. nslot_ <<= 1;
  234. slot_ = new NsObject*[nslot_];
  235. memset(slot_, 0, nslot_ * sizeof(NsObject*));
  236. for (int i = 0; i < n; ++i)
  237. slot_[i] = old[i];
  238. delete [] old;
  239. }