/usr/include/sipxtapi/mp/MprRtpDispatcher.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | //
// Copyright (C) 2007-2011 SIPez LLC. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2007-2008 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
///////////////////////////////////////////////////////////////////////////////
// Author: Alexander Chemeris <Alexander DOT Chemeris AT SIPez DOT com>
#ifndef _MprRtpDispatcher_h_
#define _MprRtpDispatcher_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include <mp/MpResource.h>
//#include "mp/MpEvents.h"
#include <mp/MpRtpBuf.h>
#include <mp/MprnRtpStreamActivityMsg.h>
#include <utl/UtlString.h>
#include <utl/UtlInt.h>
#include <os/OsMsgQ.h>
#include <os/OsDateTime.h>
#include <os/OsLock.h>
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
class OsMsgDispatcher;
/**
* @brief Class for RTP stream dispatcher abstraction.
*
* @nosubgrouping
*/
class MprRtpDispatcher
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
enum RtpStreamAffinity
{
ADDRESS_AND_PORT,
MOST_RECENT_SSRC
};
/* ============================ CREATORS ================================== */
///@name Creators
//@{
/// Constructor
MprRtpDispatcher(const UtlString& rName, int connectionId);
/**<
* @param name - name of this RTP dispatcher.
* @param connectionId - connection ID to be used in notifications.
* @param pMsgQ - notification dispatcher to send notifications to.
*/
/// Destructor
virtual ~MprRtpDispatcher();
//@}
/* ============================ MANIPULATORS ============================== */
///@name Manipulators
//@{
/// Dispatch RTP packet.
virtual OsStatus pushPacket(MpRtpBufPtr &pRtp) = 0;
/// Check activity of the RTP streams and send notifications if needed.
virtual void checkRtpStreamsActivity() = 0;
/// Connect output to the given resource.
virtual UtlBoolean connectOutput(int outputIdx, MpResource* pushRtpToResource) = 0;
/// Disconnect output from the previously given resource.
virtual UtlBoolean disconnectOutput(int outputIdx) = 0;
/// Set notification dispatcher.
inline void setNotificationDispatcher(OsMsgDispatcher *pMsgQ);
/**<
* Set notification dispatcher to NULL to disable notifications.
*/
/// Enable/disable notifications.
inline void setNotificationsEnabled(UtlBoolean enabled);
/// Set ID of the connection to which this resource belongs.
inline void setConnectionId(MpConnectionID connectionId);
/// Set stream activity timeout.
inline void setRtpInactivityTimeout(const OsTime &inactiveTime);
/**<
* Sets time which should pass after last received RTP packet before
* stream is marked as inactive.
*/
/// Set default stream activity timeout.
static inline
void setDefaultRtpInactivityTimeout(const OsTime &inactiveTime);
/**<
* Sets default time which should pass after last received RTP packet
* before stream is marked as inactive.
*/
//@}
/* ============================ ACCESSORS ================================= */
///@name Accessors
//@{
//@}
/* ============================ INQUIRY =================================== */
///@name Inquiry
//@{
// Returns true, if notifications are enabled to be sent.
inline UtlBoolean areNotificationsEnabled() const;
//@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
// The below define is to work around brokenness in VC6. Details follow.
// In MSVC6, MprRtpDispatcherActiveSsrcs::lookupRtpStream fails to compile
// properly with MpRtpStream defined here as protected, as VC6 erroneously
// specifies that it 'cannot access protected struct decalred in class 'MprRtpDispatcher'
// despite the fact that MprRtpDispatcherActiveSrcs derives from
// this class, and defines lookupRtpStream as protected.
// So, to work around this, if we're compiling with VC6, then make the
// struct public (which exposes it more than we want)...
#if defined(_MSC_VER) && (_MSC_VER <= 1200)
public:
#endif
/**
* @brief Information, specific for an RTP stream.
*
* MpRtpStream is inherited from UtlInt to hold SSRC associated with
* this stream and to store streams in UtlHashBag with fast access by SSRC
* value.
*/
struct MpRtpStream : public UtlInt
{
MpRtpStream()
: mStreamId(-1)
, mStreamActive(FALSE)
, mAddress(0)
, mPort(-1)
, mpOutputResource(NULL)
{}
int mStreamId; ///< Abstract stream ID, used by higher
///< levels to identify a stream.
OsTime mLastPacketTime; ///< Time of last packet receive.
UtlBoolean mStreamActive; ///< Is this stream active or not?
int mAddress; ///< IP address of the stream source.
int mPort; ///< Port of the stream source.
MpResource *mpOutputResource;///< Pointer to async output resource,
///< which receives input from RTP stream
///< Also used as a "connected" mark -
///< NULL means this stream is not connected.
/// Push packet to the stream for processing.
inline void pushPacket(MpRtpBufPtr &pRtp);
/// Mark stream as active.
inline void activate(int fromIp, int fromPort);
/// Mark stream as inactive.
inline void deactivate();
/// Mark stream as inactive, if timeout occurred.
UtlBoolean timeoutDeactivate(const OsTime &timeout);
/**<
* @returns TRUE if stream just have been deactivated, TRUE otherwise.
*/
/// Is this stream marked as active?
inline UtlBoolean isActive() const;
/// Get stream SSRC.
inline RtpSRC getSSRC() const;
/// Set stream SSRC.
inline void setSSRC(RtpSRC ssrc);
/**<
* setSSRC() not only sets SSRC of the stream, but also resets decoder
* to prepare it for a new stream.
*
* Note: activate() should always be called after setSSRC() to eliminate
* excessive decoder reset on startup.
*/
/// Send notification on stream activation/deactivation.
OsStatus postStreamNotif(OsMsgDispatcher *pMsgQ,
const UtlString &resourceName,
MpConnectionID connId,
MprnRtpStreamActivityMsg::StreamState state) const;
};
// The below define is to work around brokenness in VC6. Details above the
// struct definition.
#if defined(_MSC_VER) && (_MSC_VER <= 1200)
protected:
#endif
OsMutex mMutex; ///< Mutex to synchronize access to this resource.
UtlString mResourceName; ///< Name of the owner resource to be used
///< in event notifications.
MpConnectionID mConnectionId; ///< ConnID to send in event notifications
OsMsgDispatcher* mpEventMsgQ; ///< MsgQ for event notifications
UtlBoolean mNotificationsEnabled; ///< Are notifications enabled?
OsTime mRtpInactiveTime; ///< Time after which stream is considered
///< inactive if does not receive RTP packets.
static OsTime smDefaultRtpInactiveTime; ///< Default value for mRtpInactiveTime.
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
/// Copy constructor (not implemented for this class)
MprRtpDispatcher(const MprRtpDispatcher& rMprRtpDispatcher);
/// Assignment operator (not implemented for this class)
MprRtpDispatcher& operator=(const MprRtpDispatcher& rhs);
};
/* ============================ INLINE METHODS ============================ */
void MprRtpDispatcher::setNotificationDispatcher(OsMsgDispatcher *pMsgQ)
{
OsLock lock(mMutex);
mpEventMsgQ = pMsgQ;
}
void MprRtpDispatcher::setNotificationsEnabled(UtlBoolean enabled)
{
mNotificationsEnabled = enabled;
}
void MprRtpDispatcher::setConnectionId(MpConnectionID connectionId)
{
OsLock lock(mMutex);
mConnectionId = connectionId;
}
void MprRtpDispatcher::setRtpInactivityTimeout(const OsTime &inactiveTime)
{
OsLock lock(mMutex);
mRtpInactiveTime = inactiveTime;
}
void MprRtpDispatcher::setDefaultRtpInactivityTimeout(const OsTime &inactiveTime)
{
smDefaultRtpInactiveTime = inactiveTime;
}
UtlBoolean MprRtpDispatcher::areNotificationsEnabled() const
{
return mNotificationsEnabled;
}
/// Push packet to the stream for processing.
void MprRtpDispatcher::MpRtpStream::pushPacket(MpRtpBufPtr &pRtp)
{
OsDateTime::getCurTime(mLastPacketTime);
mpOutputResource->pushBuffer(0, // input port on resource
pRtp);
}
/// Mark stream as active.
void MprRtpDispatcher::MpRtpStream::activate(int fromIp, int fromPort)
{
// Mark stream as active and save sender IP.
mStreamActive = TRUE;
mAddress = fromIp;
mPort = fromPort;
// printf("Stream %X activated\n", getSSRC());
}
/// Mark stream as inactive.
void MprRtpDispatcher::MpRtpStream::deactivate()
{
// Mark stream as inactive
mStreamActive = FALSE;
// printf("Stream %X deactivated\n", getSSRC());
}
UtlBoolean MprRtpDispatcher::MpRtpStream::isActive() const
{
return mStreamActive;
}
RtpSRC MprRtpDispatcher::MpRtpStream::getSSRC() const
{
return getValue();
}
void MprRtpDispatcher::MpRtpStream::setSSRC(RtpSRC ssrc)
{
// Reset decoder if this is not the first time setSSRC() is called.
// Note, that we deliberately does not check whether SSRC really changed.
// We trust caller to perform this check. Furthermore some broken
// implementations does not change SSRC on a new stream start.
if (mAddress != 0 && mpOutputResource != NULL)
{
mpOutputResource->reset();
}
setValue(ssrc);
}
#endif // _MprRtpDispatcher_h_
|