Newer
Older
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
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jitsi.impl.neomedia;
import java.io.*;
import java.net.*;
import javax.media.rtp.*;
import org.jitsi.service.neomedia.*;
/**
* Provides a base/default implementation of <tt>RTPConnector</tt> which has
* factory methods for its control and data input and output streams and has an
* associated <tt>StreamConnector</tt>.
*
* @author Bing SU (nova.su@gmail.com)
* @author Lyubomir Marinov
*/
public abstract class AbstractRTPConnector
implements RTPConnector
{
/**
* The pair of datagram sockets for RTP and RTCP traffic that this instance
* uses in the form of a <tt>StreamConnector</tt>.
*/
protected final StreamConnector connector;
/**
* RTCP packet input stream used by <tt>RTPManager</tt>.
*/
private RTPConnectorInputStream controlInputStream;
/**
* RTCP packet output stream used by <tt>RTPManager</tt>.
*/
private RTPConnectorOutputStream controlOutputStream;
/**
* RTP packet input stream used by <tt>RTPManager</tt>.
*/
private RTPConnectorInputStream dataInputStream;
/**
* RTP packet output stream used by <tt>RTPManager</tt>.
*/
private RTPConnectorOutputStream dataOutputStream;
/**
* Initializes a new <tt>AbstractRTPConnector</tt> which is to use a given
* pair of datagram sockets for RTP and RTCP traffic specified in the form
* of a <tt>StreamConnector</tt>.
*
* @param connector the pair of datagram sockets for RTP and RTCP traffic
* the new instance is to use
*/
public AbstractRTPConnector(StreamConnector connector)
{
if (connector == null)
throw new NullPointerException("connector");
this.connector = connector;
}
/**
* Add a stream target. A stream target is the destination address which
* this RTP session will send its data to. For a single session, we can add
* multiple SessionAddresses, and for each address, one copy of data will be
* sent to.
*
* @param target Destination target address
* @throws IOException if there was a socket-related error while adding the
* specified target
*/
public void addTarget(SessionAddress target)
throws IOException
{
InetAddress controlAddress = target.getControlAddress();
if (controlAddress != null)
{

Lyubomir Marinov
committed
getControlOutputStream().addTarget(
controlAddress,
target.getControlPort());
}

Lyubomir Marinov
committed
getDataOutputStream().addTarget(
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
target.getDataAddress(),
target.getDataPort());
}
/**
* Closes all sockets, stream, and the <tt>StreamConnector</tt> that this
* <tt>RTPConnector</tt> is using.
*/
public void close()
{
if (dataOutputStream != null)
{
dataOutputStream.close();
dataOutputStream = null;
}
if (controlOutputStream != null)
{
controlOutputStream.close();
controlOutputStream = null;
}
if (dataInputStream != null)
{
dataInputStream.close();
dataInputStream = null;
}
if (controlInputStream != null)
{
controlInputStream.close();
controlInputStream = null;
}
connector.close();
}
/**
* Creates the RTCP packet input stream to be used by <tt>RTPManager</tt>.
*
* @return a new RTCP packet input stream to be used by <tt>RTPManager</tt>
* @throws IOException if an error occurs during the creation of the RTCP
* packet input stream
*/
protected abstract RTPConnectorInputStream createControlInputStream()
throws IOException;
/**
* Creates the RTCP packet output stream to be used by <tt>RTPManager</tt>.
*
* @return a new RTCP packet output stream to be used by <tt>RTPManager</tt>
* @throws IOException if an error occurs during the creation of the RTCP
* packet output stream
*/
protected abstract RTPConnectorOutputStream createControlOutputStream()
throws IOException;
/**
* Creates the RTP packet input stream to be used by <tt>RTPManager</tt>.
*
* @return a new RTP packet input stream to be used by <tt>RTPManager</tt>
* @throws IOException if an error occurs during the creation of the RTP
* packet input stream
*/
protected abstract RTPConnectorInputStream createDataInputStream()
throws IOException;
/**
* Creates the RTP packet output stream to be used by <tt>RTPManager</tt>.
*
* @return a new RTP packet output stream to be used by <tt>RTPManager</tt>
* @throws IOException if an error occurs during the creation of the RTP
* packet output stream
*/
protected abstract RTPConnectorOutputStream createDataOutputStream()
throws IOException;
/**
* Gets the <tt>StreamConnector</tt> which represents the pair of datagram
* sockets for RTP and RTCP traffic used by this instance.
*
* @return the <tt>StreamConnector</tt> which represents the pair of
* datagram sockets for RTP and RTCP traffic used by this instance
*/
public final StreamConnector getConnector()
{
return connector;
}
/**
* Returns the input stream that is handling incoming RTCP packets.
*
* @return the input stream that is handling incoming RTCP packets.
*
* @throws IOException if an error occurs during the creation of the RTCP
* packet input stream
*/
public RTPConnectorInputStream getControlInputStream()
throws IOException
{
return getControlInputStream(true);
}
/**
* Gets the <tt>PushSourceStream</tt> which gives access to the RTCP data
* received from the remote targets and optionally creates it if it does not
* exist yet.
*
* @param create <tt>true</tt> to create the <tt>PushSourceStream</tt> which
* gives access to the RTCP data received from the remote targets if it does
* not exist yet; otherwise, <tt>false</tt>
* @return the <tt>PushBufferStream</tt> which gives access to the RTCP data
* received from the remote targets; <tt>null</tt> if it does not exist yet
* and <tt>create</tt> is <tt>false</tt>
* @throws IOException if creating the <tt>PushSourceStream</tt> fails
*/
protected RTPConnectorInputStream getControlInputStream(boolean create)
throws IOException
{
if ((controlInputStream == null) && create)
controlInputStream = createControlInputStream();
return controlInputStream;
}
/**
* Returns the input stream that is handling outgoing RTCP packets.
*
* @return the input stream that is handling outgoing RTCP packets.
*
* @throws IOException if an error occurs during the creation of the RTCP
* packet output stream
*/
public RTPConnectorOutputStream getControlOutputStream()
throws IOException
{
return getControlOutputStream(true);
}
/**
* Gets the <tt>OutputDataStream</tt> which is used to write RTCP data to be
* sent to from the remote targets and optionally creates it if it does not
* exist yet.
*
* @param create <tt>true</tt> to create the <tt>OutputDataStream</tt> which
* is to be used to write RTCP data to be sent to the remote targets if it
* does not exist yet; otherwise, <tt>false</tt>
* @return the <tt>OutputDataStream</tt> which is used to write RTCP data to
* be sent to the remote targets; <tt>null</tt> if it does not exist yet and
* <tt>create</tt> is <tt>false</tt>
* @throws IOException if creating the <tt>OutputDataStream</tt> fails
*/
protected RTPConnectorOutputStream getControlOutputStream(boolean create)
throws IOException
{
if ((controlOutputStream == null) && create)
controlOutputStream = createControlOutputStream();
return controlOutputStream;
}
/**
* Returns the input stream that is handling incoming RTP packets.
*
* @return the input stream that is handling incoming RTP packets.
*
* @throws IOException if an error occurs during the creation of the RTP
* packet input stream
*/
public RTPConnectorInputStream getDataInputStream()
throws IOException
{
return getDataInputStream(true);
}
/**
* Gets the <tt>PushSourceStream</tt> which gives access to the RTP data
* received from the remote targets and optionally creates it if it does not
* exist yet.
*
* @param create <tt>true</tt> to create the <tt>PushSourceStream</tt> which
* gives access to the RTP data received from the remote targets if it does
* not exist yet; otherwise, <tt>false</tt>
* @return the <tt>PushBufferStream</tt> which gives access to the RTP data
* received from the remote targets; <tt>null</tt> if it does not exist yet
* and <tt>create</tt> is <tt>false</tt>
* @throws IOException if creating the <tt>PushSourceStream</tt> fails
*/
protected RTPConnectorInputStream getDataInputStream(boolean create)
throws IOException
{
if ((dataInputStream == null) && create)
dataInputStream = createDataInputStream();
return dataInputStream;
}
/**
* Returns the input stream that is handling outgoing RTP packets.
*
* @return the input stream that is handling outgoing RTP packets.
*
* @throws IOException if an error occurs during the creation of the RTP
*/
public RTPConnectorOutputStream getDataOutputStream()
throws IOException
{
return getDataOutputStream(true);
}
/**
* Gets the <tt>OutputDataStream</tt> which is used to write RTP data to be
* sent to from the remote targets and optionally creates it if it does not
* exist yet.
*
* @param create <tt>true</tt> to create the <tt>OutputDataStream</tt> which
* is to be used to write RTP data to be sent to the remote targets if it
* does not exist yet; otherwise, <tt>false</tt>
* @return the <tt>OutputDataStream</tt> which is used to write RTP data to
* be sent to the remote targets; <tt>null</tt> if it does not exist yet and
* <tt>create</tt> is <tt>false</tt>
* @throws IOException if creating the <tt>OutputDataStream</tt> fails
*/
public RTPConnectorOutputStream getDataOutputStream(boolean create)
throws IOException
{
if ((dataOutputStream == null) && create)
dataOutputStream = createDataOutputStream();
return dataOutputStream;
}
/**
* Provides a dummy implementation to {@link
* RTPConnector#getReceiveBufferSize()} that always returns <tt>-1</tt>.
*/
public int getReceiveBufferSize()
{
// Not applicable
return -1;
}
/**
* Provides a dummy implementation to {@link
* RTPConnector#getRTCPBandwidthFraction()} that always returns <tt>-1</tt>.
*/
public double getRTCPBandwidthFraction()
{
// Not applicable
return -1;
}
/**
* Provides a dummy implementation to {@link
* RTPConnector#getRTCPSenderBandwidthFraction()} that always returns
* <tt>-1</tt>.
*/
public double getRTCPSenderBandwidthFraction()
{
// Not applicable
return -1;
}
/**
* Provides a dummy implementation to {@link
* RTPConnector#getSendBufferSize()} that always returns <tt>-1</tt>.
*/
public int getSendBufferSize()
{
// Not applicable
return -1;
}
/**
* Removes a target from our session. If a target is removed, there will be
* no data sent to that address.
*
* @param target Destination target to be removed
*/
public void removeTarget(SessionAddress target)
{
if (controlOutputStream != null)
controlOutputStream
.removeTarget(
target.getControlAddress(),
target.getControlPort());
if (dataOutputStream != null)
dataOutputStream
.removeTarget(
target.getDataAddress(),
target.getDataPort());
}
/**
* Remove all stream targets. After this operation is done. There will be
* no targets receiving data, so no data will be sent.
*/
public void removeTargets()
{
if (controlOutputStream != null)
controlOutputStream.removeTargets();
if (dataOutputStream != null)
dataOutputStream.removeTargets();
}
/**
* Provides a dummy implementation to {@link
* RTPConnector#setReceiveBufferSize(int)}.
*
* @param size ignored.
*/
public void setReceiveBufferSize(int size)
throws IOException
{
// Nothing should be done here :-)
}
/**
* Provides a dummy implementation to {@link
* RTPConnector#setSendBufferSize(int)}.
*
* @param size ignored.
*/
public void setSendBufferSize(int size)
throws IOException
{
// Nothing should be done here :-)
}
}