rtpsession.h
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:11k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.   This file is a part of JRTPLIB
  3.   Copyright (c) 1999-2000 Jori Liesenborgs
  4.   Contact: jori@lumumba.luc.ac.be
  5.   This library (JRTPLIB) was partially developed for my thesis at the
  6.   School for Knowledge Technology (Belgium/The Netherlands)
  7.   Permission is hereby granted, free of charge, to any person obtaining a
  8.   copy of this software and associated documentation files (the "Software"),
  9.   to deal in the Software without restriction, including without limitation
  10.   the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.   and/or sell copies of the Software, and to permit persons to whom the
  12.   Software is furnished to do so, subject to the following conditions:
  13.   The above copyright notice and this permission notice shall be included
  14.   in all copies or substantial portions of the Software.
  15.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16.   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17.   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  18.   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19.   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20.   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21.   IN THE SOFTWARE.
  22. */
  23. #ifndef RTPSESSION_H
  24. #define RTPSESSION_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpconnection.h"
  28. #include "rtpcontributingsources.h"
  29. #include "rtppacketprocessor.h"
  30. #include "rtplocalinfo.h"
  31. #include "rtprtcpmodule.h"
  32. #include "rtpsources.h"
  33. #include "rtperror.h"
  34. #include "rtphandlers.h"
  35. #include "rtpsourcedata.h"
  36. class RTPPacket;
  37. class RTPSession
  38. {
  39. public:
  40. RTPSession();
  41. ~RTPSession();
  42. int Create(int localportbase,unsigned long localip = 0);
  43. int GetPortBase() { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; return rtpconn.GetPortBase(); }
  44. int GetLocalSSRC(unsigned long *ssrc) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; *ssrc = ntohl(contribsources.GetLocalSSRC()); return 0; }
  45. int Destroy();
  46. int GetRTPSocket(RTPSOCKET *sock) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; *sock = rtpconn.GetRTPSocket(); return 0; }
  47. int GetRTCPSocket(RTPSOCKET *sock) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; *sock = rtpconn.GetRTCPSocket(); return 0; }
  48. int GetSendSocket(RTPSOCKET *sock) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; *sock = rtpconn.GetSendSocket(); return 0; }
  49. int GetSendPort() { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; return rtpconn.GetSendPort(); }
  50. int GetLocalIP(unsigned long *ip) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; *ip = rtpconn.GetLocalIP(); return 0; }
  51. int SetToS(int tos) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; return rtpconn.SetToS(tos); }
  52. int AddDestination(unsigned long remoteIP,int remoteportbase) { return rtpconn.AddDestination(remoteIP,remoteportbase); }
  53. int DeleteDestination(unsigned long remoteIP,int remoteportbase) { return rtpconn.DeleteDestination(remoteIP,remoteportbase); }
  54. void ClearDestinations() { rtpconn.ClearDestinations(); }
  55. bool SupportsMulticasting() { return rtpconn.SupportsMulticasting(); }
  56. int JoinMulticastGroup(unsigned long mcastIP) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; return rtpconn.JoinMulticastGroup(mcastIP); }
  57. int LeaveMulticastGroup(unsigned long mcastIP) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; return rtpconn.LeaveMulticastGroup(mcastIP); }
  58. void LeaveAllMulticastGroups() { rtpconn.LeaveAllMulticastGroups(); }
  59. int SetMulticastTTL(unsigned char ttl) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; return rtpconn.SetMulticastTTL(ttl); }
  60. int SendPacket(void *data,int len);
  61. int SendPacket(void *data,int len,unsigned char pt,bool mark,unsigned long timestampinc);
  62. //int SendPacket(void *data,int len,unsigned short hdrextID,void *hdrextdata,int numhdrextwords);
  63. int SendPacket(void *data,int len,unsigned char pt,bool mark,unsigned long timestampinc,unsigned short hdrextID,void *hdrextdata,int numhdrextwords);
  64. void SetDefaultPayloadType(unsigned char pt) { localinf.SetDefaultPayloadType(pt); }
  65. void SetDefaultMark(bool mark) { localinf.SetDefaultMark(mark); }
  66. void SetDefaultTimeStampIncrement(unsigned long inc) { localinf.SetDefaultTimestampInc(inc); }
  67. int IncrementTimeStamp(unsigned long inc) { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; localinf.timestamp += inc; return 0; }
  68. int IncrementTimeStampDefault() { if (!initialized) return ERR_RTP_SESSIONNOTCREATED; if (!localinf.deftsincset) return ERR_RTP_NODEFAULTINCREMENTSET; localinf.timestamp += localinf.deftsinc; return 0; }
  69. int PollData();
  70. bool GotoFirstSource() { if (!initialized) return false; return sources.GotoFirstSource(); }
  71. bool GotoNextSource() { if (!initialized) return false; return sources.GotoNextSource(); }
  72. bool GotoFirstSourceWithData() { if (!initialized) return false; return sources.GotoFirstSourceWithData(); }
  73. bool GotoNextSourceWithData() { if (!initialized) return false; return sources.GotoNextSourceWithData(); }
  74. inline RTPPacket *GetNextPacket();
  75. inline RTPSourceData *GetCurrentSourceInfo();
  76. RTPSourceData *GetSourceInfo(unsigned long ssrc) { if (!initialized) return NULL; return sources.Retrieve(ssrc); }
  77. int AddInvalidLocalSSRC(unsigned long ssrc) { return contribsources.AddInvalidLocalSSRC(ssrc); }
  78. int RemoveInvalidLocalSSRC(unsigned long ssrc) { return contribsources.RemoveInvalidLocalSSRC(ssrc); }
  79. void ClearInvalidLocalSSRCList() { contribsources.ClearInvalidLocalSSRCList(); }
  80.                                                                 
  81. int AddCSRC(unsigned long csrc) { return contribsources.AddCSRC(csrc); }
  82. int DeleteCSRC(unsigned long csrc) { return contribsources.DeleteCSRC(csrc); }
  83. void ClearCSRCList() { contribsources.ClearCSRCList(); }
  84. int SetReceiveMode(int mode) { return rtpconn.SetReceiveMode(mode); }
  85. int AddToIgnoreList(unsigned long remoteIP,bool allports,int portbase) { return rtpconn.AddToIgnoreList(remoteIP,allports,portbase); }
  86. int DeleteFromIgnoreList(unsigned long remoteIP,bool allports,int portbase)   { return rtpconn.DeleteFromIgnoreList(remoteIP,allports,portbase); }
  87. void ClearIgnoreList() { rtpconn.ClearIgnoreList(); }
  88. int AddToAcceptList(unsigned long remoteIP,bool allports,int portbase) { return rtpconn.AddToAcceptList(remoteIP,allports,portbase); }
  89. int DeleteFromAcceptList(unsigned long remoteIP,bool allports,int portbase) { return rtpconn.DeleteFromAcceptList(remoteIP,allports,portbase); }
  90. void ClearAcceptList() { rtpconn.ClearAcceptList(); }
  91. inline int SetMaxPacketSize(int m);
  92. void SetSessionBandwidth(double bw) { rtcpmodule.SetSessionBandWidth(bw); }
  93. void SetTimestampUnit(double t) { localinf.tsunit = t; }
  94. void SetControlTrafficFragment(double frag) { rtcpmodule.SetControlTrafficFragment(frag); }
  95. int SetLocalName(char *s,int len) { return contribsources.SetLocalName(s,len); }
  96. int SetLocalEMail(char *s,int len) { return contribsources.SetLocalEMail(s,len); }
  97. int SetLocalLocation(char *s,int len) { return contribsources.SetLocalLocation(s,len); }
  98. int SetLocalPhone(char *s,int len) { return contribsources.SetLocalPhone(s,len); }
  99. int SetLocalTool(char *s,int len) { return contribsources.SetLocalTool(s,len); }
  100. int SetLocalNote(char *s,int len) { return contribsources.SetLocalNote(s,len); }
  101. int SetCSRC_CNAME(unsigned long csrc,char *s,int len) { return contribsources.SetCSRC_CNAME(csrc,s,len); }
  102. int SetCSRCName(unsigned long csrc,char *s,int len) { return contribsources.SetCSRCName(csrc,s,len); }
  103. int SetCSRCEMail(unsigned long csrc,char *s,int len) { return contribsources.SetCSRCEMail(csrc,s,len); }
  104. int SetCSRCLocation(unsigned long csrc,char *s,int len) { return contribsources.SetCSRCLocation(csrc,s,len); }
  105. int SetCSRCPhone(unsigned long csrc,char *s,int len) { return contribsources.SetCSRCPhone(csrc,s,len); }
  106. int SetCSRCTool(unsigned long csrc,char *s,int len) { return contribsources.SetCSRCTool(csrc,s,len); }
  107. int SetCSRCNote(unsigned long csrc,char *s,int len) { return contribsources.SetCSRCNote(csrc,s,len); }
  108. void EnableSendName(bool val) { contribsources.EnableSendName(val); }
  109. void EnableSendEMail(bool val) { contribsources.EnableSendEMail(val); }
  110. void EnableSendLocation(bool val) { contribsources.EnableSendLocation(val); }
  111. void EnableSendPhone(bool val) { contribsources.EnableSendPhone(val); }
  112. void EnableSendTool(bool val) { contribsources.EnableSendTool(val); }
  113. void EnableSendNote(bool val) { contribsources.EnableSendNote(val); }
  114. void SetLocalSSRCCollisionHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetLocalSSRCCollisionHandler(handler,usrdata); }
  115. void SetSSRCCollisionHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetSSRCCollisionHandler(handler,usrdata); }
  116. void SetNewSourceHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetNewSourceHandler(handler,usrdata); }
  117. void SetInvalidSDESTypeHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetInvalidSDESTypeHandler(handler,usrdata); }
  118. void SetSSRCDepartureHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetSSRCDepartureHandler(handler,usrdata); }
  119. void SetSSRCTimeoutHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetSSRCTimeoutHandler(handler,usrdata); }
  120. void SetReceiveRTCPAPPHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetReceiveRTCPAPPHandler(handler,usrdata); }
  121. void SetTransmitRTCPAPPHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetTransmitRTCPAPPHandler(handler,usrdata); }
  122. void SetRTCPPacketHandler(RTPExceptionHandler handler,void *usrdata) { handlers.SetRTCPPacketHandler(handler,usrdata); }
  123. void ClearHandlers() { handlers.Clear(); }
  124. void SetAcceptOwnPackets(bool accept) { acceptownpackets = accept; }
  125. bool GetAcceptOwnPackets() { return acceptownpackets; }
  126. private:
  127. void CreateNewSSRC();
  128. RTPConnection rtpconn;
  129. RTPContributingSources contribsources; // includes local info
  130. RTPPacketProcessor packetprocessor;
  131. RTPLocalInfo localinf;
  132. RTPSources sources;
  133. RTPRTCPModule rtcpmodule;
  134. RTPHandlers handlers;
  135. bool initialized;
  136. bool acceptownpackets;
  137. };
  138. inline RTPPacket *RTPSession::GetNextPacket()
  139. {
  140. RTPSourceData *srcdat;
  141. if (!initialized)
  142. return NULL;
  143. if ((srcdat = sources.GetSourceInfo()) == NULL)
  144. return NULL;
  145. return srcdat->ExtractPacket();
  146. }
  147. inline RTPSourceData *RTPSession::GetCurrentSourceInfo()
  148. {
  149. if (!initialized)
  150. return NULL;
  151. return sources.GetSourceInfo();
  152. }
  153. inline int RTPSession::SetMaxPacketSize(int m)
  154. {
  155. if (m < RTP_MINIMUMPACKETSIZE)
  156. return ERR_RTP_MAXPACKSIZETOOSMALL;
  157. if (m > RTP_MAXIMUMPACKETSIZE)
  158. return ERR_RTP_MAXPACKSIZETOOBIG;
  159. localinf.maxpacksize = m;
  160. rtpconn.SetMaximumPacketSize(m);
  161. return 0;
  162. }
  163. #endif // RTPSESSION_H