rtpcontributingsources.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 RTPCONTRIBUTINGSOURCES_H
  24. #define RTPCONTRIBUTINGSOURCES_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include "rtpsourcedescription.h"
  29. #include "rtpsrclist.h"
  30. #include "rtprandom.h"
  31. #include "rtperror.h"
  32. class RTPSources;
  33. class RTPContributingSources RTPDEBUGBASE
  34. {
  35. public:
  36. RTPContributingSources();
  37. ~RTPContributingSources();
  38. inline void Clear();
  39. inline int SetSources(RTPSources *s);
  40. void CreateLocalSSRC();
  41. int AddInvalidLocalSSRC(unsigned long ssrc) { return invalidssrcs.Add(ssrc); }
  42. int RemoveInvalidLocalSSRC(unsigned long ssrc) { return invalidssrcs.Delete(ssrc); }
  43. void ClearInvalidLocalSSRCList() { invalidssrcs.Clear(); }
  44. unsigned long GetLocalSSRC() { return localinfo.src; } // in network byte order
  45. int AddCSRC(unsigned long csrc);
  46. int DeleteCSRC(unsigned long csrc);
  47. void ClearCSRCList();
  48. int GetNumberOfCSRCs() { return numcsrcs; }
  49. bool DoesCSRCExist(unsigned long csrc);
  50. void FillCSRCs(unsigned char *data); // fills in CSRC info, in network byte order, with a maximum of 15 CSRCs
  51. int CreateLocalCNAME();
  52. int SetLocalName(char *s,int len) { return localinfo.SetSDES(TYPE_SDES_NAME-1,s,len); }
  53. int SetLocalEMail(char *s,int len) { return localinfo.SetSDES(TYPE_SDES_EMAIL-1,s,len); }
  54. int SetLocalLocation(char *s,int len) { return localinfo.SetSDES(TYPE_SDES_LOC-1,s,len); }
  55. int SetLocalPhone(char *s,int len) { return localinfo.SetSDES(TYPE_SDES_PHONE-1,s,len); }
  56. int SetLocalTool(char *s,int len) { return localinfo.SetSDES(TYPE_SDES_TOOL-1,s,len); }
  57. int SetLocalNote(char *s,int len) { return localinfo.SetSDES(TYPE_SDES_NOTE-1,s,len); }
  58. int SetCSRC_CNAME(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_CNAME-1,s,len); }
  59. int SetCSRCName(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_NAME-1,s,len); }
  60. int SetCSRCEMail(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_EMAIL-1,s,len); }
  61. int SetCSRCLocation(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_LOC-1,s,len); }
  62. int SetCSRCPhone(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_PHONE-1,s,len); }
  63. int SetCSRCTool(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_TOOL-1,s,len); }
  64. int SetCSRCNote(unsigned long csrc,char *s,int len) { return SetCSRCInfo(csrc,TYPE_SDES_NOTE-1,s,len); }
  65. void EnableSendName(bool val) { ProcessEnableRequest(TYPE_SDES_NAME-1,val); }
  66. void EnableSendEMail(bool val) { ProcessEnableRequest(TYPE_SDES_EMAIL-1,val); }
  67. void EnableSendLocation(bool val) { ProcessEnableRequest(TYPE_SDES_LOC-1,val); }
  68. void EnableSendPhone(bool val) { ProcessEnableRequest(TYPE_SDES_PHONE-1,val); }
  69. void EnableSendTool(bool val) { ProcessEnableRequest(TYPE_SDES_TOOL-1,val); }
  70. void EnableSendNote(bool val) { ProcessEnableRequest(TYPE_SDES_NOTE-1,val); }
  71. private:
  72. RTPSourceDescription *GetCSRC(RTPuint32 csrc);
  73. inline int SetCSRCInfo(RTPuint32 csrc,int index,char *s,int len);
  74. void ResetEnabledInfo();
  75. inline void ProcessEnableRequest(int index,bool val);
  76. void GetLoginName(char *buf,int buflen);
  77. RTPSourceDescription localinfo;
  78. RTPSourceDescription *firstcsrc;
  79. int numcsrcs;
  80. RTPuint32 fillcsrcs[15];
  81. bool csrcschanged;
  82. int numfillcsrcs;
  83. bool enabledinfo[RTP_NUM_SDES_INDICES];
  84. int enabledinfocount;
  85. RTPSources *srcs;
  86. RTPSrcList invalidssrcs;
  87. RTPRandom rand;
  88. friend class RTPRTCPModule;
  89. };
  90. inline void RTPContributingSources::Clear()
  91. {
  92. ClearCSRCList();
  93. localinfo.Clear();
  94. invalidssrcs.Clear();
  95. ResetEnabledInfo();
  96. }
  97. inline int RTPContributingSources::SetSources(RTPSources *s)
  98. {
  99. if (s == NULL)
  100. return ERR_RTP_ARGUMENTCANTBENULL;
  101. srcs = s;
  102. return 0;
  103. }
  104. inline int RTPContributingSources::SetCSRCInfo(RTPuint32 csrc,int index,char *s,int len)
  105. {
  106. RTPSourceDescription *tmp;
  107. if ((tmp = GetCSRC(csrc)) == NULL)
  108. return ERR_RTP_CSRCNOTINLIST;
  109. return tmp->SetSDES(index,s,len);
  110. }
  111. inline void RTPContributingSources::ProcessEnableRequest(int index,bool val)
  112. {
  113. if (enabledinfo[index] != val)
  114. {
  115. enabledinfo[index] = val;
  116. if (val)
  117. enabledinfocount++;
  118. else
  119. enabledinfocount--;
  120. }
  121. }
  122. #endif // RTPCONTRIBUTINGSOURCES_H