Next big merge.
[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 struct _GstTask {
58   GstObject      object;
59
60   /*< public >*/ /* with TASK_LOCK */
61   GstTaskState state;
62   GCond *cond;
63
64   GstTaskFunction func;
65   gpointer data;
66
67   /*< private >*/
68   gpointer _gst_reserved[GST_PADDING];
69 };
70
71 struct _GstTaskClass {
72   GstObjectClass parent_class;
73
74   /*< protected >*/
75   gboolean (*start) (GstTask *task);
76   gboolean (*stop)  (GstTask *task);
77   gboolean (*pause) (GstTask *task);
78
79   /*< private >*/
80   gpointer _gst_reserved[GST_PADDING];
81 };
82
83 GType           gst_task_get_type       (void);
84
85 GstTask*        gst_task_create         (GstTaskFunction func, gpointer data);
86
87 GstTaskState    gst_task_get_state      (GstTask *task);
88
89 gboolean        gst_task_start          (GstTask *task);
90 gboolean        gst_task_stop           (GstTask *task);
91 gboolean        gst_task_pause          (GstTask *task);
92
93 G_END_DECLS
94
95 #endif /* __GST_TASK_H__ */
96