home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / a / txtutils / textutil.9 / textutil / textutils-1.9 / src / uniq.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-24  |  9.0 KB  |  380 lines

  1. /* uniq -- remove duplicate lines from a sorted file
  2.    Copyright (C) 1986, 1991 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., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Written by Richard Stallman and David MacKenzie. */
  19.  
  20. #ifdef HAVE_CONFIG_H
  21. #if defined (CONFIG_BROKETS)
  22. /* We use <config.h> instead of "config.h" so that a compilation
  23.    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
  24.    (which it would do because it found this file in $srcdir).  */
  25. #include <config.h>
  26. #else
  27. #include "config.h"
  28. #endif
  29. #endif
  30.  
  31. /* Get isblank from GNU libc.  */
  32. #define _GNU_SOURCE
  33.  
  34. #include <stdio.h>
  35. #include <getopt.h>
  36. #include <sys/types.h>
  37. #include "system.h"
  38. #include "linebuffer.h"
  39. #include "version.h"
  40.  
  41. #define min(x, y) ((x) < (y) ? (x) : (y))
  42.  
  43. void error ();
  44.  
  45. static char *find_field ();
  46. static int different ();
  47. static void check_file ();
  48. static void usage ();
  49. static void writeline ();
  50.  
  51. /* The name this program was run with. */
  52. char *program_name;
  53.  
  54. /* Number of fields to skip on each line when doing comparisons. */
  55. static int skip_fields;
  56.  
  57. /* Number of chars to skip after skipping any fields. */
  58. static int skip_chars;
  59.  
  60. /* Number of chars to compare; if 0, compare the whole lines. */
  61. static int check_chars;
  62.  
  63. enum countmode
  64. {
  65.   count_occurrences,        /* -c Print count before output lines. */
  66.   count_none            /* Default.  Do not print counts. */
  67. };
  68.  
  69. /* Whether and how to precede the output lines with a count of the number of
  70.    times they occurred in the input. */
  71. static enum countmode countmode;
  72.  
  73. enum output_mode
  74. {
  75.   output_repeated,        /* -d Only lines that are repeated. */
  76.   output_unique,        /* -u Only lines that are not repeated. */
  77.   output_all            /* Default.  Print first copy of each line. */
  78. };
  79.  
  80. /* Which lines to output. */
  81. static enum output_mode mode;
  82.  
  83. /* If non-zero, display usage information and exit.  */
  84. static int show_help;
  85.  
  86. /* If non-zero, print the version on standard output then exit.  */
  87. static int show_version;
  88.  
  89. static struct option const longopts[] =
  90. {
  91.   {"count", no_argument, NULL, 'c'},
  92.   {"repeated", no_argument, NULL, 'd'},
  93.   {"unique", no_argument, NULL, 'u'},
  94.   {"skip-fields", required_argument, NULL, 'f'},
  95.   {"skip-chars", required_argument, NULL, 's'},
  96.   {"check-chars", required_argument, NULL, 'w'},
  97.   {"help", no_argument, &show_help, 1},
  98.   {"version", no_argument, &show_version, 1},
  99.   {NULL, 0, NULL, 0}
  100. };
  101.  
  102. void
  103. main (argc, argv)
  104.      int argc;
  105.      char *argv[];
  106. {
  107.   int optc;
  108.   char *infile = "-", *outfile = "-";
  109.  
  110.   program_name = argv[0];
  111.   skip_chars = 0;
  112.   skip_fields = 0;
  113.   check_chars = 0;
  114.   mode = output_all;
  115.   countmode = count_none;
  116.  
  117.   while ((optc = getopt_long (argc, argv, "0123456789cdf:s:uw:", longopts,
  118.                   (int *) 0)) != EOF)
  119.     {
  120.       switch (optc)
  121.     {
  122.     case 0:
  123.       break;
  124.  
  125.     case '0':
  126.     case '1':
  127.     case '2':
  128.     case '3':
  129.     case '4':
  130.     case '5':
  131.     case '6':
  132.     case '7':
  133.     case '8':
  134.     case '9':
  135.       skip_fields = skip_fields * 10 + optc - '0';
  136.       break;
  137.  
  138.     case 'c':
  139.       countmode = count_occurrences;
  140.       break;
  141.  
  142.     case 'd':
  143.       mode = output_repeated;
  144.       break;
  145.  
  146.     case 'f':        /* Like '-#'. */
  147.       skip_fields = atoi (optarg);
  148.       break;
  149.  
  150.     case 's':        /* Like '+#'. */
  151.       skip_chars = atoi (optarg);
  152.       break;
  153.  
  154.     case 'u':
  155.       mode = output_unique;
  156.       break;
  157.  
  158.     case 'w':
  159.       check_chars = atoi (optarg);
  160.       break;
  161.  
  162.     default:
  163.       usage (1);
  164.     }
  165.     }
  166.  
  167.   if (show_version)
  168.     {
  169.       printf ("%s\n", version_string);
  170.       exit (0);
  171.     }
  172.  
  173.   if (show_help)
  174.     usage (0);
  175.  
  176.   if (optind >= 2 && strcmp (argv[optind - 1], "--") != 0)
  177.     {
  178.       /* Interpret non-option arguments with leading `+' only
  179.      if we haven't seen `--'.  */
  180.       while (optind < argc && argv[optind][0] == '+')
  181.     skip_chars = atoi (argv[optind++]);
  182.     }
  183.  
  184.   if (optind < argc)
  185.     infile = argv[optind++];
  186.  
  187.   if (optind < argc)
  188.     outfile = argv[optind++];
  189.  
  190.   if (optind < argc)
  191.     usage (1);            /* Extra arguments. */
  192.  
  193.   check_file (infile, outfile);
  194.  
  195.   exit (0);
  196. }
  197.  
  198. /* Process input file INFILE with output to OUTFILE.
  199.    If either is "-", use the standard I/O stream for it instead. */
  200.  
  201. static void
  202. check_file (infile, outfile)
  203.      char *infile, *outfile;
  204. {
  205.   FILE *istream;
  206.   FILE *ostream;
  207.   struct linebuffer lb1, lb2;
  208.   struct linebuffer *thisline, *prevline, *exch;
  209.   char *prevfield, *thisfield;
  210.   int prevlen, thislen;
  211.   int match_count = 0;
  212.  
  213.   if (!strcmp (infile, "-"))
  214.     istream = stdin;
  215.   else
  216.     istream = fopen (infile, "r");
  217.   if (istream == NULL)
  218.     error (1, errno, "%s", infile);
  219.  
  220.   if (!strcmp (outfile, "-"))
  221.     ostream = stdout;
  222.   else
  223.     ostream = fopen (outfile, "w");
  224.   if (ostream == NULL)
  225.     error (1, errno, "%s", outfile);
  226.  
  227.   thisline = &lb1;
  228.   prevline = &lb2;
  229.  
  230.   initbuffer (thisline);
  231.   initbuffer (prevline);
  232.  
  233.   if (readline (prevline, istream) == 0)
  234.     goto closefiles;
  235.   prevfield = find_field (prevline);
  236.   prevlen = prevline->length - (prevfield - prevline->buffer);
  237.  
  238.   while (!feof (istream))
  239.     {
  240.       if (readline (thisline, istream) == 0)
  241.     break;
  242.       thisfield = find_field (thisline);
  243.       thislen = thisline->length - (thisfield - thisline->buffer);
  244.       if (!different (thisfield, prevfield, thislen, prevlen))
  245.     match_count++;
  246.       else
  247.     {
  248.       writeline (prevline, ostream, match_count);
  249.       match_count = 0;
  250.  
  251.       exch = prevline;
  252.       prevline = thisline;
  253.       thisline = exch;
  254.       prevfield = thisfield;
  255.       prevlen = thislen;
  256.     }
  257.     }
  258.  
  259.   writeline (prevline, ostream, match_count);
  260.  
  261.  closefiles:
  262.   if (ferror (istream) || fclose (istream) == EOF)
  263.     error (1, errno, "error reading %s", infile);
  264.  
  265.   if (ferror (ostream) || fclose (ostream) == EOF)
  266.     error (1, errno, "error writing %s", outfile);
  267.  
  268.   free (lb1.buffer);
  269.   free (lb2.buffer);
  270. }
  271.  
  272. /* Given a linebuffer LINE,
  273.    return a pointer to the beginning of the line's field to be compared. */
  274.  
  275. static char *
  276. find_field (line)
  277.      struct linebuffer *line;
  278. {
  279.   register int count;
  280.   register char *lp = line->buffer;
  281.   register int size = line->length;
  282.   register int i = 0;
  283.  
  284.   for (count = 0; count < skip_fields && i < size; count++)
  285.     {
  286.       while (i < size && ISBLANK (lp[i]))
  287.     i++;
  288.       while (i < size && !ISBLANK (lp[i]))
  289.     i++;
  290.     }
  291.  
  292.   for (count = 0; count < skip_chars && i < size; count++)
  293.     i++;
  294.  
  295.   return lp + i;
  296. }
  297.  
  298. /* Return zero if two strings OLD and NEW match, nonzero if not.
  299.    OLD and NEW point not to the beginnings of the lines
  300.    but rather to the beginnings of the fields to compare.
  301.    OLDLEN and NEWLEN are their lengths. */
  302.  
  303. static int
  304. different (old, new, oldlen, newlen)
  305.      char *old;
  306.      char *new;
  307.      int oldlen;
  308.      int newlen;
  309. {
  310.   register int order;
  311.  
  312.   if (check_chars)
  313.     {
  314.       if (oldlen > check_chars)
  315.     oldlen = check_chars;
  316.       if (newlen > check_chars)
  317.     newlen = check_chars;
  318.     }
  319.   order = memcmp (old, new, min (oldlen, newlen));
  320.   if (order == 0)
  321.     return oldlen - newlen;
  322.   return order;
  323. }
  324.  
  325. /* Output the line in linebuffer LINE to stream STREAM
  326.    provided that the switches say it should be output.
  327.    If requested, print the number of times it occurred, as well;
  328.    LINECOUNT + 1 is the number of times that the line occurred. */
  329.  
  330. static void
  331. writeline (line, stream, linecount)
  332.      struct linebuffer *line;
  333.      FILE *stream;
  334.      int linecount;
  335. {
  336.   if ((mode == output_unique && linecount != 0)
  337.       || (mode == output_repeated && linecount == 0))
  338.     return;
  339.  
  340.   if (countmode == count_occurrences)
  341.     fprintf (stream, "%7d\t", linecount + 1);
  342.  
  343.   fwrite (line->buffer, sizeof (char), line->length, stream);
  344.   putc ('\n', stream);
  345. }
  346.  
  347. static void
  348. usage (status)
  349.      int status;
  350. {
  351.   if (status != 0)
  352.     fprintf (stderr, "Try `%s --help' for more information.\n",
  353.          program_name);
  354.   else
  355.     {
  356.       printf ("\
  357. Usage: %s [OPTION]... [INPUT [OUTPUT]]\n\
  358. ",
  359.           program_name);
  360.       printf ("\
  361. \n\
  362.   -c, --count           prefix lines by the number of occurrences\n\
  363.   -d, --repeated        only print duplicate lines\n\
  364.   -f, --skip-fields=N   avoid comparing the N first fields\n\
  365.   -s, --skip-chars=N    avoid comparing the N first characters\n\
  366.   -u, --unique          only print unique lines\n\
  367.   -w, --check-chars=N   compare no more then N characters in lines\n\
  368.   -N                    same as -f N\n\
  369.   +N                    same as -s N\n\
  370.       --help            display this help and exit\n\
  371.       --version         output version information and exit\n\
  372. \n\
  373. A field is a run of whitespace, than non whitespace characters.\n\
  374. Fields are skipped before chars.  If OUTPUT not specified, writes to\n\
  375. standard output.  If INPUT not specified, reads from standard input.\n\
  376. ");
  377.     }
  378.   exit (status);
  379. }
  380.