mac-timersmr.h
上传用户: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) 1997 Regents of the University of California.
  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 the Computer Systems
  17.  * Engineering Group at Lawrence Berkeley Laboratory.
  18.  * 4. Neither the name of the University nor of the Laboratory 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 THE REGENTS 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 THE REGENTS 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. /* Ported from CMU/Monarch's code, nov'98 -Padma.*/
  35. /**
  36.  * Modified 2006 by Federico Maguolo, Nicola Baldo and Simone Merlin 
  37.  * (SIGNET lab, University of Padova, Department of Information Engineering)
  38.  */
  39. #ifndef __mac_timers_h_mr__
  40. #define __mac_timers_h_mr__
  41. /* ======================================================================
  42.    Timers
  43.    ====================================================================== */
  44. class Mac802_11mr;
  45. class Mr_MacTimer : public Handler {
  46. public:
  47. Mr_MacTimer(Mac802_11mr* m) : mac(m) {
  48. busy_ = paused_ = 0; stime = rtime = 0.0;
  49. }
  50. virtual void handle(Event *e) = 0;
  51. virtual void start(double time);
  52. virtual void stop(void);
  53. virtual void pause(void) { assert(0); }
  54. virtual void resume(void) { assert(0); }
  55. inline int busy(void) { return busy_; }
  56. inline int paused(void) { return paused_; }
  57. inline double expire(void) {
  58. return ((stime + rtime) - Scheduler::instance().clock());
  59. }
  60. protected:
  61. Mac802_11mr *mac;
  62. int busy_;
  63. int paused_;
  64. Event intr;
  65. double stime; // start time
  66. double rtime; // remaining time
  67. };
  68. class Mr_BackoffTimer : public Mr_MacTimer {
  69. public:
  70. Mr_BackoffTimer(Mac802_11mr *m) : Mr_MacTimer(m), difs_wait(0.0) {}
  71. void start(int cw, int idle, double difs = 0.0);
  72. void handle(Event *e);
  73. void pause(void);
  74. void resume(double difs);
  75. private:
  76. double difs_wait;
  77. };
  78. class Mr_DeferTimer : public Mr_MacTimer {
  79. public:
  80. Mr_DeferTimer(Mac802_11mr *m) : Mr_MacTimer(m) {}
  81. void start(double);
  82. void handle(Event *e);
  83. };
  84. class Mr_IFTimer : public Mr_MacTimer {
  85. public:
  86. Mr_IFTimer(Mac802_11mr *m) : Mr_MacTimer(m) {}
  87. void handle(Event *e);
  88. };
  89. class Mr_NavTimer : public Mr_MacTimer {
  90. public:
  91. Mr_NavTimer(Mac802_11mr *m) : Mr_MacTimer(m) {}
  92. void handle(Event *e);
  93. };
  94. class Mr_RxTimer : public Mr_MacTimer {
  95. public:
  96. Mr_RxTimer(Mac802_11mr *m) : Mr_MacTimer(m) {}
  97. void handle(Event *e);
  98. };
  99. class Mr_TxTimer : public Mr_MacTimer {
  100. public:
  101. Mr_TxTimer(Mac802_11mr *m) : Mr_MacTimer(m) {}
  102. void handle(Event *e);
  103. };
  104. #endif /* __mac_timers_h_mr__ */