blob: e9a30daf26ca75fe116136b34f571a048bdf2e16 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
Manuel Novoa III cad53642003-03-19 09:13:01 +00003 * sleep implementation for busybox
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
Manuel Novoa III cad53642003-03-19 09:13:01 +00005 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00006 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenc4996011999-10-20 22:08:37 +00008 */
9
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 compliant */
11/* BB_AUDIT GNU issues -- fancy version matches except args must be ints. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/sleep.html */
13
14/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
15 *
16 * Rewritten to do proper arg and error checking.
17 * Also, added a 'fancy' configuration to accept multiple args with
18 * time suffixes for seconds, minutes, hours, and days.
19 */
20
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000022
Denis Vlasenko99912ca2007-04-10 15:43:37 +000023/* This is a NOFORK applet. Be very careful! */
24
25
26#if ENABLE_FEATURE_FANCY_SLEEP
Denis Vlasenko13858992006-10-08 12:49:22 +000027static const struct suffix_mult sfx[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +000028 { "s", 1 },
29 { "m", 60 },
30 { "h", 60*60 },
31 { "d", 24*60*60 },
32 { NULL, 0 }
33};
34#endif
35
Denis Vlasenko06af2162007-02-03 17:28:39 +000036int sleep_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000037int sleep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000038{
Denis Vlasenko99912ca2007-04-10 15:43:37 +000039 unsigned duration;
Manuel Novoa III cad53642003-03-19 09:13:01 +000040
Denis Vlasenko99912ca2007-04-10 15:43:37 +000041#if ENABLE_FEATURE_FANCY_SLEEP
Manuel Novoa III cad53642003-03-19 09:13:01 +000042
43 if (argc < 2) {
44 bb_show_usage();
Eric Andersen3cf52d11999-10-12 22:26:06 +000045 }
46
Manuel Novoa III cad53642003-03-19 09:13:01 +000047 ++argv;
48 duration = 0;
49 do {
Denis Vlasenko13858992006-10-08 12:49:22 +000050 duration += xatoul_range_sfx(*argv, 0, UINT_MAX-duration, sfx);
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 } while (*++argv);
52
Denis Vlasenko99912ca2007-04-10 15:43:37 +000053#else /* FEATURE_FANCY_SLEEP */
Manuel Novoa III cad53642003-03-19 09:13:01 +000054
55 if (argc != 2) {
56 bb_show_usage();
57 }
58
Denis Vlasenko13858992006-10-08 12:49:22 +000059 duration = xatou(argv[1]);
Manuel Novoa III cad53642003-03-19 09:13:01 +000060
Denis Vlasenko99912ca2007-04-10 15:43:37 +000061#endif /* FEATURE_FANCY_SLEEP */
Manuel Novoa III cad53642003-03-19 09:13:01 +000062
63 if (sleep(duration)) {
64 bb_perror_nomsg_and_die();
65 }
66
Matt Kraai3e856ce2000-12-01 02:55:13 +000067 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +000068}