rate-limit.h
上传用户: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) 2000  International Computer Science Institute
  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 ACIRI, the AT&T 
  17.  *      Center for Internet Research at ICSI (the International Computer
  18.  *      Science Institute).
  19.  * 4. Neither the name of ACIRI nor of ICSI may be used
  20.  *    to endorse or promote products derived from this software without
  21.  *    specific prior written permission.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY ICSI AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED.  IN NO EVENT SHALL ICSI OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  *
  35.  */
  36. #ifndef ns_rate_limit_h
  37. #define ns_rate_limit_h
  38. #include "node.h"
  39. #include "packet.h"
  40. #include "route.h"
  41. #include "agg-spec.h"
  42. #include "rate-limit-strategy.h"
  43. #include "logging-data-struct.h"
  44. class RateLimitSession {
  45.  public:
  46.   int pushbackON_;  //whether pushback has been called/propagated on this aggregate 
  47.                     //  if pushback is ON, the node needs to send pushback refresh messages
  48.   int origin_;      //id of the node who requested rate limiting; either itself or 
  49.                     // one hop downstream (send status in latter case).
  50.   //snapshot view taken once pushback is invoked/propagated.
  51.   //used to report status before arrival of status messages from upstream.
  52.   //double snapshotArrivalRate_;
  53.  
  54.   //Queue ID of the rate limiting session
  55.   int localQID_;
  56.   int remoteQID_; //qid downstream
  57.   
  58.   //session ID of rate limiting
  59.   int localID_;   
  60.   int remoteID_;  //id downstream;
  61.   AggSpec * aggSpec_;
  62.   
  63.   //meaningful only for sessions started on this node.
  64.   double lowerBound_;       // the specified lower bound for this aggregate.
  65.   int merged_;              // whether merged or not
  66.   int initialPhase_;        // the initial probability increasing phase.
  67.   //position of this RLS in tree.
  68.   int heightInPTree_; //from leaf.
  69.   int depthInPTree_;  //from root.
  70.   
  71.   double startTime_;
  72.   double expiryTime_;  //time when this rate-limiting should expire;
  73.   double refreshTime_;
  74.   RateLimitSession * next_; //next session in the list;
  75.   RateLimitStrategy * rlStrategy_;
  76.   LoggingDataStruct * logData_;
  77.   //constructor for locally started sessions.
  78.   RateLimitSession(AggSpec * aggSpec, double estimate, int initial,  double limit, int origin, 
  79.    int locQid, 
  80.    double delay, double lowerBound, Node *node, RouteLogic * rtLogic_);
  81.   //for sessions started on pushback request.
  82.   RateLimitSession(AggSpec * aggSpec, double limit, int originID,  int locQid, int remQid, 
  83.    int remoteID, int depth, double delay, double lowerBound, Node *node, RouteLogic * rtLogic_);
  84.   ~RateLimitSession();
  85.   void setSucc(RateLimitSession * session) {next_ =  session;}
  86.   double log(Packet *p, int lowDemand);
  87.   double getDropRate();
  88.   void pushbackOn();
  89.   void refreshed();
  90.   void setAggSpec(AggSpec * aggSpec);
  91.   void setLimit(double limit);
  92.   double getArrivalRateForStatus();
  93.   static RateLimitSession * merge(RateLimitSession *, RateLimitSession *, int bits);
  94.  
  95.  private:
  96.   static double pick4merge(double, double, int);
  97. };
  98. class RateLimitSessionList {
  99.  public:
  100.   RateLimitSession * first_;
  101.   int noSessions_;
  102.   
  103.   int IDCounter_;
  104.   RateLimitSessionList(): first_(NULL), noSessions_(0), IDCounter_(0){};
  105.   int insert(RateLimitSession * session); 
  106.   int filter(Packet * p, int lowDemand);
  107.   int containsAggSpec(AggSpec *);
  108.   RateLimitSession * containsLocalAggSpec(AggSpec * spec, int myID);
  109.   void mergeSessions(int myID);
  110.   int noMySessions(int myID);
  111.   void endSession(RateLimitSession *);
  112.   int getMySubsetCount(int prefix, int bits, int myID);
  113.   void merge(int prefix, int bits, int myID);
  114.   RateLimitSession * getSessionByLocalID(int localID);
  115.   RateLimitSession * getSessionByRemoteID(int remoteID);
  116.   
  117.   //returns number of sessions with sending rate strictly more than this rate.
  118. int rankRate(int myID, double rate);
  119. int rankSession(int myID, RateLimitSession * session);
  120. };
  121. #endif