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

通讯编程

开发平台:

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.  * @(#) $Header: 
  35.  *
  36.  * Ported from CMU/Monarch's code, nov'98 -Padma Haldar.
  37.  * phy.cc
  38.  */
  39. #include <math.h>
  40. #include "config.h"
  41. #include <packet.h>
  42. #include <phy.h>
  43. #include <dsr/hdr_sr.h>
  44. class Mac;
  45. static int InterfaceIndex = 0;
  46. Phy::Phy() : BiConnector() {
  47. index_ = InterfaceIndex++;
  48. bandwidth_ = 0.0;
  49. channel_ = 0;
  50. node_ = 0;
  51. head_ = 0;
  52. }
  53. int
  54. Phy::command(int argc, const char*const* argv) {
  55. if (argc == 2) {
  56. Tcl& tcl = Tcl::instance();
  57. if(strcmp(argv[1], "id") == 0) {
  58. tcl.resultf("%d", index_);
  59. return TCL_OK;
  60. }
  61. }
  62. else if(argc == 3) {
  63. TclObject *obj;
  64. if( (obj = TclObject::lookup(argv[2])) == 0) {
  65. fprintf(stderr, "%s lookup failedn", argv[1]);
  66. return TCL_ERROR;
  67. }
  68. if (strcmp(argv[1], "channel") == 0) {
  69.                         assert(channel_ == 0);
  70. channel_ = (Channel*) obj;
  71. downtarget_ = (NsObject*) obj;
  72. // LIST_INSERT_HEAD() is done by Channel
  73. return TCL_OK;
  74. }
  75. else if (strcmp(argv[1], "node") == 0) {
  76. assert(node_ == 0);
  77. node_ = (Node*) obj;
  78. // LIST_INSERT_HEAD() is done by Node
  79. return TCL_OK;
  80. }
  81. else if (strcmp(argv[1], "linkhead") == 0) {
  82. head_ = (LinkHead*)  obj;
  83. return (TCL_OK);
  84. }
  85. return BiConnector::command(argc, argv);
  86. }
  87. void
  88. Phy::recv(Packet* p, Handler*)
  89. {
  90. struct hdr_cmn *hdr = HDR_CMN(p);
  91. //struct hdr_sr *hsr = HDR_SR(p);
  92. /*
  93.  * Handle outgoing packets
  94.  */
  95. switch(hdr->direction()) {
  96. case hdr_cmn::DOWN :
  97. /*
  98.  * The MAC schedules its own EOT event so we just
  99.  * ignore the handler here.  It's only purpose
  100.  * it distinguishing between incoming and outgoing
  101.  * packets.
  102.  */
  103. sendDown(p);
  104. return;
  105. case hdr_cmn::UP :
  106. if (sendUp(p) == 0) {
  107. /*
  108.  * XXX - This packet, even though not detected,
  109.  * contributes to the Noise floor and hence
  110.  * may affect the reception of other packets.
  111.  */
  112. Packet::free(p);
  113. return;
  114. } else {
  115. uptarget_->recv(p, (Handler*) 0);
  116. }
  117. break;
  118. default:
  119. printf("Direction for pkt-flow not specified; Sending pkt up the stack on default.nn");
  120. if (sendUp(p) == 0) {
  121. /*
  122.  * XXX - This packet, even though not detected,
  123.  * contributes to the Noise floor and hence
  124.  * may affect the reception of other packets.
  125.  */
  126. Packet::free(p);
  127. return;
  128. } else {
  129. uptarget_->recv(p, (Handler*) 0);
  130. }
  131. }
  132. }
  133. /* NOTE: this might not be the best way to structure the relation
  134. between the actual interfaces subclassed from net-if(phy) and 
  135. net-if(phy). 
  136. It's fine for now, but if we were to decide to have the interfaces
  137. themselves properly handle multiple incoming packets (they currently
  138. require assistance from the mac layer to do this), then it's not as
  139. generic as I'd like.  The way it is now, each interface will have to
  140. have it's own logic to keep track of the packets that are arriving.
  141. Seems like this is general service that net-if could provide.
  142. Ok.  A fair amount of restructuring is going to have to happen here
  143. when/if net-if keep track of the noise floor at their location.  I'm
  144. gonna punt on it for now.
  145. Actually, this may be all wrong.  Perhaps we should keep a separate 
  146. noise floor per antenna, which would mean the particular interface types
  147. would have to track noise floor themselves, since only they know what
  148. kind of antenna diversity they have.  -dam 8/7/98 */
  149. // double
  150. // Phy::txtime(Packet *p) const
  151. // {
  152. //  hdr_cmn *hdr = HDR_CMN(p);
  153. //  return hdr->size() * 8.0 / Rb_;
  154. // }
  155. void
  156. Phy::dump(void) const
  157. {
  158. fprintf(stdout, "tINDEX: %dn",
  159. index_);
  160. fprintf(stdout, "tuptarget: %lx, channel: %lx",
  161. (long) uptarget_, (long) channel_);
  162. }