Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / bin / sleep / sleep.c
1 /*
2  * Copyright (c) 1988, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#) Copyright (c) 1988, 1993, 1994 The Regents of the University of California.  All rights reserved.
34  * @(#)sleep.c  8.3 (Berkeley) 4/2/94
35  * $FreeBSD: src/bin/sleep/sleep.c,v 1.9.2.1 2001/08/01 05:23:25 obrien Exp $
36  * $DragonFly: src/bin/sleep/sleep.c,v 1.2 2003/06/17 04:22:50 dillon Exp $
37  */
38
39 #include <ctype.h>
40 #include <limits.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <time.h>
44 #include <unistd.h>
45
46 int main __P((int, char *[]));
47 void usage __P((void));
48
49 int
50 main(argc, argv)
51         int argc;
52         char *argv[];
53 {
54         struct timespec time_to_sleep;
55         long l;
56         int ch, neg;
57         char *p;
58
59         while ((ch = getopt(argc, argv, "")) != -1)
60                 switch(ch) {
61                 case '?':
62                 default:
63                         usage();
64                         /* NOTREACHED */
65                 }
66         argc -= optind;
67         argv += optind;
68
69         if (argc != 1) {
70                 usage();
71                 /* NOTREACHED */
72         }
73
74         p = argv[0];
75
76         /* Skip over leading whitespaces. */
77         while (isspace((unsigned char)*p))
78                 ++p;
79
80         /* Check for optional `+' or `-' sign. */
81         neg = 0;
82         if (*p == '-') {
83                 neg = 1;
84                 ++p;
85         }
86         else if (*p == '+')
87                 ++p;
88
89         /* Calculate seconds. */
90         if (isdigit((unsigned char)*p)) {
91                 l = strtol(p, &p, 10);
92                 if (l > INT_MAX) {
93                         /*
94                          * Avoid overflow when `seconds' is huge.  This assumes
95                          * that the maximum value for a time_t is >= INT_MAX.
96                          */
97                         l = INT_MAX;
98                 }
99         } else
100                 l = 0;
101         time_to_sleep.tv_sec = (time_t)l;
102
103         /* Calculate nanoseconds. */
104         time_to_sleep.tv_nsec = 0;
105
106         if (*p == '.') {                /* Decimal point. */
107                 l = 100000000L;
108                 do {
109                         if (isdigit((unsigned char)*++p))
110                                 time_to_sleep.tv_nsec += (*p - '0') * l;
111                         else
112                                 break;
113                 } while (l /= 10);
114         }
115
116         if (!neg && (time_to_sleep.tv_sec > 0 || time_to_sleep.tv_nsec > 0))
117                 (void)nanosleep(&time_to_sleep, (struct timespec *)NULL);
118
119         exit(0);
120 }
121
122 void
123 usage()
124 {
125
126         (void)fprintf(stderr, "usage: sleep seconds\n");
127         exit(1);
128 }