mac.cc
上传用户:sdhqmy
上传日期:2015-12-07
资源大小:63k
文件大小:5k
源码类别:

3G开发

开发平台:

C/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 Daedalus Research
  17.  * Group at the University of California Berkeley.
  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.  * Contributed by Giao Nguyen, http://daedalus.cs.berkeley.edu/~gnguyen
  35.  */
  36. #ifndef lint
  37. static const char rcsid[] =
  38.     "@(#) $Header: /nfs/jade/vint/CVSROOT/ns-2/mac/mac.cc,v 1.39 2001/06/05 23:49:43 haldar Exp $ (UCB)";
  39. #endif
  40. //#include "classifier.h"
  41. #include <channel.h>
  42. #include <mac.h>
  43. #include <address.h>
  44. int hdr_mac::offset_;
  45. static class MacHeaderClass : public PacketHeaderClass {
  46. public:
  47. MacHeaderClass() : PacketHeaderClass("PacketHeader/Mac",
  48.      sizeof(hdr_mac)) {
  49. bind_offset(&hdr_mac::offset_);
  50. }
  51. void export_offsets() {
  52. field_offset("macSA_", OFFSET(hdr_mac, macSA_));
  53. field_offset("macDA_", OFFSET(hdr_mac, macDA_));
  54. }
  55. } class_hdr_mac;
  56. static class MacClass : public TclClass {
  57. public:
  58. MacClass() : TclClass("Mac") {}
  59. TclObject* create(int, const char*const*) {
  60. return (new Mac);
  61. }
  62. } class_mac;
  63. void
  64. MacHandlerResume::handle(Event*)
  65. {
  66. mac_->resume();
  67. }
  68. void
  69. MacHandlerSend::handle(Event* e)
  70. {
  71. mac_->sendDown((Packet*)e);
  72. }
  73. /* =================================================================
  74.    Mac Class Functions
  75.   ==================================================================*/
  76. static int MacIndex = 0;
  77. Mac::Mac() : 
  78. BiConnector(), abstract_(0), netif_(0), tap_(0), ll_(0), queue_(0), channel_(0), callback_(0), 
  79. hRes_(this), hSend_(this), state_(MAC_IDLE), pktRx_(0), pktTx_(0)
  80. {
  81. index_ = MacIndex++;
  82. bind_bw("bandwidth_", &bandwidth_);
  83. bind_time("delay_", &delay_);
  84. bind_bool("abstract_", &abstract_);
  85. }
  86. int Mac::command(int argc, const char*const* argv)
  87. {
  88. if(argc == 2) {
  89. Tcl& tcl = Tcl::instance();
  90. if(strcmp(argv[1], "id") == 0) {
  91. tcl.resultf("%d", addr());
  92. return TCL_OK;
  93. } else if (strcmp(argv[1], "channel") == 0) {
  94. tcl.resultf("%s", channel_->name());
  95. return (TCL_OK);
  96. }
  97. } else if (argc == 3) {
  98. TclObject *obj;
  99. if( (obj = TclObject::lookup(argv[2])) == 0) {
  100. fprintf(stderr, "%s lookup failedn", argv[1]);
  101. return TCL_ERROR;
  102. }
  103. else if (strcmp(argv[1], "netif") == 0) {
  104. netif_ = (Phy*) obj;
  105. return TCL_OK;
  106. }
  107. else if (strcmp(argv[1], "log-target") == 0) {
  108.                         logtarget_ = (NsObject*) obj;
  109.                         if(logtarget_ == 0)
  110.                                 return TCL_ERROR;
  111.                         return TCL_OK;
  112.                 }
  113. }
  114. return BiConnector::command(argc, argv);
  115. }
  116. void Mac::recv(Packet* p, Handler* h)
  117. {
  118. if (hdr_cmn::access(p)->direction() == hdr_cmn::UP) {
  119. sendUp(p);
  120. return;
  121. }
  122. callback_ = h;
  123. hdr_mac* mh = HDR_MAC(p);
  124. mh->set(MF_DATA, index_);
  125. state(MAC_SEND);
  126. sendDown(p);
  127. }
  128. //JUNGMIN
  129. int Mac::CheckDest(Packet *p)
  130. {
  131. printf("This is Mac::CheckDest!!n");
  132. return -1;
  133. }
  134. //end of JUNGMIN
  135. void Mac::sendUp(Packet* p) 
  136. {
  137. char* mh = (char*)p->access(hdr_mac::offset_);
  138. int dst = this->hdr_dst(mh);
  139. state(MAC_IDLE);
  140. if (((u_int32_t)dst != MAC_BROADCAST) && (dst != index_)) {
  141. if(!abstract_){
  142. drop(p);
  143. }else {
  144. //Dont want to creat a trace
  145. Packet::free(p);
  146. }
  147. return;
  148. }
  149. Scheduler::instance().schedule(uptarget_, p, delay_);
  150. }
  151. void Mac::sendDown(Packet* p)
  152. {
  153. Scheduler& s = Scheduler::instance();
  154. double txt = txtime(p);
  155. downtarget_->recv(p, this);
  156. if(!abstract_)
  157. s.schedule(&hRes_, &intr_, txt);
  158. }
  159. void Mac::resume(Packet* p)
  160. {
  161. if (p != 0)
  162. drop(p);
  163. state(MAC_IDLE);
  164. callback_->handle(&intr_);
  165. }
  166. //Mac* Mac::getPeerMac(Packet* p)
  167. //{
  168. //return (Mac*) mcl_->slot(hdr_mac::access(p)->macDA());
  169. //}