gst/: Right, two problems here: ghostpads don't take locks and glib _rec_mutex_lock_f...
[platform/upstream/gstreamer.git] / gst / gsttask.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *               <2005> Wim Taymans <wim@fluendo.com>
4  *
5  * gsttask.h: Streaming tasks
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_TASK_H__
24 #define __GST_TASK_H__
25
26 #include <gst/gstobject.h>
27
28 G_BEGIN_DECLS
29
30 typedef void         (*GstTaskFunction)          (void *data);
31
32 /* --- standard type macros --- */
33 #define GST_TYPE_TASK                   (gst_task_get_type ())
34 #define GST_TASK(task)                  (G_TYPE_CHECK_INSTANCE_CAST ((task), GST_TYPE_TASK, GstTask))
35 #define GST_IS_TASK(task)               (G_TYPE_CHECK_INSTANCE_TYPE ((task), GST_TYPE_TASK))
36 #define GST_TASK_CLASS(tclass)          (G_TYPE_CHECK_CLASS_CAST ((tclass), GST_TYPE_TASK, GstTaskClass))
37 #define GST_IS_TASK_CLASS(tclass)       (G_TYPE_CHECK_CLASS_TYPE ((tclass), GST_TYPE_TASK))
38 #define GST_TASK_GET_CLASS(task)        (G_TYPE_INSTANCE_GET_CLASS ((task), GST_TYPE_TASK, GstTaskClass))
39 #define GST_TASK_CAST(task)             ((GstTask*)(task))
40
41 typedef struct _GstTask GstTask;
42 typedef struct _GstTaskClass GstTaskClass;
43
44 typedef enum {
45   GST_TASK_STARTED,
46   GST_TASK_STOPPED,
47   GST_TASK_PAUSED,
48 } GstTaskState;
49
50 #define GST_TASK_STATE(task)            (GST_TASK_CAST(task)->state)
51
52 #define GST_TASK_GET_COND(task)         (GST_TASK_CAST(task)->cond)
53 #define GST_TASK_WAIT(task)             g_cond_wait(GST_TASK_GET_COND (task), GST_GET_LOCK (task))
54 #define GST_TASK_SIGNAL(task)           g_cond_signal(GST_TASK_GET_COND (task))
55 #define GST_TASK_BROADCAST(task)        g_cond_breadcast(GST_TASK_GET_COND (task))
56
57 #define GST_TASK_GET_LOCK(task)         (GST_TASK_CAST(task)->lock)
58 #define GST_TASK_LOCK(task)             g_static_rec_mutex_lock(GST_TASK_GET_LOCK(task))
59 #define GST_TASK_UNLOCK(task)           g_static_rec_mutex_unlock(GST_TASK_GET_LOCK(task))
60 #define GST_TASK_UNLOCK_FULL(task)      g_static_rec_mutex_unlock_full(GST_TASK_GET_LOCK(task))
61 #define GST_TASK_LOCK_FULL(task,t)      g_static_rec_mutex_lock_full(GST_TASK_GET_LOCK(task),(t))
62
63 struct _GstTask {
64   GstObject      object;
65
66
67   /*< public >*/ /* with LOCK */
68   GstTaskState     state;
69   GCond           *cond;
70
71   GStaticRecMutex *lock;
72
73   GstTaskFunction func;
74   gpointer       data;
75
76   /*< private >*/
77   gpointer _gst_reserved[GST_PADDING];
78 };
79
80 struct _GstTaskClass {
81   GstObjectClass parent_class;
82
83   /*< protected >*/
84   gboolean (*start) (GstTask *task);
85   gboolean (*stop)  (GstTask *task);
86   gboolean (*pause) (GstTask *task);
87
88   /*< private >*/
89   gpointer _gst_reserved[GST_PADDING];
90 };
91
92 GType           gst_task_get_type       (void);
93
94 GstTask*        gst_task_create         (GstTaskFunction func, gpointer data);
95 void            gst_task_set_lock       (GstTask *task, GStaticRecMutex *mutex);
96
97 GstTaskState    gst_task_get_state      (GstTask *task);
98
99 gboolean        gst_task_start          (GstTask *task);
100 gboolean        gst_task_stop           (GstTask *task);
101 gboolean        gst_task_pause          (GstTask *task);
102
103 G_END_DECLS
104
105 #endif /* __GST_TASK_H__ */
106