/* -*-	Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
/*
 * Copyright (c) Xerox Corporation 1997. All rights reserved.
 *
 * License is granted to copy, to use, and to make and to use derivative
 * works for research and evaluation purposes, provided that Xerox is
 * acknowledged in all documentation pertaining to any such copy or
 * derivative work. Xerox grants no other licenses expressed or
 * implied. The Xerox trade name should not be used in any advertising
 * without its written permission. 
 *
 * XEROX CORPORATION MAKES NO REPRESENTATIONS CONCERNING EITHER THE
 * MERCHANTABILITY OF THIS SOFTWARE OR THE SUITABILITY OF THIS SOFTWARE
 * FOR ANY PARTICULAR PURPOSE.  The software is provided "as is" without
 * express or implied warranty of any kind.
 *
 * These notices must be retained in any copies of any part of this
 * software. 
 */
#ifndef lint
static const char rcsid[] =
	"@(#) $Header: /usr/src/mash/repository/vint/ns-2/ms-adc.cc,v 1.6 1998/08/22 02:41:03 haoboy Exp $";
#endif

//Measured Sum Admission control

#include "adc.h"
#include <stdlib.h>

class MS_ADC : public ADC {
public:
	MS_ADC();
	void rej_action(int, double,int);
protected:
	int admit_flow(int,double,int);
	inline virtual double get_rate(int /*cl*/, double r,int /*b*/) 
		{ return r ; };
	double utilization_;
};

MS_ADC::MS_ADC() 
{
	bind("utilization_",&utilization_);
	type_ = new char[5];
	strcpy(type_, "MSAC");
}

void MS_ADC::rej_action(int cl,double r,int b)
{
	double rate = get_rate(cl,r,b);
	est_[cl]->change_avload(-rate);
}


int MS_ADC::admit_flow(int cl,double r,int b)
{
	double rate = get_rate(cl,r,b);
	if (rate+est_[cl]->avload() < utilization_* bandwidth_) {
		est_[cl]->change_avload(rate);
		return 1;
	}
	return 0;
}


static class MS_ADCClass : public TclClass {
public:
	MS_ADCClass() : TclClass("ADC/MS") {}
	TclObject* create(int,const char*const*) {
		return (new MS_ADC());
	}
}class_ms_adc;


/* a measured sum algorithm that uses peak rather than token rate
 */

class MSPK_ADC : public MS_ADC {
public:
	MSPK_ADC() { };
protected:
	inline virtual double get_rate(int cl,double r,int b){
		return(peak_rate(cl,r,b));};
};

static class MSPK_ADCClass : public TclClass {
public:
	MSPK_ADCClass() : TclClass("ADC/MSPK") {}
	TclObject* create(int,const char*const*) {
		return (new MSPK_ADC());
	}
} class_mspk_adc;
