Remove all uses of G_CONST_RETURN
[platform/upstream/glib.git] / glib / gmain.h
1 /* gmain.h - the GLib Main loop
2  * Copyright (C) 1998-2000 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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 #if defined(G_DISABLE_SINGLE_INCLUDES) && !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
21 #error "Only <glib.h> can be included directly."
22 #endif
23
24 #ifndef __G_MAIN_H__
25 #define __G_MAIN_H__
26
27 #include <glib/gpoll.h>
28 #include <glib/gslist.h>
29 #include <glib/gthread.h>
30
31 G_BEGIN_DECLS
32
33 /**
34  * GMainContext:
35  *
36  * The <structname>GMainContext</structname> struct is an opaque data
37  * type representing a set of sources to be handled in a main loop.
38  */
39 typedef struct _GMainContext            GMainContext;
40
41 /**
42  * GMainLoop:
43  *
44  * The <structname>GMainLoop</structname> struct is an opaque data type
45  * representing the main event loop of a GLib or GTK+ application.
46  */
47 typedef struct _GMainLoop               GMainLoop;
48
49 /**
50  * GSource:
51  *
52  * The <structname>GSource</structname> struct is an opaque data type
53  * representing an event source.
54  */
55 typedef struct _GSource                 GSource;
56 typedef struct _GSourcePrivate          GSourcePrivate;
57
58 /**
59  * GSourceCallbackFuncs:
60  * @ref: Called when a reference is added to the callback object
61  * @unref: Called when a reference to the callback object is dropped
62  * @get: Called to extract the callback function and data from the
63  *     callback object.
64
65  * The <structname>GSourceCallbackFuncs</structname> struct contains
66  * functions for managing callback objects.
67  */
68 typedef struct _GSourceCallbackFuncs    GSourceCallbackFuncs;
69
70 /**
71  * GSourceFuncs:
72  * @prepare: Called before all the file descriptors are polled. If the
73  *     source can determine that it is ready here (without waiting for the
74  *     results of the poll() call) it should return %TRUE. It can also return
75  *     a @timeout_ value which should be the maximum timeout (in milliseconds)
76  *     which should be passed to the poll() call. The actual timeout used will
77  *     be -1 if all sources returned -1, or it will be the minimum of all the
78  *     @timeout_ values returned which were >= 0.
79  * @check: Called after all the file descriptors are polled. The source
80  *     should return %TRUE if it is ready to be dispatched. Note that some
81  *     time may have passed since the previous prepare function was called,
82  *     so the source should be checked again here.
83  * @dispatch: Called to dispatch the event source, after it has returned
84  *     %TRUE in either its @prepare or its @check function. The @dispatch
85  *     function is passed in a callback function and data. The callback
86  *     function may be %NULL if the source was never connected to a callback
87  *     using g_source_set_callback(). The @dispatch function should call the
88  *     callback function with @user_data and whatever additional parameters
89  *     are needed for this type of event source.
90  * @finalize: Called when the source is finalized.
91  * @closure_callback:
92  * @closure_marshal:
93  *
94  * The <structname>GSourceFuncs</structname> struct contains a table of
95  * functions used to handle event sources in a generic manner.
96  *
97  * For idle sources, the prepare and check functions always return %TRUE
98  * to indicate that the source is always ready to be processed. The prepare
99  * function also returns a timeout value of 0 to ensure that the poll() call
100  * doesn't block (since that would be time wasted which could have been spent
101  * running the idle function).
102  *
103  * For timeout sources, the prepare and check functions both return %TRUE
104  * if the timeout interval has expired. The prepare function also returns
105  * a timeout value to ensure that the poll() call doesn't block too long
106  * and miss the next timeout.
107  *
108  * For file descriptor sources, the prepare function typically returns %FALSE,
109  * since it must wait until poll() has been called before it knows whether
110  * any events need to be processed. It sets the returned timeout to -1 to
111  * indicate that it doesn't mind how long the poll() call blocks. In the
112  * check function, it tests the results of the poll() call to see if the
113  * required condition has been met, and returns %TRUE if so.
114  */
115 typedef struct _GSourceFuncs            GSourceFuncs;
116
117 /**
118  * GPid:
119  *
120  * A type which is used to hold a process identification.
121  *
122  * On UNIX, processes are identified by a process id (an integer),
123  * while Windows uses process handles (which are pointers).
124  */
125
126 /**
127  * GSourceFunc:
128  * @data: data passed to the function, set when the source was
129  *     created with one of the above functions
130  *
131  * Specifies the type of function passed to g_timeout_add(),
132  * g_timeout_add_full(), g_idle_add(), and g_idle_add_full().
133  *
134  * Returns: %FALSE if the source should be removed
135  */
136 typedef gboolean (*GSourceFunc)       (gpointer data);
137
138 /**
139  * GChildWatchFunc:
140  * @pid: the process id of the child process
141  * @status: Status information about the child process,
142  *     see waitpid(2) for more information about this field
143  * @data: user data passed to g_child_watch_add()
144  *
145  * The type of functions to be called when a child exists.
146  */
147 typedef void     (*GChildWatchFunc)   (GPid     pid,
148                                        gint     status,
149                                        gpointer data);
150 struct _GSource
151 {
152   /*< private >*/
153   gpointer callback_data;
154   GSourceCallbackFuncs *callback_funcs;
155
156   GSourceFuncs *source_funcs;
157   guint ref_count;
158
159   GMainContext *context;
160
161   gint priority;
162   guint flags;
163   guint source_id;
164
165   GSList *poll_fds;
166   
167   GSource *prev;
168   GSource *next;
169
170   char    *name;
171
172   GSourcePrivate *priv;
173 };
174
175 struct _GSourceCallbackFuncs
176 {
177   void (*ref)   (gpointer     cb_data);
178   void (*unref) (gpointer     cb_data);
179   void (*get)   (gpointer     cb_data,
180                  GSource     *source, 
181                  GSourceFunc *func,
182                  gpointer    *data);
183 };
184
185 /**
186  * GSourceDummyMarshal:
187  *
188  * This is just a placeholder for #GClosureMarshal,
189  * which cannot be used here for dependency reasons.
190  */
191 typedef void (*GSourceDummyMarshal) (void);
192
193 struct _GSourceFuncs
194 {
195   gboolean (*prepare)  (GSource    *source,
196                         gint       *timeout_);
197   gboolean (*check)    (GSource    *source);
198   gboolean (*dispatch) (GSource    *source,
199                         GSourceFunc callback,
200                         gpointer    user_data);
201   void     (*finalize) (GSource    *source); /* Can be NULL */
202
203   /* For use by g_source_set_closure */
204   GSourceFunc     closure_callback;        
205   GSourceDummyMarshal closure_marshal; /* Really is of type GClosureMarshal */
206 };
207
208 /* Standard priorities */
209
210 /**
211  * G_PRIORITY_HIGH:
212  *
213  * Use this for high priority event sources.
214  *
215  * It is not used within GLib or GTK+.
216  */
217 #define G_PRIORITY_HIGH            -100
218
219 /**
220  * G_PRIORITY_DEFAULT:
221  *
222  * Use this for default priority event sources.
223  *
224  * In GLib this priority is used when adding timeout functions
225  * with g_timeout_add(). In GDK this priority is used for events
226  * from the X server.
227  */
228 #define G_PRIORITY_DEFAULT          0
229
230 /**
231  * G_PRIORITY_HIGH_IDLE:
232  *
233  * Use this for high priority idle functions.
234  *
235  * GTK+ uses #G_PRIORITY_HIGH_IDLE + 10 for resizing operations,
236  * and #G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is
237  * done to ensure that any pending resizes are processed before any
238  * pending redraws, so that widgets are not redrawn twice unnecessarily.)
239  */
240 #define G_PRIORITY_HIGH_IDLE        100
241
242 /**
243  * G_PRIORITY_DEFAULT_IDLE:
244  *
245  * Use this for default priority idle functions.
246  *
247  * In GLib this priority is used when adding idle functions with
248  * g_idle_add().
249  */
250 #define G_PRIORITY_DEFAULT_IDLE     200
251
252 /**
253  * G_PRIORITY_LOW:
254  *
255  * Use this for very low priority background tasks.
256  *
257  * It is not used within GLib or GTK+.
258  */
259 #define G_PRIORITY_LOW              300
260
261 /* GMainContext: */
262
263 GMainContext *g_main_context_new       (void);
264 GMainContext *g_main_context_ref       (GMainContext *context);
265 void          g_main_context_unref     (GMainContext *context);
266 GMainContext *g_main_context_default   (void);
267
268 gboolean      g_main_context_iteration (GMainContext *context,
269                                         gboolean      may_block);
270 gboolean      g_main_context_pending   (GMainContext *context);
271
272 /* For implementation of legacy interfaces
273  */
274 GSource      *g_main_context_find_source_by_id              (GMainContext *context,
275                                                              guint         source_id);
276 GSource      *g_main_context_find_source_by_user_data       (GMainContext *context,
277                                                              gpointer      user_data);
278 GSource      *g_main_context_find_source_by_funcs_user_data (GMainContext *context,
279                                                              GSourceFuncs *funcs,
280                                                              gpointer      user_data);
281
282 /* Low level functions for implementing custom main loops.
283  */
284 void     g_main_context_wakeup  (GMainContext *context);
285 gboolean g_main_context_acquire (GMainContext *context);
286 void     g_main_context_release (GMainContext *context);
287 gboolean g_main_context_is_owner (GMainContext *context);
288 gboolean g_main_context_wait    (GMainContext *context,
289                                  GCond        *cond,
290                                  GMutex       *mutex);
291
292 gboolean g_main_context_prepare  (GMainContext *context,
293                                   gint         *priority);
294 gint     g_main_context_query    (GMainContext *context,
295                                   gint          max_priority,
296                                   gint         *timeout_,
297                                   GPollFD      *fds,
298                                   gint          n_fds);
299 gint     g_main_context_check    (GMainContext *context,
300                                   gint          max_priority,
301                                   GPollFD      *fds,
302                                   gint          n_fds);
303 void     g_main_context_dispatch (GMainContext *context);
304
305 void     g_main_context_set_poll_func (GMainContext *context,
306                                        GPollFunc     func);
307 GPollFunc g_main_context_get_poll_func (GMainContext *context);
308
309 /* Low level functions for use by source implementations
310  */
311 void     g_main_context_add_poll    (GMainContext *context,
312                                      GPollFD      *fd,
313                                      gint          priority);
314 void     g_main_context_remove_poll (GMainContext *context,
315                                      GPollFD      *fd);
316
317 gint     g_main_depth               (void);
318 GSource *g_main_current_source      (void);
319
320 /* GMainContexts for other threads
321  */
322 void          g_main_context_push_thread_default (GMainContext *context);
323 void          g_main_context_pop_thread_default  (GMainContext *context);
324 GMainContext *g_main_context_get_thread_default  (void);
325
326 /* GMainLoop: */
327
328 GMainLoop *g_main_loop_new        (GMainContext *context,
329                                    gboolean      is_running);
330 void       g_main_loop_run        (GMainLoop    *loop);
331 void       g_main_loop_quit       (GMainLoop    *loop);
332 GMainLoop *g_main_loop_ref        (GMainLoop    *loop);
333 void       g_main_loop_unref      (GMainLoop    *loop);
334 gboolean   g_main_loop_is_running (GMainLoop    *loop);
335 GMainContext *g_main_loop_get_context (GMainLoop    *loop);
336
337 /* GSource: */
338
339 GSource *g_source_new             (GSourceFuncs   *source_funcs,
340                                    guint           struct_size);
341 GSource *g_source_ref             (GSource        *source);
342 void     g_source_unref           (GSource        *source);
343
344 guint    g_source_attach          (GSource        *source,
345                                    GMainContext   *context);
346 void     g_source_destroy         (GSource        *source);
347
348 void     g_source_set_priority    (GSource        *source,
349                                    gint            priority);
350 gint     g_source_get_priority    (GSource        *source);
351 void     g_source_set_can_recurse (GSource        *source,
352                                    gboolean        can_recurse);
353 gboolean g_source_get_can_recurse (GSource        *source);
354 guint    g_source_get_id          (GSource        *source);
355
356 GMainContext *g_source_get_context (GSource       *source);
357
358 void     g_source_set_callback    (GSource        *source,
359                                    GSourceFunc     func,
360                                    gpointer        data,
361                                    GDestroyNotify  notify);
362
363 void     g_source_set_funcs       (GSource        *source,
364                                    GSourceFuncs   *funcs);
365 gboolean g_source_is_destroyed    (GSource        *source);
366
367 void                 g_source_set_name       (GSource        *source,
368                                               const char     *name);
369 const char *         g_source_get_name       (GSource        *source);
370 void                 g_source_set_name_by_id (guint           tag,
371                                               const char     *name);
372
373
374 /* Used to implement g_source_connect_closure and internally*/
375 void g_source_set_callback_indirect (GSource              *source,
376                                      gpointer              callback_data,
377                                      GSourceCallbackFuncs *callback_funcs);
378
379 void     g_source_add_poll            (GSource        *source,
380                                        GPollFD        *fd);
381 void     g_source_remove_poll         (GSource        *source,
382                                        GPollFD        *fd);
383
384 void     g_source_add_child_source    (GSource        *source,
385                                        GSource        *child_source);
386 void     g_source_remove_child_source (GSource        *source,
387                                        GSource        *child_source);
388
389 #ifndef G_DISABLE_DEPRECATED
390 void     g_source_get_current_time (GSource        *source,
391                                     GTimeVal       *timeval);
392 #endif
393 gint64   g_source_get_time         (GSource        *source);
394
395  /* void g_source_connect_closure (GSource        *source,
396                                   GClosure       *closure);
397  */
398
399 /* Specific source types
400  */
401 GSource *g_idle_source_new        (void);
402 GSource *g_child_watch_source_new (GPid pid);
403 GSource *g_timeout_source_new     (guint interval);
404 GSource *g_timeout_source_new_seconds (guint interval);
405
406 /* Miscellaneous functions
407  */
408 void   g_get_current_time                 (GTimeVal       *result);
409 gint64 g_get_monotonic_time               (void);
410 gint64 g_get_real_time                    (void);
411
412 /* ============== Compat main loop stuff ================== */
413
414 #ifndef G_DISABLE_DEPRECATED
415
416 /**
417  * g_main_new:
418  * @is_running: set to %TRUE to indicate that the loop is running. This
419  *     is not very important since calling g_main_run() will set this
420  *     to %TRUE anyway.
421  *
422  * Creates a new #GMainLoop for th default main context.
423  *
424  * Returns: a new #GMainLoop
425  *
426  * Deprecated: 2.2: Use g_main_loop_new() instead
427  */
428 #define         g_main_new(is_running)  g_main_loop_new (NULL, is_running)
429
430 /**
431  * g_main_run:
432  * @loop: a #GMainLoop
433  *
434  * Runs a main loop until it stops running.
435  *
436  * Deprecated: 2.2: Use g_main_loop_run() instead
437  */
438 #define         g_main_run(loop)        g_main_loop_run(loop)
439
440 /**
441  * g_main_quit:
442  * @loop: a #GMainLoop
443  *
444  * Stops the #GMainLoop.
445  * If g_main_run() was called to run the #GMainLoop, it will now return.
446  *
447  * Deprecated: 2.2: Use g_main_loop_quit() instead
448  */
449 #define g_main_quit(loop)       g_main_loop_quit(loop)
450
451 /**
452  * g_main_destroy:
453  * @loop: a #GMainLoop
454  *
455  * Frees the memory allocated for the #GMainLoop.
456  *
457  * Deprecated: 2.2: Use g_main_loop_unref() instead
458  */
459 #define g_main_destroy(loop)    g_main_loop_unref(loop)
460
461 /**
462  * g_main_is_running:
463  * @loop: a #GMainLoop
464  *
465  * Checks if the main loop is running.
466  *
467  * Returns: %TRUE if the main loop is running
468  *
469  * Deprecated: 2.2: Use g_main_loop_is_running() instead
470  */
471 #define g_main_is_running(loop) g_main_loop_is_running(loop)
472
473 /**
474  * g_main_iteration:
475  * @may_block: set to %TRUE if it should block (i.e. wait) until an event
476  *     source becomes ready. It will return after an event source has been
477  *     processed. If set to %FALSE it will return immediately if no event
478  *     source is ready to be processed.
479  *
480  * Runs a single iteration for the default #GMainContext.
481  *
482  * Returns: %TRUE if more events are pending.
483  *
484  * Deprecated: 2.2: Use g_main_context_iteration() instead.
485  */
486 #define g_main_iteration(may_block) g_main_context_iteration (NULL, may_block)
487
488 /**
489  * g_main_pending:
490  *
491  * Checks if any events are pending for the default #GMainContext
492  * (i.e. ready to be processed).
493  *
494  * Returns: %TRUE if any events are pending.
495  *
496  * Deprected: 2.2: Use g_main_context_pending() instead.
497  */
498 #define g_main_pending()            g_main_context_pending (NULL)
499
500 /**
501  * g_main_set_poll_func:
502  * @func: the function to call to poll all file descriptors
503  *
504  * Sets the function to use for the handle polling of file descriptors
505  * for the default main context.
506  *
507  * Deprecated: 2.2: Use g_main_context_set_poll_func() again
508  */
509 #define g_main_set_poll_func(func)  g_main_context_set_poll_func (NULL, func)
510
511 #endif /* G_DISABLE_DEPRECATED */
512
513 /* Source manipulation by ID */
514 gboolean g_source_remove                     (guint          tag);
515 gboolean g_source_remove_by_user_data        (gpointer       user_data);
516 gboolean g_source_remove_by_funcs_user_data  (GSourceFuncs  *funcs,
517                                               gpointer       user_data);
518
519 /* Idles, child watchers and timeouts */
520 guint    g_timeout_add_full         (gint            priority,
521                                      guint           interval,
522                                      GSourceFunc     function,
523                                      gpointer        data,
524                                      GDestroyNotify  notify);
525 guint    g_timeout_add              (guint           interval,
526                                      GSourceFunc     function,
527                                      gpointer        data);
528 guint    g_timeout_add_seconds_full (gint            priority,
529                                      guint           interval,
530                                      GSourceFunc     function,
531                                      gpointer        data,
532                                      GDestroyNotify  notify);
533 guint    g_timeout_add_seconds      (guint           interval,
534                                      GSourceFunc     function,
535                                      gpointer        data);
536 guint    g_child_watch_add_full     (gint            priority,
537                                      GPid            pid,
538                                      GChildWatchFunc function,
539                                      gpointer        data,
540                                      GDestroyNotify  notify);
541 guint    g_child_watch_add          (GPid            pid,
542                                      GChildWatchFunc function,
543                                      gpointer        data);
544 guint    g_idle_add                 (GSourceFunc     function,
545                                      gpointer        data);
546 guint    g_idle_add_full            (gint            priority,
547                                      GSourceFunc     function,
548                                      gpointer        data,
549                                      GDestroyNotify  notify);
550 gboolean g_idle_remove_by_data      (gpointer        data);
551
552 void     g_main_context_invoke_full (GMainContext   *context,
553                                      gint            priority,
554                                      GSourceFunc     function,
555                                      gpointer        data,
556                                      GDestroyNotify  notify);
557 void     g_main_context_invoke      (GMainContext   *context,
558                                      GSourceFunc     function,
559                                      gpointer        data);
560
561 /* Hook for GClosure / GSource integration. Don't touch */
562 GLIB_VAR GSourceFuncs g_timeout_funcs;
563 GLIB_VAR GSourceFuncs g_child_watch_funcs;
564 GLIB_VAR GSourceFuncs g_idle_funcs;
565
566 G_END_DECLS
567
568 #endif /* __G_MAIN_H__ */