udevadm-settle.c revision 2eec67acbb00593e414549a7e5b35eb7dd776b1b
/*
* Copyright (C) 2006-2009 Kay Sievers <kay@vrfy.org>
* Copyright (C) 2009 Canonical Ltd.
* Copyright (C) 2009 Scott James Remnant <scott@netsplit.com>
*
* 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.
*
* 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/>.
*/
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <getopt.h>
#include <poll.h>
#include "udev.h"
#include "util.h"
static void help(void) {
printf("%s settle OPTIONS\n\n"
"Wait for pending udev events.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" -t --timeout=SECONDS Maximum time to wait for events\n"
" -E --exit-if-exists=FILE Stop waiting if file exists\n"
}
{}
};
unsigned int timeout = 120;
int c;
struct udev_queue *queue;
int rc = EXIT_FAILURE;
switch (c) {
case 't': {
int r;
if (r < 0) {
};
break;
}
case 'E':
break;
case 'h':
help();
return EXIT_SUCCESS;
case 's':
case 'e':
case 'q':
log_info("Option -%c no longer supported.", c);
return EXIT_FAILURE;
case '?':
return EXIT_FAILURE;
default:
assert_not_reached("Unknown argument");
}
}
return EXIT_FAILURE;
}
/* guarantee that the udev daemon isn't pre-processing */
if (getuid() == 0) {
log_debug("no connection to daemon");
return EXIT_SUCCESS;
}
}
}
if (!queue) {
log_error("unable to get udev queue");
return EXIT_FAILURE;
}
log_debug("queue is empty, nothing to watch");
rc = EXIT_SUCCESS;
goto out;
}
for (;;) {
rc = EXIT_SUCCESS;
break;
}
/* exit if queue is empty */
if (udev_queue_get_queue_is_empty(queue)) {
rc = EXIT_SUCCESS;
break;
}
/* wake up when queue is empty */
}
out:
return rc;
}
const struct udevadm_cmd udevadm_settle = {
.name = "settle",
.cmd = adm_settle,
.help = "Wait for pending udev events",
};