rtcp.cc
上传用户: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 MASH Research
  17.  *  Group at the University of California Berkeley.
  18.  * 4. Neither the name of the University nor of the Research Group may be
  19.  *    used 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. #ifndef lint
  35. static const char rcsid[] =
  36.     "@(#) $Header: /cvsroot/nsnam/ns-2/tcp/rtcp.cc,v 1.17 2000/09/01 03:04:06 haoboy Exp $";
  37. #endif
  38. #include <stdlib.h>
  39. #include "config.h"
  40. #include "agent.h"
  41. #include "random.h"
  42. #include "rtp.h"
  43. class RTCPAgent;
  44. class RTCP_Timer : public TimerHandler {
  45. public: 
  46. RTCP_Timer(RTCPAgent *a) : TimerHandler() { a_ = a; }
  47. protected:
  48. virtual void expire(Event *e);
  49. RTCPAgent *a_;
  50. };
  51. class RTCPAgent : public Agent {
  52. public:
  53. RTCPAgent();
  54. virtual void timeout(int);
  55. virtual void recv(Packet* p, Handler* h);
  56. int command(int argc, const char*const* argv);
  57. protected:
  58. void start();
  59. void stop();
  60. void sendpkt();
  61. int running_;
  62. int random_;
  63. int seqno_;
  64. double interval_;
  65. RTPSession* session_;
  66. RTCP_Timer rtcp_timer_;
  67. };
  68. static class RTCPAgentClass : public TclClass {
  69. public:
  70. RTCPAgentClass() : TclClass("Agent/RTCP") {}
  71. TclObject* create(int, const char*const*) {
  72. return (new RTCPAgent());
  73. }
  74. } class_rtcp_agent;
  75. /* XXX Could perhaps derive this from CBR.  If so, use cbr_timer_ */
  76. RTCPAgent::RTCPAgent()
  77. : Agent(PT_RTCP), session_(0), rtcp_timer_(this)
  78. {
  79. size_ = 128;
  80. bind_time("interval_", &interval_);
  81. bind("random_", &random_);
  82. bind("seqno_", &seqno_);
  83. running_ = 0;
  84. }
  85. void RTCPAgent::start()
  86. {
  87. running_ = 1;
  88. rtcp_timer_.resched(interval_);
  89. }
  90. void RTCPAgent::stop()
  91. {
  92. rtcp_timer_.cancel();
  93. running_ = 0;
  94. }
  95. void RTCPAgent::recv(Packet* p, Handler*)
  96. {
  97. session_->recv_ctrl(p);
  98. }
  99. void RTCPAgent::sendpkt()
  100. {
  101. Packet* p = allocpkt();
  102. hdr_rtp* rh = hdr_rtp::access(p);
  103. /* Fill in srcid_ and seqno */
  104. rh->seqno() = seqno_++;
  105. rh->srcid() = session_->srcid();
  106. target_->recv(p);
  107. }
  108. void RTCPAgent::timeout(int)
  109. {
  110. if (running_) {
  111. size_ = session_->build_report(0);
  112. sendpkt();
  113. double t = interval_;
  114. if (random_)
  115. /* add some zero-mean white noise */
  116. t += interval_ * Random::uniform(-0.5, 0.5);
  117. rtcp_timer_.resched(t);
  118. /* XXX */
  119. Tcl::instance().evalf("%s rtcp_timeout", session_->name());
  120. }
  121. }
  122. int RTCPAgent::command(int argc, const char*const* argv)
  123. {
  124. if (argc == 2) {
  125. if (strcmp(argv[1], "start") == 0) {
  126. start();
  127. return (TCL_OK);
  128. }
  129. if (strcmp(argv[1], "stop") == 0) {
  130. stop();
  131. return (TCL_OK);
  132. }
  133. if (strcmp(argv[1], "bye") == 0) {
  134. size_ = session_->build_report(1);
  135. sendpkt();
  136. stop();
  137. return (TCL_OK);
  138. }
  139. } else if (argc == 3) {
  140. if (strcmp(argv[1], "session") == 0) {
  141. session_ = (RTPSession*)TclObject::lookup(argv[2]);
  142. return (TCL_OK);
  143. }
  144. }
  145. return (Agent::command(argc, argv));
  146. }
  147. void RTCP_Timer::expire(Event* /*e*/) {
  148. a_->timeout(0);
  149. }