00001 00002 /* 00003 * mac-simple.h 00004 * Copyright (C) 2003 by the University of Southern California 00005 * $Id: mac-simple.h,v 1.6 2005/08/25 18:58:07 johnh Exp $ 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU General Public License, 00009 * version 2, as published by the Free Software Foundation. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License along 00017 * with this program; if not, write to the Free Software Foundation, Inc., 00018 * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 00019 * 00020 * 00021 * The copyright of this module includes the following 00022 * linking-with-specific-other-licenses addition: 00023 * 00024 * In addition, as a special exception, the copyright holders of 00025 * this module give you permission to combine (via static or 00026 * dynamic linking) this module with free software programs or 00027 * libraries that are released under the GNU LGPL and with code 00028 * included in the standard release of ns-2 under the Apache 2.0 00029 * license or under otherwise-compatible licenses with advertising 00030 * requirements (or modified versions of such code, with unchanged 00031 * license). You may copy and distribute such a system following the 00032 * terms of the GNU GPL for this module and the licenses of the 00033 * other code concerned, provided that you include the source code of 00034 * that other code when and as the GNU GPL requires distribution of 00035 * source code. 00036 * 00037 * Note that people who make modified versions of this module 00038 * are not obligated to grant this special exception for their 00039 * modified versions; it is their choice whether to do so. The GNU 00040 * General Public License gives permission to release a modified 00041 * version without this exception; this exception also makes it 00042 * possible to release a modified version which carries forward this 00043 * exception. 00044 * 00045 */ 00046 00047 #ifndef ns_mac_simple_h 00048 #define ns_mac_simple_h 00049 00050 // Added by Sushmita to support event tracing (singal@nunki.usc.edu) 00051 #include "address.h" 00052 #include "ip.h" 00053 00054 class MacSimpleWaitTimer; 00055 class MacSimpleSendTimer; 00056 class MacSimpleRecvTimer; 00057 00058 // Added by Sushmita to support event tracing (singal@nunki.usc.edu) 00059 class EventTrace; 00060 00061 00062 class MacSimple : public Mac { 00063 //Added by Sushmita to support backoff 00064 friend class BackoffTimer; 00065 public: 00066 MacSimple(); 00067 void recv(Packet *p, Handler *h); 00068 void send(Packet *p, Handler *h); 00069 00070 void waitHandler(void); 00071 void sendHandler(void); 00072 void recvHandler(void); 00073 double txtime(Packet *p); 00074 00075 // Added by Sushmita to support event tracing (singal@nunki.usc.edu) 00076 void trace_event(char *, Packet *); 00077 int command(int, const char*const*); 00078 EventTrace *et_; 00079 00080 private: 00081 Packet * pktRx_; 00082 Packet * pktTx_; 00083 MacState rx_state_; // incoming state (MAC_RECV or MAC_IDLE) 00084 MacState tx_state_; // outgoing state 00085 int tx_active_; 00086 int fullduplex_mode_; 00087 Handler * txHandler_; 00088 MacSimpleWaitTimer *waitTimer; 00089 MacSimpleSendTimer *sendTimer; 00090 MacSimpleRecvTimer *recvTimer; 00091 00092 int busy_ ; 00093 00094 00095 }; 00096 00097 class MacSimpleTimer: public Handler { 00098 public: 00099 MacSimpleTimer(MacSimple* m) : mac(m) { 00100 busy_ = 0; 00101 } 00102 virtual void handle(Event *e) = 0; 00103 virtual void restart(double time); 00104 virtual void start(double time); 00105 virtual void stop(void); 00106 inline int busy(void) { return busy_; } 00107 inline double expire(void) { 00108 return ((stime + rtime) - Scheduler::instance().clock()); 00109 } 00110 00111 protected: 00112 MacSimple *mac; 00113 int busy_; 00114 Event intr; 00115 double stime; 00116 double rtime; 00117 double slottime; 00118 }; 00119 00120 // Timer to use for delaying the sending of packets 00121 class MacSimpleWaitTimer: public MacSimpleTimer { 00122 public: MacSimpleWaitTimer(MacSimple *m) : MacSimpleTimer(m) {} 00123 void handle(Event *e); 00124 }; 00125 00126 // Timer to use for finishing sending of packets 00127 class MacSimpleSendTimer: public MacSimpleTimer { 00128 public: 00129 MacSimpleSendTimer(MacSimple *m) : MacSimpleTimer(m) {} 00130 void handle(Event *e); 00131 }; 00132 00133 // Timer to use for finishing reception of packets 00134 class MacSimpleRecvTimer: public MacSimpleTimer { 00135 public: 00136 MacSimpleRecvTimer(MacSimple *m) : MacSimpleTimer(m) {} 00137 void handle(Event *e); 00138 }; 00139 00140 00141 00142 #endif