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
|
/**********
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-2005 Live Networks, Inc. All rights reserved.
// Media
// Implementation
#include "Media.hh"
#include "HashTable.hh"
// A data structure for looking up a Medium by its string name
class MediaLookupTable {
public:
static MediaLookupTable* ourMedia(UsageEnvironment& env);
Medium* lookup(char const* name) const;
// Returns NULL if none already exists
void addNew(Medium* medium, char* mediumName);
void remove(char const* name);
void generateNewName(char* mediumName, unsigned maxLen);
protected:
MediaLookupTable(UsageEnvironment& env);
virtual ~MediaLookupTable();
private:
UsageEnvironment& fEnv;
HashTable* fTable;
unsigned fNameGenerator;
};
////////// Medium //////////
Medium::Medium(UsageEnvironment& env)
: fEnviron(env), fNextTask(NULL) {
// First generate a name for the new medium:
MediaLookupTable::ourMedia(env)->generateNewName(fMediumName, mediumNameMaxLen);
env.setResultMsg(fMediumName);
// Then add it to our table:
MediaLookupTable::ourMedia(env)->addNew(this, fMediumName);
}
Medium::~Medium() {
// Remove any tasks that might be pending for us:
fEnviron.taskScheduler().unscheduleDelayedTask(fNextTask);
}
Boolean Medium::lookupByName(UsageEnvironment& env, char const* mediumName,
Medium*& resultMedium) {
resultMedium = MediaLookupTable::ourMedia(env)->lookup(mediumName);
if (resultMedium == NULL) {
env.setResultMsg("Medium ", mediumName, " does not exist");
return False;
}
return True;
}
void Medium::close(UsageEnvironment& env, char const* name) {
MediaLookupTable::ourMedia(env)->remove(name);
}
void Medium::close(Medium* medium) {
if (medium == NULL) return;
close(medium->envir(), medium->name());
}
Boolean Medium::isSource() const {
return False; // default implementation
}
Boolean Medium::isSink() const {
return False; // default implementation
}
Boolean Medium::isRTCPInstance() const {
return False; // default implementation
}
Boolean Medium::isRTSPClient() const {
return False; // default implementation
}
Boolean Medium::isRTSPServer() const {
return False; // default implementation
}
Boolean Medium::isMediaSession() const {
return False; // default implementation
}
Boolean Medium::isServerMediaSession() const {
return False; // default implementation
}
Boolean Medium::isDarwinInjector() const {
return False; // default implementation
}
////////// _Tables implementation //////////
_Tables* _Tables::getOurTables(UsageEnvironment& env) {
if (env.liveMediaPriv == NULL) {
env.liveMediaPriv = new _Tables(env);
}
return (_Tables*)(env.liveMediaPriv);
}
void _Tables::reclaimIfPossible() {
if (mediaTable == NULL && socketTable == NULL) {
fEnv.liveMediaPriv = NULL;
delete this;
}
}
_Tables::_Tables(UsageEnvironment& env)
: mediaTable(NULL), socketTable(NULL), fEnv(env) {
}
_Tables::~_Tables() {
}
////////// MediaLookupTable implementation //////////
MediaLookupTable* MediaLookupTable::ourMedia(UsageEnvironment& env) {
_Tables* ourTables = _Tables::getOurTables(env);
if (ourTables->mediaTable == NULL) {
// Create a new table to record the media that are to be created in
// this environment:
ourTables->mediaTable = new MediaLookupTable(env);
}
return (MediaLookupTable*)(ourTables->mediaTable);
}
Medium* MediaLookupTable::lookup(char const* name) const {
return (Medium*)(fTable->Lookup(name));
}
void MediaLookupTable::addNew(Medium* medium, char* mediumName) {
fTable->Add(mediumName, (void*)medium);
}
void MediaLookupTable::remove(char const* name) {
Medium* medium = lookup(name);
if (medium != NULL) {
fTable->Remove(name);
if (fTable->IsEmpty()) {
// We can also delete ourselves (to reclaim space):
_Tables* ourTables = _Tables::getOurTables(fEnv);
delete this;
ourTables->mediaTable = NULL;
ourTables->reclaimIfPossible();
}
delete medium;
}
}
void MediaLookupTable::generateNewName(char* mediumName,
unsigned /*maxLen*/) {
// We should really use snprintf() here, but not all systems have it
sprintf(mediumName, "liveMedia%d", fNameGenerator++);
}
MediaLookupTable::MediaLookupTable(UsageEnvironment& env)
: fEnv(env), fTable(HashTable::create(STRING_HASH_KEYS)), fNameGenerator(0) {
}
MediaLookupTable::~MediaLookupTable() {
delete fTable;
}
|