(main): Move function body to end of file.
[platform/upstream/coreutils.git] / src / sum.c
1 /* sum -- checksum and count the blocks in a file
2    Copyright (C) 1986, 1989, 1991, 1995 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Like BSD sum or SysV sum -r, except like SysV sum if -s option is given. */
19
20 /* Written by Kayvan Aghaiepour and David MacKenzie. */
21
22 #include <config.h>
23
24 #include <stdio.h>
25 #include <sys/types.h>
26 #include <getopt.h>
27 #include "system.h"
28 #include "version.h"
29 #include "error.h"
30
31 int safe_read ();
32
33 /* The name this program was run with. */
34 char *program_name;
35
36 /* Nonzero if any of the files read were the standard input. */
37 static int have_read_stdin;
38
39 /* Right-rotate 32-bit integer variable C. */
40 #define ROTATE_RIGHT(c) if ((c) & 01) (c) = ((c) >>1) + 0x8000; else (c) >>= 1;
41
42 /* If non-zero, display usage information and exit.  */
43 static int show_help;
44
45 /* If non-zero, print the version on standard output then exit.  */
46 static int show_version;
47
48 static struct option const longopts[] =
49 {
50   {"sysv", no_argument, NULL, 's'},
51   {"help", no_argument, &show_help, 1},
52   {"version", no_argument, &show_version, 1},
53   {NULL, 0, NULL, 0}
54 };
55
56 static void
57 usage (status)
58      int status;
59 {
60   if (status != 0)
61     fprintf (stderr, _("Try `%s --help' for more information.\n"),
62              program_name);
63   else
64     {
65       printf (_("\
66 Usage: %s [OPTION]... [FILE]...\n\
67 "),
68               program_name);
69       printf (_("\
70 Print checksum and block counts for each FILE.\n\
71 \n\
72   -r              defeat -s, use BSD sum algorithm, use 1K blocks\n\
73   -s, --sysv      use System V sum algorithm, use 512 bytes blocks\n\
74       --help      display this help and exit\n\
75       --version   output version information and exit\n\
76 \n\
77 With no FILE, or when FILE is -, read standard input.\n\
78 "));
79     }
80   exit (status);
81 }
82
83 /* Calculate and print the rotated checksum and the size in 1K blocks
84    of file FILE, or of the standard input if FILE is "-".
85    If PRINT_NAME is >1, print FILE next to the checksum and size.
86    The checksum varies depending on sizeof(int).
87    Return 0 if successful, -1 if an error occurs. */
88
89 static int
90 bsd_sum_file (file, print_name)
91      char *file;
92      int print_name;
93 {
94   register FILE *fp;
95   register unsigned long checksum = 0; /* The checksum mod 2^16. */
96   register long total_bytes = 0; /* The number of bytes. */
97   register int ch;              /* Each character read. */
98
99   if (!strcmp (file, "-"))
100     {
101       fp = stdin;
102       have_read_stdin = 1;
103     }
104   else
105     {
106       fp = fopen (file, "r");
107       if (fp == NULL)
108         {
109           error (0, errno, "%s", file);
110           return -1;
111         }
112     }
113
114   /* This algorithm seems to depend on sign extension in `ch' in order to
115      give the right results.  Ick.  */
116   while ((ch = getc (fp)) != EOF)
117     {
118       total_bytes++;
119       ROTATE_RIGHT (checksum);
120       checksum += ch;
121       checksum &= 0xffff;       /* Keep it within bounds. */
122     }
123
124   if (ferror (fp))
125     {
126       error (0, errno, "%s", file);
127       if (strcmp (file, "-"))
128         fclose (fp);
129       return -1;
130     }
131
132   if (strcmp (file, "-") && fclose (fp) == EOF)
133     {
134       error (0, errno, "%s", file);
135       return -1;
136     }
137
138   printf ("%05lu %5ld", checksum, (total_bytes + 1024 - 1) / 1024);
139   if (print_name > 1)
140     printf (" %s", file);
141   putchar ('\n');
142
143   return 0;
144 }
145
146 /* Calculate and print the checksum and the size in 512-byte blocks
147    of file FILE, or of the standard input if FILE is "-".
148    If PRINT_NAME is >0, print FILE next to the checksum and size.
149    Return 0 if successful, -1 if an error occurs. */
150
151 static int
152 sysv_sum_file (file, print_name)
153      char *file;
154      int print_name;
155 {
156   int fd;
157   unsigned char buf[8192];
158   register int bytes_read;
159   register unsigned long checksum = 0;
160   long total_bytes = 0;
161
162   if (!strcmp (file, "-"))
163     {
164       fd = 0;
165       have_read_stdin = 1;
166     }
167   else
168     {
169       fd = open (file, O_RDONLY);
170       if (fd == -1)
171         {
172           error (0, errno, "%s", file);
173           return -1;
174         }
175     }
176
177   while ((bytes_read = safe_read (fd, buf, sizeof buf)) > 0)
178     {
179       register int i;
180
181       for (i = 0; i < bytes_read; i++)
182         checksum += buf[i];
183       total_bytes += bytes_read;
184     }
185
186   if (bytes_read < 0)
187     {
188       error (0, errno, "%s", file);
189       if (strcmp (file, "-"))
190         close (fd);
191       return -1;
192     }
193
194   if (strcmp (file, "-") && close (fd) == -1)
195     {
196       error (0, errno, "%s", file);
197       return -1;
198     }
199
200   printf ("%lu %ld", checksum % 0xffff, (total_bytes + 512 - 1) / 512);
201   if (print_name)
202     printf (" %s", file);
203   putchar ('\n');
204
205   return 0;
206 }
207
208 void
209 main (argc, argv)
210      int argc;
211      char **argv;
212 {
213   int errors = 0;
214   int optc;
215   int files_given;
216   int (*sum_func) () = bsd_sum_file;
217
218   program_name = argv[0];
219   have_read_stdin = 0;
220
221   while ((optc = getopt_long (argc, argv, "rs", longopts, (int *) 0)) != -1)
222     {
223       switch (optc)
224         {
225         case 0:
226           break;
227
228         case 'r':               /* For SysV compatibility. */
229           sum_func = bsd_sum_file;
230           break;
231
232         case 's':
233           sum_func = sysv_sum_file;
234           break;
235
236         default:
237           usage (1);
238         }
239     }
240
241   if (show_version)
242     {
243       printf ("sum - %s\n", version_string);
244       exit (0);
245     }
246
247   if (show_help)
248     usage (0);
249
250   files_given = argc - optind;
251   if (files_given == 0)
252     {
253       if ((*sum_func) ("-", files_given) < 0)
254         errors = 1;
255     }
256   else
257     for (; optind < argc; optind++)
258       if ((*sum_func) (argv[optind], files_given) < 0)
259         errors = 1;
260
261   if (have_read_stdin && fclose (stdin) == EOF)
262     error (1, errno, "-");
263   exit (errors);
264 }
265