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

通讯编程

开发平台:

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/estimator.cc,v 1.8 2005/08/26 05:05:27 tomh Exp $";
  44. #endif
  45. #include "estimator.h"
  46. Estimator::Estimator() : meas_mod_(0),avload_(0.0),est_timer_(this), measload_(0.0), tchan_(0), omeasload_(0), oavload_(0)
  47. {
  48. bind("period_",&period_);
  49. bind("src_", &src_);
  50. bind("dst_", &dst_);
  51. avload_.tracer(this);
  52. avload_.name(""Estimated Util."");
  53. measload_.tracer(this);
  54. measload_.name(""Measured Util."");
  55. }
  56. int Estimator::command(int argc, const char*const* argv)
  57. {
  58. Tcl& tcl = Tcl::instance();
  59. if (argc==2) {
  60. if (strcmp(argv[1],"load-est") == 0) {
  61. tcl.resultf("%.3f",double(avload_));
  62. return(TCL_OK);
  63. } else if (strcmp(argv[1],"link-utlzn") == 0) {
  64. tcl.resultf("%.3f",meas_mod_->bitcnt()/period_);
  65. return(TCL_OK);
  66. }
  67. }
  68. if (argc == 3) {
  69. if (strcmp(argv[1], "attach") == 0) {
  70. int mode;
  71. const char* id = argv[2];
  72. tchan_ = Tcl_GetChannel(tcl.interp(), (char*)id, &mode);
  73. if (tchan_ == 0) {
  74. tcl.resultf("Estimator: trace: can't attach %s for writing", id);
  75. return (TCL_ERROR);
  76. }
  77. return (TCL_OK);
  78. }
  79. if (strcmp(argv[1], "setbuf") == 0) {
  80. /* some sub classes actually do something here */
  81. return(TCL_OK);
  82. }
  83. }
  84. return NsObject::command(argc,argv);
  85. }
  86. void Estimator::setmeasmod (MeasureMod *measmod)
  87. {
  88. meas_mod_=measmod;
  89. }
  90. void Estimator::start()
  91. {
  92. avload_=0;
  93. measload_ = 0;
  94. est_timer_.resched(period_);
  95. }
  96. void Estimator::stop()
  97. {
  98. est_timer_.cancel();
  99. }
  100. void Estimator::timeout(int)
  101. {
  102. estimate();
  103. est_timer_.resched(period_);
  104. }
  105. void Estimator_Timer::expire(Event* /*e*/) 
  106. {
  107. est_->timeout(0);
  108. }
  109. void Estimator::trace(TracedVar* v)
  110. {
  111. char wrk[500];
  112. double *p, newval;
  113. /* check for right variable */
  114. if (strcmp(v->name(), ""Estimated Util."") == 0) {
  115. p = &oavload_;
  116. }
  117. else if (strcmp(v->name(), ""Measured Util."") == 0) {
  118. p = &omeasload_;
  119. }
  120. else {
  121. fprintf(stderr, "Estimator: unknown trace var %sn", v->name());
  122. return;
  123. }
  124. newval = double(*((TracedDouble*)v));
  125. if (tchan_) {
  126. int n;
  127. double t = Scheduler::instance().clock();
  128. /* f -t 0.0 -s 1 -a SA -T v -n Num -v 0 -o 0 */
  129. sprintf(wrk, "f -t %g -s %d -a %s:%d-%d -T v -n %s -v %g -o %g",
  130. t, src_, actype_, src_, dst_, v->name(), newval, *p);
  131. n = strlen(wrk);
  132. wrk[n] = 'n';
  133. wrk[n+1] = 0;
  134. (void)Tcl_Write(tchan_, wrk, n+1);
  135. }
  136. *p = newval;
  137. return;
  138. }
  139. void Estimator::setactype(const char* type)
  140. {
  141. actype_ = new char[strlen(type)+1];
  142. strcpy(actype_, type);
  143. return;
  144. }