expand tabs
[platform/upstream/gstreamer.git] / gst / tcp / gstfdset.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2004> Wim Taymans <wim@fluendo.com>
4  *
5  * gstfdset.h: fdset datastructure
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_FDSET_H__
24 #define __GST_FDSET_H__
25
26 #include <gst/gst.h>
27
28 G_BEGIN_DECLS
29
30 typedef struct _GstFDSet GstFDSet;
31
32 typedef struct {
33   int fd;
34   gint idx;
35   gpointer data;
36 } GstFD;
37
38 typedef enum {
39   GST_FDSET_MODE_SELECT,
40   GST_FDSET_MODE_POLL,
41   GST_FDSET_MODE_EPOLL
42 } GstFDSetMode;
43
44 #define GST_TYPE_FDSET_MODE (gst_fdset_mode_get_type())
45 GType gst_fdset_mode_get_type (void);
46
47
48 GstFDSet*       gst_fdset_new (GstFDSetMode mode);
49 void            gst_fdset_free (GstFDSet *set);
50
51 void            gst_fdset_set_mode (GstFDSet *set, GstFDSetMode mode);
52 GstFDSetMode    gst_fdset_get_mode (GstFDSet *set);
53
54 gboolean        gst_fdset_add_fd (GstFDSet *set, GstFD *fd); 
55 gboolean        gst_fdset_remove_fd (GstFDSet *set, GstFD *fd); 
56
57 void            gst_fdset_fd_ctl_write (GstFDSet *set, GstFD *fd, gboolean active); 
58 void            gst_fdset_fd_ctl_read (GstFDSet *set, GstFD *fd, gboolean active); 
59
60 gboolean        gst_fdset_fd_has_closed (GstFDSet *set, GstFD *fd); 
61 gboolean        gst_fdset_fd_has_error (GstFDSet *set, GstFD *fd); 
62 gboolean        gst_fdset_fd_can_read (GstFDSet *set, GstFD *fd); 
63 gboolean        gst_fdset_fd_can_write (GstFDSet *set, GstFD *fd); 
64
65 gint            gst_fdset_wait (GstFDSet *set, int timeout);
66
67 G_END_DECLS
68
69 #endif /* __GST_FDSET_H__ */