2006-04-05 05:08:10 +07:00
|
|
|
/*
|
2008-09-10 07:40:42 +07:00
|
|
|
* Copyright (C) 2006-2008 Kay Sievers <kay@vrfy.org>
|
2006-04-05 05:08:10 +07:00
|
|
|
*
|
2008-09-10 07:40:42 +07: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 05:08:10 +07:00
|
|
|
*
|
2008-09-10 07:40:42 +07: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 05:08:10 +07: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 07:17:13 +07:00
|
|
|
#include <getopt.h>
|
2006-04-05 05:08:10 +07:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "udev.h"
|
|
|
|
|
2006-04-07 00:46:24 +07:00
|
|
|
#define DEFAULT_TIMEOUT 180
|
2006-04-05 05:08:10 +07:00
|
|
|
#define LOOP_PER_SECOND 20
|
|
|
|
|
2008-09-06 20:45:31 +07:00
|
|
|
int udevadm_settle(struct udev *udev, int argc, char *argv[])
|
2006-04-05 05:08:10 +07:00
|
|
|
{
|
2007-05-17 07:17:13 +07:00
|
|
|
static const struct option options[] = {
|
2008-10-02 21:49:05 +07:00
|
|
|
{ "timeout", required_argument, NULL, 't' },
|
2008-12-08 22:48:54 +07:00
|
|
|
{ "quiet", no_argument, NULL, 'q' },
|
2008-10-02 21:49:05 +07:00
|
|
|
{ "help", no_argument, NULL, 'h' },
|
2007-05-17 07:17:13 +07:00
|
|
|
{}
|
|
|
|
};
|
2008-10-01 14:42:03 +07:00
|
|
|
int timeout = DEFAULT_TIMEOUT;
|
2008-12-08 22:48:54 +07:00
|
|
|
int quiet = 0;
|
2008-10-24 14:37:37 +07:00
|
|
|
struct udev_queue *udev_queue = NULL;
|
2008-10-01 14:42:03 +07:00
|
|
|
int loop;
|
|
|
|
int rc = 0;
|
2006-04-05 05:08:10 +07:00
|
|
|
|
2008-09-06 20:45:31 +07:00
|
|
|
dbg(udev, "version %s\n", VERSION);
|
2006-04-05 05:08:10 +07:00
|
|
|
|
2007-05-17 07:17:13 +07:00
|
|
|
while (1) {
|
2008-10-01 14:42:03 +07:00
|
|
|
int option;
|
|
|
|
int seconds;
|
|
|
|
|
2008-12-08 22:48:54 +07:00
|
|
|
option = getopt_long(argc, argv, "t:qh", options, NULL);
|
2007-05-17 07:17:13 +07:00
|
|
|
if (option == -1)
|
|
|
|
break;
|
2006-04-05 05:08:10 +07:00
|
|
|
|
2007-05-17 07:17:13 +07:00
|
|
|
switch (option) {
|
|
|
|
case 't':
|
|
|
|
seconds = atoi(optarg);
|
2008-12-08 22:48:54 +07:00
|
|
|
if (seconds >= 0)
|
2006-08-21 07:38:20 +07:00
|
|
|
timeout = seconds;
|
|
|
|
else
|
|
|
|
fprintf(stderr, "invalid timeout value\n");
|
2008-09-06 20:45:31 +07:00
|
|
|
dbg(udev, "timeout=%i\n", timeout);
|
2007-05-17 07:17:13 +07:00
|
|
|
break;
|
2008-12-08 22:48:54 +07:00
|
|
|
case 'q':
|
|
|
|
quiet = 1;
|
|
|
|
break;
|
2007-05-17 07:17:13 +07:00
|
|
|
case 'h':
|
2008-12-08 22:48:54 +07:00
|
|
|
printf("Usage: udevadm settle [--help] [--timeout=<seconds>] [--quiet]\n\n");
|
2006-04-05 05:08:10 +07:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-01 14:42:03 +07:00
|
|
|
udev_queue = udev_queue_new(udev);
|
|
|
|
if (udev_queue == NULL)
|
|
|
|
goto exit;
|
2006-04-05 05:08:10 +07:00
|
|
|
loop = timeout * LOOP_PER_SECOND;
|
|
|
|
while (loop--) {
|
2008-10-01 14:42:03 +07:00
|
|
|
if (udev_queue_get_queue_is_empty(udev_queue))
|
|
|
|
break;
|
2006-04-05 05:08:10 +07:00
|
|
|
usleep(1000 * 1000 / LOOP_PER_SECOND);
|
|
|
|
}
|
2009-02-05 18:40:15 +07:00
|
|
|
|
|
|
|
/* if we reached the timeout, print the list of remaining events */
|
2008-10-01 14:42:03 +07:00
|
|
|
if (loop <= 0) {
|
|
|
|
struct udev_list_entry *list_entry;
|
|
|
|
|
2008-12-08 22:48:54 +07:00
|
|
|
if (!quiet) {
|
|
|
|
info(udev, "timeout waiting for udev queue\n");
|
2009-01-23 08:19:12 +07:00
|
|
|
printf("\nudevadm settle - timeout of %i seconds reached, the event queue contains:\n", timeout);
|
2008-12-08 22:48:54 +07: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 14:42:03 +07:00
|
|
|
rc = 1;
|
|
|
|
}
|
2006-04-05 05:08:10 +07:00
|
|
|
exit:
|
2008-10-01 14:42:03 +07:00
|
|
|
udev_queue_unref(udev_queue);
|
2006-04-05 05:08:10 +07:00
|
|
|
return rc;
|
|
|
|
}
|