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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
/**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
**********/
// "liveMedia"
// Copyright (c) 1996-2004 Live Networks, Inc. All rights reserved.
// A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s
// on demand.
// Implementation
#include "OnDemandServerMediaSubsession.hh"
#include "RTCP.hh"
#include "BasicUDPSink.hh"
#include <GroupsockHelper.hh>
OnDemandServerMediaSubsession
::OnDemandServerMediaSubsession(UsageEnvironment& env,
Boolean reuseFirstSource)
: ServerMediaSubsession(env),
fReuseFirstSource(reuseFirstSource), fLastStreamToken(NULL),
fSDPLines(NULL) {
fDestinationsHashTable = HashTable::create(ONE_WORD_HASH_KEYS);
gethostname(fCNAME, sizeof fCNAME);
fCNAME[sizeof fCNAME-1] = '\0'; // just in case
}
class Destinations {
public:
Destinations(struct in_addr const& destAddr,
Port const& rtpDestPort,
Port const& rtcpDestPort)
: isTCP(False), addr(destAddr), rtpPort(rtpDestPort), rtcpPort(rtcpDestPort) {
}
Destinations(int tcpSockNum, unsigned char rtpChanId, unsigned char rtcpChanId)
: isTCP(True), rtpPort(0) /*dummy*/, rtcpPort(0) /*dummy*/,
tcpSocketNum(tcpSockNum), rtpChannelId(rtpChanId), rtcpChannelId(rtcpChanId) {
}
public:
Boolean isTCP;
struct in_addr addr;
Port rtpPort;
Port rtcpPort;
int tcpSocketNum;
unsigned char rtpChannelId, rtcpChannelId;
};
OnDemandServerMediaSubsession::~OnDemandServerMediaSubsession() {
delete[] fSDPLines;
// Clean out the destinations hash table:
while (1) {
Destinations* destinations
= (Destinations*)(fDestinationsHashTable->RemoveNext());
if (destinations == NULL) break;
delete destinations;
}
delete fDestinationsHashTable;
}
char const*
OnDemandServerMediaSubsession::sdpLines(ServerMediaSession& parentSession) {
if (fSDPLines == NULL) {
// We need to construct a set of SDP lines that describe this
// subsession (as a unicast stream). To do so, we first create
// dummy (unused) source and "RTPSink" objects,
// whose parameters we use for the SDP lines:
unsigned estBitrate; // unused
FramedSource* inputSource = createNewStreamSource(0, estBitrate);
if (inputSource == NULL) return NULL; // file not found
struct in_addr dummyAddr;
dummyAddr.s_addr = 0;
Groupsock dummyGroupsock(envir(), dummyAddr, 0, 0);
unsigned char rtpPayloadType = 96 + trackNumber()-1; // if dynamic
RTPSink* dummyRTPSink
= createNewRTPSink(&dummyGroupsock, rtpPayloadType, inputSource);
setSDPLinesFromRTPSink(dummyRTPSink, inputSource, parentSession);
Medium::close(dummyRTPSink);
Medium::close(inputSource);
}
return fSDPLines;
}
// A class that represents the state of an ongoing stream
class StreamState {
public:
StreamState(Port const& serverRTPPort, Port const& serverRTCPPort,
RTPSink* rtpSink, BasicUDPSink* udpSink,
unsigned totalBW, char* CNAME,
FramedSource* mediaSource,
Groupsock* rtpGS, Groupsock* rtcpGS);
virtual ~StreamState();
void startPlaying(Destinations* destinations);
void pause();
void endPlaying(Destinations* destinations);
void reclaim();
unsigned& referenceCount() { return fReferenceCount; }
Port const& serverRTPPort() const { return fServerRTPPort; }
Port const& serverRTCPPort() const { return fServerRTCPPort; }
RTPSink const* rtpSink() const { return fRTPSink; }
FramedSource* mediaSource() const { return fMediaSource; }
private:
Boolean fAreCurrentlyPlaying;
unsigned fReferenceCount;
Port fServerRTPPort, fServerRTCPPort;
RTPSink* fRTPSink;
BasicUDPSink* fUDPSink;
unsigned fTotalBW; char* fCNAME; RTCPInstance* fRTCPInstance;
FramedSource* fMediaSource;
Groupsock* fRTPgs; Groupsock* fRTCPgs;
};
void OnDemandServerMediaSubsession
::getStreamParameters(unsigned clientSessionId,
netAddressBits clientAddress,
Port const& clientRTPPort,
Port const& clientRTCPPort,
int tcpSocketNum,
unsigned char rtpChannelId,
unsigned char rtcpChannelId,
netAddressBits& destinationAddress,
u_int8_t& /*destinationTTL*/,
Boolean& isMulticast,
Port& serverRTPPort,
Port& serverRTCPPort,
void*& streamToken) {
if (destinationAddress == 0) destinationAddress = clientAddress;
struct in_addr destinationAddr; destinationAddr.s_addr = destinationAddress;
isMulticast = False;
if (fLastStreamToken != NULL && fReuseFirstSource) {
// Special case: Rather than creating a new 'StreamState',
// we reuse the one that we've already created:
serverRTPPort = ((StreamState*)fLastStreamToken)->serverRTPPort();
serverRTCPPort = ((StreamState*)fLastStreamToken)->serverRTCPPort();
++((StreamState*)fLastStreamToken)->referenceCount();
streamToken = fLastStreamToken;
} else {
// Normal case: Create a new media source:
unsigned streamBitrate;
FramedSource* mediaSource
= createNewStreamSource(clientSessionId, streamBitrate);
// Create a new 'groupsock' for the RTP destination, and make sure that
// its port number is even:
struct in_addr dummyAddr; dummyAddr.s_addr = 0;
Groupsock* rtpGroupsock;
Groupsock* rtpGroupsock_old = NULL;
portNumBits serverRTPPortNum = 0;
while (1) {
rtpGroupsock = new Groupsock(envir(), dummyAddr, 0, 255);
if (!getSourcePort(envir(), rtpGroupsock->socketNum(), serverRTPPort)) break;
serverRTPPortNum = ntohs(serverRTPPort.num());
// If the port number's even, we're done:
if ((serverRTPPortNum&1) == 0) break;
// Try again (while keeping the old 'groupsock' around, so that we get
// a different socket number next time):
delete rtpGroupsock_old;
rtpGroupsock_old = rtpGroupsock;
}
delete rtpGroupsock_old;
// Create a sink for this stream:
RTPSink* rtpSink;
BasicUDPSink* udpSink;
Groupsock* rtcpGroupsock;
if (clientRTCPPort.num() == 0) {
// We're streaming raw UDP (not RTP):
rtpSink = NULL;
udpSink = BasicUDPSink::createNew(envir(), rtpGroupsock);
rtcpGroupsock = NULL;
} else {
// Normal case: We're streaming RTP (over UDP or TCP):
unsigned char rtpPayloadType = 96 + trackNumber()-1; // if dynamic
rtpSink = createNewRTPSink(rtpGroupsock, rtpPayloadType, mediaSource);
udpSink = NULL;
// Create a 'groupsock' for a 'RTCP instance' to be created later:
rtcpGroupsock = new Groupsock(envir(), dummyAddr, serverRTPPortNum+1, 255);
getSourcePort(envir(), rtcpGroupsock->socketNum(), serverRTCPPort);
}
// Turn off the destinations for each groupsock. They'll get set later
// (unless TCP is used instead):
if (rtpGroupsock != NULL) rtpGroupsock->removeAllDestinations();
if (rtcpGroupsock != NULL) rtcpGroupsock->removeAllDestinations();
// Set up the state of the stream. The stream will get started later:
streamToken = fLastStreamToken
= new StreamState(serverRTPPort, serverRTCPPort, rtpSink, udpSink,
streamBitrate, fCNAME, mediaSource,
rtpGroupsock, rtcpGroupsock);
}
// Record these destinations as being for this client session id:
Destinations* destinations;
if (tcpSocketNum < 0) { // UDP
destinations = new Destinations(destinationAddr, clientRTPPort, clientRTCPPort);
} else { // TCP
destinations = new Destinations(tcpSocketNum, rtpChannelId, rtcpChannelId);
}
fDestinationsHashTable->Add((char const*)clientSessionId, destinations);
}
void OnDemandServerMediaSubsession::startStream(unsigned clientSessionId,
void* streamToken,
unsigned short& rtpSeqNum,
unsigned& rtpTimestamp) {
StreamState* streamState = (StreamState*)streamToken;
Destinations* destinations
= (Destinations*)(fDestinationsHashTable->Lookup((char const*)clientSessionId));
if (streamState != NULL) {
streamState->startPlaying(destinations);
if (streamState->rtpSink() != NULL) {
rtpSeqNum = streamState->rtpSink()->currentSeqNo();
rtpTimestamp = streamState->rtpSink()->currentTimestamp();
}
}
}
void OnDemandServerMediaSubsession::pauseStream(unsigned /*clientSessionId*/,
void* streamToken) {
// Pausing isn't allowed if multiple clients are receiving data from
// the same source:
if (fReuseFirstSource) return;
StreamState* streamState = (StreamState*)streamToken;
if (streamState != NULL) streamState->pause();
}
void OnDemandServerMediaSubsession::seekStream(unsigned /*clientSessionId*/,
void* streamToken, float seekNPT) {
// Seeking isn't allowed if multiple clients are receiving data from
// the same source:
if (fReuseFirstSource) return;
StreamState* streamState = (StreamState*)streamToken;
if (streamState != NULL && streamState->mediaSource() != NULL) {
seekStreamSource(streamState->mediaSource(), seekNPT);
}
}
void OnDemandServerMediaSubsession::setStreamScale(unsigned /*clientSessionId*/,
void* streamToken, float scale) {
// Changing the scale factor isn't allowed if multiple clients are receiving data
// from the same source:
if (fReuseFirstSource) return;
StreamState* streamState = (StreamState*)streamToken;
if (streamState != NULL && streamState->mediaSource() != NULL) {
setStreamSourceScale(streamState->mediaSource(), scale);
}
}
void OnDemandServerMediaSubsession::deleteStream(unsigned clientSessionId,
void*& streamToken) {
// Look up (and remove) the destinations for this client session:
Destinations* destinations
= (Destinations*)(fDestinationsHashTable->Lookup((char const*)clientSessionId));
if (destinations != NULL) {
fDestinationsHashTable->Remove((char const*)clientSessionId);
}
// Stop streaming to these destinations:
StreamState* streamState = (StreamState*)streamToken;
if (streamState != NULL) streamState->endPlaying(destinations);
// Delete the "StreamState" structure if it's no longer being used:
if (streamState != NULL && streamState->referenceCount() > 0) {
--streamState->referenceCount();
if (streamState->referenceCount() == 0) {
delete streamState;
if (fLastStreamToken == streamToken) fLastStreamToken = NULL;
streamToken = NULL;
}
}
// Finally, delete the destinations themselves:
delete destinations;
}
char const* OnDemandServerMediaSubsession
::getAuxSDPLine(RTPSink* rtpSink, FramedSource* /*inputSource*/) {
// Default implementation:
return rtpSink == NULL ? NULL : rtpSink->auxSDPLine();
}
void OnDemandServerMediaSubsession::seekStreamSource(FramedSource* /*inputSource*/,
float /*seekNPT*/) {
// Default implementation: Do nothing
}
void OnDemandServerMediaSubsession
::setStreamSourceScale(FramedSource* /*inputSource*/, float /*scale*/) {
// Default implementation: Do nothing
}
void OnDemandServerMediaSubsession
::setSDPLinesFromRTPSink(RTPSink* rtpSink, FramedSource* inputSource,
ServerMediaSession& parentSession) {
if (rtpSink == NULL) return;
char const* mediaType = rtpSink->sdpMediaType();
unsigned char rtpPayloadType = rtpSink->rtpPayloadType();
char* rtpmapLine = rtpSink->rtpmapLine();
char const* rangeLine = rangeSDPLine(parentSession);
char const* auxSDPLine = getAuxSDPLine(rtpSink, inputSource);
if (auxSDPLine == NULL) auxSDPLine = "";
char const* const sdpFmt =
"m=%s 0 RTP/AVP %d\r\n"
"c=IN IP4 0.0.0.0\r\n"
"%s"
"%s"
"%s"
"a=control:%s\r\n";
unsigned sdpFmtSize = strlen(sdpFmt)
+ strlen(mediaType) + 3 /* max char len */
+ strlen(rtpmapLine)
+ strlen(rangeLine)
+ strlen(auxSDPLine)
+ strlen(trackId());
char* sdpLines = new char[sdpFmtSize];
sprintf(sdpLines, sdpFmt,
mediaType, // m= <media>
rtpPayloadType, // m= <fmt list>
rtpmapLine, // a=rtpmap:... (if present)
rangeLine, // a=range:... (if present)
auxSDPLine, // optional extra SDP line
trackId()); // a=control:<track-id>
delete[] (char*)rangeLine; delete[] rtpmapLine;
fSDPLines = strDup(sdpLines);
delete[] sdpLines;
}
////////// StreamState implementation //////////
static void afterPlayingStreamState(void* clientData) {
// When the input stream ends, keep it alive, in case the client wants to
// subsequently re-play the stream starting from somewhere other than the end.
// If, instead, you want to terminate the stream, enable the following code.
#if 0
StreamState* streamState = (StreamState*)clientData;
streamState->reclaim();
#endif
}
StreamState::StreamState(Port const& serverRTPPort, Port const& serverRTCPPort,
RTPSink* rtpSink, BasicUDPSink* udpSink,
unsigned totalBW, char* CNAME,
FramedSource* mediaSource,
Groupsock* rtpGS, Groupsock* rtcpGS)
: fAreCurrentlyPlaying(False), fReferenceCount(1),
fServerRTPPort(serverRTPPort), fServerRTCPPort(serverRTCPPort),
fRTPSink(rtpSink), fUDPSink(udpSink),
fTotalBW(totalBW), fCNAME(CNAME), fRTCPInstance(NULL) /* created later */,
fMediaSource(mediaSource), fRTPgs(rtpGS), fRTCPgs(rtcpGS) {
}
StreamState::~StreamState() {
reclaim();
}
void StreamState::startPlaying(Destinations* dests) {
if (dests == NULL) return;
if (!fAreCurrentlyPlaying && fMediaSource != NULL) {
if (fRTPSink != NULL) {
fRTPSink->startPlaying(*fMediaSource, afterPlayingStreamState, this);
fAreCurrentlyPlaying = True;
} else if (fUDPSink != NULL) {
fUDPSink->startPlaying(*fMediaSource, afterPlayingStreamState, this);
fAreCurrentlyPlaying = True;
}
}
if (fRTCPInstance == NULL && fRTPSink != NULL) {
// Create (and start) a 'RTCP instance' for this RTP sink:
fRTCPInstance
= RTCPInstance::createNew(fRTPSink->envir(), fRTCPgs,
fTotalBW, (unsigned char*)fCNAME,
fRTPSink, NULL /* we're a server */);
// Note: This starts RTCP running automatically
}
if (dests->isTCP) {
// Change RTP and RTCP to use the TCP socket instead of UDP:
if (fRTPSink != NULL) {
fRTPSink->addStreamSocket(dests->tcpSocketNum, dests->rtpChannelId);
}
if (fRTCPInstance != NULL) {
fRTCPInstance->addStreamSocket(dests->tcpSocketNum, dests->rtcpChannelId);
}
} else {
// Tell the RTP and RTCP 'groupsocks' about this destination
// (in case they don't already have it):
if (fRTPgs != NULL) fRTPgs->addDestination(dests->addr, dests->rtpPort);
if (fRTCPgs != NULL) fRTCPgs->addDestination(dests->addr, dests->rtcpPort);
}
}
void StreamState::pause() {
if (fRTPSink != NULL) fRTPSink->stopPlaying();
if (fUDPSink != NULL) fUDPSink->stopPlaying();
fAreCurrentlyPlaying = False;
}
void StreamState::endPlaying(Destinations* dests) {
if (dests->isTCP) {
if (fRTPSink != NULL) {
fRTPSink->removeStreamSocket(dests->tcpSocketNum, dests->rtpChannelId);
}
if (fRTCPInstance != NULL) {
fRTCPInstance->removeStreamSocket(dests->tcpSocketNum, dests->rtcpChannelId);
}
} else {
// Tell the RTP and RTCP 'groupsocks' to stop using these destinations:
if (fRTPgs != NULL) fRTPgs->removeDestination(dests->addr, dests->rtpPort);
if (fRTCPgs != NULL) fRTCPgs->removeDestination(dests->addr, dests->rtcpPort);
}
}
void StreamState::reclaim() {
// Delete allocated media objects
Medium::close(fRTCPInstance) /* will send a RTCP BYE */; fRTCPInstance = NULL;
Medium::close(fRTPSink); fRTPSink = NULL;
Medium::close(fUDPSink); fUDPSink = NULL;
Medium::close(fMediaSource); fMediaSource = NULL;
delete fRTPgs; fRTPgs = NULL;
delete fRTCPgs; fRTCPgs = NULL;
fReferenceCount = 0;
}
|