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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) Xerox Corporation 1997. All rights reserved.
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2 of the License, or (at your
  8.  * option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * 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.  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  *
  19.  * Linking this file statically or dynamically with other modules is making
  20.  * a combined work based on this file.  Thus, the terms and conditions of
  21.  * the GNU General Public License cover the whole combination.
  22.  *
  23.  * In addition, as a special exception, the copyright holders of this file
  24.  * give you permission to combine this file with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code included in
  26.  * the standard release of ns-2 under the Apache 2.0 license or under
  27.  * otherwise-compatible licenses with advertising requirements (or modified
  28.  * versions of such code, with unchanged license).  You may copy and
  29.  * distribute such a system following the terms of the GNU GPL for this
  30.  * file and the licenses of the other code concerned, provided that you
  31.  * include the source code of that other code when and as the GNU GPL
  32.  * requires distribution of source code.
  33.  *
  34.  * Note that people who make modified versions of this file are not
  35.  * obligated to grant this special exception for their modified versions;
  36.  * it is their choice whether to do so.  The GNU General Public License
  37.  * gives permission to release a modified version without this exception;
  38.  * this exception also makes it possible to release a modified version
  39.  * which carries forward this exception.
  40.  */
  41. #ifndef lint
  42. static const char rcsid[] =
  43.     "@(#) $Header: /cvsroot/nsnam/ns-2/adc/param-adc.cc,v 1.4 2005/08/26 05:05:27 tomh Exp $";
  44. #endif
  45. /* Parameter-based admission control.  Admission decisions are
  46.  * based on the sum of reserved rates.
  47.  */
  48. #include "adc.h"
  49. #include <stdlib.h>
  50. class Param_ADC : public ADC {
  51. public:
  52. Param_ADC();
  53. void teardown_action(int,double,int);
  54. void rej_action(int,double,int);
  55. void trace(TracedVar* v);
  56. protected:
  57. int admit_flow(int,double,int);
  58. double utilization_;
  59. TracedDouble resv_rate_;
  60. double oresv_rate_;
  61. };
  62. Param_ADC::Param_ADC() : resv_rate_(0), oresv_rate_(0)
  63. {
  64. bind("utilization_",&utilization_);
  65. type_ = new char[5];
  66. strcpy(type_, "PBAC");
  67. resv_rate_.tracer(this);
  68. resv_rate_.name(""Reserved Rate"");
  69. }
  70. void Param_ADC::rej_action(int /*cl*/,double p,int /*r*/)
  71. {
  72. resv_rate_-=p;
  73. }
  74. void Param_ADC::teardown_action(int /*cl*/,double p,int /*r*/)
  75. {
  76. resv_rate_-=p;
  77. }
  78. int Param_ADC::admit_flow(int /*cl*/,double r,int /*b*/)
  79. {
  80. if (resv_rate_ + r <= utilization_ * bandwidth_) {
  81. resv_rate_ +=r;
  82. return 1;
  83. }
  84. return 0;
  85. }
  86. static class Param_ADCClass : public TclClass {
  87. public:
  88. Param_ADCClass() : TclClass("ADC/Param") {}
  89. TclObject* create(int,const char*const*) {
  90. return (new Param_ADC());
  91. }
  92. }class_param_adc;
  93. void Param_ADC::trace(TracedVar* v)
  94. {
  95. char wrk[500];
  96. double *p, newval;
  97. /* check for right variable */
  98. if (strcmp(v->name(), ""Reserved Rate"") == 0) {
  99. p = &oresv_rate_;
  100. }
  101. else {
  102. fprintf(stderr, "PBAC: unknown trace var %sn", v->name());
  103. return;
  104. }
  105. newval = double(*((TracedDouble*)v));
  106. if (tchan_) {
  107. int n;
  108. double t = Scheduler::instance().clock();
  109. /* f -t 0.0 -s 1 -a SA -T v -n Num -v 0 -o 0 */
  110. sprintf(wrk, "f -t %g -s %d -a %s:%d-%d -T v -n %s -v %g -o %g",
  111. t, src_, type_, src_, dst_, v->name(), newval, *p);
  112. n = strlen(wrk);
  113. wrk[n] = 'n';
  114. wrk[n+1] = 0;
  115. (void)Tcl_Write(tchan_, wrk, n+1);
  116. }
  117. *p = newval;
  118. return;
  119. }