Package org.red5.server
Class BaseConnection
java.lang.Object
org.red5.server.AttributeStore
org.red5.server.BaseConnection
- All Implemented Interfaces:
IEventDispatcher
,IEventHandler
,IEventListener
,IAttributeStore
,ICastingAttributeStore
,IConnection
,ICoreObject
,AttributeStoreMXBean
- Direct Known Subclasses:
RTMPConnection
Base abstract class for connections. Adds connection specific functionality like work with clients to AttributeStore.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.red5.server.api.IConnection
IConnection.Encoding
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected CopyOnWriteArraySet<IBasicScope>
Set of basic scopes.protected IClient
Client bound to connectionprivate boolean
Is the connection closed?protected CopyOnWriteArrayList<IConnectionListener>
Listenersprotected AtomicLong
Number of dropped messagesprotected String
Connection hostprivate static final org.slf4j.Logger
Connection params passed from client with NetConnection.connect callprotected String
Path of scope client connected toprotected AtomicLong
Number of read messagesprotected String
Connection remote addressConnection remote addressesprotected int
Remote portprotected Scope
Scope to which this connection belongsprotected final String
Connection session identifierprivate ThreadLocal<Number>
protected final String
Connection typeprivate final Semaphore
Used to protect mulit-threaded operations on writeprotected AtomicLong
Number of written messagesFields inherited from class org.red5.server.AttributeStore
attributes
Fields inherited from interface org.red5.server.api.IConnection
PERSISTENT, POLLING, TRANSIENT
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new persistent base connectionBaseConnection
(String type) Creates a new base connection with the given type.BaseConnection
(String type, String host, String remoteAddress, int remotePort, String path, String sessionId, Map<String, Object> params) Creates a new base connection with the given parameters. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addListener
(IConnectionListener listener) Adds a listener to this objectvoid
close()
Closes connectionboolean
Connect to another scope on serverboolean
Connect to another scope on server with given parametersvoid
dispatchEvent
(IEvent event) Dispatches eventboolean
Get the basic scopes this connection has subscribed.Get the client object associated with this connection.long
Return number of written bytes the client reports to have received.Return connection parameterslong
Total number of messages that have been dropped.getHost()
Get the hostname that the client is connected to.getLock()
getPath()
Get the path for this connection.long
Count of outgoing messages not yet written.long
getPendingVideoMessages
(Number streamId) Count of outgoing video messages not yet written.abstract long
Total number of bytes read from the connection.long
Total number of messages read from the connection.Get the IP address the client is connected from.Get the IP addresses the client is connected from.int
Get the port the client is connected from.getScope()
Return the current scope.Get the session id, this may be null.Returns the current stream id.getType()
Get the connection type.abstract long
Total number of bytes written to the connection.long
Total number of messages written to the connection.boolean
handleEvent
(IEvent event) Handles eventint
hashCode()
void
initialize
(IClient client) Initializes clientboolean
isClosed()
Returns whether or not a connection is closed.boolean
Check whether connection is aliveboolean
Returns whether or not the reader is idle.boolean
Returns whether or not the writer is idle.void
notifyEvent
(IEvent event) Notified on eventvoid
registerBasicScope
(IBroadcastScope basicScope) Registers basic scopevoid
removeListener
(IConnectionListener listener) Removes the listener from this objectvoid
Sets the Client.void
setStreamId
(Number id) Sets the current stream id.void
unregisterBasicScope
(IBasicScope basicScope) Unregister basic scopeMethods inherited from class org.red5.server.AttributeStore
filterNull, from, getAttribute, getAttribute, getAttributeNames, getAttributes, getBoolAttribute, getByteAttribute, getDoubleAttribute, getIntAttribute, getListAttribute, getLongAttribute, getMapAttribute, getSetAttribute, getShortAttribute, getStringAttribute, hasAttribute, removeAttribute, removeAttributes, setAttribute, setAttributes, setAttributes, size
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.red5.server.api.IAttributeStore
getAttribute, getAttribute, getAttributeNames, getAttributes, hasAttribute, removeAttribute, removeAttributes, setAttribute, setAttributes, setAttributes, size
Methods inherited from interface org.red5.server.api.ICastingAttributeStore
getBoolAttribute, getByteAttribute, getDoubleAttribute, getIntAttribute, getListAttribute, getLongAttribute, getMapAttribute, getSetAttribute, getShortAttribute, getStringAttribute
Methods inherited from interface org.red5.server.api.IConnection
getEncoding, getLastPingTime, getProtocol, ping, setBandwidth
-
Field Details
-
log
private static final org.slf4j.Logger log -
type
Connection type -
host
Connection host -
remoteAddress
Connection remote address -
remoteAddresses
Connection remote addresses -
remotePort
protected volatile int remotePortRemote port -
path
Path of scope client connected to -
sessionId
Connection session identifier -
readMessages
Number of read messages -
writtenMessages
Number of written messages -
droppedMessages
Number of dropped messages -
params
Connection params passed from client with NetConnection.connect call -
client
Client bound to connection -
scope
Scope to which this connection belongs -
basicScopes
Set of basic scopes. The scopes may be of shared object or broadcast stream type. -
closed
private volatile boolean closedIs the connection closed? -
connectionListeners
Listeners -
writeLock
Used to protect mulit-threaded operations on write -
streamLocal
-
-
Constructor Details
-
BaseConnection
Creates a new persistent base connection -
BaseConnection
Creates a new base connection with the given type.- Parameters:
type
- Connection type
-
BaseConnection
@ConstructorProperties({"type","host","remoteAddress","remotePort","path","sessionId"}) public BaseConnection(String type, String host, String remoteAddress, int remotePort, String path, String sessionId, Map<String, Object> params) Creates a new base connection with the given parameters.- Parameters:
type
- Connection typehost
- HostremoteAddress
- Remote addressremotePort
- Remote portpath
- Scope path on serversessionId
- Session idparams
- Params passed from client
-
-
Method Details
-
getStreamId
Returns the current stream id.- Specified by:
getStreamId
in interfaceIConnection
- Returns:
- stream id
-
setStreamId
Sets the current stream id.- Specified by:
setStreamId
in interfaceIConnection
- Parameters:
id
- stream id
-
addListener
Adds a listener to this object- Specified by:
addListener
in interfaceIConnection
- Parameters:
listener
- connection listener
-
removeListener
Removes the listener from this object- Specified by:
removeListener
in interfaceIConnection
- Parameters:
listener
- connection listener
-
getLock
- Returns:
- lock for changing state operations
-
initialize
Initializes client- Specified by:
initialize
in interfaceIConnection
- Parameters:
client
- Client bound to connection
-
getType
Description copied from interface:IConnection
Get the connection type.- Specified by:
getType
in interfaceIConnection
- Returns:
- type
-
getHost
Description copied from interface:IConnection
Get the hostname that the client is connected to. If they are connected to an IP, the IP address will be returned as a String.- Specified by:
getHost
in interfaceIConnection
- Returns:
- host
-
getRemoteAddress
Description copied from interface:IConnection
Get the IP address the client is connected from.- Specified by:
getRemoteAddress
in interfaceIConnection
- Returns:
- remote address
-
getRemoteAddresses
Description copied from interface:IConnection
Get the IP addresses the client is connected from. If a client is connected through RTMPT and uses a proxy to connect, this will contain all hosts the client used to connect to the server.- Specified by:
getRemoteAddresses
in interfaceIConnection
- Returns:
- remote address
-
getRemotePort
public int getRemotePort()Description copied from interface:IConnection
Get the port the client is connected from.- Specified by:
getRemotePort
in interfaceIConnection
- Returns:
- remote port
-
getPath
Description copied from interface:IConnection
Get the path for this connection. This is not updated if you switch scope.- Specified by:
getPath
in interfaceIConnection
- Returns:
- path
-
getSessionId
Description copied from interface:IConnection
Get the session id, this may be null.- Specified by:
getSessionId
in interfaceIConnection
- Returns:
- session id
-
getConnectParams
Return connection parameters- Specified by:
getConnectParams
in interfaceIConnection
- Returns:
- connection parameters
-
setClient
Sets the Client.- Specified by:
setClient
in interfaceIConnection
- Parameters:
client
- client
-
getClient
Get the client object associated with this connection.- Specified by:
getClient
in interfaceIConnection
- Returns:
- Client object
-
isConnected
public boolean isConnected()Check whether connection is alive- Specified by:
isConnected
in interfaceIConnection
- Returns:
- true if connection is bound to scope, false otherwise
-
connect
Connect to another scope on server- Specified by:
connect
in interfaceIConnection
- Parameters:
newScope
- New scope- Returns:
- true on success, false otherwise
-
connect
Connect to another scope on server with given parameters- Specified by:
connect
in interfaceIConnection
- Parameters:
newScope
- New scopeparams
- Parameters to connect with- Returns:
- true on success, false otherwise
-
getScope
Return the current scope.- Specified by:
getScope
in interfaceIConnection
- Returns:
- scope
-
close
public void close()Closes connection- Specified by:
close
in interfaceIConnection
-
notifyEvent
Notified on event- Specified by:
notifyEvent
in interfaceIEventListener
- Parameters:
event
- Event
-
dispatchEvent
Dispatches event- Specified by:
dispatchEvent
in interfaceIEventDispatcher
- Parameters:
event
- Event
-
handleEvent
Handles event- Specified by:
handleEvent
in interfaceIEventHandler
- Parameters:
event
- Event- Returns:
- true if associated scope was able to handle event, false otherwise
-
getBasicScopes
Description copied from interface:IConnection
Get the basic scopes this connection has subscribed. This list will contain the shared objects and broadcast streams the connection connected to.- Specified by:
getBasicScopes
in interfaceIConnection
- Returns:
- basic scopes
-
registerBasicScope
Registers basic scope- Parameters:
basicScope
- Basic scope to register
-
unregisterBasicScope
Unregister basic scope- Parameters:
basicScope
- Unregister basic scope
-
getReadBytes
public abstract long getReadBytes()Description copied from interface:IConnection
Total number of bytes read from the connection.- Specified by:
getReadBytes
in interfaceIConnection
- Returns:
- bytes read
-
getWrittenBytes
public abstract long getWrittenBytes()Description copied from interface:IConnection
Total number of bytes written to the connection.- Specified by:
getWrittenBytes
in interfaceIConnection
- Returns:
- bytes written
-
getReadMessages
public long getReadMessages()Description copied from interface:IConnection
Total number of messages read from the connection.- Specified by:
getReadMessages
in interfaceIConnection
- Returns:
- messages read
-
getWrittenMessages
public long getWrittenMessages()Description copied from interface:IConnection
Total number of messages written to the connection.- Specified by:
getWrittenMessages
in interfaceIConnection
- Returns:
- messages written
-
getDroppedMessages
public long getDroppedMessages()Description copied from interface:IConnection
Total number of messages that have been dropped.- Specified by:
getDroppedMessages
in interfaceIConnection
- Returns:
- dropped messages
-
isReaderIdle
public boolean isReaderIdle()Returns whether or not the reader is idle.- Returns:
- queued messages
-
isWriterIdle
public boolean isWriterIdle()Returns whether or not the writer is idle.- Returns:
- queued messages
-
isClosed
public boolean isClosed()Returns whether or not a connection is closed.- Returns:
- true if closed
-
getPendingMessages
public long getPendingMessages()Count of outgoing messages not yet written.- Specified by:
getPendingMessages
in interfaceIConnection
- Returns:
- pending messages
-
getPendingVideoMessages
Count of outgoing video messages not yet written.- Parameters:
streamId
- the id you want to know about- Returns:
- pending messages for this streamId
-
getClientBytesRead
public long getClientBytesRead()Return number of written bytes the client reports to have received. This is the last value of the BytesRead message received from a client.- Specified by:
getClientBytesRead
in interfaceIConnection
- Returns:
- number of written bytes received by the client
- See Also:
-
hashCode
public int hashCode() -
equals
-