mirror of
https://salsa.debian.org/ha-team/libqb
synced 2025-08-26 14:44:58 +00:00
109 lines
2.6 KiB
C
109 lines
2.6 KiB
C
/*
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
|
*
|
|
* Author: Angus Salkeld <asalkeld@redhat.com>
|
|
*
|
|
* This file is part of libqb.
|
|
*
|
|
* libqb 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.
|
|
*
|
|
* libqb 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 libqb. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef QB_LOOP_INT_DEFINED
|
|
#define QB_LOOP_INT_DEFINED
|
|
|
|
#include <qb/qbloop.h>
|
|
|
|
struct qb_loop;
|
|
struct qb_loop_item;
|
|
|
|
enum qb_loop_type {
|
|
QB_LOOP_FD,
|
|
QB_LOOP_JOB,
|
|
QB_LOOP_TIMER,
|
|
QB_LOOP_SIG,
|
|
};
|
|
|
|
struct qb_loop_item {
|
|
struct qb_list_head list;
|
|
struct qb_loop_source *source;
|
|
void *user_data;
|
|
enum qb_loop_type type;
|
|
};
|
|
|
|
struct qb_loop_level {
|
|
enum qb_loop_priority priority;
|
|
int32_t to_process;
|
|
int32_t todo;
|
|
struct qb_list_head wait_head;
|
|
struct qb_list_head job_head;
|
|
struct qb_loop *l;
|
|
};
|
|
|
|
struct qb_loop_source {
|
|
struct qb_loop *l;
|
|
void (*dispatch_and_take_back)(struct qb_loop_item *i,
|
|
enum qb_loop_priority p);
|
|
int32_t (*poll)(struct qb_loop_source* s, int32_t ms_timeout);
|
|
};
|
|
|
|
struct qb_loop {
|
|
struct qb_loop_level level[3];
|
|
int32_t stop_requested;
|
|
struct qb_loop_source * timer_source;
|
|
struct qb_loop_source * job_source;
|
|
struct qb_loop_source * fd_source;
|
|
struct qb_loop_source * signal_source;
|
|
};
|
|
|
|
struct qb_loop *
|
|
qb_loop_default_get(void);
|
|
|
|
struct qb_loop_source *
|
|
qb_loop_jobs_create(struct qb_loop *l);
|
|
|
|
struct qb_loop_source*
|
|
qb_loop_timer_create(struct qb_loop *l);
|
|
|
|
struct qb_loop_source*
|
|
qb_loop_poll_create(struct qb_loop *l);
|
|
|
|
struct qb_loop_source *
|
|
qb_loop_signals_create(struct qb_loop *l);
|
|
|
|
void qb_loop_jobs_destroy(struct qb_loop *l);
|
|
|
|
void qb_loop_timer_destroy(struct qb_loop *l);
|
|
|
|
void qb_loop_poll_destroy(struct qb_loop *l);
|
|
|
|
void qb_loop_signals_destroy(struct qb_loop *l);
|
|
|
|
int32_t qb_loop_timer_msec_duration_to_expire(struct qb_loop_source *timer_source);
|
|
|
|
void qb_loop_level_item_add(struct qb_loop_level *level,
|
|
struct qb_loop_item *job);
|
|
|
|
void qb_loop_level_item_del(struct qb_loop_level *level,
|
|
struct qb_loop_item *job);
|
|
|
|
enum qb_poll_entry_state {
|
|
QB_POLL_ENTRY_EMPTY,
|
|
QB_POLL_ENTRY_JOBLIST,
|
|
QB_POLL_ENTRY_DELETED,
|
|
QB_POLL_ENTRY_ACTIVE,
|
|
};
|
|
|
|
#endif /* QB_LOOP_INT_DEFINED */
|
|
|