2 * Copyright (c) 1980, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1980, 1988, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)leave.c 8.1 (Berkeley) 6/6/93
31 * $FreeBSD: src/usr.bin/leave/leave.c,v 1.5.2.2 2001/07/30 09:43:30 dd Exp $
43 static void doalarm(u_int
) __dead2
;
44 static void usage(void) __dead2
;
49 * Reminds you when you have to leave.
50 * Leave prompts for input and goes away if you hit return.
51 * It nags you like a mother hen.
54 main(int argc
, char **argv
)
61 int plusnow
, t_12_hour
;
64 if (setlocale(LC_TIME
, "") == NULL
)
68 #define MSG1 "When do you have to leave? "
69 (void)write(1, MSG1
, sizeof(MSG1
) - 1);
70 cp
= fgets(buf
, sizeof(buf
), stdin
);
71 if (cp
== NULL
|| *cp
== '\n')
84 for (hours
= 0; (c
= *cp
) && c
!= '\n'; ++cp
) {
87 hours
= hours
* 10 + (c
- '0');
89 minutes
= hours
% 100;
92 if (minutes
< 0 || minutes
> 59)
95 secs
= hours
* 60 * 60 + minutes
* 60;
103 /* Convert tol to 12 hr time (0:00...11:59) */
107 /* Convert tm to 12 hr time (0:00...11:59) */
109 t_12_hour
= t
->tm_hour
- 12;
111 t_12_hour
= t
->tm_hour
;
113 if (hours
< t_12_hour
||
114 (hours
== t_12_hour
&& minutes
<= t
->tm_min
))
115 /* Leave time is in the past so we add 12 hrs */
118 secs
= (hours
- t_12_hour
) * 60 * 60;
119 secs
+= (minutes
- t
->tm_min
) * 60;
120 secs
-= now
% 60; /* truncate (now + secs) to min */
134 if ((pid
= fork())) {
135 (void)time(&daytime
);
137 strftime(tb
, sizeof(tb
), nl_langinfo(D_T_FMT
),
138 localtime(&daytime
));
139 printf("Alarm set for %s. (pid %d)\n", tb
, pid
);
142 sleep((u_int
)2); /* let parent print set message */
147 * if write fails, we've lost the terminal through someone else
148 * causing a vhangup by logging in.
150 #define FIVEMIN (5 * 60)
151 #define MSG2 "\07\07You have to leave in 5 minutes.\n"
152 if (secs
>= FIVEMIN
) {
153 sleep(secs
- FIVEMIN
);
154 if (write(1, MSG2
, sizeof(MSG2
) - 1) != sizeof(MSG2
) - 1)
160 #define MSG3 "\07\07Just one more minute!\n"
161 if (secs
>= ONEMIN
) {
162 sleep(secs
- ONEMIN
);
163 if (write(1, MSG3
, sizeof(MSG3
) - 1) != sizeof(MSG3
) - 1)
167 #define MSG4 "\07\07Time to leave!\n"
168 for (bother
= 10; bother
--;) {
169 sleep((u_int
)ONEMIN
);
170 if (write(1, MSG4
, sizeof(MSG4
) - 1) != sizeof(MSG4
) - 1)
174 #define MSG5 "\07\07That was the last time I'll tell you. Bye.\n"
175 (void)write(1, MSG5
, sizeof(MSG5
) - 1);
182 fprintf(stderr
, "usage: leave [[+]hhmm]\n");