Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / sources / sleep-me.c
1 /* sleep-me.c
2  * 
3  * Copyright (C) 2012 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /*****************************************************************************
20  *
21  * File sleep-me.c: An example on how NOT to wait for a time...
22  * thanks to M.E. for suggesting it (for serious) some time ago in the
23  * FLUG (Firenze Linux User Group) mailing list
24  *
25  * Author: S. Piccardi Jan. 2012
26  *
27  *****************************************************************************/
28 #include <sys/types.h>   /* primitive system data types */
29 #include <sys/stat.h>    /* file characteristics constants and functions */
30 #include <unistd.h>      /* unix standard library */
31 #include <stdio.h>
32 #include <time.h>
33 #include <stdlib.h>
34
35 /*
36  * Program sleep-me.c
37  *
38  * Wait for N second (burning CPU...)
39  */
40 /* Help printing routine */
41 void usage(void);
42 /* computation function for dir_scan */
43 int main(int argc, char *argv[]) 
44 {
45     time_t now, end;
46     int i, wait=0;
47     /*
48      * Input section: decode command line parameters 
49      * Use getopt function
50      */
51     opterr = 0;  /* don't want writing to stderr */
52     while ( (i = getopt(argc, argv, "h")) != -1) {
53         switch (i) {
54         /* 
55          * Handling options 
56          */ 
57         case 'h':                                            /* help option */
58             printf("Wrong -h option use\n");
59             usage();
60             return -1;
61             break;
62         case '?':                                    /* unrecognized options */
63             printf("Unrecognized options -%c\n",optopt);
64             usage();
65         default:                                       /* should not reached */
66             usage();
67         }
68     }
69     /* ***********************************************************
70      * 
71      *           Options processing completed
72      *
73      *                Main code beginning
74      * 
75      * ***********************************************************/
76     if ((argc - optind) != 1) {          /* There must be remaing parameters */
77         printf("Wrong number of arguments %d\n", argc - optind);
78         usage();
79     }
80     printf("I will burn CPU for %s seconds\n", argv[1]);
81     wait = atoi(argv[1]);
82     printf("wait %d sec.\n", wait);
83     if (wait != 0) {
84         end = time(NULL)+ wait;
85     } else {
86         usage();
87     }
88     printf("now %d, end %d sec.\n",now, end);
89     now = time(NULL);
90     while (now < end) { 
91         now = time(NULL);
92     }
93     exit(0);
94 }
95 /*
96  * routine to print usage info and exit
97  */
98 void usage(void) {
99     printf("Program sleep-me: wait burning CPU cicles \n");
100     printf("Usage:\n");
101     printf("  sleep-me [-h] -t sec \n");
102     printf("  -t sec       wait sec seconds\n");
103     printf("  -h           print this help\n");
104     exit(1);
105 }