2007-06-26 19:11:00 +00:00
|
|
|
/*
|
2014-03-07 13:38:51 +00:00
|
|
|
* vireventpoll.h: Poll based event loop for monitoring file handles
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Daniel P. Berrange
|
|
|
|
* Copyright (C) 2007 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2007-06-26 19:11:00 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#pragma once
|
2007-06-26 19:11:00 +00:00
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#include "internal.h"
|
2007-06-26 19:11:00 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollAddHandle: register a callback for monitoring file handle events
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
|
|
|
* @fd: file handle to monitor for events
|
2008-02-29 12:53:10 +00:00
|
|
|
* @events: bitset of events to watch from POLLnnn constants
|
|
|
|
* @cb: callback to invoke when an event occurs
|
2007-06-26 19:11:00 +00:00
|
|
|
* @opaque: user data to pass to callback
|
|
|
|
*
|
|
|
|
* returns -1 if the file handle cannot be registered, 0 upon success
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollAddHandle(int fd, int events,
|
2012-12-03 01:57:00 +00:00
|
|
|
virEventHandleCallback cb,
|
|
|
|
void *opaque,
|
|
|
|
virFreeCallback ff);
|
2007-06-26 19:11:00 +00:00
|
|
|
|
2007-09-19 01:27:32 +00:00
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollUpdateHandle: change event set for a monitored file handle
|
2007-09-19 01:27:32 +00:00
|
|
|
*
|
2008-11-19 16:19:36 +00:00
|
|
|
* @watch: watch whose handle to update
|
2008-02-29 12:53:10 +00:00
|
|
|
* @events: bitset of events to watch from POLLnnn constants
|
2007-09-19 01:27:32 +00:00
|
|
|
*
|
|
|
|
* Will not fail if fd exists
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
void virEventPollUpdateHandle(int watch, int events);
|
2007-09-19 01:27:32 +00:00
|
|
|
|
2007-06-26 19:11:00 +00:00
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollRemoveHandle: unregister a callback from a file handle
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
2008-11-19 16:19:36 +00:00
|
|
|
* @watch: watch whose handle to remove
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
|
|
|
* returns -1 if the file handle was not registered, 0 upon success
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollRemoveHandle(int watch);
|
2007-06-26 19:11:00 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollAddTimeout: register a callback for a timer event
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
2007-09-19 01:27:32 +00:00
|
|
|
* @frequency: time between events in milliseconds
|
2008-02-29 12:53:10 +00:00
|
|
|
* @cb: callback to invoke when an event occurs
|
2007-06-26 19:11:00 +00:00
|
|
|
* @opaque: user data to pass to callback
|
|
|
|
*
|
2007-09-19 01:27:32 +00:00
|
|
|
* Setting frequency to -1 will disable the timer. Setting the frequency
|
|
|
|
* to zero will cause it to fire on every event loop iteration.
|
|
|
|
*
|
2007-06-26 19:11:00 +00:00
|
|
|
* returns -1 if the file handle cannot be registered, a positive
|
|
|
|
* integer timer id upon success
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollAddTimeout(int frequency,
|
2012-12-03 01:57:00 +00:00
|
|
|
virEventTimeoutCallback cb,
|
|
|
|
void *opaque,
|
|
|
|
virFreeCallback ff);
|
2007-09-19 01:27:32 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollUpdateTimeout: change frequency for a timer
|
2007-09-19 01:27:32 +00:00
|
|
|
*
|
|
|
|
* @timer: timer id to change
|
|
|
|
* @frequency: time between events in milliseconds
|
|
|
|
*
|
|
|
|
* Setting frequency to -1 will disable the timer. Setting the frequency
|
|
|
|
* to zero will cause it to fire on every event loop iteration.
|
|
|
|
*
|
|
|
|
* Will not fail if timer exists
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
void virEventPollUpdateTimeout(int timer, int frequency);
|
2007-06-26 19:11:00 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollRemoveTimeout: unregister a callback for a timer
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
|
|
|
* @timer: the timer id to remove
|
|
|
|
*
|
|
|
|
* returns -1 if the timer was not registered, 0 upon success
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollRemoveTimeout(int timer);
|
2007-06-26 19:11:00 +00:00
|
|
|
|
2008-12-04 22:14:15 +00:00
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollInit: Initialize the event loop
|
2008-12-04 22:14:15 +00:00
|
|
|
*
|
|
|
|
* returns -1 if initialization failed
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollInit(void);
|
2008-12-04 22:14:15 +00:00
|
|
|
|
2007-06-26 19:11:00 +00:00
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollRunOnce: run a single iteration of the event loop.
|
2007-06-26 19:11:00 +00:00
|
|
|
*
|
|
|
|
* Blocks the caller until at least one file handle has an
|
|
|
|
* event or the first timer expires.
|
|
|
|
*
|
|
|
|
* returns -1 if the event monitoring failed
|
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollRunOnce(void);
|
2007-06-26 19:11:00 +00:00
|
|
|
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollFromNativeEvents(int events);
|
|
|
|
int virEventPollToNativeEvents(int events);
|
2008-11-04 23:33:57 +00:00
|
|
|
|
|
|
|
|
2008-12-04 22:14:15 +00:00
|
|
|
/**
|
2011-02-24 17:58:04 +00:00
|
|
|
* virEventPollInterrupt: wakeup any thread waiting in poll()
|
2008-12-04 22:14:15 +00:00
|
|
|
*
|
2017-01-25 06:35:42 +00:00
|
|
|
* return -1 if wakeup failed
|
2008-12-04 22:14:15 +00:00
|
|
|
*/
|
2011-02-24 17:58:04 +00:00
|
|
|
int virEventPollInterrupt(void);
|