gstreamermm  1.4.3
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Related Functions | List of all members
Gst::Task Class Reference

A class representing GStreamer streaming threads. More...

Inheritance diagram for Gst::Task:
Inheritance graph
[legend]
Collaboration diagram for Gst::Task:
Collaboration graph
[legend]

Public Types

typedef sigc::slot< void > SlotTask
 For example, void on_do_task();. More...
 
typedef sigc::slot< void,
const Glib::RefPtr< Gst::Task >
&, Glib::Threads::Thread* > 
BiSlot
 Bidirectional slot. More...
 
typedef BiSlot SlotEnter
 For example, void on_enter(const Glib::RefPtr<Gst::Task>& task, Glib::Threads::Thread& thread);. More...
 
typedef BiSlot SlotLeave
 For example, void on_leave(const Glib::RefPtr<Gst::Task>& task, Glib::Threads::Thread& thread);. More...
 

Public Member Functions

virtual ~Task ()
 
GstTask* gobj ()
 Provides access to the underlying C GObject. More...
 
const GstTask* gobj () const
 Provides access to the underlying C GObject. More...
 
GstTask* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
void set_lock (Glib::Threads::RecMutex& mutex)
 Set the mutex used by the task. More...
 
void set_pool (const Glib::RefPtr< Gst::TaskPool >& pool)
 Set pool as the new GstTaskPool for task. More...
 
Glib::RefPtr< Gst::TaskPoolget_pool ()
 Get the Gst::TaskPool that this task will use for its streaming threads. More...
 
Glib::RefPtr< const Gst::TaskPoolget_pool () const
 Get the Gst::TaskPool that this task will use for its streaming threads. More...
 
void set_thread_slots (const SlotEnter& enter_slot, const SlotLeave& leave_slot)
 Set slots which will be executed when a new thread is needed, the thread function is entered and left and when the thread is joined. More...
 
TaskState get_state () const
 Get the current state of the task. More...
 
void set_state (Gst::TaskState state)
 Sets the state of task to state. More...
 
bool pause ()
 Pauses task. More...
 
bool start ()
 Starts task. More...
 
bool stop ()
 Stops task. More...
 
bool join ()
 Joins task. More...
 
- Public Member Functions inherited from Gst::Object
virtual ~Object ()
 
GstObject* gobj ()
 Provides access to the underlying C GObject. More...
 
const GstObject* gobj () const
 Provides access to the underlying C GObject. More...
 
GstObject* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
 
bool is_element () const
 
bool is_element_factory () const
 
bool is_pad () const
 
bool is_pad_template () const
 
bool is_bin () const
 
guint32 get_flags () const
 Returns the entire set of flags for the object. More...
 
bool set_name (const Glib::ustring& name)
 Sets the name of object, or gives object a guaranteed unique name (if name is 0). More...
 
Glib::ustring get_name () const
 Returns a copy of the name of object. More...
 
bool set_parent (const Glib::RefPtr< Gst::Object >& parent)
 Sets the parent of object to parent. More...
 
Glib::RefPtr< Gst::Objectget_parent ()
 Returns the parent of object. More...
 
Glib::RefPtr< const Gst::Objectget_parent () const
 Returns the parent of object. More...
 
void unparent ()
 Clear the parent of object, removing the associated reference. More...
 
bool has_ancestor (const Glib::RefPtr< const Gst::Object >& ancestor) const
 Check if object has an ancestor ancestor somewhere up in the hierarchy. More...
 
Glib::ustring get_path_string ()
 Generates a string describing the path of object in the object hierarchy. More...
 
Glib::PropertyProxy
< Glib::ustring
property_name ()
 The name of the object. More...
 
Glib::PropertyProxy_ReadOnly
< Glib::ustring
property_name () const
 The name of the object. More...
 
Glib::SignalProxy2< void,
const Glib::RefPtr< Object >
&, GParamSpec* > 
signal_deep_notify ()
 
int get_refcount () const
 

Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
static Glib::RefPtr< Taskcreate (const SlotTask& task_slot)
 Create a new Gst::Task that will repeatedly call the provided slot as a parameter. More...
 
static void cleanup_all ()
 Wait for all tasks to be stopped. More...
 
- Static Public Member Functions inherited from Gst::Object
static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system. More...
 
static bool check_uniqueness (const Glib::ListHandle< const Gst::Object >& list, const Glib::ustring& name)
 Checks to see if there is any object named name in list. More...
 

Protected Member Functions

 Task (const SlotTask& task_slot)
 
- Protected Member Functions inherited from Gst::Object
virtual void on_deep_notify (const Glib::RefPtr< Object >& prop_object, GParamSpec* prop)
 This is a default handler for the signal signal_deep_notify(). More...
 

Related Functions

(Note that these are not member functions.)

Glib::RefPtr< Gst::Taskwrap (GstTask* object, bool take_copy=false)
 A Glib::wrap() method for this object. More...
 

Detailed Description

A class representing GStreamer streaming threads.

Gst::Task is used by Gst::Element and Gst::Pad to provide the data passing threads in a Gst::Pipeline.

A Gst::Pad will typically start a Gst::Task to push or pull data to/from the peer pads. Most source elements start a Gst::Task to push data. In some cases a demuxer element can start a Gst::Task to pull data from a peer element. This is typically done when the demuxer can perform random access on the upstream peer element for improved performance.

Although convenience functions exist on Gst::Pad to start/pause/stop tasks, it might sometimes be needed to create a Gst::Task manually if it is not related to a Gst::Pad.

