Break some long lines.
[platform/upstream/glib.git] / glib / gasyncqueue.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __G_ASYNCQUEUE_H__
28 #define __G_ASYNCQUEUE_H__
29
30 #include <glib/gthread.h>
31
32 G_BEGIN_DECLS
33
34 typedef struct _GAsyncQueue     GAsyncQueue;
35
36 /* Asyncronous Queues, can be used to communicate between threads
37  */
38
39 /* Get a new GAsyncQueue with the ref_count 1 */
40 GAsyncQueue*  g_async_queue_new               (void);
41
42 /* Lock and unlock a GAsyncQueue. All functions lock the queue for
43  * themselves, but in certain cirumstances you want to hold the lock longer,
44  * thus you lock the queue, call the *_unlocked functions and unlock it again.
45  */
46 void         g_async_queue_lock                 (GAsyncQueue      *queue);
47 void         g_async_queue_unlock               (GAsyncQueue      *queue);
48
49
50
51 /* Ref and unref the GAsyncQueue. */
52 GAsyncQueue* g_async_queue_ref                  (GAsyncQueue      *queue);
53 void         g_async_queue_unref                (GAsyncQueue      *queue);
54
55
56 #ifndef G_DISABLE_DEPRECATED
57 /* You don't have to hold the lock for calling *_ref and *_unref anymore. */
58 void         g_async_queue_ref_unlocked         (GAsyncQueue      *queue);
59 void         g_async_queue_unref_and_unlock     (GAsyncQueue      *queue);
60
61
62 #endif /* !G_DISABLE_DEPRECATED */
63
64 /* Push data into the async queue. Must not be NULL. */
65 void         g_async_queue_push                 (GAsyncQueue      *queue,
66                                                  gpointer          data);
67 void         g_async_queue_push_unlocked        (GAsyncQueue      *queue,
68                                                  gpointer          data);
69
70 void         g_async_queue_push_sorted          (GAsyncQueue      *queue,
71                                                  gpointer          data,
72                                                  GCompareDataFunc  func,
73                                                  gpointer          user_data);
74 void         g_async_queue_push_sorted_unlocked (GAsyncQueue      *queue,
75                                                  gpointer          data,
76                                                  GCompareDataFunc  func,
77                                                  gpointer          user_data);
78
79 /* Pop data from the async queue. When no data is there, the thread is blocked
80  * until data arrives. */
81 gpointer     g_async_queue_pop                  (GAsyncQueue      *queue);
82 gpointer     g_async_queue_pop_unlocked         (GAsyncQueue      *queue);
83
84
85
86 /* Try to pop data. NULL is returned in case of empty queue. */
87 gpointer     g_async_queue_try_pop              (GAsyncQueue      *queue);
88 gpointer     g_async_queue_try_pop_unlocked     (GAsyncQueue      *queue);
89
90
91
92 /* Wait for data until at maximum until end_time is reached. NULL is returned
93  * in case of empty queue. */
94 gpointer     g_async_queue_timed_pop            (GAsyncQueue      *queue,
95                                                  GTimeVal         *end_time);
96 gpointer     g_async_queue_timed_pop_unlocked   (GAsyncQueue      *queue,
97                                                  GTimeVal         *end_time);
98
99
100
101 /* Return the length of the queue. Negative values mean that threads
102  * are waiting, positve values mean that there are entries in the
103  * queue. Actually this function returns the length of the queue minus
104  * the number of waiting threads, g_async_queue_length == 0 could also
105  * mean 'n' entries in the queue and 'n' thread waiting. Such can
106  * happen due to locking of the queue or due to scheduling. */
107 gint         g_async_queue_length               (GAsyncQueue      *queue);
108 gint         g_async_queue_length_unlocked      (GAsyncQueue      *queue);
109 void         g_async_queue_sort                 (GAsyncQueue      *queue,
110                                                  GCompareDataFunc  func,
111                                                  gpointer          user_data);
112 void         g_async_queue_sort_unlocked        (GAsyncQueue      *queue,
113                                                  GCompareDataFunc  func,
114                                                  gpointer          user_data);
115
116
117 G_END_DECLS
118
119 #endif /* __G_ASYNCQUEUE_H__ */
120