bd221442ef907049758f00688cdbdf2877ebee3a
[gapil.git] / sources / myls.c
1 /* myls.c
2  * 
3  * Copyright (C) 2002 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 myls.c: An example ls
22  *
23  * Author: S. Piccardi Jan. 2003
24  *
25  * $Id: myls.c,v 1.1 2003/01/03 23:16:05 piccardi Exp $
26  *
27  *****************************************************************************/
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <dirent.h>        /* directory */
31 #include <stdlib.h>        /* C standard library */
32 #include <unistd.h>
33
34 /*
35  * Program myls
36  *
37  * List files and their size inside a given directory
38  */
39 /* Help printing routine */
40 void usage(void);
41 /* computation function for DirScan */
42 int do_ls(struct dirent * direntry);
43
44 int main(int argc, char *argv[]) 
45 {
46     int i;
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, "hs:l:wrbf")) != -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     DirScan(argv[1], do_ls);
81     exit(0);
82 }
83 /*
84  * Routine to print file name and size inside DirScan
85  */
86 int do_ls(struct dirent * direntry) 
87 {
88     struct stat data;
89     stat(direntry->d_name, &data);                          /* get stat data */
90     printf("File: %s \t size: %d\n", direntry->d_name, data.st_size);
91     return 0;
92 }
93 /*
94  * routine to print usage info and exit
95  */
96 void usage(void) {
97     printf("Program myls: list file in a directory \n");
98     printf("Usage:\n");
99     printf("  myls [-h] dirname \n");
100     printf("  -h           print this help\n");
101     exit(1);
102 }