Before the Gst::Task can be run, it needs a Glib::StaticRecMutex that can be set with set_lock().

The task can be started, paused and stopped with start(), pause() and stop() respectively.

A Gst::Task will repeadedly call the Gst::Task::SlotTask that was provided when creating the task with create(). Before calling the function it will acquire the provided lock.

Stopping a task with stop() will not immediatly make sure the task is not running anymore. Use join() to make sure the task is completely stopped and the thread is stopped.

Last reviewed on 2006-02-13 (0.10.4)

Member Typedef Documentation

typedef sigc::slot<void, const Glib::RefPtr<Gst::Task>&, Glib::Threads::Thread*> Gst::Task::BiSlot

Bidirectional slot.

For example, void on_enter(const Glib::RefPtr<Gst::Task>& task, Glib::Threads::Thread& thread);.

A thread is entered, this slot is called when the new thread enters its function.

For example, void on_leave(const Glib::RefPtr<Gst::Task>& task, Glib::Threads::Thread& thread);.

A thread is exiting, this is called when the thread is about to leave its function.

typedef sigc::slot<void> Gst::Task::SlotTask

For example, void on_do_task();.

Constructor & Destructor Documentation

virtual Gst::Task::~Task ( )
virtual
Gst::Task::Task ( const SlotTask task_slot)
explicitprotected

Member Function Documentation

static void Gst::Task::cleanup_all ( )
static

Wait for all tasks to be stopped.

This is mainly used internally to ensure proper cleanup of internal data structures in test suites.

MT safe.

static Glib::RefPtr<Task> Gst::Task::create ( const SlotTask task_slot)
static

Create a new Gst::Task that will repeatedly call the provided slot as a parameter.

Typically the task will run in a new thread.

The slot cannot be changed after the task has been created. You must create a new Gst::Task to change the slot.

Parameters
task_slotThe Gst::Task::SlotTask to use.
Returns
A new Gst::Task. MT safe.
Glib::RefPtr<Gst::TaskPool> Gst::Task::get_pool ( )

Get the Gst::TaskPool that this task will use for its streaming threads.

MT safe.

Returns
The Gst::TaskPool used by task. Gst::Object::unref() after usage.
Glib::RefPtr<const Gst::TaskPool> Gst::Task::get_pool ( ) const

Get the Gst::TaskPool that this task will use for its streaming threads.

MT safe.

Returns
The Gst::TaskPool used by task. Gst::Object::unref() after usage.
TaskState Gst::Task::get_state ( ) const

Get the current state of the task.

Returns
The Gst::TaskState of the task

MT safe.

static GType Gst::Task::get_type ( )
static

Get the GType for this class, for use with the underlying GObject type system.

GstTask* Gst::Task::gobj ( )
inline

Provides access to the underlying C GObject.

const GstTask* Gst::Task::gobj ( ) const
inline

Provides access to the underlying C GObject.

GstTask* Gst::Task::gobj_copy ( )

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

bool Gst::Task::join ( )

Joins task.

After this call, it is safe to unref the task and clean up the lock set with set_lock().

The task will automatically be stopped with this call.

This function cannot be called from within a task function as this would cause a deadlock. The function will detect this and print a g_warning.

Returns
true if the task could be joined.

MT safe.

bool Gst::Task::pause ( )

Pauses task.

This method can also be called on a task in the stopped state, in which case a thread will be started and will remain in the paused state. This function does not wait for the task to complete the paused state.

Returns
true if the task could be paused.

MT safe.

void Gst::Task::set_lock ( Glib::Threads::RecMutex mutex)

Set the mutex used by the task.

The mutex will be acquired before calling the Gst::TaskFunction.

This function has to be called before calling pause() or start().

MT safe.

Parameters
mutexThe RecMutex to use.
void Gst::Task::set_pool ( const Glib::RefPtr< Gst::TaskPool >&  pool)

Set pool as the new GstTaskPool for task.

Any new streaming threads that will be created by task will now use pool.

MT safe.

Parameters
poolA Gst::TaskPool.
void Gst::Task::set_state ( Gst::TaskState  state)

Sets the state of task to state.

The task must have a lock associated with it using set_lock() when going to GST_TASK_STARTED or GST_TASK_PAUSED or this function will return false.

MT safe.

Parameters
stateThe new task state.
Returns
true if the state could be changed.
void Gst::Task::set_thread_slots ( const SlotEnter enter_slot,
const SlotLeave leave_slot 
)

Set slots which will be executed when a new thread is needed, the thread function is entered and left and when the thread is joined.

By default a thread for the task will be created from a default thread pool.

Objects can use custom Glib::Threads::Thread or can perform additional configuration of the threads (such as changing the thread priority) by installing slots.

MT safe.

Parameters
enter_slotA SlotEnter slot.
leave_slotA SlotLeave slot.

Since 0.10.24.

bool Gst::Task::start ( )

Starts task.

The task must have a lock associated with it using set_lock() or this function will return false.

Returns
true if the task could be started.

MT safe.

bool Gst::Task::stop ( )

Stops task.

This method merely schedules the task to stop and will not wait for the task to have completely stopped. Use join() to stop and wait for completion.

Returns
true if the task could be stopped.

MT safe.

Friends And Related Function Documentation

Glib::RefPtr< Gst::Task > wrap ( GstTask *  object,
bool  take_copy = false 
)
related

A Glib::wrap() method for this object.

Parameters
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns
A C++ instance that wraps this C instance.

The documentation for this class was generated from the following file: