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

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1991,1993 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the Computer Systems
  16.  * Engineering Group at Lawrence Berkeley Laboratory.
  17.  * 4. Neither the name of the University nor of the Laboratory may be used
  18.  *    to endorse or promote products derived from this software without
  19.  *    specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  * @(#) $Header: /cvsroot/nsnam/nam-1/packet.h,v 1.20 2003/01/28 03:22:38 buchheim Exp $ (LBL)
  34.  */
  35. #ifndef nam_packet_h
  36. #define nam_packet_h
  37. #include "animation.h"
  38. #include "monitor.h"
  39. #include "trace.h"
  40. #include "view.h" 
  41. #define AGT 1
  42. #define RTR 2
  43. #define MAC 3
  44. #define MAX_RANGE 250
  45. #define MIN_RANGE 50
  46. #define BPACKET_TXT_TIME 0.5
  47. static const int PacketTypeSize = 8;
  48. class NetView;
  49. //class PSView;
  50. class Edge;
  51. class Packet : public Animation {
  52.  public:
  53. Packet(Edge*, const PacketAttr&, double, double, long );
  54. ~Packet();
  55. virtual float distance(float, float) const;
  56. void position(float&, float&, double) const;
  57. virtual void draw(View* nv, double now);
  58.   // virtual void draw(PSView*, double now) const;
  59. virtual void update(double now);
  60. int ComputePolygon(double now, float ax[5], float ay[5]) const;
  61. virtual int inside(double now, float px, float py) const;
  62. virtual const char* info() const;
  63. virtual const char* getname() const;
  64. virtual const char* getfid() const;
  65. virtual const char* getesrc() const;
  66. virtual const char* getedst() const;
  67. virtual const char* gettype() const;
  68. void monitor(Monitor *m, double now, char *result, int len);
  69. MonState *monitor_state();
  70. inline int id() const { return pkt_.id; }
  71. inline int size() const { return pkt_.size; }
  72. inline Packet* next() const {return next_;}
  73. inline void next(Packet *p) {next_=p;}
  74. inline Packet* prev() const {return prev_;}
  75. inline void prev(Packet *p) {prev_=p;}
  76. inline double start() const { return ts_; }
  77. inline double finish() const { return ta_ + tx_; }
  78. inline const int attr() const { return pkt_.attr; }
  79. inline const char* type() const { return pkt_.type; }
  80. inline const char* convid() const { return pkt_.convid; }
  81. virtual int classid() const { return ClassPacketID; }
  82. virtual void update_bb();
  83. void CheckPolygon(View *, int, float x[5], float y[5]) const;
  84. void RearrangePoints(View *v, int npts, float x[5], float y[5]) const;
  85. static int count() {return count_;}
  86.  protected:
  87. virtual int EndPoints(double, double&, double&) const;
  88. Edge* edge_;
  89. Packet *prev_;          /*maintain a doubly linked list of */
  90. Packet *next_;          /*packets on a particular edge*/
  91. PacketAttr pkt_;
  92. double ts_; /* time of start of transmission */
  93. double ta_; /* time of arrival of leading edge */
  94. int arriving_;          /*has the packet started to arrive yet?*/
  95. double tx_; /* tranmission time of packet on cur link */
  96. double curTime_;
  97. static int count_;
  98. int type_ ;
  99. };
  100. class BPacket : public Animation {
  101. public:
  102.    BPacket(double cx, double cy , const PacketAttr&, double now, long offset, int direction, double duration, double radius );
  103.    virtual void draw(View* nv, double now);
  104.    virtual void update(double);
  105.    virtual void update_bb()  ;
  106.    virtual const char* getname() const;
  107.    virtual const char* info() const;
  108.    virtual int inside(float px, float py) const;
  109.    void monitor(Monitor *m, double now, char *result, int len);
  110.    MonState *monitor_state();
  111. private:
  112.    double x_ ;
  113.    double y_ ;
  114.    PacketAttr pkt_;
  115.    float radius_;
  116.    double start_;          /* time packet was dropped */
  117.    int direction_ ;
  118.    double curTime_;
  119.    double duration_;
  120.    double max_radius_;
  121. };
  122. #endif