sleep.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * sleep implementation for busybox
  4. *
  5. * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
  10. *
  11. * Rewritten to do proper arg and error checking.
  12. * Also, added a 'fancy' configuration to accept multiple args with
  13. * time suffixes for seconds, minutes, hours, and days.
  14. */
  15. //config:config SLEEP
  16. //config: bool "sleep (2.4 kb)"
  17. //config: default y
  18. //config: help
  19. //config: sleep is used to pause for a specified number of seconds.
  20. //config: It comes in 2 versions:
  21. //config: - small: takes one integer parameter
  22. //config: - fancy:
  23. //config: * takes multiple integer arguments with suffixes:
  24. //config: sleep 1d 2h 3m 15s
  25. //config: * allows fractional numbers:
  26. //config: sleep 2.3s 4.5h sleeps for 16202.3 seconds
  27. //config: fancy is more compatible with coreutils sleep, but it adds around
  28. //config: 1k of code.
  29. //config:
  30. //config:config FEATURE_FANCY_SLEEP
  31. //config: bool "Enable multiple arguments and s/m/h/d suffixes"
  32. //config: default y
  33. //config: depends on SLEEP
  34. //config: help
  35. //config: Allow sleep to pause for specified minutes, hours, and days.
  36. /* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells */
  37. //applet:IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP))
  38. //kbuild:lib-$(CONFIG_SLEEP) += sleep.o
  39. //kbuild:lib-$(CONFIG_ASH_SLEEP) += sleep.o
  40. /* BB_AUDIT SUSv3 compliant */
  41. /* BB_AUDIT GNU issues -- fancy version matches except args must be ints. */
  42. /* http://www.opengroup.org/onlinepubs/007904975/utilities/sleep.html */
  43. //usage:#define sleep_trivial_usage
  44. //usage: IF_FEATURE_FANCY_SLEEP("[") "N" IF_FEATURE_FANCY_SLEEP("]...")
  45. //usage:#define sleep_full_usage "\n\n"
  46. //usage: IF_NOT_FEATURE_FANCY_SLEEP("Pause for N seconds")
  47. //usage: IF_FEATURE_FANCY_SLEEP(
  48. //usage: "Pause for a time equal to the total of the args given, where each arg can\n"
  49. //usage: "have an optional suffix of (s)econds, (m)inutes, (h)ours, or (d)ays")
  50. //usage:
  51. //usage:#define sleep_example_usage
  52. //usage: "$ sleep 2\n"
  53. //usage: "[2 second delay results]\n"
  54. //usage: IF_FEATURE_FANCY_SLEEP(
  55. //usage: "$ sleep 1d 3h 22m 8s\n"
  56. //usage: "[98528 second delay results]\n")
  57. #include "libbb.h"
  58. int sleep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  59. int sleep_main(int argc UNUSED_PARAM, char **argv)
  60. {
  61. duration_t duration;
  62. /* Note: sleep_main may be directly called from ash as a builtin.
  63. * This brings some complications:
  64. * + we can't use xfunc here
  65. * + we can't use bb_show_usage
  66. * + applet_name can be the name of the shell
  67. */
  68. argv = skip_dash_dash(argv);
  69. if (!argv[0]) {
  70. /* Without this, bare "sleep" in ash shows _ash_ --help */
  71. /* (ash can be the "sh" applet as well, so check 2nd char) */
  72. if (ENABLE_ASH_SLEEP && applet_name[1] != 'l') {
  73. bb_simple_error_msg("sleep: missing operand");
  74. return EXIT_FAILURE;
  75. }
  76. bb_show_usage();
  77. }
  78. /* GNU sleep accepts "inf", "INF", "infinity" and "INFINITY" */
  79. if (strncasecmp(argv[0], "inf", 3) == 0)
  80. for (;;)
  81. sleep(INT_MAX);
  82. //FIXME: in ash, "sleep 123qwerty" as a builtin aborts the shell
  83. #if ENABLE_FEATURE_FANCY_SLEEP
  84. duration = 0;
  85. do {
  86. duration += parse_duration_str(*argv);
  87. } while (*++argv);
  88. sleep_for_duration(duration);
  89. #else /* simple */
  90. duration = xatou(*argv);
  91. sleep(duration);
  92. #endif
  93. return EXIT_SUCCESS;
  94. }