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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * iflist.cc
  3.  * Copyright (C) 2000 by the University of Southern California
  4.  * $Id: iflist.cc,v 1.4 2005/08/25 18:58:04 johnh Exp $
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License,
  8.  * version 2, as published by the Free Software Foundation.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  18.  *
  19.  *
  20.  * The copyright of this module includes the following
  21.  * linking-with-specific-other-licenses addition:
  22.  *
  23.  * In addition, as a special exception, the copyright holders of
  24.  * this module give you permission to combine (via static or
  25.  * dynamic linking) this module with free software programs or
  26.  * libraries that are released under the GNU LGPL and with code
  27.  * included in the standard release of ns-2 under the Apache 2.0
  28.  * license or under otherwise-compatible licenses with advertising
  29.  * requirements (or modified versions of such code, with unchanged
  30.  * license).  You may copy and distribute such a system following the
  31.  * terms of the GNU GPL for this module and the licenses of the
  32.  * other code concerned, provided that you include the source code of
  33.  * that other code when and as the GNU GPL requires distribution of
  34.  * source code.
  35.  *
  36.  * Note that people who make modified versions of this module
  37.  * are not obligated to grant this special exception for their
  38.  * modified versions; it is their choice whether to do so.  The GNU
  39.  * General Public License gives permission to release a modified
  40.  * version without this exception; this exception also makes it
  41.  * possible to release a modified version which carries forward this
  42.  * exception.
  43.  *
  44.  */
  45. /***********************************************************/
  46. /* iflist.cc : Chalermek Intanagonwiwat (USC/ISI) 06/25/99 */
  47. /***********************************************************/
  48. #include <stdio.h>
  49. #include "config.h"
  50. #include "random.h"
  51. #include "iflist.h"
  52. void Agent_List::InsertFront(Agent_List **start, Agent_List *cur)
  53. {
  54.   if (cur == NULL)
  55.      return;
  56.   cur->next = *start;
  57.   *start = cur;
  58. }
  59. void Agent_List::Remove(Agent_List **prev, Agent_List *cur)
  60. {
  61.   if (cur == NULL)
  62.     return;
  63.   *prev = cur->next;  
  64. }
  65. void Agent_List::FreeAll(Agent_List **prev)
  66. {
  67.   Agent_List *temp;
  68.   Agent_List *next;
  69.   for (temp = *prev; temp != NULL; temp=next) {
  70.     next = temp->next;
  71.     delete temp;
  72.   }
  73.   *prev = NULL;
  74. }
  75. PrvCurPtr Agent_List::Find(Agent_List **start, ns_addr_t addr)
  76. {
  77.   PrvCurPtr RetVal;
  78.   Agent_List **prv, *cur;
  79.   for (prv= start, cur=*start; cur != NULL; prv= &(cur->next), cur=cur->next) {
  80.     if ( NODE_ADDR(cur) == addr.addr_ && PORT(cur)==addr.port_) 
  81.       break;
  82.   }
  83.  
  84.   RetVal.prv = prv;
  85.   RetVal.cur = cur;
  86.   return RetVal;
  87. }
  88. // Copy list1's elements not already in *result, and insert in *result 
  89. void Agent_List::Union(Agent_List **result, Agent_List *list1)
  90. {
  91.   PrvCurPtr RetVal;
  92.   Agent_List *dupAgent;
  93.   
  94.   for (Agent_List *cur=list1; cur != NULL; cur=AGENT_NEXT(cur)) {
  95.     RetVal = Find(result, AGT_ADDR(cur));
  96.     if (RetVal.cur == NULL) {
  97.       dupAgent = new Agent_List;
  98.       *dupAgent = *cur;
  99.       InsertFront(result, dupAgent);
  100.     }
  101.   }
  102. }
  103. void Agent_List::print()
  104. {
  105.   Agent_List *cur;
  106.   for (cur=this; cur!=NULL; cur=cur->next) {
  107.     printf("(%d,%d)n", cur->agent_addr.addr_, cur->agent_addr.port_);
  108.   }
  109. }
  110. In_List *In_List::FindMaxIn()
  111. {
  112.   In_List *cur_in, *max_in;
  113.   int     max_diff;
  114.   max_in = NULL;
  115.   max_diff = 0;
  116.   for (cur_in = this; cur_in != NULL;
  117.        cur_in = IN_NEXT(cur_in) ) {
  118.     if ( TOTAL_RECV(cur_in) - PREV_RECV(cur_in) > max_diff) {
  119.       max_diff = TOTAL_RECV(cur_in) - PREV_RECV(cur_in);
  120.       max_in = cur_in;
  121.     }
  122.   }
  123.   return max_in;
  124. }
  125. Out_List *Out_List::WhereToGo()
  126. {
  127.   Out_List *cur_out;
  128.   double slot = Random::uniform();
  129.   for (cur_out = this; cur_out!=NULL; cur_out = OUT_NEXT(cur_out) ) {
  130.     if (slot >= FROM_SLOT(cur_out) && slot < TO_SLOT(cur_out) )
  131.       return cur_out;
  132.   }
  133.   if (cur_out == NULL && this != NULL)
  134.     printf("Something must be wrong! n");
  135.   return cur_out;
  136. }
  137. void Out_List::CalRange()
  138. {
  139.   Out_List *cur_out=this;
  140.   double cur_slot=0.0;
  141.   for (cur_out = this; cur_out != NULL; cur_out = OUT_NEXT(cur_out) ) {
  142.     if ( GRADIENT(cur_out) <= 0.0 ) {
  143.       FROM_SLOT(cur_out) = -1.0;
  144.       TO_SLOT(cur_out) = -1.0;
  145.       continue;
  146.     }
  147.     FROM_SLOT(cur_out) = cur_slot;
  148.     cur_slot = cur_slot + GRADIENT(cur_out);
  149.     TO_SLOT(cur_out) = cur_slot;
  150.   }   
  151.   return;
  152. }
  153. void Out_List::NormalizeGradient()
  154. {
  155.   Out_List *cur;
  156.   float sum=0.0;
  157.   int   num=0; 
  158.   for (cur=this; cur!=NULL; cur=OUT_NEXT(cur)) {
  159.     sum = sum + GRADIENT(cur);
  160.     num++;
  161.   }
  162.   if (num == 0) return;
  163.   if (sum == 0.0) {
  164.     float share= 1.0/num;
  165.     for (cur=this; cur != NULL; cur = OUT_NEXT(cur)) {
  166.       GRADIENT(cur) = share;
  167.     }
  168.     
  169.     return;
  170.   }
  171.   for (cur=this; cur != NULL; cur = OUT_NEXT(cur)) {
  172.     GRADIENT(cur) = GRADIENT(cur)/sum;
  173.   }
  174. }