| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /*
- *
- * Embedded Linux library
- *
- * Copyright (C) 2011-2014 Intel Corporation. All rights reserved.
- *
- * 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.1 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, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include <unistd.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include "useful.h"
- #include "idle.h"
- #include "main-private.h"
- #include "private.h"
- /**
- * SECTION:idle
- * @short_description: Idle processing support
- *
- * Idle processing support
- */
- /**
- * l_idle:
- *
- * Opague object representing the idle time event.
- */
- struct l_idle {
- union {
- l_idle_notify_cb_t callback;
- l_idle_oneshot_cb_t oneshot;
- };
- l_idle_destroy_cb_t destroy;
- void *user_data;
- int id;
- };
- static void idle_destroy(void *user_data)
- {
- struct l_idle *idle = user_data;
- if (idle->destroy)
- idle->destroy(idle->user_data);
- l_free(idle);
- }
- static void idle_callback(void *user_data)
- {
- struct l_idle *idle = user_data;
- if (idle->callback)
- idle->callback(idle, idle->user_data);
- }
- static void oneshot_callback(void *user_data)
- {
- struct l_idle *idle = user_data;
- if (idle->oneshot)
- idle->oneshot(idle->user_data);
- idle_remove(idle->id);
- }
- /**
- * l_idle_create:
- * @callback: idle callback function
- * @user_data: user data provided to idle callback function
- * @destroy: destroy function for user data
- *
- * Create a new idle event processing object.
- *
- * The idle callback will be called until canceled using l_idle_remove().
- *
- * Returns: a newly allocated #l_idle object
- **/
- LIB_EXPORT struct l_idle *l_idle_create(l_idle_notify_cb_t callback,
- void *user_data, l_idle_destroy_cb_t destroy)
- {
- struct l_idle *idle;
- if (unlikely(!callback))
- return NULL;
- idle = l_new(struct l_idle, 1);
- idle->callback = callback;
- idle->destroy = destroy;
- idle->user_data = user_data;
- idle->id = idle_add(idle_callback, idle, 0, idle_destroy);
- if (idle->id < 0) {
- l_free(idle);
- return NULL;
- }
- return idle;
- }
- /**
- * l_idle_oneshot:
- * @callback: idle callback function
- * @user_data: user data provided to idle callback function
- * @destroy: destroy function for user data
- *
- * Create a new idle event processing object. The callback will be called
- * only once at which point the object will be destroyed.
- *
- * Returns: true if the oneshot idle object could be created successfully.
- **/
- LIB_EXPORT bool l_idle_oneshot(l_idle_oneshot_cb_t callback, void *user_data,
- l_idle_destroy_cb_t destroy)
- {
- struct l_idle *idle;
- if (unlikely(!callback))
- return NULL;
- idle = l_new(struct l_idle, 1);
- idle->oneshot = callback;
- idle->destroy = destroy;
- idle->user_data = user_data;
- idle->id = idle_add(oneshot_callback, idle,
- IDLE_FLAG_NO_WARN_DANGLING, idle_destroy);
- if (idle->id < 0) {
- l_free(idle);
- return false;
- }
- return true;
- }
- /**
- * l_idle_remove:
- * @idle: idle object
- *
- * Remove idle event processing object.
- **/
- LIB_EXPORT void l_idle_remove(struct l_idle *idle)
- {
- if (unlikely(!idle))
- return;
- idle_remove(idle->id);
- }
|