2004-06-23 23:17:30 +00:00
|
|
|
#ifndef foomainloopapihfoo
|
|
|
|
|
#define foomainloopapihfoo
|
|
|
|
|
|
2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
|
|
|
|
This file is part of polypaudio.
|
|
|
|
|
|
|
|
|
|
polypaudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
License, or (at your option) any later version.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
|
|
|
|
polypaudio is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2004-11-14 14:58:54 +00:00
|
|
|
Lesser General Public License for more details.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
License along with polypaudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
#include <sys/time.h>
|
2004-08-14 20:25:32 +00:00
|
|
|
#include <time.h>
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
#include "cdecl.h"
|
2004-08-06 23:07:48 +00:00
|
|
|
|
2004-08-15 00:02:26 +00:00
|
|
|
/** \file
|
|
|
|
|
*
|
|
|
|
|
* Main loop abstraction layer. Both the polypaudio core and the
|
|
|
|
|
* polypaudio client library use a main loop abstraction layer. Due to
|
|
|
|
|
* this it is possible to embed polypaudio into other
|
|
|
|
|
* applications easily. Two main loop implemenations are
|
|
|
|
|
* currently available:
|
|
|
|
|
* \li A minimal implementation based on the C library's poll() function (See \ref mainloop.h)
|
|
|
|
|
* \li A wrapper around the GLIB main loop. Use this to embed polypaudio into your GLIB/GTK+/GNOME programs (See \ref glib-mainloop.h)
|
|
|
|
|
*
|
|
|
|
|
* The structure pa_mainloop_api is used as vtable for the main loop abstraction.
|
2004-08-17 13:28:52 +00:00
|
|
|
*
|
|
|
|
|
* This mainloop abstraction layer has no direct support for UNIX signals. Generic, mainloop implementation agnostic support is available throught \ref mainloop-signal.h.
|
2004-08-15 00:02:26 +00:00
|
|
|
* */
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
PA_C_DECL_BEGIN
|
|
|
|
|
|
|
|
|
|
/** A bitmask for IO events */
|
2004-08-05 19:53:57 +00:00
|
|
|
enum pa_io_event_flags {
|
2004-08-14 20:25:32 +00:00
|
|
|
PA_IO_EVENT_NULL = 0, /**< No event */
|
|
|
|
|
PA_IO_EVENT_INPUT = 1, /**< Input event */
|
|
|
|
|
PA_IO_EVENT_OUTPUT = 2, /**< Output event */
|
|
|
|
|
PA_IO_EVENT_HANGUP = 4, /**< Hangup event */
|
2004-08-19 23:14:59 +00:00
|
|
|
PA_IO_EVENT_ERROR = 8 /**< Error event */
|
2004-06-23 23:17:30 +00:00
|
|
|
};
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
/** \struct pa_io_event
|
2004-08-17 17:17:22 +00:00
|
|
|
* An opaque IO event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
struct pa_io_event;
|
2004-08-14 20:25:32 +00:00
|
|
|
|
|
|
|
|
/** \struct pa_defer_event
|
2004-08-17 17:17:22 +00:00
|
|
|
* An opaque deferred event source object. Events of this type are triggered once in every main loop iteration */
|
2004-08-05 19:53:57 +00:00
|
|
|
struct pa_defer_event;
|
2004-08-14 20:25:32 +00:00
|
|
|
|
|
|
|
|
/** \struct pa_time_event
|
2004-08-17 17:17:22 +00:00
|
|
|
* An opaque timer event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
struct pa_time_event;
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
/** An abstract mainloop API vtable */
|
2004-06-23 23:17:30 +00:00
|
|
|
struct pa_mainloop_api {
|
2004-08-14 20:25:32 +00:00
|
|
|
/** A pointer to some private, arbitrary data of the main loop implementation */
|
2004-06-23 23:17:30 +00:00
|
|
|
void *userdata;
|
|
|
|
|
|
2004-08-15 00:02:26 +00:00
|
|
|
/** Create a new IO event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
struct pa_io_event* (*io_new)(struct pa_mainloop_api*a, int fd, enum pa_io_event_flags events, void (*callback) (struct pa_mainloop_api*a, struct pa_io_event* e, int fd, enum pa_io_event_flags events, void *userdata), void *userdata);
|
2004-08-15 00:02:26 +00:00
|
|
|
|
|
|
|
|
/** Enable or disable IO events on this object */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*io_enable)(struct pa_io_event* e, enum pa_io_event_flags events);
|
2004-08-15 00:02:26 +00:00
|
|
|
|
|
|
|
|
/** Free a IO event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*io_free)(struct pa_io_event* e);
|
2004-08-15 00:02:26 +00:00
|
|
|
|
|
|
|
|
/** Set a function that is called when the IO event source is destroyed. Use this to free the userdata argument if required */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*io_set_destroy)(struct pa_io_event *e, void (*callback) (struct pa_mainloop_api*a, struct pa_io_event *e, void *userdata));
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-08-15 00:02:26 +00:00
|
|
|
/** Create a new timer event source object for the specified Unix time */
|
2004-08-05 19:53:57 +00:00
|
|
|
struct pa_time_event* (*time_new)(struct pa_mainloop_api*a, const struct timeval *tv, void (*callback) (struct pa_mainloop_api*a, struct pa_time_event* e, const struct timeval *tv, void *userdata), void *userdata);
|
2004-08-15 00:02:26 +00:00
|
|
|
|
|
|
|
|
/** Restart a running or expired timer event source with a new Unix time */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*time_restart)(struct pa_time_event* e, const struct timeval *tv);
|
2004-08-15 00:02:26 +00:00
|
|
|
|
|
|
|
|
/** Free a deferred timer event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*time_free)(struct pa_time_event* e);
|
2004-08-15 00:02:26 +00:00
|
|
|
|
|
|
|
|
/** Set a function that is called when the timer event source is destroyed. Use this to free the userdata argument if required */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*time_set_destroy)(struct pa_time_event *e, void (*callback) (struct pa_mainloop_api*a, struct pa_time_event *e, void *userdata));
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
/** Create a new deferred event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
struct pa_defer_event* (*defer_new)(struct pa_mainloop_api*a, void (*callback) (struct pa_mainloop_api*a, struct pa_defer_event* e, void *userdata), void *userdata);
|
2004-08-14 20:25:32 +00:00
|
|
|
|
|
|
|
|
/** Enable or disable a deferred event source temporarily */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*defer_enable)(struct pa_defer_event* e, int b);
|
2004-08-14 20:25:32 +00:00
|
|
|
|
|
|
|
|
/** Free a deferred event source object */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*defer_free)(struct pa_defer_event* e);
|
2004-08-14 20:25:32 +00:00
|
|
|
|
|
|
|
|
/** Set a function that is called when the deferred event source is destroyed. Use this to free the userdata argument if required */
|
2004-08-05 19:53:57 +00:00
|
|
|
void (*defer_set_destroy)(struct pa_defer_event *e, void (*callback) (struct pa_mainloop_api*a, struct pa_defer_event *e, void *userdata));
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
/** Exit the main loop and return the specfied retval*/
|
2004-06-23 23:17:30 +00:00
|
|
|
void (*quit)(struct pa_mainloop_api*a, int retval);
|
|
|
|
|
};
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
/** Run the specified callback function once from the main loop using an anonymous defer event. */
|
2004-08-05 19:53:57 +00:00
|
|
|
void pa_mainloop_api_once(struct pa_mainloop_api*m, void (*callback)(struct pa_mainloop_api*m, void *userdata), void *userdata);
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
PA_C_DECL_END
|
2004-08-06 23:07:48 +00:00
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
#endif
|