home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / usr.sbin / sendmail / mailstats / mailstats.c next >
Encoding:
C/C++ Source or Header  |  1991-04-19  |  3.2 KB  |  96 lines

  1. /*
  2.  * Copyright (c) 1983 Eric P. Allman
  3.  * Copyright (c) 1988 Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  *    This product includes software developed by the University of
  17.  *    California, Berkeley and its contributors.
  18.  * 4. Neither the name of the University nor the names of its contributors
  19.  *    may be used to endorse or promote products derived from this software
  20.  *    without specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  */
  35.  
  36. #ifndef lint
  37. char copyright[] =
  38. "@(#) Copyright (c) 1988 Regents of the University of California.\n\
  39.  All rights reserved.\n";
  40. #endif /* not lint */
  41.  
  42. #ifndef lint
  43. static char sccsid[] = "@(#)mailstats.c    5.7 (Berkeley) 6/1/90";
  44. #endif /* not lint */
  45.  
  46. #include <sys/file.h>
  47. #include <sendmail.h>
  48. #include <mailstats.h>
  49. #include "pathnames.h"
  50.  
  51. main(argc, argv)
  52.     int argc;
  53.     char **argv;
  54. {
  55.     extern char *optarg;
  56.     extern int optind;
  57.     struct statistics stat;
  58.     register int i;
  59.     int ch, fd;
  60.     char *sfile, *ctime();
  61.  
  62.     sfile = _PATH_MAILSTATS;
  63.     while ((ch = getopt(argc, argv, "f:")) != EOF)
  64.         switch((char)ch) {
  65.         case 'f':
  66.             sfile = optarg;
  67.             break;
  68.         case '?':
  69.         default:
  70.             fputs("usage: mailstats [-f file]\n", stderr);
  71.             exit(EX_USAGE);
  72.         }
  73.     argc -= optind;
  74.     argv += optind;
  75.  
  76.     if ((fd = open(sfile, O_RDONLY)) < 0) {
  77.         fputs("mailstats: ", stderr);
  78.         perror(sfile);
  79.         exit(EX_NOINPUT);
  80.     }
  81.     if (read(fd, &stat, sizeof(stat)) != sizeof(stat) ||
  82.         stat.stat_size != sizeof(stat)) {
  83.         fputs("mailstats: file size changed.\n", stderr);
  84.         exit(EX_OSERR);
  85.     }
  86.  
  87.     printf("Statistics from %s", ctime(&stat.stat_itime));
  88.     printf(" M msgsfr bytes_from  msgsto   bytes_to\n");
  89.     for (i = 0; i < MAXMAILERS; i++)
  90.         if (stat.stat_nf[i] || stat.stat_nt[i])
  91.             printf("%2d %6ld %10ldK %6ld %10ldK\n", i,
  92.                 stat.stat_nf[i], stat.stat_bf[i],
  93.                 stat.stat_nt[i], stat.stat_bt[i]);
  94.     exit(0);
  95. }
  96.