2011-12-16 12:49:28 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Intel Corporation.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Neil Roberts <neil@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "cogl-poll.h"
|
2013-04-16 18:46:03 -04:00
|
|
|
#include "cogl-poll-private.h"
|
2011-12-16 12:49:28 -05:00
|
|
|
#include "cogl-winsys-private.h"
|
2013-04-16 18:46:03 -04:00
|
|
|
#include "cogl-renderer-private.h"
|
2011-12-16 12:49:28 -05:00
|
|
|
|
2013-05-13 21:51:55 -04:00
|
|
|
struct _CoglPollSource
|
2013-04-18 11:26:21 -04:00
|
|
|
{
|
|
|
|
int fd;
|
2013-05-13 21:51:55 -04:00
|
|
|
CoglPollPrepareCallback prepare;
|
2013-04-18 11:26:21 -04:00
|
|
|
CoglPollDispatchCallback dispatch;
|
|
|
|
void *user_data;
|
2013-05-13 21:51:55 -04:00
|
|
|
};
|
2013-04-18 11:26:21 -04:00
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
int
|
|
|
|
cogl_poll_renderer_get_info (CoglRenderer *renderer,
|
|
|
|
CoglPollFD **poll_fds,
|
|
|
|
int *n_poll_fds,
|
|
|
|
int64_t *timeout)
|
2011-12-16 12:49:28 -05:00
|
|
|
{
|
2013-04-18 11:26:21 -04:00
|
|
|
GList *l;
|
2011-12-16 12:49:28 -05:00
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
_COGL_RETURN_VAL_IF_FAIL (cogl_is_renderer (renderer), 0);
|
|
|
|
_COGL_RETURN_VAL_IF_FAIL (poll_fds != NULL, 0);
|
|
|
|
_COGL_RETURN_VAL_IF_FAIL (n_poll_fds != NULL, 0);
|
|
|
|
_COGL_RETURN_VAL_IF_FAIL (timeout != NULL, 0);
|
2011-12-16 12:49:28 -05:00
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
*poll_fds = (void *)renderer->poll_fds->data;
|
|
|
|
*n_poll_fds = renderer->poll_fds->len;
|
2013-05-13 21:51:55 -04:00
|
|
|
*timeout = -1;
|
2011-12-16 12:49:28 -05:00
|
|
|
|
2013-04-18 09:19:43 -04:00
|
|
|
if (!COGL_LIST_EMPTY (&renderer->idle_closures))
|
2011-12-16 12:49:28 -05:00
|
|
|
{
|
2013-04-18 09:19:43 -04:00
|
|
|
*timeout = 0;
|
|
|
|
return renderer->poll_fds_age;
|
2013-02-03 04:03:39 -05:00
|
|
|
}
|
2013-04-16 18:46:03 -04:00
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
for (l = renderer->poll_sources; l; l = l->next)
|
|
|
|
{
|
|
|
|
CoglPollSource *source = l->data;
|
2013-05-13 21:51:55 -04:00
|
|
|
if (source->prepare)
|
2013-04-18 11:26:21 -04:00
|
|
|
{
|
2013-05-13 21:51:55 -04:00
|
|
|
int64_t source_timeout = source->prepare (source->user_data);
|
|
|
|
if (source_timeout == 0)
|
|
|
|
{
|
|
|
|
*timeout = 0;
|
|
|
|
return renderer->poll_fds_age;
|
|
|
|
}
|
|
|
|
else if (source_timeout > 0 &&
|
|
|
|
(*timeout == -1 || *timeout > source_timeout))
|
|
|
|
*timeout = source_timeout;
|
2013-04-18 11:26:21 -04:00
|
|
|
}
|
|
|
|
}
|
2011-12-16 12:49:28 -05:00
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
return renderer->poll_fds_age;
|
2011-12-16 12:49:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-04-16 18:46:03 -04:00
|
|
|
cogl_poll_renderer_dispatch (CoglRenderer *renderer,
|
|
|
|
const CoglPollFD *poll_fds,
|
|
|
|
int n_poll_fds)
|
2011-12-16 12:49:28 -05:00
|
|
|
{
|
2013-04-18 11:26:21 -04:00
|
|
|
GList *l;
|
2011-12-16 12:49:28 -05:00
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
_COGL_RETURN_IF_FAIL (cogl_is_renderer (renderer));
|
|
|
|
|
2013-04-18 09:19:43 -04:00
|
|
|
_cogl_closure_list_invoke_no_args (&renderer->idle_closures);
|
2012-11-12 11:58:10 -05:00
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
for (l = renderer->poll_sources; l; l = l->next)
|
|
|
|
{
|
|
|
|
CoglPollSource *source = l->data;
|
|
|
|
int i;
|
|
|
|
|
2013-05-13 21:51:55 -04:00
|
|
|
if (source->fd == -1)
|
|
|
|
{
|
|
|
|
source->dispatch (source->user_data, 0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
for (i = 0; i < n_poll_fds; i++)
|
|
|
|
{
|
|
|
|
const CoglPollFD *pollfd = &poll_fds[i];
|
|
|
|
|
|
|
|
if (pollfd->fd == source->fd)
|
|
|
|
{
|
2013-05-13 21:51:55 -04:00
|
|
|
source->dispatch (source->user_data, pollfd->revents);
|
2013-04-18 11:26:21 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-16 18:46:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
find_pollfd (CoglRenderer *renderer, int fd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < renderer->poll_fds->len; i++)
|
|
|
|
{
|
|
|
|
CoglPollFD *pollfd = &g_array_index (renderer->poll_fds, CoglPollFD, i);
|
|
|
|
|
|
|
|
if (pollfd->fd == fd)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_poll_renderer_remove_fd (CoglRenderer *renderer, int fd)
|
|
|
|
{
|
|
|
|
int i = find_pollfd (renderer, fd);
|
2013-04-18 11:26:21 -04:00
|
|
|
GList *l;
|
2013-04-16 18:46:03 -04:00
|
|
|
|
|
|
|
if (i < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_array_remove_index_fast (renderer->poll_fds, i);
|
|
|
|
renderer->poll_fds_age++;
|
2013-04-18 11:26:21 -04:00
|
|
|
|
|
|
|
for (l = renderer->poll_sources; l; l = l->next)
|
|
|
|
{
|
|
|
|
CoglPollSource *source = l->data;
|
|
|
|
if (source->fd == fd)
|
|
|
|
{
|
|
|
|
renderer->poll_sources =
|
|
|
|
g_list_delete_link (renderer->poll_sources, l);
|
|
|
|
g_slice_free (CoglPollSource, source);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-04-16 18:46:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_poll_renderer_add_fd (CoglRenderer *renderer,
|
|
|
|
int fd,
|
2013-04-18 11:26:21 -04:00
|
|
|
CoglPollFDEvent events,
|
2013-05-13 21:51:55 -04:00
|
|
|
CoglPollPrepareCallback prepare,
|
2013-04-18 11:26:21 -04:00
|
|
|
CoglPollDispatchCallback dispatch,
|
|
|
|
void *user_data)
|
2013-04-16 18:46:03 -04:00
|
|
|
{
|
|
|
|
CoglPollFD pollfd = {
|
|
|
|
fd,
|
|
|
|
events
|
|
|
|
};
|
2013-04-18 11:26:21 -04:00
|
|
|
CoglPollSource *source;
|
2013-04-16 18:46:03 -04:00
|
|
|
|
|
|
|
_cogl_poll_renderer_remove_fd (renderer, fd);
|
|
|
|
|
2013-04-18 11:26:21 -04:00
|
|
|
source = g_slice_new0 (CoglPollSource);
|
|
|
|
source->fd = fd;
|
2013-05-13 21:51:55 -04:00
|
|
|
source->prepare = prepare;
|
2013-04-18 11:26:21 -04:00
|
|
|
source->dispatch = dispatch;
|
|
|
|
source->user_data = user_data;
|
|
|
|
|
|
|
|
renderer->poll_sources = g_list_prepend (renderer->poll_sources, source);
|
|
|
|
|
2013-04-16 18:46:03 -04:00
|
|
|
g_array_append_val (renderer->poll_fds, pollfd);
|
|
|
|
renderer->poll_fds_age++;
|
2011-12-16 12:49:28 -05:00
|
|
|
}
|
2013-04-18 09:19:43 -04:00
|
|
|
|
2013-05-13 21:51:55 -04:00
|
|
|
CoglPollSource *
|
|
|
|
_cogl_poll_renderer_add_source (CoglRenderer *renderer,
|
|
|
|
CoglPollPrepareCallback prepare,
|
|
|
|
CoglPollDispatchCallback dispatch,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
CoglPollSource *source;
|
|
|
|
|
|
|
|
source = g_slice_new0 (CoglPollSource);
|
|
|
|
source->fd = -1;
|
|
|
|
source->prepare = prepare;
|
|
|
|
source->dispatch = dispatch;
|
|
|
|
source->user_data = user_data;
|
|
|
|
|
|
|
|
renderer->poll_sources = g_list_prepend (renderer->poll_sources, source);
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_poll_renderer_remove_source (CoglRenderer *renderer,
|
|
|
|
CoglPollSource *source)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = renderer->poll_sources; l; l = l->next)
|
|
|
|
{
|
|
|
|
if (l->data == source)
|
|
|
|
{
|
|
|
|
renderer->poll_sources =
|
|
|
|
g_list_delete_link (renderer->poll_sources, l);
|
|
|
|
g_slice_free (CoglPollSource, source);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-18 09:19:43 -04:00
|
|
|
CoglClosure *
|
|
|
|
_cogl_poll_renderer_add_idle (CoglRenderer *renderer,
|
|
|
|
CoglIdleCallback idle_cb,
|
|
|
|
void *user_data,
|
|
|
|
CoglUserDataDestroyCallback destroy_cb)
|
|
|
|
{
|
|
|
|
return _cogl_closure_list_add (&renderer->idle_closures,
|
|
|
|
idle_cb,
|
|
|
|
user_data,
|
|
|
|
destroy_cb);
|
|
|
|
}
|