#include <yatephone.h>
Inheritance diagram for DataEndpoint:
Public Member Functions | |
DataEndpoint (CallEndpoint *call=0, const char *name="audio") | |
virtual void | destroyed () |
virtual void * | getObject (const String &name) const |
virtual const String & | toString () const |
Mutex * | mutex () const |
bool | connect (DataEndpoint *peer) |
bool | disconnect () |
void | setSource (DataSource *source=0) |
DataSource * | getSource () const |
void | setConsumer (DataConsumer *consumer=0) |
DataConsumer * | getConsumer () const |
void | setPeerRecord (DataConsumer *consumer=0) |
DataConsumer * | getPeerRecord () const |
void | setCallRecord (DataConsumer *consumer=0) |
DataConsumer * | getCallRecord () const |
bool | addSniffer (DataConsumer *sniffer) |
bool | delSniffer (DataConsumer *sniffer) |
DataConsumer * | getSniffer (const String &name) |
void | clearSniffers () |
DataEndpoint * | getPeer () const |
CallEndpoint * | getCall () const |
const String & | name () const |
Static Public Member Functions | |
static Mutex & | commonMutex () |
Protected Member Functions | |
virtual bool | nativeConnect (DataEndpoint *peer) |
The DataEndpoint holds an endpoint capable of performing unidirectional or bidirectional data transfers
DataEndpoint | ( | CallEndpoint * | call = 0 , |
|
const char * | name = "audio" | |||
) |
Creates an empty data endpoint
virtual void destroyed | ( | ) | [virtual] |
Endpoint destruct notification, clears source and consumer
Reimplemented from RefObject.
virtual void* getObject | ( | const String & | name | ) | const [virtual] |
Get a pointer to a derived class given that class name
name | Name of the class we are asking for |
Reimplemented from GenObject.
virtual const String& toString | ( | ) | const [virtual] |
Get a string identification of the endpoint
Reimplemented from GenObject.
Mutex* mutex | ( | ) | const |
Get the mutex that serializes access to this data endpoint, if any
static Mutex& commonMutex | ( | ) | [static] |
Get the big mutex that serializes access to all data endpoints
bool connect | ( | DataEndpoint * | peer | ) |
Connect the source and consumer of the endpoint to a peer
peer | Pointer to the peer data endpoint |
bool disconnect | ( | ) |
Disconnect from the connected endpoint
void setSource | ( | DataSource * | source = 0 |
) |
Set the data source of this object
source | A pointer to the new source or NULL |
DataSource* getSource | ( | ) | const [inline] |
Get the data source of this object
void setConsumer | ( | DataConsumer * | consumer = 0 |
) |
Set the data consumer of this object
consumer | A pointer to the new consumer or NULL |
DataConsumer* getConsumer | ( | ) | const [inline] |
Get the data consumer of this object
void setPeerRecord | ( | DataConsumer * | consumer = 0 |
) |
Set the data consumer for recording peer generated data. This will be connected to the peer data source.
consumer | A pointer to the new consumer or NULL |
DataConsumer* getPeerRecord | ( | ) | const [inline] |
Get the data consumer used for recording peer generated data.
void setCallRecord | ( | DataConsumer * | consumer = 0 |
) |
Set the data consumer for recording local call generated data This will be connected to the local data source.
consumer | A pointer to the new consumer or NULL |
DataConsumer* getCallRecord | ( | ) | const [inline] |
Get the data consumer used for recording local call generated data.
bool addSniffer | ( | DataConsumer * | sniffer | ) |
Adds a data consumer to the list of sniffers of the local call data
sniffer | Pointer to the DataConsumer to add to sniffer list |
bool delSniffer | ( | DataConsumer * | sniffer | ) |
Remove a data consumer from the list of sniffers of the local call data
sniffer | Pointer to the DataConsumer to remove from sniffer list |
DataConsumer* getSniffer | ( | const String & | name | ) | [inline] |
Find a sniffer by name
name | Name of the sniffer to find |
void clearSniffers | ( | ) |
Removes all sniffers from the list and dereferences them
DataEndpoint* getPeer | ( | ) | const [inline] |
Get a pointer to the peer endpoint
CallEndpoint* getCall | ( | ) | const [inline] |
Get a pointer to the owner call
const String& name | ( | ) | const [inline] |
Get the name set in constructor
virtual bool nativeConnect | ( | DataEndpoint * | peer | ) | [inline, protected, virtual] |
Attempt to connect the endpoint to a peer of the same type
peer | Pointer to the endpoint data driver |