mac-timers.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. #ifndef __mac_timers_h__
  36. #define __mac_timers_h__
  37. /* ======================================================================
  38.    Timers
  39.    ====================================================================== */
  40. class Mac802_11;
  41. class MacTimer : public Handler {
  42. public:
  43. MacTimer(Mac802_11* m) : mac(m) {
  44. busy_ = paused_ = 0; stime = rtime = 0.0;
  45. }
  46. virtual void handle(Event *e) = 0;
  47. virtual void start(double time);
  48. virtual void stop(void);
  49. virtual void pause(void) { assert(0); }
  50. virtual void resume(void) { assert(0); }
  51. inline int busy(void) { return busy_; }
  52. inline int paused(void) { return paused_; }
  53. inline double expire(void) {
  54. return ((stime + rtime) - Scheduler::instance().clock());
  55. }
  56. protected:
  57. Mac802_11 *mac;
  58. int busy_;
  59. int paused_;
  60. Event intr;
  61. double stime; // start time
  62. double rtime; // remaining time
  63. };
  64. class BackoffTimer : public MacTimer {
  65. public:
  66. BackoffTimer(Mac802_11 *m) : MacTimer(m), difs_wait(0.0) {}
  67. void start(int cw, int idle, double difs = 0.0);
  68. void handle(Event *e);
  69. void pause(void);
  70. void resume(double difs);
  71. private:
  72. double difs_wait;
  73. };
  74. class DeferTimer : public MacTimer {
  75. public:
  76. DeferTimer(Mac802_11 *m) : MacTimer(m) {}
  77. void start(double);
  78. void handle(Event *e);
  79. };
  80. class BeaconTimer : public MacTimer {
  81. public:
  82. BeaconTimer(Mac802_11 *m) : MacTimer(m) {}
  83. void start(double);
  84. void handle(Event *e);
  85. };
  86. class ProbeTimer : public MacTimer {
  87. public:
  88. ProbeTimer(Mac802_11 *m) : MacTimer(m) {}
  89. void start(double);
  90. void handle(Event *e);
  91. };
  92. class IFTimer : public MacTimer {
  93. public:
  94. IFTimer(Mac802_11 *m) : MacTimer(m) {}
  95. void handle(Event *e);
  96. };
  97. class NavTimer : public MacTimer {
  98. public:
  99. NavTimer(Mac802_11 *m) : MacTimer(m) {}
  100. void handle(Event *e);
  101. };
  102. class RxTimer : public MacTimer {
  103. public:
  104. RxTimer(Mac802_11 *m) : MacTimer(m) {}
  105. void handle(Event *e);
  106. };
  107. class TxTimer : public MacTimer {
  108. public:
  109. TxTimer(Mac802_11 *m) : MacTimer(m) {}
  110. void handle(Event *e);
  111. };
  112. #endif /* __mac_timers_h__ */