2006-04-05 02:08:10 +04:00
/*
2008-09-10 04:40:42 +04:00
* Copyright ( C ) 2006 - 2008 Kay Sievers < kay @ vrfy . org >
2006-04-05 02:08:10 +04:00
*
2008-09-10 04:40:42 +04:00
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 2 of the License , or
* ( at your option ) any later version .
2006-04-05 02:08:10 +04:00
*
2008-09-10 04:40:42 +04:00
* This program 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 General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
2006-04-05 02:08:10 +04:00
*/
# include <stdlib.h>
# include <stddef.h>
# include <string.h>
# include <stdio.h>
# include <unistd.h>
# include <errno.h>
# include <dirent.h>
# include <fcntl.h>
# include <syslog.h>
2007-05-17 04:17:13 +04:00
# include <getopt.h>
2006-04-05 02:08:10 +04:00
# include <sys/stat.h>
# include <sys/types.h>
# include "udev.h"
2006-04-06 21:46:24 +04:00
# define DEFAULT_TIMEOUT 180
2006-04-05 02:08:10 +04:00
# define LOOP_PER_SECOND 20
2008-09-06 17:45:31 +04:00
int udevadm_settle ( struct udev * udev , int argc , char * argv [ ] )
2006-04-05 02:08:10 +04:00
{
2007-05-17 04:17:13 +04:00
static const struct option options [ ] = {
2008-10-02 18:49:05 +04:00
{ " timeout " , required_argument , NULL , ' t ' } ,
2008-12-08 18:48:54 +03:00
{ " quiet " , no_argument , NULL , ' q ' } ,
2008-10-02 18:49:05 +04:00
{ " help " , no_argument , NULL , ' h ' } ,
2007-05-17 04:17:13 +04:00
{ }
} ;
2008-10-01 11:42:03 +04:00
int timeout = DEFAULT_TIMEOUT ;
2008-12-08 18:48:54 +03:00
int quiet = 0 ;
2008-10-24 11:37:37 +04:00
struct udev_queue * udev_queue = NULL ;
2008-10-01 11:42:03 +04:00
int loop ;
int rc = 0 ;
2006-04-05 02:08:10 +04:00
2008-09-06 17:45:31 +04:00
dbg ( udev , " version %s \n " , VERSION ) ;
2006-04-05 02:08:10 +04:00
2007-05-17 04:17:13 +04:00
while ( 1 ) {
2008-10-01 11:42:03 +04:00
int option ;
int seconds ;
2008-12-08 18:48:54 +03:00
option = getopt_long ( argc , argv , " t:qh " , options , NULL ) ;
2007-05-17 04:17:13 +04:00
if ( option = = - 1 )
break ;
2006-04-05 02:08:10 +04:00
2007-05-17 04:17:13 +04:00
switch ( option ) {
case ' t ' :
seconds = atoi ( optarg ) ;
2008-12-08 18:48:54 +03:00
if ( seconds > = 0 )
2006-08-21 04:38:20 +04:00
timeout = seconds ;
else
fprintf ( stderr , " invalid timeout value \n " ) ;
2008-09-06 17:45:31 +04:00
dbg ( udev , " timeout=%i \n " , timeout ) ;
2007-05-17 04:17:13 +04:00
break ;
2008-12-08 18:48:54 +03:00
case ' q ' :
quiet = 1 ;
break ;
2007-05-17 04:17:13 +04:00
case ' h ' :
2008-12-08 18:48:54 +03:00
printf ( " Usage: udevadm settle [--help] [--timeout=<seconds>] [--quiet] \n \n " ) ;
2006-04-05 02:08:10 +04:00
goto exit ;
}
}
2008-10-01 11:42:03 +04:00
udev_queue = udev_queue_new ( udev ) ;
if ( udev_queue = = NULL )
goto exit ;
2006-04-05 02:08:10 +04:00
loop = timeout * LOOP_PER_SECOND ;
while ( loop - - ) {
2008-10-01 11:42:03 +04:00
if ( udev_queue_get_queue_is_empty ( udev_queue ) )
break ;
2006-04-05 02:08:10 +04:00
usleep ( 1000 * 1000 / LOOP_PER_SECOND ) ;
}
2009-02-05 14:40:15 +03:00
/* if we reached the timeout, print the list of remaining events */
2008-10-01 11:42:03 +04:00
if ( loop < = 0 ) {
struct udev_list_entry * list_entry ;
2008-12-08 18:48:54 +03:00
if ( ! quiet ) {
info ( udev , " timeout waiting for udev queue \n " ) ;
2009-01-23 04:19:12 +03:00
printf ( " \n udevadm settle - timeout of %i seconds reached, the event queue contains: \n " , timeout ) ;
2008-12-08 18:48:54 +03:00
udev_list_entry_foreach ( list_entry , udev_queue_get_queued_list_entry ( udev_queue ) )
printf ( " %s (%s) \n " ,
udev_list_entry_get_name ( list_entry ) ,
udev_list_entry_get_value ( list_entry ) ) ;
}
2008-10-01 11:42:03 +04:00
rc = 1 ;
}
2006-04-05 02:08:10 +04:00
exit :
2008-10-01 11:42:03 +04:00
udev_queue_unref ( udev_queue ) ;
2006-04-05 02:08:10 +04:00
return rc ;
}