1 /* join - join lines of two files on a common field
2 Copyright (C) 91, 95, 1996 Free Software Foundation, Inc.
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)
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.
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.
18 Written by Mike Haertel, mike@gnu.ai.mit.edu. */
23 #define alloca __builtin_alloca
24 #else /* not __GNUC__ */
27 #else /* not HAVE_ALLOCA_H */
33 #endif /* not HAVE_ALLOCA_H */
34 #endif /* not __GNUC__ */
36 /* Get isblank from GNU libc. */
42 #include <sys/types.h>
50 # define UINT_MAX ((unsigned int) ~(unsigned int) 0)
54 # define INT_MAX ((int) (UINT_MAX >> 1))
57 #if _LIBC || STDC_HEADERS
58 # define TOLOWER(c) tolower (c)
60 # define TOLOWER(c) (ISUPPER (c) ? tolower (c) : (c))
64 #include "long-options.h"
67 #include "memcasecmp.h"
69 #define join system_join
74 /* Undefine, to avoid warning about redefinition on some systems. */
77 #define min(A, B) ((A) < (B) ? (A) : (B))
78 #define max(A, B) ((A) > (B) ? (A) : (B))
80 /* An element of the list identifying which fields to print for each
84 /* File number: 0, 1, or 2. 0 means use the join field.
85 1 means use the first file argument, 2 the second. */
88 /* Field index (zero-based), specified only when FILE is 1 or 2. */
94 /* A field of a line. */
97 const char *beg
; /* First character in field. */
98 size_t len
; /* The length of the field. */
101 /* A line read from an input file. Newlines are not stored. */
104 char *beg
; /* First character in line. */
105 char *lim
; /* Character after last character in line. */
106 int nfields
; /* Number of elements in `fields'. */
107 int nfields_allocated
; /* Number of elements in `fields'. */
108 struct field
*fields
;
111 /* One or more consecutive lines read from a file that all have the
112 same join field value. */
115 int count
; /* Elements used in `lines'. */
116 int alloc
; /* Elements allocated in `lines'. */
120 /* The name this program was run with. */
123 /* If nonzero, print unpairable lines in file 1 or 2. */
124 static int print_unpairables_1
, print_unpairables_2
;
126 /* If nonzero, print pairable lines. */
127 static int print_pairables
;
129 /* Empty output field filler. */
130 static char *empty_filler
;
132 /* Field to join on. */
133 static int join_field_1
, join_field_2
;
135 /* List of fields to print. */
136 static struct outlist outlist_head
;
138 /* Last element in `outlist', where a new element can be added. */
139 static struct outlist
*outlist_end
= &outlist_head
;
141 /* Tab character separating fields; if this is NUL fields are separated
142 by any nonempty string of white space, otherwise by exactly one
146 /* When using getopt_long_only, no long option can start with
147 a character that is a short option. */
148 static struct option
const longopts
[] =
150 {"ignore-case", no_argument
, NULL
, 'i'},
151 {"j", required_argument
, NULL
, 'j'},
152 {"j1", required_argument
, NULL
, '1'},
153 {"j2", required_argument
, NULL
, '2'},
157 /* Used to print non-joining lines */
158 static struct line uni_blank
;
160 /* If nonzero, ignore case when comparing join fields. */
161 static int ignore_case
;
167 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
172 Usage: %s [OPTION]... FILE1 FILE2\n\
176 For each pair of input lines with identical join fields, write a line to\n\
177 standard output. The default join field is the first, delimited\n\
178 by whitespace. When FILE1 or FILE2 (not both) is -, read standard input.\n\
180 -a SIDE print unpairable lines coming from file SIDE\n\
181 -e EMPTY replace missing input fields with EMPTY\n\
182 -i, --ignore-case ignore differences in case when comparing fields\n\
183 -j FIELD (Obsolescent) equivalent to `-1 FIELD -2 FIELD'\n\
184 -j1 FIELD (Obsolescent) equivalent to `-1 FIELD'\n\
185 -j2 FIELD (Obsolescent) equivalent to `-2 FIELD'\n\
186 -1 FIELD join on this FIELD of file 1\n\
187 -2 FIELD join on this FIELD of file 2\n\
188 -o FORMAT obey FORMAT while constructing output line\n\
189 -t CHAR use CHAR as input and output field separator\n\
190 -v SIDE like -a SIDE, but suppress joined output lines\n\
191 --help display this help and exit\n\
192 --version output version information and exit\n\
194 Unless -t CHAR is given, leading blanks separate fields and are ignored,\n\
195 else fields are separated by CHAR. Any FIELD is a field number counted\n\
196 from 1. FORMAT is one or more comma or blank separated specifications,\n\
197 each being `SIDE.FIELD' or `0'. Default FORMAT outputs the join field,\n\
198 the remaining fields from FILE1, the remaining fields from FILE2, all\n\
199 separated by CHAR.\n\
202 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
206 ADD_FIELD (struct line
*line
, const char *field
, size_t len
)
208 if (line
->nfields
>= line
->nfields_allocated
)
210 line
->nfields_allocated
= (3 * line
->nfields_allocated
) / 2 + 1;
211 line
->fields
= (struct field
*) xrealloc ((char *) line
->fields
,
212 (line
->nfields_allocated
213 * sizeof (struct field
)));
215 line
->fields
[line
->nfields
].beg
= field
;
216 line
->fields
[line
->nfields
].len
= len
;
220 /* Fill in the `fields' structure in LINE. */
223 xfields (struct line
*line
)
226 register char *ptr
, *lim
;
233 /* Skip leading blanks before the first field. */
234 while (ptr
< lim
&& ISSPACE (*ptr
))
238 for (i
= 0; ptr
< lim
; ++i
)
245 while (ptr
< lim
&& *ptr
!= tab
)
247 ADD_FIELD (line
, beg
, ptr
- beg
);
256 while (ptr
< lim
&& !ISSPACE (*ptr
))
258 ADD_FIELD (line
, beg
, ptr
- beg
);
259 while (ptr
< lim
&& ISSPACE (*ptr
))
264 if (ptr
> line
->beg
&& ((tab
&& ISSPACE (ptr
[-1])) || ptr
[-1] == tab
))
266 /* Add one more (empty) field because the last character of the
267 line was a delimiter. */
268 ADD_FIELD (line
, NULL
, 0);
272 /* Read a line from FP into LINE and split it into fields.
273 Return 0 if EOF, 1 otherwise. */
276 get_line (FILE *fp
, struct line
*line
)
278 static int linesize
= 80;
285 ptr
= xmalloc (linesize
);
287 for (i
= 0; (c
= getc (fp
)) != EOF
&& c
!= '\n'; ++i
)
292 ptr
= xrealloc (ptr
, linesize
);
297 if (c
== EOF
&& i
== 0)
304 line
->lim
= line
->beg
+ i
;
305 line
->nfields_allocated
= 0;
313 freeline (struct line
*line
)
315 free ((char *) line
->fields
);
321 initseq (struct seq
*seq
)
325 seq
->lines
= (struct line
*) xmalloc (seq
->alloc
* sizeof (struct line
));
328 /* Read a line from FP and add it to SEQ. Return 0 if EOF, 1 otherwise. */
331 getseq (FILE *fp
, struct seq
*seq
)
333 if (seq
->count
== seq
->alloc
)
336 seq
->lines
= (struct line
*)
337 xrealloc ((char *) seq
->lines
, seq
->alloc
* sizeof (struct line
));
340 if (get_line (fp
, &seq
->lines
[seq
->count
]))
349 delseq (struct seq
*seq
)
352 for (i
= 0; i
< seq
->count
; i
++)
353 if (seq
->lines
[i
].beg
)
354 freeline (&seq
->lines
[i
]);
355 free ((char *) seq
->lines
);
358 /* Return <0 if the join field in LINE1 compares less than the one in LINE2;
359 >0 if it compares greater; 0 if it compares equal. */
362 keycmp (struct line
*line1
, struct line
*line2
)
364 const char *beg1
, *beg2
; /* Start of field to compare in each file. */
365 int len1
, len2
; /* Length of fields to compare. */
368 if (join_field_1
< line1
->nfields
)
370 beg1
= line1
->fields
[join_field_1
].beg
;
371 len1
= line1
->fields
[join_field_1
].len
;
379 if (join_field_2
< line2
->nfields
)
381 beg2
= line2
->fields
[join_field_2
].beg
;
382 len2
= line2
->fields
[join_field_2
].len
;
391 return len2
== 0 ? 0 : -1;
395 /* Use an if-statement here rather than a function variable to
396 avoid portability hassles of getting a non-conflicting declaration
399 diff
= memcasecmp (beg1
, beg2
, min (len1
, len2
));
401 diff
= memcmp (beg1
, beg2
, min (len1
, len2
));
408 /* Print field N of LINE if it exists and is nonempty, otherwise
409 `empty_filler' if it is nonempty. */
412 prfield (int n
, struct line
*line
)
416 if (n
< line
->nfields
)
418 len
= line
->fields
[n
].len
;
420 fwrite (line
->fields
[n
].beg
, 1, len
, stdout
);
421 else if (empty_filler
)
422 fputs (empty_filler
, stdout
);
424 else if (empty_filler
)
425 fputs (empty_filler
, stdout
);
428 /* Print the join of LINE1 and LINE2. */
431 prjoin (struct line
*line1
, struct line
*line2
)
433 const struct outlist
*outlist
;
435 outlist
= outlist_head
.next
;
438 const struct outlist
*o
;
448 if (line1
== &uni_blank
)
451 field
= join_field_2
;
456 field
= join_field_1
;
461 line
= (o
->file
== 1 ? line1
: line2
);
464 prfield (field
, line
);
468 putchar (tab
? tab
: ' ');
476 if (line1
== &uni_blank
)
483 prfield (join_field_1
, line1
);
484 for (i
= 0; i
< join_field_1
&& i
< line1
->nfields
; ++i
)
486 putchar (tab
? tab
: ' ');
489 for (i
= join_field_1
+ 1; i
< line1
->nfields
; ++i
)
491 putchar (tab
? tab
: ' ');
495 for (i
= 0; i
< join_field_2
&& i
< line2
->nfields
; ++i
)
497 putchar (tab
? tab
: ' ');
500 for (i
= join_field_2
+ 1; i
< line2
->nfields
; ++i
)
502 putchar (tab
? tab
: ' ');
509 /* Print the join of the files in FP1 and FP2. */
512 join (FILE *fp1
, FILE *fp2
)
514 struct seq seq1
, seq2
;
516 int diff
, i
, j
, eof1
, eof2
;
518 /* Read the first line of each file. */
524 while (seq1
.count
&& seq2
.count
)
526 diff
= keycmp (&seq1
.lines
[0], &seq2
.lines
[0]);
529 if (print_unpairables_1
)
530 prjoin (&seq1
.lines
[0], &uni_blank
);
531 freeline (&seq1
.lines
[0]);
538 if (print_unpairables_2
)
539 prjoin (&uni_blank
, &seq2
.lines
[0]);
540 freeline (&seq2
.lines
[0]);
546 /* Keep reading lines from file1 as long as they continue to
547 match the current line from file2. */
550 if (!getseq (fp1
, &seq1
))
556 while (!keycmp (&seq1
.lines
[seq1
.count
- 1], &seq2
.lines
[0]));
558 /* Keep reading lines from file2 as long as they continue to
559 match the current line from file1. */
562 if (!getseq (fp2
, &seq2
))
568 while (!keycmp (&seq1
.lines
[0], &seq2
.lines
[seq2
.count
- 1]));
572 for (i
= 0; i
< seq1
.count
- 1; ++i
)
573 for (j
= 0; j
< seq2
.count
- 1; ++j
)
574 prjoin (&seq1
.lines
[i
], &seq2
.lines
[j
]);
577 for (i
= 0; i
< seq1
.count
- 1; ++i
)
578 freeline (&seq1
.lines
[i
]);
581 seq1
.lines
[0] = seq1
.lines
[seq1
.count
- 1];
587 for (i
= 0; i
< seq2
.count
- 1; ++i
)
588 freeline (&seq2
.lines
[i
]);
591 seq2
.lines
[0] = seq2
.lines
[seq2
.count
- 1];
598 if (print_unpairables_1
&& seq1
.count
)
600 prjoin (&seq1
.lines
[0], &uni_blank
);
601 freeline (&seq1
.lines
[0]);
602 while (get_line (fp1
, &line
))
604 prjoin (&line
, &uni_blank
);
609 if (print_unpairables_2
&& seq2
.count
)
611 prjoin (&uni_blank
, &seq2
.lines
[0]);
612 freeline (&seq2
.lines
[0]);
613 while (get_line (fp2
, &line
))
615 prjoin (&uni_blank
, &line
);
624 /* Add a field spec for field FIELD of file FILE to `outlist'. */
627 add_field (int file
, int field
)
631 assert (file
== 0 || file
== 1 || file
== 2);
634 o
= (struct outlist
*) xmalloc (sizeof (struct outlist
));
639 /* Add to the end of the list so the fields are in the right order. */
640 outlist_end
->next
= o
;
644 /* Convert a single field specifier string, S, to a *FILE_INDEX, *FIELD_INDEX
645 pair. In S, the field index string is 1-based; *FIELD_INDEX is zero-based.
646 If S is valid, return zero. Otherwise, give a diagnostic, don't update
647 *FILE_INDEX or *FIELD_INDEX, and return nonzero. */
650 decode_field_spec (const char *s
, int *file_index
, int *field_index
)
654 /* The first character must be 0, 1, or 2. */
661 /* Leave *field_index undefined. */
666 /* `0' must be all alone -- no `.FIELD'. */
667 error (0, 0, _("invalid field specifier: `%s'"), s
);
673 if (s
[1] == '.' && s
[2] != '\0')
678 s_err
= xstrtol (s
+ 2, NULL
, 10, &tmp_long
, NULL
);
679 if (s_err
!= LONGINT_OK
|| tmp_long
<= 0 || tmp_long
> INT_MAX
)
681 error (0, 0, _("invalid field number: `%s'"), s
+ 2);
685 *file_index
= s
[0] - '0';
686 /* Convert to a zero-based index. */
687 *field_index
= (int) tmp_long
- 1;
694 error (0, 0, _("invalid file number in field spec: `%s'"), s
);
700 /* Add the comma or blank separated field spec(s) in STR to `outlist'.
701 Return nonzero to indicate failure. */
704 add_field_list (const char *c_str
)
708 /* Make a writable copy of c_str. */
709 str
= (char *) alloca (strlen (c_str
) + 1);
716 int file_index
, field_index
;
719 p
= strpbrk (p
, ", \t");
722 invalid
= decode_field_spec (spec_item
, &file_index
, &field_index
);
725 add_field (file_index
, field_index
);
726 uni_blank
.nfields
= max (uni_blank
.nfields
, field_index
);
732 /* Create a blank line with COUNT fields separated by tabs. */
735 make_blank (struct line
*blank
, int count
)
738 blank
->nfields
= count
;
739 blank
->beg
= xmalloc (blank
->nfields
+ 1);
740 blank
->fields
= (struct field
*) xmalloc (sizeof (struct field
) * count
);
741 for (i
= 0; i
< blank
->nfields
; i
++)
743 blank
->beg
[i
] = '\t';
744 blank
->fields
[i
].beg
= &blank
->beg
[i
];
745 blank
->fields
[i
].len
= 0;
747 blank
->beg
[i
] = '\0';
748 blank
->lim
= &blank
->beg
[i
];
752 main (int argc
, char **argv
)
756 int optc
, prev_optc
= 0, nfiles
;
758 program_name
= argv
[0];
759 setlocale (LC_ALL
, "");
760 bindtextdomain (PACKAGE
, LOCALEDIR
);
761 textdomain (PACKAGE
);
763 /* Initialize this before parsing options. In parsing options,
764 it may be increased. */
765 uni_blank
.nfields
= 1;
767 parse_long_options (argc
, argv
, "join", PACKAGE_VERSION
, usage
);
772 while ((optc
= getopt_long_only (argc
, argv
, "-a:e:i1:2:o:t:v:", longopts
,
787 if (xstrtol (optarg
, NULL
, 10, &val
, NULL
) != LONGINT_OK
788 || (val
!= 1 && val
!= 2))
789 error (EXIT_FAILURE
, 0, _("invalid field number: `%s'"), optarg
);
791 print_unpairables_1
= 1;
793 print_unpairables_2
= 1;
797 empty_filler
= optarg
;
805 if (xstrtol (optarg
, NULL
, 10, &val
, NULL
) != LONGINT_OK
806 || val
<= 0 || val
> INT_MAX
)
808 error (EXIT_FAILURE
, 0,
809 _("invalid field number for file 1: `%s'"), optarg
);
811 join_field_1
= (int) val
- 1;
815 if (xstrtol (optarg
, NULL
, 10, &val
, NULL
) != LONGINT_OK
816 || val
<= 0 || val
> INT_MAX
)
817 error (EXIT_FAILURE
, 0,
818 _("invalid field number for file 2: `%s'"), optarg
);
819 join_field_2
= (int) val
- 1;
823 if (xstrtol (optarg
, NULL
, 10, &val
, NULL
) != LONGINT_OK
824 || val
<= 0 || val
> INT_MAX
)
825 error (EXIT_FAILURE
, 0, _("invalid field number: `%s'"), optarg
);
826 join_field_1
= join_field_2
= (int) val
- 1;
830 if (add_field_list (optarg
))
838 case 1: /* Non-option argument. */
839 if (prev_optc
== 'o' && optind
<= argc
- 2)
841 if (add_field_list (optarg
))
844 /* Might be continuation of args to -o. */
845 continue; /* Don't change `prev_optc'. */
850 error (0, 0, _("too many non-option arguments"));
853 names
[nfiles
++] = optarg
;
862 /* Now that we've seen the options, we can construct the blank line
864 make_blank (&uni_blank
, uni_blank
.nfields
);
868 error (0, 0, _("too few non-option arguments"));
872 fp1
= strcmp (names
[0], "-") ? fopen (names
[0], "r") : stdin
;
874 error (EXIT_FAILURE
, errno
, "%s", names
[0]);
875 fp2
= strcmp (names
[1], "-") ? fopen (names
[1], "r") : stdin
;
877 error (EXIT_FAILURE
, errno
, "%s", names
[1]);
879 error (EXIT_FAILURE
, errno
, _("both files cannot be standard input"));
882 if (fp1
!= stdin
&& fclose (fp1
) == EOF
)
883 error (EXIT_FAILURE
, errno
, "%s", names
[0]);
884 if (fp2
!= stdin
&& fclose (fp2
) == EOF
)
885 error (EXIT_FAILURE
, errno
, "%s", names
[1]);
886 if ((fp1
== stdin
|| fp2
== stdin
) && fclose (stdin
) == EOF
)
887 error (EXIT_FAILURE
, errno
, "-");
888 if (ferror (stdout
) || fclose (stdout
) == EOF
)
889 error (EXIT_FAILURE
, errno
, _("write error"));