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

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 RTPPACKETPROCESSOR_H
  24. #define RTPPACKETPROCESSOR_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include "rtpstructs.h"
  29. #include "rtpexceptionstructs.h"
  30. #include "rtphandlers.h"
  31. #include "rtperror.h"
  32. class RTPSources;
  33. class RTPHandlers;
  34. class RTPContributingSources;
  35. class RTPPacket;
  36. class RTPLocalInfo;
  37. class RTPConnection;
  38. class RTPPacketProcessor RTPDEBUGBASE
  39. {
  40. public:
  41. RTPPacketProcessor();
  42. ~RTPPacketProcessor();
  43. inline int SetSources(RTPSources *s);
  44. inline int SetHandlers(RTPHandlers *hand);
  45. inline int SetContributingSources(RTPContributingSources *srcs);
  46. inline int SetConnection(RTPConnection *c);
  47. int ProcessRTPBlock(unsigned char *data,int len,unsigned long ip,int port,bool *collis,bool acceptlocalpackets,double localtsunit); // can't use 'data' after calling this function
  48. int ProcessRTCPBlock(unsigned char *data,int len,unsigned long ip,int port,bool *collis,double localtsunit); // can't use 'data' after calling this function
  49. private:
  50. static int GetRTPData(unsigned char *data,int len,RTPPacket **packet);
  51. int ProcessSenderReport(unsigned char *data,int len,int reportcount,bool *collis,double localtsunit);
  52. int ProcessReceiverReport(unsigned char *data,int len,int reportcount,bool *collis,double localtsunit);
  53. int ProcessSDES(unsigned char *data,int len,int sourcecount,bool *colli,double localtsunits);
  54. int ProcessBYE(unsigned char *data,int len,int sourcecount);
  55. int ProcessReportBlocks(RTPuint32 senderssrc,unsigned char *data,int len,int reportcount,double localtsunit);
  56. inline void CallLocalSSRCCollHandler(RTPuint32 ssrc,unsigned long ip,bool rtpdata,int port);
  57. void CallAppDataHandler(unsigned char *data,int len,unsigned char subtype);
  58. inline void CheckRTCPHandler(unsigned char *data,int len,unsigned long ip, int port);
  59. RTPSources *sources;
  60. RTPConnection *conn;
  61. RTPHandlers *handlers;
  62. RTPContributingSources *contribsrcs;
  63. bool initialized;
  64. unsigned long curip;
  65. unsigned long curport;
  66. // exception structs
  67. RTPExcepSSRCCollision ex_ssrccol;
  68. RTPExcepAppData ex_appdata;
  69. };
  70. inline int RTPPacketProcessor::SetSources(RTPSources *s)
  71. {
  72. if (s == NULL)
  73. return ERR_RTP_ARGUMENTCANTBENULL;
  74. sources = s;
  75. if (handlers != NULL && contribsrcs != NULL && conn != NULL)
  76. initialized = true;
  77. return 0;
  78. }
  79. inline int RTPPacketProcessor::SetHandlers(RTPHandlers *hand)
  80. {
  81. if (hand == NULL)
  82. return ERR_RTP_ARGUMENTCANTBENULL;
  83. handlers = hand;
  84. if (sources != NULL && contribsrcs != NULL && conn != NULL)
  85. initialized = true;
  86. return 0;
  87. }
  88. inline int RTPPacketProcessor::SetContributingSources(RTPContributingSources *srcs)
  89. {
  90. if (srcs == NULL)
  91. return ERR_RTP_ARGUMENTCANTBENULL;
  92. contribsrcs = srcs;
  93. if (sources != NULL && handlers != NULL && conn != NULL)
  94. initialized = true;
  95. return 0;
  96. }
  97. inline int RTPPacketProcessor::SetConnection(RTPConnection *c)
  98. {
  99. if (c == NULL)
  100. return ERR_RTP_ARGUMENTCANTBENULL;
  101. conn = c;
  102. if (sources != NULL && handlers != NULL && contribsrcs != NULL)
  103. initialized = true;
  104. return 0;
  105. }
  106. inline void RTPPacketProcessor::CallLocalSSRCCollHandler(RTPuint32 ssrc,unsigned long ip,bool rtpdata,int port)
  107. {
  108. RTPExceptionHandler handler;
  109. void *usrdata;
  110. handler = handlers->handlers[RTP_EXCEPTION_LOCALSSRCCOLLISION].handler;
  111. usrdata = handlers->handlers[RTP_EXCEPTION_LOCALSSRCCOLLISION].usrdata;
  112. ex_ssrccol.ip = ip;
  113. ex_ssrccol.port = port;
  114. ex_ssrccol.rtpdata = rtpdata;
  115. ex_ssrccol.ssrc = ssrc;
  116. handler(RTP_EXCEPTION_LOCALSSRCCOLLISION,&ex_ssrccol,usrdata);
  117. }
  118. #endif // RTPPACKETPROCESSOR_H