(WRITTEN_BY): Rename from AUTHORS.
[platform/upstream/coreutils.git] / src / join.c
1 /* join - join lines of two files on a common field
2    Copyright (C) 91, 1995-2003 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 Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18    Written by Mike Haertel, mike@gnu.ai.mit.edu.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <assert.h>
24 #include <sys/types.h>
25 #include <getopt.h>
26
27 #include "system.h"
28 #include "error.h"
29 #include "hard-locale.h"
30 #include "linebuffer.h"
31 #include "memcasecmp.h"
32 #include "xmemcoll.h"
33 #include "xstrtol.h"
34
35 /* The official name of this program (e.g., no `g' prefix).  */
36 #define PROGRAM_NAME "join"
37
38 #define WRITTEN_BY _("Written by Mike Haertel.")
39
40 #define join system_join
41
42 /* Undefine, to avoid warning about redefinition on some systems.  */
43 #undef min
44 #undef max
45 #define min(A, B) ((A) < (B) ? (A) : (B))
46 #define max(A, B) ((A) > (B) ? (A) : (B))
47
48 /* An element of the list identifying which fields to print for each
49    output line.  */
50 struct outlist
51   {
52     /* File number: 0, 1, or 2.  0 means use the join field.
53        1 means use the first file argument, 2 the second.  */
54     int file;
55
56     /* Field index (zero-based), specified only when FILE is 1 or 2.  */
57     int field;
58
59     struct outlist *next;
60   };
61
62 /* A field of a line.  */
63 struct field
64   {
65     const unsigned char *beg;   /* First character in field.  */
66     size_t len;                 /* The length of the field.  */
67   };
68
69 /* A line read from an input file.  */
70 struct line
71   {
72     struct linebuffer buf;      /* The line itself.  */
73     int nfields;                /* Number of elements in `fields'.  */
74     int nfields_allocated;      /* Number of elements in `fields'.  */
75     struct field *fields;
76   };
77
78 /* One or more consecutive lines read from a file that all have the
79    same join field value.  */
80 struct seq
81   {
82     int count;                  /* Elements used in `lines'.  */
83     int alloc;                  /* Elements allocated in `lines'.  */
84     struct line *lines;
85   };
86
87 /* The name this program was run with.  */
88 char *program_name;
89
90 /* Nonzero if the LC_COLLATE locale is hard.  */
91 static int hard_LC_COLLATE;
92
93 /* If nonzero, print unpairable lines in file 1 or 2.  */
94 static int print_unpairables_1, print_unpairables_2;
95
96 /* If nonzero, print pairable lines.  */
97 static int print_pairables;
98
99 /* Empty output field filler.  */
100 static char *empty_filler;
101
102 /* Field to join on.  */
103 static int join_field_1, join_field_2;
104
105 /* List of fields to print.  */
106 static struct outlist outlist_head;
107
108 /* Last element in `outlist', where a new element can be added.  */
109 static struct outlist *outlist_end = &outlist_head;
110
111 /* Tab character separating fields; if this is NUL fields are separated
112    by any nonempty string of white space, otherwise by exactly one
113    tab character.  */
114 static unsigned char tab;
115
116 /* When using getopt_long_only, no long option can start with
117    a character that is a short option.  */
118 static struct option const longopts[] =
119 {
120   {"ignore-case", no_argument, NULL, 'i'},
121   {"j", required_argument, NULL, 'j'},
122   {"j1", required_argument, NULL, '1'},
123   {"j2", required_argument, NULL, '2'},
124   {GETOPT_HELP_OPTION_DECL},
125   {GETOPT_VERSION_OPTION_DECL},
126   {NULL, 0, NULL, 0}
127 };
128
129 /* Used to print non-joining lines */
130 static struct line uni_blank;
131
132 /* If nonzero, ignore case when comparing join fields.  */
133 static int ignore_case;
134
135 void
136 usage (int status)
137 {
138   if (status != 0)
139     fprintf (stderr, _("Try `%s --help' for more information.\n"),
140              program_name);
141   else
142     {
143       printf (_("\
144 Usage: %s [OPTION]... FILE1 FILE2\n\
145 "),
146               program_name);
147       fputs (_("\
148 For each pair of input lines with identical join fields, write a line to\n\
149 standard output.  The default join field is the first, delimited\n\
150 by whitespace.  When FILE1 or FILE2 (not both) is -, read standard input.\n\
151 \n\
152   -a FILENUM        print unpairable lines coming from file FILENUM, where\n\
153                       FILENUM is 1 or 2, corresponding to FILE1 or FILE2\n\
154   -e EMPTY          replace missing input fields with EMPTY\n\
155 "), stdout);
156       fputs (_("\
157   -i, --ignore-case ignore differences in case when comparing fields\n\
158   -j FIELD          (obsolescent) equivalent to `-1 FIELD -2 FIELD'\n\
159   -j1 FIELD         (obsolescent) equivalent to `-1 FIELD'\n\
160   -j2 FIELD         (obsolescent) equivalent to `-2 FIELD'\n\
161   -o FORMAT         obey FORMAT while constructing output line\n\
162   -t CHAR           use CHAR as input and output field separator\n\
163 "), stdout);
164       fputs (_("\
165   -v FILENUM        like -a FILENUM, but suppress joined output lines\n\
166   -1 FIELD          join on this FIELD of file 1\n\
167   -2 FIELD          join on this FIELD of file 2\n\
168 "), stdout);
169       fputs (HELP_OPTION_DESCRIPTION, stdout);
170       fputs (VERSION_OPTION_DESCRIPTION, stdout);
171       fputs (_("\
172 \n\
173 Unless -t CHAR is given, leading blanks separate fields and are ignored,\n\
174 else fields are separated by CHAR.  Any FIELD is a field number counted\n\
175 from 1.  FORMAT is one or more comma or blank separated specifications,\n\
176 each being `FILENUM.FIELD' or `0'.  Default FORMAT outputs the join field,\n\
177 the remaining fields from FILE1, the remaining fields from FILE2, all\n\
178 separated by CHAR.\n\
179 "), stdout);
180       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
181     }
182   exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
183 }
184
185 static void
186 ADD_FIELD (struct line *line, const unsigned char *field, size_t len)
187 {
188   if (line->nfields >= line->nfields_allocated)
189     {
190       line->nfields_allocated = (3 * line->nfields_allocated) / 2 + 1;
191       line->fields = xrealloc (line->fields,
192                                (line->nfields_allocated
193                                 * sizeof (struct field)));
194     }
195   line->fields[line->nfields].beg = field;
196   line->fields[line->nfields].len = len;
197   ++(line->nfields);
198 }
199
200 /* Fill in the `fields' structure in LINE.  */
201
202 static void
203 xfields (struct line *line)
204 {
205   int i;
206   unsigned char *ptr0 = (unsigned char *) line->buf.buffer;
207   unsigned char *ptr;
208   unsigned char *lim;
209
210   ptr = ptr0;
211   lim = ptr0 + line->buf.length - 1;
212
213   if (!tab)
214     {
215       /* Skip leading blanks before the first field.  */
216       while (ptr < lim && ISBLANK (*ptr))
217         ++ptr;
218     }
219
220   for (i = 0; ptr < lim; ++i)
221     {
222       if (tab)
223         {
224           unsigned char *beg;
225
226           beg = ptr;
227           while (ptr < lim && *ptr != tab)
228             ++ptr;
229           ADD_FIELD (line, beg, ptr - beg);
230           if (ptr < lim)
231             ++ptr;
232         }
233       else
234         {
235           unsigned char *beg;
236
237           beg = ptr;
238           while (ptr < lim && !ISBLANK (*ptr))
239             ++ptr;
240           ADD_FIELD (line, beg, ptr - beg);
241           while (ptr < lim && ISBLANK (*ptr))
242             ++ptr;
243         }
244     }
245
246   if (ptr != ptr0 && ((!tab && ISBLANK (ptr[-1])) || ptr[-1] == tab))
247     {
248       /* Add one more (empty) field because the last character of the
249          line was a delimiter.  */
250       ADD_FIELD (line, NULL, 0);
251     }
252 }
253
254 /* Read a line from FP into LINE and split it into fields.
255    Return 0 if EOF, 1 otherwise.  */
256
257 static int
258 get_line (FILE *fp, struct line *line)
259 {
260   initbuffer (&line->buf);
261
262   if (! readlinebuffer (&line->buf, fp))
263     {
264       free (line->buf.buffer);
265       line->buf.buffer = NULL;
266       return 0;
267     }
268
269   line->nfields_allocated = 0;
270   line->nfields = 0;
271   line->fields = NULL;
272   xfields (line);
273   return 1;
274 }
275
276 static void
277 freeline (struct line *line)
278 {
279   free (line->fields);
280   free (line->buf.buffer);
281   line->buf.buffer = NULL;
282 }
283
284 static void
285 initseq (struct seq *seq)
286 {
287   seq->count = 0;
288   seq->alloc = 1;
289   seq->lines = xmalloc (seq->alloc * sizeof (struct line));
290 }
291
292 /* Read a line from FP and add it to SEQ.  Return 0 if EOF, 1 otherwise.  */
293
294 static int
295 getseq (FILE *fp, struct seq *seq)
296 {
297   if (seq->count == seq->alloc)
298     {
299       seq->alloc *= 2;
300       seq->lines = (struct line *)
301         xrealloc (seq->lines, seq->alloc * sizeof (struct line));
302     }
303
304   if (get_line (fp, &seq->lines[seq->count]))
305     {
306       ++seq->count;
307       return 1;
308     }
309   return 0;
310 }
311
312 static void
313 delseq (struct seq *seq)
314 {
315   int i;
316   for (i = 0; i < seq->count; i++)
317     if (seq->lines[i].buf.buffer)
318       freeline (&seq->lines[i]);
319   free (seq->lines);
320 }
321
322 /* Return <0 if the join field in LINE1 compares less than the one in LINE2;
323    >0 if it compares greater; 0 if it compares equal.
324    Report an error and exit if the comparison fails.  */
325
326 static int
327 keycmp (struct line *line1, struct line *line2)
328 {
329   /* Start of field to compare in each file.  */
330   const unsigned char *beg1, *beg2;
331
332   size_t len1, len2;            /* Length of fields to compare.  */
333   int diff;
334
335   if (join_field_1 < line1->nfields)
336     {
337       beg1 = line1->fields[join_field_1].beg;
338       len1 = line1->fields[join_field_1].len;
339     }
340   else
341     {
342       beg1 = NULL;
343       len1 = 0;
344     }
345
346   if (join_field_2 < line2->nfields)
347     {
348       beg2 = line2->fields[join_field_2].beg;
349       len2 = line2->fields[join_field_2].len;
350     }
351   else
352     {
353       beg2 = NULL;
354       len2 = 0;
355     }
356
357   if (len1 == 0)
358     return len2 == 0 ? 0 : -1;
359   if (len2 == 0)
360     return 1;
361
362   /* Use an if-statement here rather than a function variable to
363      avoid portability hassles of getting a non-conflicting declaration
364      of memcmp.  */
365   if (ignore_case)
366     {
367       /* FIXME: ignore_case does not work with NLS (in particular,
368          with multibyte chars).  */
369       diff = memcasecmp (beg1, beg2, min (len1, len2));
370     }
371   else
372     {
373       if (HAVE_SETLOCALE && hard_LC_COLLATE)
374         return xmemcoll ((char *) beg1, len1, (char *) beg2, len2);
375       diff = memcmp (beg1, beg2, min (len1, len2));
376     }
377
378   if (diff)
379     return diff;
380   return len1 < len2 ? -1 : len1 != len2;
381 }
382
383 /* Print field N of LINE if it exists and is nonempty, otherwise
384    `empty_filler' if it is nonempty.  */
385
386 static void
387 prfield (int n, struct line *line)
388 {
389   size_t len;
390
391   if (n < line->nfields)
392     {
393       len = line->fields[n].len;
394       if (len)
395         fwrite (line->fields[n].beg, 1, len, stdout);
396       else if (empty_filler)
397         fputs (empty_filler, stdout);
398     }
399   else if (empty_filler)
400     fputs (empty_filler, stdout);
401 }
402
403 /* Print the join of LINE1 and LINE2.  */
404
405 static void
406 prjoin (struct line *line1, struct line *line2)
407 {
408   const struct outlist *outlist;
409
410   outlist = outlist_head.next;
411   if (outlist)
412     {
413       const struct outlist *o;
414
415       o = outlist;
416       while (1)
417         {
418           int field;
419           struct line *line;
420
421           if (o->file == 0)
422             {
423               if (line1 == &uni_blank)
424                 {
425                   line = line2;
426                   field = join_field_2;
427                 }
428               else
429                 {
430                   line = line1;
431                   field = join_field_1;
432                 }
433             }
434           else
435             {
436               line = (o->file == 1 ? line1 : line2);
437               assert (o->field >= 0);
438               field = o->field;
439             }
440           prfield (field, line);
441           o = o->next;
442           if (o == NULL)
443             break;
444           putchar (tab ? tab : ' ');
445         }
446       putchar ('\n');
447     }
448   else
449     {
450       int i;
451
452       if (line1 == &uni_blank)
453         {
454           struct line *t;
455           t = line1;
456           line1 = line2;
457           line2 = t;
458         }
459       prfield (join_field_1, line1);
460       for (i = 0; i < join_field_1 && i < line1->nfields; ++i)
461         {
462           putchar (tab ? tab : ' ');
463           prfield (i, line1);
464         }
465       for (i = join_field_1 + 1; i < line1->nfields; ++i)
466         {
467           putchar (tab ? tab : ' ');
468           prfield (i, line1);
469         }
470
471       for (i = 0; i < join_field_2 && i < line2->nfields; ++i)
472         {
473           putchar (tab ? tab : ' ');
474           prfield (i, line2);
475         }
476       for (i = join_field_2 + 1; i < line2->nfields; ++i)
477         {
478           putchar (tab ? tab : ' ');
479           prfield (i, line2);
480         }
481       putchar ('\n');
482     }
483 }
484
485 /* Print the join of the files in FP1 and FP2.  */
486
487 static void
488 join (FILE *fp1, FILE *fp2)
489 {
490   struct seq seq1, seq2;
491   struct line line;
492   int diff, i, j, eof1, eof2;
493
494   /* Read the first line of each file.  */
495   initseq (&seq1);
496   getseq (fp1, &seq1);
497   initseq (&seq2);
498   getseq (fp2, &seq2);
499
500   while (seq1.count && seq2.count)
501     {
502       diff = keycmp (&seq1.lines[0], &seq2.lines[0]);
503       if (diff < 0)
504         {
505           if (print_unpairables_1)
506             prjoin (&seq1.lines[0], &uni_blank);
507           freeline (&seq1.lines[0]);
508           seq1.count = 0;
509           getseq (fp1, &seq1);
510           continue;
511         }
512       if (diff > 0)
513         {
514           if (print_unpairables_2)
515             prjoin (&uni_blank, &seq2.lines[0]);
516           freeline (&seq2.lines[0]);
517           seq2.count = 0;
518           getseq (fp2, &seq2);
519           continue;
520         }
521
522       /* Keep reading lines from file1 as long as they continue to
523          match the current line from file2.  */
524       eof1 = 0;
525       do
526         if (!getseq (fp1, &seq1))
527           {
528             eof1 = 1;
529             ++seq1.count;
530             break;
531           }
532       while (!keycmp (&seq1.lines[seq1.count - 1], &seq2.lines[0]));
533
534       /* Keep reading lines from file2 as long as they continue to
535          match the current line from file1.  */
536       eof2 = 0;
537       do
538         if (!getseq (fp2, &seq2))
539           {
540             eof2 = 1;
541             ++seq2.count;
542             break;
543           }
544       while (!keycmp (&seq1.lines[0], &seq2.lines[seq2.count - 1]));
545
546       if (print_pairables)
547         {
548           for (i = 0; i < seq1.count - 1; ++i)
549             for (j = 0; j < seq2.count - 1; ++j)
550               prjoin (&seq1.lines[i], &seq2.lines[j]);
551         }
552
553       for (i = 0; i < seq1.count - 1; ++i)
554         freeline (&seq1.lines[i]);
555       if (!eof1)
556         {
557           seq1.lines[0] = seq1.lines[seq1.count - 1];
558           seq1.count = 1;
559         }
560       else
561         seq1.count = 0;
562
563       for (i = 0; i < seq2.count - 1; ++i)
564         freeline (&seq2.lines[i]);
565       if (!eof2)
566         {
567           seq2.lines[0] = seq2.lines[seq2.count - 1];
568           seq2.count = 1;
569         }
570       else
571         seq2.count = 0;
572     }
573
574   if (print_unpairables_1 && seq1.count)
575     {
576       prjoin (&seq1.lines[0], &uni_blank);
577       freeline (&seq1.lines[0]);
578       while (get_line (fp1, &line))
579         {
580           prjoin (&line, &uni_blank);
581           freeline (&line);
582         }
583     }
584
585   if (print_unpairables_2 && seq2.count)
586     {
587       prjoin (&uni_blank, &seq2.lines[0]);
588       freeline (&seq2.lines[0]);
589       while (get_line (fp2, &line))
590         {
591           prjoin (&uni_blank, &line);
592           freeline (&line);
593         }
594     }
595
596   delseq (&seq1);
597   delseq (&seq2);
598 }
599
600 /* Add a field spec for field FIELD of file FILE to `outlist'.  */
601
602 static void
603 add_field (int file, int field)
604 {
605   struct outlist *o;
606
607   assert (file == 0 || file == 1 || file == 2);
608   assert (file == 0 ? field < 0 : field >= 0);
609
610   o = xmalloc (sizeof (struct outlist));
611   o->file = file;
612   o->field = field;
613   o->next = NULL;
614
615   /* Add to the end of the list so the fields are in the right order.  */
616   outlist_end->next = o;
617   outlist_end = o;
618 }
619
620 /* Convert a single field specifier string, S, to a *FILE_INDEX, *FIELD_INDEX
621    pair.  In S, the field index string is 1-based; *FIELD_INDEX is zero-based.
622    If S is valid, return zero.  Otherwise, give a diagnostic, don't update
623    *FILE_INDEX or *FIELD_INDEX, and return nonzero.  */
624
625 static int
626 decode_field_spec (const char *s, int *file_index, int *field_index)
627 {
628   int invalid = 1;
629
630   /* The first character must be 0, 1, or 2.  */
631   switch (s[0])
632     {
633     case '0':
634       if (s[1] == '\0')
635         {
636           *file_index = 0;
637           /* Give *field_index an invalid value.  */
638           *field_index = -1;
639           invalid = 0;
640         }
641       else
642         {
643           /* `0' must be all alone -- no `.FIELD'.  */
644           error (0, 0, _("invalid field specifier: `%s'"), s);
645         }
646       break;
647
648     case '1':
649     case '2':
650       if (s[1] == '.' && s[2] != '\0')
651         {
652           strtol_error s_err;
653           long int tmp_long;
654
655           s_err = xstrtol (s + 2, NULL, 10, &tmp_long, "");
656           if (s_err != LONGINT_OK || tmp_long <= 0 || tmp_long > INT_MAX)
657             {
658               error (0, 0, _("invalid field number: `%s'"), s + 2);
659             }
660           else
661             {
662               *file_index = s[0] - '0';
663               /* Convert to a zero-based index.  */
664               *field_index = (int) tmp_long - 1;
665               invalid = 0;
666             }
667         }
668       break;
669
670     default:
671       error (0, 0, _("invalid file number in field spec: `%s'"), s);
672       break;
673     }
674   return invalid;
675 }
676
677 /* Add the comma or blank separated field spec(s) in STR to `outlist'.
678    Return nonzero to indicate failure.  */
679
680 static int
681 add_field_list (const char *c_str)
682 {
683   char *p, *str;
684
685   /* Make a writable copy of c_str.  */
686   str = (char *) alloca (strlen (c_str) + 1);
687   strcpy (str, c_str);
688
689   p = str;
690   do
691     {
692       int invalid;
693       int file_index, field_index;
694       char *spec_item = p;
695
696       p = strpbrk (p, ", \t");
697       if (p)
698         *p++ = 0;
699       invalid = decode_field_spec (spec_item, &file_index, &field_index);
700       if (invalid)
701         return 1;
702       add_field (file_index, field_index);
703       uni_blank.nfields = max (uni_blank.nfields, field_index);
704     }
705   while (p);
706   return 0;
707 }
708
709 /* Create a blank line with COUNT fields separated by tabs.  */
710
711 static void
712 make_blank (struct line *blank, int count)
713 {
714   int i;
715   unsigned char *buffer;
716   struct field *fields;
717   blank->nfields = count;
718   blank->buf.size = blank->buf.length = count + 1;
719   blank->buf.buffer = xmalloc (blank->buf.size);
720   buffer = (unsigned char *) blank->buf.buffer;
721   blank->fields = fields =
722     xmalloc (sizeof (struct field) * count);
723   for (i = 0; i < count; i++)
724     {
725       buffer[i] = '\t';
726       fields[i].beg = &buffer[i];
727       fields[i].len = 0;
728     }
729   buffer[i] = '\n';
730 }
731
732 int
733 main (int argc, char **argv)
734 {
735   char *names[2];
736   FILE *fp1, *fp2;
737   int optc, prev_optc = 0, nfiles;
738
739   initialize_main (&argc, &argv);
740   program_name = argv[0];
741   setlocale (LC_ALL, "");
742   bindtextdomain (PACKAGE, LOCALEDIR);
743   textdomain (PACKAGE);
744   hard_LC_COLLATE = hard_locale (LC_COLLATE);
745
746   atexit (close_stdout);
747
748   /* Initialize this before parsing options.  In parsing options,
749      it may be increased.  */
750   uni_blank.nfields = 1;
751
752   nfiles = 0;
753   print_pairables = 1;
754
755   while ((optc = getopt_long_only (argc, argv, "-a:e:i1:2:o:t:v:", longopts,
756                                    NULL)) != -1)
757     {
758       long int val;
759
760       switch (optc)
761         {
762         case 0:
763           break;
764
765         case 'v':
766             print_pairables = 0;
767             /* Fall through.  */
768
769         case 'a':
770           if (xstrtol (optarg, NULL, 10, &val, "") != LONGINT_OK
771               || (val != 1 && val != 2))
772             error (EXIT_FAILURE, 0, _("invalid field number: `%s'"), optarg);
773           if (val == 1)
774             print_unpairables_1 = 1;
775           else
776             print_unpairables_2 = 1;
777           break;
778
779         case 'e':
780           empty_filler = optarg;
781           break;
782
783         case 'i':
784           ignore_case = 1;
785           break;
786
787         case '1':
788           if (xstrtol (optarg, NULL, 10, &val, "") != LONGINT_OK
789               || val <= 0 || val > INT_MAX)
790             {
791               error (EXIT_FAILURE, 0,
792                      _("invalid field number for file 1: `%s'"), optarg);
793             }
794           join_field_1 = (int) val - 1;
795           break;
796
797         case '2':
798           if (xstrtol (optarg, NULL, 10, &val, "") != LONGINT_OK
799               || val <= 0 || val > INT_MAX)
800             error (EXIT_FAILURE, 0,
801                    _("invalid field number for file 2: `%s'"), optarg);
802           join_field_2 = (int) val - 1;
803           break;
804
805         case 'j':
806           if (xstrtol (optarg, NULL, 10, &val, "") != LONGINT_OK
807               || val <= 0 || val > INT_MAX)
808             error (EXIT_FAILURE, 0, _("invalid field number: `%s'"), optarg);
809           join_field_1 = join_field_2 = (int) val - 1;
810           break;
811
812         case 'o':
813           if (add_field_list (optarg))
814             exit (EXIT_FAILURE);
815           break;
816
817         case 't':
818           tab = *optarg;
819           break;
820
821         case 1:         /* Non-option argument.  */
822           if (prev_optc == 'o' && optind <= argc - 2)
823             {
824               if (add_field_list (optarg))
825                 exit (EXIT_FAILURE);
826
827               /* Might be continuation of args to -o.  */
828               continue;         /* Don't change `prev_optc'.  */
829             }
830
831           if (nfiles > 1)
832             {
833               error (0, 0, _("too many non-option arguments"));
834               usage (EXIT_FAILURE);
835             }
836           names[nfiles++] = optarg;
837           break;
838
839         case_GETOPT_HELP_CHAR;
840
841         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, WRITTEN_BY);
842
843         default:
844           usage (EXIT_FAILURE);
845         }
846       prev_optc = optc;
847     }
848
849   /* Now that we've seen the options, we can construct the blank line
850      structure.  */
851   make_blank (&uni_blank, uni_blank.nfields);
852
853   if (nfiles != 2)
854     {
855       error (0, 0, _("too few non-option arguments"));
856       usage (EXIT_FAILURE);
857     }
858
859   fp1 = STREQ (names[0], "-") ? stdin : fopen (names[0], "r");
860   if (!fp1)
861     error (EXIT_FAILURE, errno, "%s", names[0]);
862   fp2 = STREQ (names[1], "-") ? stdin : fopen (names[1], "r");
863   if (!fp2)
864     error (EXIT_FAILURE, errno, "%s", names[1]);
865   if (fp1 == fp2)
866     error (EXIT_FAILURE, errno, _("both files cannot be standard input"));
867   join (fp1, fp2);
868
869   if (fp1 != stdin && fclose (fp1) == EOF)
870     error (EXIT_FAILURE, errno, "%s", names[0]);
871   if (fp2 != stdin && fclose (fp2) == EOF)
872     error (EXIT_FAILURE, errno, "%s", names[1]);
873   if ((fp1 == stdin || fp2 == stdin) && fclose (stdin) == EOF)
874     error (EXIT_FAILURE, errno, "-");
875
876   exit (EXIT_SUCCESS);
877 }