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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2003  International Computer Science Institute
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *      This product includes software developed by ICIR, the ICSI
  16.  *      Center for Internet Research (ICSI: the International Computer
  17.  *      Science Institute).
  18.  * 4. Neither the name of ICIR nor of ICSI may be used
  19.  *    to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY ICSI AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL ICSI OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  */
  35. #include "connector.h"
  36. #include "random.h"
  37. #include "timer-handler.h"
  38. #include "ranvar.h"
  39. class Delayer;
  40. /* handler for Delayer's target (link) */
  41. class TargetHandler : public Handler {
  42. public:
  43.         inline TargetHandler(Delayer& d) : delayer_(d) {}
  44.         inline void handle(Event*);
  45. private:
  46.         Delayer& delayer_;
  47. };
  48. /* timer for channel allocation delay */
  49. class AllocTimer : public TimerHandler {
  50. public:
  51.         inline AllocTimer(Delayer& d) : delayer_(d) {}
  52.         inline void expire(Event*);
  53. private:
  54.         Delayer& delayer_;
  55. };
  56. /* timer for delay spikes */
  57. class SpikeTimer : public TimerHandler {
  58. public:
  59.         inline SpikeTimer(Delayer& d) : delayer_(d) {}
  60.         inline void expire(Event*);
  61. private:
  62.         Delayer& delayer_;
  63. };
  64. class Delayer : public Connector {
  65.   public:
  66. Delayer();
  67.   int command(int argc, const char*const* argv);
  68.   void recv(Packet* p, Handler* h);
  69. void try_send();
  70. inline void freeTarget() {target_free = 1;}
  71. inline void freeAlloc() {alloc_free = 1;}
  72. inline void freeSpike() {spike_free = 1;}
  73. inline void takeSpike() {spike_free = 0;}
  74. int getSpike() {return spike_free;}
  75. double getNextSpikeLen () {return spike_len->value(); }
  76. double getNextSpikeInt () {return spike_int->value(); }
  77.   private:
  78.         double last_sent;       /* time a packet has last left the queue */
  79.         RandomVariable *alloc_int; /* time of keeping channel without data */
  80.         RandomVariable *alloc_len; /* delay to allocate a new channel */
  81.         int alloc_free;              /* are we in channel allocation delay? */
  82. AllocTimer  at_;
  83.         RandomVariable *spike_int; /* interval between delay spikes */
  84.         RandomVariable *spike_len; /* delay spike length */
  85.         int spike_free;              /* are we in a delay spike? */
  86. SpikeTimer st_;
  87. int target_free;   /* is the link free? */
  88. TargetHandler th_;
  89. Handler *prev_h_;   /* downstream handler */
  90. Packet  *pkt_;   /* packet we store */
  91. Event e;   /* something to give to prev_h_ */
  92. };
  93. static class DelayerClass : public TclClass {
  94. public:
  95.         DelayerClass() : TclClass("Delayer") {}
  96.         TclObject* create(int, const char*const*) {
  97.                 return (new Delayer());
  98.         }
  99. } delayer_class;