home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / rcs567s.zip / diff16 / diff3.c < prev    next >
C/C++ Source or Header  |  1994-06-25  |  51KB  |  1,746 lines

  1. /* Three way file comparison program (diff3) for Project GNU.
  2.    Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
  3.    Modified for DOS and OS/2 on 1994/06/25 by Kai Uwe Rommel
  4.     <rommel@ars.muc.de>.
  5.  
  6.    This program is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 2, or (at your option)
  9.    any later version.
  10.  
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.  
  16.    You should have received a copy of the GNU General Public License
  17.    along with this program; if not, write to the Free Software
  18.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* Written by Randy Smith */
  21.  
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <ctype.h>
  25. #include <sys/types.h>
  26. #include <sys/stat.h>
  27.  
  28. #define PARAMS(args) args
  29.  
  30. #ifdef MSDOS
  31. extern FILE *popen(char *, char *);
  32. extern int pclose(FILE *);
  33. #define WEXITSTATUS(stat_val)  (stat_val & 255)
  34. #define WIFEXITED(stat_val)    (((unsigned)stat_val >> 8) == 0)
  35. /* pclose() returns status in inverse byte order than wait() does */
  36. #define bzero(s,n)    memset((s),0,(n))
  37. #define VOID        void
  38. #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
  39. #endif
  40.  
  41. #include "getopt.h"
  42.  
  43. extern char *version_string;
  44.  
  45. /*
  46.  * Internal data structures and macros for the diff3 program; includes
  47.  * data structures for both diff3 diffs and normal diffs.
  48.  */
  49.  
  50. /* Different files within a three way diff.  */
  51. #define    FILE0    0
  52. #define    FILE1    1
  53. #define    FILE2    2
  54.  
  55. /*
  56.  * A three way diff is built from two two-way diffs; the file which
  57.  * the two two-way diffs share is:
  58.  */
  59. #define    FILEC    FILE2
  60.  
  61. /*
  62.  * Different files within a two way diff.
  63.  * FC is the common file, FO the other file.
  64.  */
  65. #define FO 0
  66. #define FC 1
  67.  
  68. /* The ranges are indexed by */
  69. #define    START    0
  70. #define    END    1
  71.  
  72. enum diff_type {
  73.   ERROR,            /* Should not be used */
  74.   ADD,                /* Two way diff add */
  75.   CHANGE,            /* Two way diff change */
  76.   DELETE,            /* Two way diff delete */
  77.   DIFF_ALL,            /* All three are different */
  78.   DIFF_1ST,            /* Only the first is different */
  79.   DIFF_2ND,            /* Only the second */
  80.   DIFF_3RD            /* Only the third */
  81. };
  82.  
  83. /* Two way diff */
  84. struct diff_block {
  85.   int ranges[2][2];        /* Ranges are inclusive */
  86.   char **lines[2];        /* The actual lines (may contain nulls) */
  87.   size_t *lengths[2];        /* Line lengths (including newlines, if any) */
  88.   struct diff_block *next;
  89. };
  90.  
  91. /* Three way diff */
  92.  
  93. struct diff3_block {
  94.   enum diff_type correspond;    /* Type of diff */
  95.   int ranges[3][2];        /* Ranges are inclusive */
  96.   char **lines[3];        /* The actual lines (may contain nulls) */
  97.   size_t *lengths[3];        /* Line lengths (including newlines, if any) */
  98.   struct diff3_block *next;
  99. };
  100.  
  101. /*
  102.  * Access the ranges on a diff block.
  103.  */
  104. #define    D_LOWLINE(diff, filenum)    \
  105.   ((diff)->ranges[filenum][START])
  106. #define    D_HIGHLINE(diff, filenum)    \
  107.   ((diff)->ranges[filenum][END])
  108. #define    D_NUMLINES(diff, filenum)    \
  109.   (D_HIGHLINE (diff, filenum) - D_LOWLINE (diff, filenum) + 1)
  110.  
  111. /*
  112.  * Access the line numbers in a file in a diff by relative line
  113.  * numbers (i.e. line number within the diff itself).  Note that these
  114.  * are lvalues and can be used for assignment.
  115.  */
  116. #define    D_RELNUM(diff, filenum, linenum)    \
  117.   ((diff)->lines[filenum][linenum])
  118. #define    D_RELLEN(diff, filenum, linenum)    \
  119.   ((diff)->lengths[filenum][linenum])
  120.  
  121. /*
  122.  * And get at them directly, when that should be necessary.
  123.  */
  124. #define    D_LINEARRAY(diff, filenum)    \
  125.   ((diff)->lines[filenum])
  126. #define    D_LENARRAY(diff, filenum)    \
  127.   ((diff)->lengths[filenum])
  128.  
  129. /*
  130.  * Next block.
  131.  */
  132. #define    D_NEXT(diff)    ((diff)->next)
  133.  
  134. /*
  135.  * Access the type of a diff3 block.
  136.  */
  137. #define    D3_TYPE(diff)    ((diff)->correspond)
  138.  
  139. /*
  140.  * Line mappings based on diffs.  The first maps off the top of the
  141.  * diff, the second off of the bottom.
  142.  */
  143. #define    D_HIGH_MAPLINE(diff, fromfile, tofile, lineno)    \
  144.   ((lineno)                        \
  145.    - D_HIGHLINE ((diff), (fromfile))            \
  146.    + D_HIGHLINE ((diff), (tofile)))
  147.  
  148. #define    D_LOW_MAPLINE(diff, fromfile, tofile, lineno)    \
  149.   ((lineno)                        \
  150.    - D_LOWLINE ((diff), (fromfile))            \
  151.    + D_LOWLINE ((diff), (tofile)))
  152.  
  153. /*
  154.  * General memory allocation function.
  155.  */
  156. #define    ALLOCATE(number, type)    \
  157.   (type *) xmalloc ((number) * sizeof (type))
  158.  
  159. /* Options variables for flags set on command line.  */
  160.  
  161. /* If nonzero, treat all files as text files, never as binary.  */
  162. static int always_text;
  163.  
  164. /* If nonzero, write out an ed script instead of the standard diff3 format.  */
  165. static int edscript;
  166.  
  167. /* If nonzero, in the case of overlapping diffs (type DIFF_ALL),
  168.    preserve the lines which would normally be deleted from
  169.    file 1 with a special flagging mechanism.  */
  170. static int flagging;
  171.  
  172. /* Number of lines to keep in identical prefix and suffix.  */
  173. static int horizon_lines = 10;
  174.  
  175. /* Use a tab to align output lines (-T).  */
  176. static int tab_align_flag;
  177.  
  178. /* If nonzero, do not output information for overlapping diffs.  */
  179. static int simple_only;
  180.  
  181. /* If nonzero, do not output information for non-overlapping diffs.  */
  182. static int overlap_only;
  183.  
  184. /* If nonzero, show information for DIFF_2ND diffs.  */
  185. static int show_2nd;
  186.  
  187. /* If nonzero, include `:wq' at the end of the script
  188.    to write out the file being edited.   */
  189. static int finalwrite;
  190.  
  191. /* If nonzero, output a merged file.  */
  192. static int merge;
  193.  
  194. static char *argv0;
  195.  
  196. static VOID *xmalloc PARAMS((size_t));
  197. static VOID *xrealloc PARAMS((VOID *, size_t));
  198.  
  199. static char *read_diff PARAMS((char const *, char const *, char **));
  200. static char *scan_diff_line PARAMS((char *, char **, size_t *, char *, char));
  201. static enum diff_type process_diff_control PARAMS((char **, struct diff_block *));
  202. static int compare_line_list PARAMS((char * const[], size_t const[], char * const[], size_t const[], int));
  203. static int copy_stringlist PARAMS((char * const[], size_t const[], char *[], size_t[], int));
  204. static int dotlines PARAMS((FILE *, struct diff3_block *, int));
  205. static int output_diff3_edscript PARAMS((FILE *, struct diff3_block *, int const[3], int const[3], char const *, char const *, char const *));
  206. static int output_diff3_merge PARAMS((FILE *, FILE *, struct diff3_block *, int const[3], int const[3], char const *, char const *, char const *));
  207. static size_t myread PARAMS((int, char *, size_t));
  208. static struct diff3_block *create_diff3_block PARAMS((int, int, int, int, int, int));
  209. static struct diff3_block *make_3way_diff PARAMS((struct diff_block *, struct diff_block *));
  210. static struct diff3_block *reverse_diff3_blocklist PARAMS((struct diff3_block *));
  211. static struct diff3_block *using_to_diff3_block PARAMS((struct diff_block *[2], struct diff_block *[2], int, int, struct diff3_block const *));
  212. static struct diff_block *process_diff PARAMS((char const *, char const *, struct diff_block **));
  213. static void fatal PARAMS((char const *));
  214. static void output_diff3 PARAMS((FILE *, struct diff3_block *, int const[3], int const[3]));
  215. static void perror_with_exit PARAMS((char const *));
  216. static void undotlines PARAMS((FILE *, int, int, int));
  217. static void usage PARAMS((int));
  218.  
  219. static char const diff_program[] = DIFF_PROGRAM;
  220.  
  221. static struct option const longopts[] =
  222. {
  223.   {"text", 0, 0, 'a'},
  224.   {"show-all", 0, 0, 'A'},
  225.   {"ed", 0, 0, 'e'},
  226.   {"show-overlap", 0, 0, 'E'},
  227.   {"label", 1, 0, 'L'},
  228.   {"merge", 0, 0, 'm'},
  229.   {"initial-tab", 0, 0, 'T'},
  230.   {"overlap-only", 0, 0, 'x'},
  231.   {"easy-only", 0, 0, '3'},
  232.   {"version", 0, 0, 'v'},
  233.   {"help", 0, 0, 129},
  234.   {0, 0, 0, 0}
  235. };
  236.  
  237. /*
  238.  * Main program.  Calls diff twice on two pairs of input files,
  239.  * combines the two diffs, and outputs them.
  240.  */
  241. int
  242. main (argc, argv)
  243.      int argc;
  244.      char **argv;
  245. {
  246.   int c, i;
  247.   int mapping[3];
  248.   int rev_mapping[3];
  249.   int incompat;
  250.   int conflicts_found;
  251.   struct diff_block *thread0, *thread1, *last_block;
  252.   struct diff3_block *diff3;
  253.   int tag_count = 0;
  254.   char *tag_strings[3];
  255.   char *commonname;
  256.   char **file;
  257.   struct stat statb;
  258.  
  259.   incompat = 0;
  260.  
  261.   argv0 = argv[0];
  262.  
  263.   while ((c = getopt_long (argc, argv, "aeimvx3AEL:TX", longopts, 0)) != EOF)
  264.     {
  265.       switch (c)
  266.     {
  267.     case 'a':
  268.       always_text = 1;
  269.       break;
  270.     case 'A':
  271.       show_2nd = 1;
  272.       flagging = 1;
  273.       incompat++;
  274.       break;
  275.     case 'x':
  276.       overlap_only = 1;
  277.       incompat++;
  278.       break;
  279.     case '3':
  280.       simple_only = 1;
  281.       incompat++;
  282.       break;
  283.     case 'i':
  284.       finalwrite = 1;
  285.       break;
  286.     case 'm':
  287.       merge = 1;
  288.       break;
  289.     case 'X':
  290.       overlap_only = 1;
  291.       /* Falls through */
  292.     case 'E':
  293.       flagging = 1;
  294.       /* Falls through */
  295.     case 'e':
  296.       incompat++;
  297.       break;
  298.     case 'T':
  299.       tab_align_flag = 1;
  300.       break;
  301.     case 'v':
  302.       printf ("GNU diff3 version %s\n", version_string);
  303.       exit (0);
  304.     case 129:
  305.       usage (0);
  306.     case 'L':
  307.       /* Handle up to three -L options.  */
  308.       if (tag_count < 3)
  309.         {
  310.           tag_strings[tag_count++] = optarg;
  311.           break;
  312.         }
  313.       /* Falls through */
  314.     default:
  315.       usage (2);
  316.     }
  317.     }
  318.  
  319.   edscript = incompat & ~merge;  /* -AeExX3 without -m implies ed script.  */
  320.   show_2nd |= ~incompat & merge;  /* -m without -AeExX3 implies -A.  */
  321.   flagging |= ~incompat & merge;
  322.  
  323.   if (incompat > 1  /* Ensure at most one of -AeExX3.  */
  324.       || finalwrite & merge /* -i -m would rewrite input file.  */
  325.       || (tag_count && ! flagging) /* -L requires one of -AEX.  */
  326.       || argc - optind != 3)
  327.     usage (2);
  328.  
  329.   file = &argv[optind];
  330.  
  331.   for (i = tag_count; i < 3; i++)
  332.     tag_strings[i] = file[i];
  333.  
  334.   /* Always compare file1 to file2, even if file2 is "-".
  335.      This is needed for -mAeExX3.  Using the file0 as
  336.      the common file would produce wrong results, because if the
  337.      file0-file1 diffs didn't line up with the file0-file2 diffs
  338.      (which is entirely possible since we don't use diff's -n option),
  339.      diff3 might report phantom changes from file1 to file2.  */
  340.  
  341.   if (strcmp (file[2], "-") == 0)
  342.     {
  343.       /* Sigh.  We've got standard input as the last arg.  We can't
  344.      call diff twice on stdin.  Use the middle arg as the common
  345.      file instead.  */
  346.       if (strcmp (file[0], "-") == 0 || strcmp (file[1], "-") == 0)
  347.     fatal ("`-' specified for more than one input file");
  348.       mapping[0] = 0;
  349.       mapping[1] = 2;
  350.       mapping[2] = 1;
  351.     }
  352.   else
  353.     {
  354.       /* Normal, what you'd expect */
  355.       mapping[0] = 0;
  356.       mapping[1] = 1;
  357.       mapping[2] = 2;
  358.     }
  359.  
  360.   for (i = 0; i < 3; i++)
  361.     rev_mapping[mapping[i]] = i;
  362.  
  363.   for (i = 0; i < 3; i++)
  364.     if (strcmp (file[i], "-") != 0)
  365.       {
  366.     if (stat (file[i], &statb) < 0)
  367.       perror_with_exit (file[i]);
  368.     else if (S_ISDIR(statb.st_mode))
  369.       {
  370.         fprintf (stderr, "%s: %s: Is a directory\n", argv0, file[i]);
  371.         exit (2);
  372.       }
  373.       }
  374.  
  375.   commonname = file[rev_mapping[FILEC]];
  376.   thread1 = process_diff (file[rev_mapping[FILE1]], commonname, &last_block);
  377.   if (thread1)
  378.     for (i = 0; i < 2; i++)
  379.       {
  380.     horizon_lines = max (horizon_lines, D_NUMLINES (thread1, i));
  381.     horizon_lines = max (horizon_lines, D_NUMLINES (last_block, i));
  382.       }
  383.   thread0 = process_diff (file[rev_mapping[FILE0]], commonname, &last_block);
  384.   diff3 = make_3way_diff (thread0, thread1);
  385.   if (edscript)
  386.     conflicts_found
  387.       = output_diff3_edscript (stdout, diff3, mapping, rev_mapping,
  388.                    tag_strings[0], tag_strings[1], tag_strings[2]);
  389.   else if (merge)
  390.     {
  391.       if (! freopen (file[rev_mapping[FILE0]], "r", stdin))
  392.     perror_with_exit (file[rev_mapping[FILE0]]);
  393.       conflicts_found
  394.     = output_diff3_merge (stdin, stdout, diff3, mapping, rev_mapping,
  395.                   tag_strings[0], tag_strings[1], tag_strings[2]);
  396.       if (ferror (stdin))
  397.     fatal ("read error");
  398.     }
  399.   else
  400.     {
  401.       output_diff3 (stdout, diff3, mapping, rev_mapping);
  402.       conflicts_found = 0;
  403.     }
  404.  
  405.   if (ferror (stdout) || fclose (stdout) != 0)
  406.     fatal ("write error");
  407.   exit (conflicts_found);
  408.   return conflicts_found;
  409. }
  410.  
  411. /*
  412.  * Explain, patiently and kindly, how to use this program.  Then exit.
  413.  */
  414. static void
  415. usage (status)
  416.      int status;
  417. {
  418.   fflush(stderr);
  419.   printf ("\nGNU diff3, version %s\n\n", version_string);
  420.   printf ("\
  421. Usage: %s [options] my-file older-file your-file\n\
  422. Options:\n\
  423.     [-exAEX3aTv] [-i|-m] [-L label1 [-L label2 [-L label3]]]\n\
  424.     [--easy-only] [--ed] [--help] [--initial-tab]\n\
  425.     [--label=label1 [--label=label2 [--label=label3]]] [--merge]\n\
  426.     [--overlap-only] [--show-all] [--show-overlap] [--text] [--version]\n\
  427.     Only one of [exAEX3] is allowed\n", argv0);
  428.   exit (status);
  429. }
  430.  
  431. /*
  432.  * Routines that combine the two diffs together into one.  The
  433.  * algorithm used follows:
  434.  *
  435.  *   File2 is shared in common between the two diffs.
  436.  *   Diff02 is the diff between 0 and 2.
  437.  *   Diff12 is the diff between 1 and 2.
  438.  *
  439.  *    1) Find the range for the first block in File2.
  440.  *        a) Take the lowest of the two ranges (in File2) in the two
  441.  *           current blocks (one from each diff) as being the low
  442.  *           water mark.  Assign the upper end of this block as
  443.  *           being the high water mark and move the current block up
  444.  *           one.  Mark the block just moved over as to be used.
  445.  *        b) Check the next block in the diff that the high water
  446.  *           mark is *not* from.
  447.  *
  448.  *           *If* the high water mark is above
  449.  *           the low end of the range in that block,
  450.  *
  451.  *           mark that block as to be used and move the current
  452.  *           block up.  Set the high water mark to the max of
  453.  *           the high end of this block and the current.  Repeat b.
  454.  *
  455.  *     2) Find the corresponding ranges in File0 (from the blocks
  456.  *        in diff02; line per line outside of diffs) and in File1.
  457.  *        Create a diff3_block, reserving space as indicated by the ranges.
  458.  *
  459.  *     3) Copy all of the pointers for file2 in.  At least for now,
  460.  *        do memcmp's between corresponding strings in the two diffs.
  461.  *
  462.  *     4) Copy all of the pointers for file0 and 1 in.  Get what you
  463.  *        need from file2 (when there isn't a diff block, it's
  464.  *        identical to file2 within the range between diff blocks).
  465.  *
  466.  *     5) If the diff blocks you used came from only one of the two
  467.  *        strings of diffs, then that file (i.e. the one other than
  468.  *        the common file in that diff) is the odd person out.  If you used
  469.  *        diff blocks from both sets, check to see if files 0 and 1 match:
  470.  *
  471.  *        Same number of lines?  If so, do a set of memcmp's (if a
  472.  *        memcmp matches; copy the pointer over; it'll be easier later
  473.  *        if you have to do any compares).  If they match, 0 & 1 are
  474.  *        the same.  If not, all three different.
  475.  *
  476.  *   Then you do it again, until you run out of blocks.
  477.  *
  478.  */
  479.  
  480. /*
  481.  * This routine makes a three way diff (chain of diff3_block's) from two
  482.  * two way diffs (chains of diff_block's).  It is assumed that each of
  483.  * the two diffs passed are onto the same file (i.e. that each of the
  484.  * diffs were made "to" the same file).  The three way diff pointer
  485.  * returned will have numbering FILE0--the other file in diff02,
  486.  * FILE1--the other file in diff12, and FILEC--the common file.
  487.  */
  488. static struct diff3_block *
  489. make_3way_diff (thread0, thread1)
  490.      struct diff_block *thread0, *thread1;
  491. {
  492. /*
  493.  * This routine works on the two diffs passed to it as threads.
  494.  * Thread number 0 is diff02, thread number 1 is diff12.  The USING
  495.  * array is set to the base of the list of blocks to be used to
  496.  * construct each block of the three way diff; if no blocks from a
  497.  * particular thread are to be used, that element of the using array
  498.  * is set to 0.  The elements LAST_USING array are set to the last
  499.  * elements on each of the using lists.
  500.  *
  501.  * The HIGH_WATER_MARK is set to the highest line number in the common file
  502.  * described in any of the diffs in either of the USING lists.  The
  503.  * HIGH_WATER_THREAD names the thread.  Similarly the BASE_WATER_MARK
  504.  * and BASE_WATER_THREAD describe the lowest line number in the common file
  505.  * described in any of the diffs in either of the USING lists.  The
  506.  * HIGH_WATER_DIFF is the diff from which the HIGH_WATER_MARK was
  507.  * taken.
  508.  *
  509.  * The HIGH_WATER_DIFF should always be equal to LAST_USING
  510.  * [HIGH_WATER_THREAD].  The OTHER_DIFF is the next diff to check for
  511.  * higher water, and should always be equal to
  512.  * CURRENT[HIGH_WATER_THREAD ^ 0x1].  The OTHER_THREAD is the thread
  513.  * in which the OTHER_DIFF is, and hence should always be equal to
  514.  * HIGH_WATER_THREAD ^ 0x1.
  515.  *
  516.  * The variable LAST_DIFF is kept set to the last diff block produced
  517.  * by this routine, for line correspondence purposes between that diff
  518.  * and the one currently being worked on.  It is initialized to
  519.  * ZERO_DIFF before any blocks have been created.
  520.  */
  521.  
  522.   struct diff_block
  523.     *using[2],
  524.     *last_using[2],
  525.     *current[2];
  526.  
  527.   int
  528.     high_water_mark;
  529.  
  530.   int
  531.     high_water_thread,
  532.     base_water_thread,
  533.     other_thread;
  534.  
  535.   struct diff_block
  536.     *high_water_diff,
  537.     *other_diff;
  538.  
  539.   struct diff3_block
  540.     *result,
  541.     *tmpblock,
  542.     **result_end;
  543.  
  544.   struct diff3_block const *last_diff3;
  545.  
  546.   static struct diff3_block const zero_diff3;
  547.  
  548.   /* Initialization */
  549.   result = 0;
  550.   result_end = &result;
  551.   current[0] = thread0; current[1] = thread1;
  552.   last_diff3 = &zero_diff3;
  553.  
  554.   /* Sniff up the threads until we reach the end */
  555.  
  556.   while (current[0] || current[1])
  557.     {
  558.       using[0] = using[1] = last_using[0] = last_using[1] = 0;
  559.  
  560.       /* Setup low and high water threads, diffs, and marks.  */
  561.       if (!current[0])
  562.     base_water_thread = 1;
  563.       else if (!current[1])
  564.     base_water_thread = 0;
  565.       else
  566.     base_water_thread =
  567.       (D_LOWLINE (current[0], FC) > D_LOWLINE (current[1], FC));
  568.  
  569.       high_water_thread = base_water_thread;
  570.  
  571.       high_water_diff = current[high_water_thread];
  572.  
  573. #if 0
  574.       /* low and high waters start off same diff */
  575.       base_water_mark = D_LOWLINE (high_water_diff, FC);
  576. #endif
  577.  
  578.       high_water_mark = D_HIGHLINE (high_water_diff, FC);
  579.  
  580.       /* Make the diff you just got info from into the using class */
  581.       using[high_water_thread]
  582.     = last_using[high_water_thread]
  583.     = high_water_diff;
  584.       current[high_water_thread] = high_water_diff->next;
  585.       last_using[high_water_thread]->next = 0;
  586.  
  587.       /* And mark the other diff */
  588.       other_thread = high_water_thread ^ 0x1;
  589.       other_diff = current[other_thread];
  590.  
  591.       /* Shuffle up the ladder, checking the other diff to see if it
  592.      needs to be incorporated.  */
  593.       while (other_diff
  594.          && D_LOWLINE (other_diff, FC) <= high_water_mark + 1)
  595.     {
  596.  
  597.       /* Incorporate this diff into the using list.  Note that
  598.          this doesn't take it off the current list */
  599.       if (using[other_thread])
  600.         last_using[other_thread]->next = other_diff;
  601.       else
  602.         using[other_thread] = other_diff;
  603.       last_using[other_thread] = other_diff;
  604.  
  605.       /* Take it off the current list.  Note that this following
  606.          code assumes that other_diff enters it equal to
  607.          current[high_water_thread ^ 0x1] */
  608.       current[other_thread] = current[other_thread]->next;
  609.       other_diff->next = 0;
  610.  
  611.       /* Set the high_water stuff
  612.          If this comparison is equal, then this is the last pass
  613.          through this loop; since diff blocks within a given
  614.          thread cannot overlap, the high_water_mark will be
  615.          *below* the range_start of either of the next diffs.  */
  616.  
  617.       if (high_water_mark < D_HIGHLINE (other_diff, FC))
  618.         {
  619.           high_water_thread ^= 1;
  620.           high_water_diff = other_diff;
  621.           high_water_mark = D_HIGHLINE (other_diff, FC);
  622.         }
  623.  
  624.       /* Set the other diff */
  625.       other_thread = high_water_thread ^ 0x1;
  626.       other_diff = current[other_thread];
  627.     }
  628.  
  629.       /* The using lists contain a list of all of the blocks to be
  630.      included in this diff3_block.  Create it.  */
  631.  
  632.       tmpblock = using_to_diff3_block (using, last_using,
  633.                        base_water_thread, high_water_thread,
  634.                        last_diff3);
  635.  
  636.       if (!tmpblock)
  637.     fatal ("internal error: screwup in format of diff blocks");
  638.  
  639.       /* Put it on the list.  */
  640.       *result_end = tmpblock;
  641.       result_end = &tmpblock->next;
  642.  
  643.       /* Set up corresponding lines correctly.  */
  644.       last_diff3 = tmpblock;
  645.     }
  646.   return result;
  647. }
  648.  
  649. /*
  650.  * using_to_diff3_block:
  651.  *   This routine takes two lists of blocks (from two separate diff
  652.  * threads) and puts them together into one diff3 block.
  653.  * It then returns a pointer to this diff3 block or 0 for failure.
  654.  *
  655.  * All arguments besides using are for the convenience of the routine;
  656.  * they could be derived from the using array.
  657.  * LAST_USING is a pair of pointers to the last blocks in the using
  658.  * structure.
  659.  * LOW_THREAD and HIGH_THREAD tell which threads contain the lowest
  660.  * and highest line numbers for File0.
  661.  * last_diff3 contains the last diff produced in the calling routine.
  662.  * This is used for lines mappings which would still be identical to
  663.  * the state that diff ended in.
  664.  *
  665.  * A distinction should be made in this routine between the two diffs
  666.  * that are part of a normal two diff block, and the three diffs that
  667.  * are part of a diff3_block.
  668.  */
  669. static struct diff3_block *
  670. using_to_diff3_block (using, last_using, low_thread, high_thread, last_diff3)
  671.      struct diff_block
  672.        *using[2],
  673.        *last_using[2];
  674.      int low_thread, high_thread;
  675.      struct diff3_block const *last_diff3;
  676. {
  677.   int low[2], high[2];
  678.   struct diff3_block *result;
  679.   struct diff_block *ptr;
  680.   int d, i;
  681.  
  682.   /* Find the range in the common file.  */
  683.   int lowc = D_LOWLINE (using[low_thread], FC);
  684.   int highc = D_HIGHLINE (last_using[high_thread], FC);
  685.  
  686.   /* Find the ranges in the other files.
  687.      If using[d] is null, that means that the file to which that diff
  688.      refers is equivalent to the common file over this range.  */
  689.  
  690.   for (d = 0; d < 2; d++)
  691.     if (using[d])
  692.       {
  693.     low[d] = D_LOW_MAPLINE (using[d], FC, FO, lowc);
  694.     high[d] = D_HIGH_MAPLINE (last_using[d], FC, FO, highc);
  695.       }
  696.     else
  697.       {
  698.     low[d] = D_HIGH_MAPLINE (last_diff3, FILEC, FILE0 + d, lowc);
  699.     high[d] = D_HIGH_MAPLINE (last_diff3, FILEC, FILE0 + d, highc);
  700.       }
  701.  
  702.   /* Create a block with the appropriate sizes */
  703.   result = create_diff3_block (low[0], high[0], low[1], high[1], lowc, highc);
  704.  
  705.   /* Copy information for the common file.
  706.      Return with a zero if any of the compares failed.  */
  707.  
  708.   for (d = 0; d < 2; d++)
  709.     for (ptr = using[d]; ptr; ptr = D_NEXT (ptr))
  710.       {
  711.     int result_offset = D_LOWLINE (ptr, FC) - lowc;
  712.  
  713.     if (!copy_stringlist (D_LINEARRAY (ptr, FC),
  714.                   D_LENARRAY (ptr, FC),
  715.                   D_LINEARRAY (result, FILEC) + result_offset,
  716.                   D_LENARRAY (result, FILEC) + result_offset,
  717.                   D_NUMLINES (ptr, FC)))
  718.       return 0;
  719.       }
  720.  
  721.   /* Copy information for file d.  First deal with anything that might be
  722.      before the first diff.  */
  723.  
  724.   for (d = 0; d < 2; d++)
  725.     {
  726.       struct diff_block *u = using[d];
  727.       int lo = low[d], hi = high[d];
  728.  
  729.       for (i = 0;
  730.        i + lo < (u ? D_LOWLINE (u, FO) : hi + 1);
  731.        i++)
  732.     {
  733.       D_RELNUM (result, FILE0 + d, i) = D_RELNUM (result, FILEC, i);
  734.       D_RELLEN (result, FILE0 + d, i) = D_RELLEN (result, FILEC, i);
  735.     }
  736.  
  737.       for (ptr = u; ptr; ptr = D_NEXT (ptr))
  738.     {
  739.       int result_offset = D_LOWLINE (ptr, FO) - lo;
  740.       int linec;
  741.  
  742.       if (!copy_stringlist (D_LINEARRAY (ptr, FO),
  743.                 D_LENARRAY (ptr, FO),
  744.                 D_LINEARRAY (result, FILE0 + d) + result_offset,
  745.                 D_LENARRAY (result, FILE0 + d) + result_offset,
  746.                 D_NUMLINES (ptr, FO)))
  747.         return 0;
  748.  
  749.       /* Catch the lines between here and the next diff */
  750.       linec = D_HIGHLINE (ptr, FC) + 1 - lowc;
  751.       for (i = D_HIGHLINE (ptr, FO) + 1 - lo;
  752.            i < (D_NEXT (ptr) ? D_LOWLINE (D_NEXT (ptr), FO) : hi + 1) - lo;
  753.            i++)
  754.         {
  755.           D_RELNUM (result, FILE0 + d, i) = D_RELNUM (result, FILEC, linec);
  756.           D_RELLEN (result, FILE0 + d, i) = D_RELLEN (result, FILEC, linec);
  757.           linec++;
  758.         }
  759.     }
  760.     }
  761.  
  762.   /* Set correspond */
  763.   if (!using[0])
  764.     D3_TYPE (result) = DIFF_2ND;
  765.   else if (!using[1])
  766.     D3_TYPE (result) = DIFF_1ST;
  767.   else
  768.     {
  769.       int nl0 = D_NUMLINES (result, FILE0);
  770.       int nl1 = D_NUMLINES (result, FILE1);
  771.  
  772.       if (nl0 != nl1
  773.       || !compare_line_list (D_LINEARRAY (result, FILE0),
  774.                  D_LENARRAY (result, FILE0),
  775.                  D_LINEARRAY (result, FILE1),
  776.                  D_LENARRAY (result, FILE1),
  777.                  nl0))
  778.     D3_TYPE (result) = DIFF_ALL;
  779.       else
  780.     D3_TYPE (result) = DIFF_3RD;
  781.     }
  782.  
  783.   return result;
  784. }
  785.  
  786. /*
  787.  * This routine copies pointers from a list of strings to a different list
  788.  * of strings.  If a spot in the second list is already filled, it
  789.  * makes sure that it is filled with the same string; if not it
  790.  * returns 0, the copy incomplete.
  791.  * Upon successful completion of the copy, it returns 1.
  792.  */
  793. static int
  794. copy_stringlist (fromptrs, fromlengths, toptrs, tolengths, copynum)
  795.      char * const fromptrs[];
  796.      char *toptrs[];
  797.      size_t const fromlengths[];
  798.      size_t tolengths[];
  799.      int copynum;
  800. {
  801.   register char * const *f = fromptrs;
  802.   register char **t = toptrs;
  803.   register size_t const *fl = fromlengths;
  804.   register size_t *tl = tolengths;
  805.  
  806.   while (copynum--)
  807.     {
  808.       if (*t)
  809.     { if (*fl != *tl || memcmp (*f, *t, *fl)) return 0; }
  810.       else
  811.     { *t = *f ; *tl = *fl; }
  812.  
  813.       t++; f++; tl++; fl++;
  814.     }
  815.   return 1;
  816. }
  817.  
  818. /*
  819.  * Create a diff3_block, with ranges as specified in the arguments.
  820.  * Allocate the arrays for the various pointers (and zero them) based
  821.  * on the arguments passed.  Return the block as a result.
  822.  */
  823. static struct diff3_block *
  824. create_diff3_block (low0, high0, low1, high1, low2, high2)
  825.      register int low0, high0, low1, high1, low2, high2;
  826. {
  827.   struct diff3_block *result = ALLOCATE (1, struct diff3_block);
  828.   int numlines;
  829.  
  830.   D3_TYPE (result) = ERROR;
  831.   D_NEXT (result) = 0;
  832.  
  833.   /* Assign ranges */
  834.   D_LOWLINE (result, FILE0) = low0;
  835.   D_HIGHLINE (result, FILE0) = high0;
  836.   D_LOWLINE (result, FILE1) = low1;
  837.   D_HIGHLINE (result, FILE1) = high1;
  838.   D_LOWLINE (result, FILE2) = low2;
  839.   D_HIGHLINE (result, FILE2) = high2;
  840.  
  841.   /* Allocate and zero space */
  842.   numlines = D_NUMLINES (result, FILE0);
  843.   if (numlines)
  844.     {
  845.       D_LINEARRAY (result, FILE0) = ALLOCATE (numlines, char *);
  846.       D_LENARRAY (result, FILE0) = ALLOCATE (numlines, size_t);
  847.       bzero (D_LINEARRAY (result, FILE0), (numlines * sizeof (char *)));
  848.       bzero (D_LENARRAY (result, FILE0), (numlines * sizeof (size_t)));
  849.     }
  850.   else
  851.     {
  852.       D_LINEARRAY (result, FILE0) = 0;
  853.       D_LENARRAY (result, FILE0) = 0;
  854.     }
  855.  
  856.   numlines = D_NUMLINES (result, FILE1);
  857.   if (numlines)
  858.     {
  859.       D_LINEARRAY (result, FILE1) = ALLOCATE (numlines, char *);
  860.       D_LENARRAY (result, FILE1) = ALLOCATE (numlines, size_t);
  861.       bzero (D_LINEARRAY (result, FILE1), (numlines * sizeof (char *)));
  862.       bzero (D_LENARRAY (result, FILE1), (numlines * sizeof (size_t)));
  863.     }
  864.   else
  865.     {
  866.       D_LINEARRAY (result, FILE1) = 0;
  867.       D_LENARRAY (result, FILE1) = 0;
  868.     }
  869.  
  870.   numlines = D_NUMLINES (result, FILE2);
  871.   if (numlines)
  872.     {
  873.       D_LINEARRAY (result, FILE2) = ALLOCATE (numlines, char *);
  874.       D_LENARRAY (result, FILE2) = ALLOCATE (numlines, size_t);
  875.       bzero (D_LINEARRAY (result, FILE2), (numlines * sizeof (char *)));
  876.       bzero (D_LENARRAY (result, FILE2), (numlines * sizeof (size_t)));
  877.     }
  878.   else
  879.     {
  880.       D_LINEARRAY (result, FILE2) = 0;
  881.       D_LENARRAY (result, FILE2) = 0;
  882.     }
  883.  
  884.   /* Return */
  885.   return result;
  886. }
  887.  
  888. /*
  889.  * Compare two lists of lines of text.
  890.  * Return 1 if they are equivalent, 0 if not.
  891.  */
  892. static int
  893. compare_line_list (list1, lengths1, list2, lengths2, nl)
  894.      char * const list1[], * const list2[];
  895.      size_t const lengths1[], lengths2[];
  896.      int nl;
  897. {
  898.   char
  899.     **l1 = list1,
  900.     **l2 = list2;
  901.   size_t const
  902.     *lgths1 = lengths1,
  903.     *lgths2 = lengths2;
  904.  
  905.   while (nl--)
  906.     if (!*l1 || !*l2 || *lgths1 != *lgths2++
  907.     || memcmp (*l1++, *l2++, *lgths1++))
  908.       return 0;
  909.   return 1;
  910. }
  911.  
  912. /*
  913.  * Routines to input and parse two way diffs.
  914.  */
  915.  
  916. #define    DIFF_CHUNK_SIZE    10000
  917.  
  918. static struct diff_block *
  919. process_diff (filea, fileb, last_block)
  920.      char const *filea, *fileb;
  921.      struct diff_block **last_block;
  922. {
  923.   char *diff_contents;
  924.   char *diff_limit;
  925.   char *scan_diff;
  926.   enum diff_type dt;
  927.   int i;
  928.   struct diff_block *block_list, **block_list_end, *bptr;
  929.  
  930.   diff_limit = read_diff (filea, fileb, &diff_contents);
  931.   scan_diff = diff_contents;
  932.   block_list_end = &block_list;
  933.   bptr = 0; /* Pacify `gcc -W'.  */
  934.  
  935.   while (scan_diff < diff_limit)
  936.     {
  937.       bptr = ALLOCATE (1, struct diff_block);
  938.       bptr->lines[0] = bptr->lines[1] = 0;
  939.       bptr->lengths[0] = bptr->lengths[1] = 0;
  940.  
  941.       dt = process_diff_control (&scan_diff, bptr);
  942.       if (dt == ERROR || *scan_diff != '\n')
  943.     {
  944.       fprintf (stderr, "%s: diff error: ", argv0);
  945.       do
  946.         {
  947.           putc (*scan_diff, stderr);
  948.         }
  949.       while (*scan_diff++ != '\n');
  950.       exit (2);
  951.     }
  952.       scan_diff++;
  953.  
  954.       /* Force appropriate ranges to be null, if necessary */
  955.       switch (dt)
  956.     {
  957.     case ADD:
  958.       bptr->ranges[0][0]++;
  959.       break;
  960.     case DELETE:
  961.       bptr->ranges[1][0]++;
  962.       break;
  963.     case CHANGE:
  964.       break;
  965.     default:
  966.       fatal ("internal error: invalid diff type in process_diff");
  967.       break;
  968.     }
  969.  
  970.       /* Allocate space for the pointers for the lines from filea, and
  971.      parcel them out among these pointers */
  972.       if (dt != ADD)
  973.     {
  974.       int numlines = D_NUMLINES (bptr, 0);
  975.       bptr->lines[0] = ALLOCATE (numlines, char *);
  976.       bptr->lengths[0] = ALLOCATE (numlines, size_t);
  977.       for (i = 0; i < numlines; i++)
  978.         scan_diff = scan_diff_line (scan_diff,
  979.                     &(bptr->lines[0][i]),
  980.                     &(bptr->lengths[0][i]),
  981.                     diff_limit,
  982.                     '<');
  983.     }
  984.  
  985.       /* Get past the separator for changes */
  986.       if (dt == CHANGE)
  987.     {
  988.       if (strncmp (scan_diff, "---\n", 4))
  989.         fatal ("invalid diff format; invalid change separator");
  990.       scan_diff += 4;
  991.     }
  992.  
  993.       /* Allocate space for the pointers for the lines from fileb, and
  994.      parcel them out among these pointers */
  995.       if (dt != DELETE)
  996.     {
  997.       int numlines = D_NUMLINES (bptr, 1);
  998.       bptr->lines[1] = ALLOCATE (numlines, char *);
  999.       bptr->lengths[1] = ALLOCATE (numlines, size_t);
  1000.       for (i = 0; i < numlines; i++)
  1001.         scan_diff = scan_diff_line (scan_diff,
  1002.                     &(bptr->lines[1][i]),
  1003.                     &(bptr->lengths[1][i]),
  1004.                     diff_limit,
  1005.                     '>');
  1006.     }
  1007.  
  1008.       /* Place this block on the blocklist.  */
  1009.       *block_list_end = bptr;
  1010.       block_list_end = &bptr->next;
  1011.     }
  1012.  
  1013.   *block_list_end = 0;
  1014.   *last_block = bptr;
  1015.   return block_list;
  1016. }
  1017.  
  1018. /*
  1019.  * This routine will parse a normal format diff control string.  It
  1020.  * returns the type of the diff (ERROR if the format is bad).  All of
  1021.  * the other important information is filled into to the structure
  1022.  * pointed to by db, and the string pointer (whose location is passed
  1023.  * to this routine) is updated to point beyond the end of the string
  1024.  * parsed.  Note that only the ranges in the diff_block will be set by
  1025.  * this routine.
  1026.  *
  1027.  * If some specific pair of numbers has been reduced to a single
  1028.  * number, then both corresponding numbers in the diff block are set
  1029.  * to that number.  In general these numbers are interpetted as ranges
  1030.  * inclusive, unless being used by the ADD or DELETE commands.  It is
  1031.  * assumed that these will be special cased in a superior routine.
  1032.  */
  1033.  
  1034. static enum diff_type
  1035. process_diff_control (string, db)
  1036.      char **string;
  1037.      struct diff_block *db;
  1038. {
  1039.   char *s = *string;
  1040.   int holdnum;
  1041.   enum diff_type type;
  1042.  
  1043. /* These macros are defined here because they can use variables
  1044.    defined in this function.  Don't try this at home kids, we're
  1045.    trained professionals!
  1046.  
  1047.    Also note that SKIPWHITE only recognizes tabs and spaces, and
  1048.    that READNUM can only read positive, integral numbers */
  1049.  
  1050. #define    SKIPWHITE(s)    { while (*s == ' ' || *s == '\t') s++; }
  1051. #define    READNUM(s, num)    \
  1052.     { unsigned char c = *s; if (!isdigit (c)) return ERROR; holdnum = 0; \
  1053.       do { holdnum = (c - '0' + holdnum * 10); }    \
  1054.       while (isdigit (c = *++s)); (num) = holdnum; }
  1055.  
  1056.   /* Read first set of digits */
  1057.   SKIPWHITE (s);
  1058.   READNUM (s, db->ranges[0][START]);
  1059.  
  1060.   /* Was that the only digit? */
  1061.   SKIPWHITE (s);
  1062.   if (*s == ',')
  1063.     {
  1064.       /* Get the next digit */
  1065.       s++;
  1066.       READNUM (s, db->ranges[0][END]);
  1067.     }
  1068.   else
  1069.     db->ranges[0][END] = db->ranges[0][START];
  1070.  
  1071.   /* Get the letter */
  1072.   SKIPWHITE (s);
  1073.   switch (*s)
  1074.     {
  1075.     case 'a':
  1076.       type = ADD;
  1077.       break;
  1078.     case 'c':
  1079.       type = CHANGE;
  1080.       break;
  1081.     case 'd':
  1082.       type = DELETE;
  1083.       break;
  1084.     default:
  1085.       return ERROR;            /* Bad format */
  1086.     }
  1087.   s++;                /* Past letter */
  1088.  
  1089.   /* Read second set of digits */
  1090.   SKIPWHITE (s);
  1091.   READNUM (s, db->ranges[1][START]);
  1092.  
  1093.   /* Was that the only digit? */
  1094.   SKIPWHITE (s);
  1095.   if (*s == ',')
  1096.     {
  1097.       /* Get the next digit */
  1098.       s++;
  1099.       READNUM (s, db->ranges[1][END]);
  1100.       SKIPWHITE (s);        /* To move to end */
  1101.     }
  1102.   else
  1103.     db->ranges[1][END] = db->ranges[1][START];
  1104.  
  1105.   *string = s;
  1106.   return type;
  1107. }
  1108.  
  1109. static char *
  1110. read_diff (filea, fileb, output_placement)
  1111.      char const *filea, *fileb;
  1112.      char **output_placement;
  1113. {
  1114.   char *diff_result;
  1115.   size_t bytes, current_chunk_size, total;
  1116.   int fds[2];
  1117. #ifdef MSDOS
  1118.   FILE *pipe;
  1119.   char buffer[512];
  1120. #else
  1121.   char const *argv[7];
  1122.   char horizon_arg[256];
  1123.   char const **ap;
  1124.   pid_t pid;
  1125. #endif
  1126.   int wstatus;
  1127.  
  1128. #ifdef MSDOS
  1129.   sprintf (buffer, "%s -a -- %s %s", diff_program, filea, fileb);
  1130.   pipe = popen (buffer, "r");
  1131.   fds[0] = fileno (pipe);
  1132. #else
  1133.   ap = argv;
  1134.   *ap++ = diff_program;
  1135.   if (always_text)
  1136.     *ap++ = "-a";
  1137.   sprintf (horizon_arg, "--horizon-lines=%d", horizon_lines);
  1138.   *ap++ = horizon_arg;
  1139.   *ap++ = "--";
  1140.   *ap++ = filea;
  1141.   *ap++ = fileb;
  1142.   *ap = 0;
  1143.  
  1144.   if (pipe (fds) < 0)
  1145.     perror_with_exit ("pipe failed");
  1146.  
  1147.   pid = vfork ();
  1148.   if (pid == 0)
  1149.     {
  1150.       /* Child */
  1151.       close (fds[0]);
  1152.       if (fds[1] != STDOUT_FILENO)
  1153.     {
  1154.       dup2 (fds[1], STDOUT_FILENO);
  1155.       close (fds[1]);
  1156.     }
  1157.       execve (diff_program, (char **) argv, environ);
  1158.       /* Avoid stdio, because the parent process's buffers are inherited.  */
  1159.       write (STDERR_FILENO, diff_program, strlen (diff_program));
  1160.       write (STDERR_FILENO, ": not found\n", 12);
  1161.       _exit (2);
  1162.     }
  1163.  
  1164.   if (pid == -1)
  1165.     perror_with_exit ("fork failed");
  1166.  
  1167.   close (fds[1]);        /* Prevent erroneous lack of EOF */
  1168. #endif
  1169.  
  1170.   current_chunk_size = DIFF_CHUNK_SIZE;
  1171.   diff_result = xmalloc (current_chunk_size);
  1172.   total = 0;
  1173.   do {
  1174.     bytes = myread (fds[0],
  1175.             diff_result + total,
  1176.             current_chunk_size - total);
  1177.     total += bytes;
  1178.     if (total == current_chunk_size)
  1179.       {
  1180.     if (current_chunk_size < 2 * current_chunk_size)
  1181.       current_chunk_size = 2 * current_chunk_size;
  1182.     else if (current_chunk_size < (size_t) -1)
  1183.       current_chunk_size = (size_t) -1;
  1184.     else
  1185.       fatal ("files are too large to fit into memory");
  1186. #ifdef MSDOS
  1187.     diff_result = (char *) xrealloc (diff_result,
  1188.                       (current_chunk_size += DIFF_CHUNK_SIZE));
  1189. #else
  1190.     diff_result = xrealloc (diff_result, (current_chunk_size *= 2));
  1191. #endif
  1192.       }
  1193.   } while (bytes);
  1194.  
  1195.   if (total != 0 && diff_result[total-1] != '\n')
  1196.     fatal ("invalid diff format; incomplete last line");
  1197.  
  1198.   *output_placement = diff_result;
  1199.  
  1200. #ifdef MSDOS
  1201.   wstatus = pclose(pipe);
  1202. #else
  1203. #if HAVE_WAITPID
  1204.   if (waitpid (pid, &wstatus, 0) < 0)
  1205.     perror_with_exit ("waitpid failed");
  1206. #else
  1207.   for (;;) {
  1208.     pid_t w = wait (&wstatus);
  1209.     if (w < 0)
  1210.       perror_with_exit ("wait failed");
  1211.     if (w == pid)
  1212.       break;
  1213.   }
  1214. #endif
  1215. #endif
  1216.  
  1217.   if (! (WIFEXITED (wstatus) && WEXITSTATUS (wstatus) < 2))
  1218.     fatal ("subsidiary diff failed");
  1219.  
  1220.   return diff_result + total;
  1221. }
  1222.  
  1223.  
  1224. /*
  1225.  * Scan a regular diff line (consisting of > or <, followed by a
  1226.  * space, followed by text (including nulls) up to a newline.
  1227.  *
  1228.  * This next routine began life as a macro and many parameters in it
  1229.  * are used as call-by-reference values.
  1230.  */
  1231. static char *
  1232. scan_diff_line (scan_ptr, set_start, set_length, limit, firstchar)
  1233.      char *scan_ptr, **set_start;
  1234.      size_t *set_length;
  1235.      char *limit;
  1236.      char firstchar;
  1237. {
  1238.   char *line_ptr;
  1239.  
  1240.   if (!(scan_ptr[0] == (firstchar)
  1241.     && scan_ptr[1] == ' '))
  1242.     fatal ("invalid diff format; incorrect leading line chars");
  1243.  
  1244.   *set_start = line_ptr = scan_ptr + 2;
  1245.   while (*line_ptr++ != '\n')
  1246.     ;
  1247.  
  1248.   /* Include newline if the original line ended in a newline,
  1249.      or if an edit script is being generated.
  1250.      Copy any missing newline message to stderr if an edit script is being
  1251.      generated, because edit scripts cannot handle missing newlines.
  1252.      Return the beginning of the next line.  */
  1253.   *set_length = line_ptr - *set_start;
  1254.   if (line_ptr < limit && *line_ptr == '\\')
  1255.     {
  1256.       if (edscript)
  1257.     fprintf (stderr, "%s:", argv0);
  1258.       else
  1259.     --*set_length;
  1260.       line_ptr++;
  1261.       do
  1262.     {
  1263.       if (edscript)
  1264.         putc (*line_ptr, stderr);
  1265.     }
  1266.       while (*line_ptr++ != '\n');
  1267.     }
  1268.  
  1269.   return line_ptr;
  1270. }
  1271.  
  1272. /*
  1273.  * This routine outputs a three way diff passed as a list of
  1274.  * diff3_block's.
  1275.  * The argument MAPPING is indexed by external file number (in the
  1276.  * argument list) and contains the internal file number (from the
  1277.  * diff passed).  This is important because the user expects his
  1278.  * outputs in terms of the argument list number, and the diff passed
  1279.  * may have been done slightly differently (if the last argument
  1280.  * was "-", for example).
  1281.  * REV_MAPPING is the inverse of MAPPING.
  1282.  */
  1283. static void
  1284. output_diff3 (outputfile, diff, mapping, rev_mapping)
  1285.      FILE *outputfile;
  1286.      struct diff3_block *diff;
  1287.      int const mapping[3], rev_mapping[3];
  1288. {
  1289.   int i;
  1290.   int oddoneout;
  1291.   char *cp;
  1292.   struct diff3_block *ptr;
  1293.   int line;
  1294.   size_t length;
  1295.   int dontprint;
  1296.   static int skew_increment[3] = { 2, 3, 1 }; /* 0==>2==>1==>3 */
  1297.   char const *line_prefix = tab_align_flag ? "\t" : "  ";
  1298.  
  1299.   for (ptr = diff; ptr; ptr = D_NEXT (ptr))
  1300.     {
  1301.       char x[2];
  1302.  
  1303.       switch (ptr->correspond)
  1304.     {
  1305.     case DIFF_ALL:
  1306.       x[0] = '\0';
  1307.       dontprint = 3;    /* Print them all */
  1308.       oddoneout = 3;    /* Nobody's odder than anyone else */
  1309.       break;
  1310.     case DIFF_1ST:
  1311.     case DIFF_2ND:
  1312.     case DIFF_3RD:
  1313.       oddoneout = rev_mapping[(int) ptr->correspond - (int) DIFF_1ST];
  1314.  
  1315.       x[0] = (char) (oddoneout + '1');
  1316.       x[1] = '\0';
  1317.       dontprint = oddoneout==0;
  1318.       break;
  1319.     default:
  1320.       fatal ("internal error: invalid diff type passed to output");
  1321.     }
  1322.       fprintf (outputfile, "====%s\n", x);
  1323.  
  1324.       /* Go 0, 2, 1 if the first and third outputs are equivalent.  */
  1325.       for (i = 0; i < 3;
  1326.        i = (oddoneout == 1 ? skew_increment[i] : i + 1))
  1327.     {
  1328.       int realfile = mapping[i];
  1329.       int
  1330.         lowt = D_LOWLINE (ptr, realfile),
  1331.         hight = D_HIGHLINE (ptr, realfile);
  1332.  
  1333.       fprintf (outputfile, "%d:", i + 1);
  1334.       switch (lowt - hight)
  1335.         {
  1336.         case 1:
  1337.           fprintf (outputfile, "%da\n", lowt - 1);
  1338.           break;
  1339.         case 0:
  1340.           fprintf (outputfile, "%dc\n", lowt);
  1341.           break;
  1342.         default:
  1343.           fprintf (outputfile, "%d,%dc\n", lowt, hight);
  1344.           break;
  1345.         }
  1346.  
  1347.       if (i == dontprint) continue;
  1348.  
  1349.       if (lowt <= hight)
  1350.         {
  1351.           line = 0;
  1352.           do
  1353.         {
  1354.           fprintf (outputfile, line_prefix);
  1355.           cp = D_RELNUM (ptr, realfile, line);
  1356.           length = D_RELLEN (ptr, realfile, line);
  1357.           fwrite (cp, sizeof (char), length, outputfile);
  1358.         }
  1359.           while (++line < hight - lowt + 1);
  1360.           if (cp[length - 1] != '\n')
  1361.         fprintf (outputfile, "\n\\ No newline at end of file\n");
  1362.         }
  1363.     }
  1364.     }
  1365. }
  1366.  
  1367.  
  1368. /*
  1369.  * Output to OUTPUTFILE the lines of B taken from FILENUM.
  1370.  * Double any initial '.'s; yield nonzero if any initial '.'s were doubled.
  1371.  */
  1372. static int
  1373. dotlines (outputfile, b, filenum)
  1374.      FILE *outputfile;
  1375.      struct diff3_block *b;
  1376.      int filenum;
  1377. {
  1378.   int i;
  1379.   int leading_dot = 0;
  1380.  
  1381.   for (i = 0;
  1382.        i < D_NUMLINES (b, filenum);
  1383.        i++)
  1384.     {
  1385.       char *line = D_RELNUM (b, filenum, i);
  1386.       if (line[0] == '.')
  1387.     {
  1388.       leading_dot = 1;
  1389.       fprintf (outputfile, ".");
  1390.     }
  1391.       fwrite (line, sizeof (char),
  1392.           D_RELLEN (b, filenum, i), outputfile);
  1393.     }
  1394.  
  1395.   return leading_dot;
  1396. }
  1397.  
  1398. /*
  1399.  * Output to OUTPUTFILE a '.' line.  If LEADING_DOT is nonzero,
  1400.  * also output a command that removes initial '.'s
  1401.  * starting with line START and continuing for NUM lines.
  1402.  */
  1403. static void
  1404. undotlines (outputfile, leading_dot, start, num)
  1405.      FILE *outputfile;
  1406.      int leading_dot, start, num;
  1407. {
  1408.   fprintf (outputfile, ".\n");
  1409.   if (leading_dot)
  1410.     if (num == 1)
  1411.       fprintf (outputfile, "%ds/^\\.//\n", start);
  1412.     else
  1413.       fprintf (outputfile, "%d,%ds/^\\.//\n", start, start + num - 1);
  1414. }
  1415.  
  1416. /*
  1417.  * This routine outputs a diff3 set of blocks as an ed script.  This
  1418.  * script applies the changes between file's 2 & 3 to file 1.  It
  1419.  * takes the precise format of the ed script to be output from global
  1420.  * variables set during options processing.  Note that it does
  1421.  * destructive things to the set of diff3 blocks it is passed; it
  1422.  * reverses their order (this gets around the problems involved with
  1423.  * changing line numbers in an ed script).
  1424.  *
  1425.  * Note that this routine has the same problem of mapping as the last
  1426.  * one did; the variable MAPPING maps from file number according to
  1427.  * the argument list to file number according to the diff passed.  All
  1428.  * files listed below are in terms of the argument list.
  1429.  * REV_MAPPING is the inverse of MAPPING.
  1430.  *
  1431.  * The arguments FILE0, FILE1 and FILE2 are the strings to print
  1432.  * as the names of the three files.  These may be the actual names,
  1433.  * or may be the arguments specified with -L.
  1434.  *
  1435.  * Returns 1 if conflicts were found.
  1436.  */
  1437.  
  1438. static int
  1439. output_diff3_edscript (outputfile, diff, mapping, rev_mapping,
  1440.                file0, file1, file2)
  1441.      FILE *outputfile;
  1442.      struct diff3_block *diff;
  1443.      int const mapping[3], rev_mapping[3];
  1444.      char const *file0, *file1, *file2;
  1445. {
  1446.   int leading_dot;
  1447.   int conflicts_found = 0, conflict;
  1448.   struct diff3_block *b;
  1449.  
  1450.   for (b = reverse_diff3_blocklist (diff); b; b = b->next)
  1451.     {
  1452.       /* Must do mapping correctly.  */
  1453.       enum diff_type type
  1454.     = ((b->correspond == DIFF_ALL) ?
  1455.        DIFF_ALL :
  1456.        ((enum diff_type)
  1457.         (((int) DIFF_1ST)
  1458.          + rev_mapping[(int) b->correspond - (int) DIFF_1ST])));
  1459.  
  1460.       /* If we aren't supposed to do this output block, skip it.  */
  1461.       switch (type)
  1462.     {
  1463.     default: continue;
  1464.     case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
  1465.     case DIFF_3RD: if (overlap_only) continue; conflict = 0; break;
  1466.     case DIFF_ALL: if (simple_only) continue; conflict = flagging; break;
  1467.     }
  1468.  
  1469.       if (conflict)
  1470.     {
  1471.       conflicts_found = 1;
  1472.  
  1473.  
  1474.       /* Mark end of conflict.  */
  1475.  
  1476.       fprintf (outputfile, "%da\n", D_HIGHLINE (b, mapping[FILE0]));
  1477.       leading_dot = 0;
  1478.       if (type == DIFF_ALL)
  1479.         {
  1480.           if (show_2nd)
  1481.         {
  1482.           /* Append lines from FILE1.  */
  1483.           fprintf (outputfile, "||||||| %s\n", file1);
  1484.           leading_dot = dotlines (outputfile, b, mapping[FILE1]);
  1485.         }
  1486.           /* Append lines from FILE2.  */
  1487.           fprintf (outputfile, "=======\n");
  1488.           leading_dot |= dotlines (outputfile, b, mapping[FILE2]);
  1489.         }
  1490.       fprintf (outputfile, ">>>>>>> %s\n", file2);
  1491.       undotlines (outputfile, leading_dot,
  1492.               D_HIGHLINE (b, mapping[FILE0]) + 2,
  1493.               (D_NUMLINES (b, mapping[FILE1])
  1494.                + D_NUMLINES (b, mapping[FILE2]) + 1));
  1495.  
  1496.  
  1497.       /* Mark start of conflict.  */
  1498.  
  1499.       fprintf (outputfile, "%da\n<<<<<<< %s\n",
  1500.            D_LOWLINE (b, mapping[FILE0]) - 1,
  1501.            type == DIFF_ALL ? file0 : file1);
  1502.       leading_dot = 0;
  1503.       if (type == DIFF_2ND)
  1504.         {
  1505.           /* Prepend lines from FILE1.  */
  1506.           leading_dot = dotlines (outputfile, b, mapping[FILE1]);
  1507.           fprintf (outputfile, "=======\n");
  1508.         }
  1509.       undotlines (outputfile, leading_dot,
  1510.               D_LOWLINE (b, mapping[FILE0]) + 1,
  1511.               D_NUMLINES (b, mapping[FILE1]));
  1512.     }
  1513.       else if (D_NUMLINES (b, mapping[FILE2]) == 0)
  1514.     /* Write out a delete */
  1515.     {
  1516.       if (D_NUMLINES (b, mapping[FILE0]) == 1)
  1517.         fprintf (outputfile, "%dd\n",
  1518.              D_LOWLINE (b, mapping[FILE0]));
  1519.       else
  1520.         fprintf (outputfile, "%d,%dd\n",
  1521.              D_LOWLINE (b, mapping[FILE0]),
  1522.              D_HIGHLINE (b, mapping[FILE0]));
  1523.     }
  1524.       else
  1525.     /* Write out an add or change */
  1526.     {
  1527.       switch (D_NUMLINES (b, mapping[FILE0]))
  1528.         {
  1529.         case 0:
  1530.           fprintf (outputfile, "%da\n",
  1531.                D_HIGHLINE (b, mapping[FILE0]));
  1532.           break;
  1533.         case 1:
  1534.           fprintf (outputfile, "%dc\n",
  1535.                D_HIGHLINE (b, mapping[FILE0]));
  1536.           break;
  1537.         default:
  1538.           fprintf (outputfile, "%d,%dc\n",
  1539.                D_LOWLINE (b, mapping[FILE0]),
  1540.                D_HIGHLINE (b, mapping[FILE0]));
  1541.           break;
  1542.         }
  1543.  
  1544.       undotlines (outputfile, dotlines (outputfile, b, mapping[FILE2]),
  1545.               D_LOWLINE (b, mapping[FILE0]),
  1546.               D_NUMLINES (b, mapping[FILE2]));
  1547.     }
  1548.     }
  1549.   if (finalwrite) fprintf (outputfile, "w\nq\n");
  1550.   return conflicts_found;
  1551. }
  1552.  
  1553. /*
  1554.  * Read from INFILE and output to OUTPUTFILE a set of diff3_ blocks DIFF
  1555.  * as a merged file.  This acts like 'ed file0 <[output_diff3_edscript]',
  1556.  * except that it works even for binary data or incomplete lines.
  1557.  *
  1558.  * As before, MAPPING maps from arg list file number to diff file number,
  1559.  * REV_MAPPING is its inverse,
  1560.  * and FILE0, FILE1, and FILE2 are the names of the files.
  1561.  *
  1562.  * Returns 1 if conflicts were found.
  1563.  */
  1564.  
  1565. static int
  1566. output_diff3_merge (infile, outputfile, diff, mapping, rev_mapping,
  1567.             file0, file1, file2)
  1568.      FILE *infile, *outputfile;
  1569.      struct diff3_block *diff;
  1570.      int const mapping[3], rev_mapping[3];
  1571.      char const *file0, *file1, *file2;
  1572. {
  1573.   int c, i;
  1574.   int conflicts_found = 0, conflict;
  1575.   struct diff3_block *b;
  1576.   int linesread = 0;
  1577.  
  1578.   for (b = diff; b; b = b->next)
  1579.     {
  1580.       /* Must do mapping correctly.  */
  1581.       enum diff_type type
  1582.     = ((b->correspond == DIFF_ALL) ?
  1583.        DIFF_ALL :
  1584.        ((enum diff_type)
  1585.         (((int) DIFF_1ST)
  1586.          + rev_mapping[(int) b->correspond - (int) DIFF_1ST])));
  1587.       char const *format_2nd = "<<<<<<< %s\n";
  1588.  
  1589.       /* If we aren't supposed to do this output block, skip it.  */
  1590.       switch (type)
  1591.     {
  1592.     default: continue;
  1593.     case DIFF_2ND: if (!show_2nd) continue; conflict = 1; break;
  1594.     case DIFF_3RD: if (overlap_only) continue; conflict = 0; break;
  1595.     case DIFF_ALL: if (simple_only) continue; conflict = flagging;
  1596.       format_2nd = "||||||| %s\n";
  1597.       break;
  1598.     }
  1599.  
  1600.       /* Copy I lines from file 0.  */
  1601.       i = D_LOWLINE (b, FILE0) - linesread - 1;
  1602.       linesread += i;
  1603.       while (0 <= --i)
  1604.     do
  1605.       {
  1606.         c = getc (infile);
  1607.         if (c == EOF)
  1608.           if (ferror (infile))
  1609.         perror_with_exit ("input file");
  1610.           else if (feof (infile))
  1611.         fatal ("input file shrank");
  1612.         putc (c, outputfile);
  1613.       }
  1614.     while (c != '\n');
  1615.  
  1616.       if (conflict)
  1617.     {
  1618.       conflicts_found = 1;
  1619.  
  1620.       if (type == DIFF_ALL)
  1621.         {
  1622.           /* Put in lines from FILE0 with bracket.  */
  1623.           fprintf (outputfile, "<<<<<<< %s\n", file0);
  1624.           for (i = 0;
  1625.            i < D_NUMLINES (b, mapping[FILE0]);
  1626.            i++)
  1627.         fwrite (D_RELNUM (b, mapping[FILE0], i), sizeof (char),
  1628.             D_RELLEN (b, mapping[FILE0], i), outputfile);
  1629.         }
  1630.  
  1631.       if (show_2nd)
  1632.         {
  1633.           /* Put in lines from FILE1 with bracket.  */
  1634.           fprintf (outputfile, format_2nd, file1);
  1635.           for (i = 0;
  1636.            i < D_NUMLINES (b, mapping[FILE1]);
  1637.            i++)
  1638.         fwrite (D_RELNUM (b, mapping[FILE1], i), sizeof (char),
  1639.             D_RELLEN (b, mapping[FILE1], i), outputfile);
  1640.         }
  1641.  
  1642.       fprintf (outputfile, "=======\n");
  1643.     }
  1644.  
  1645.       /* Put in lines from FILE2.  */
  1646.       for (i = 0;
  1647.        i < D_NUMLINES (b, mapping[FILE2]);
  1648.        i++)
  1649.     fwrite (D_RELNUM (b, mapping[FILE2], i), sizeof (char),
  1650.         D_RELLEN (b, mapping[FILE2], i), outputfile);
  1651.  
  1652.       if (conflict)
  1653.     fprintf (outputfile, ">>>>>>> %s\n", file2);
  1654.  
  1655.       /* Skip I lines in file 0.  */
  1656.       i = D_NUMLINES (b, FILE0);
  1657.       linesread += i;
  1658.       while (0 <= --i)
  1659.     while ((c = getc (infile)) != '\n')
  1660.       if (c == EOF)
  1661.         if (ferror (infile))
  1662.           perror_with_exit ("input file");
  1663.         else if (feof (infile))
  1664.           {
  1665.         if (i || b->next)
  1666.           fatal ("input file shrank");
  1667.         return conflicts_found;
  1668.           }
  1669.     }
  1670.   /* Copy rest of common file.  */
  1671.   while ((c = getc (infile)) != EOF || !(ferror (infile) | feof (infile)))
  1672.     putc (c, outputfile);
  1673.   return conflicts_found;
  1674. }
  1675.  
  1676. /*
  1677.  * Reverse the order of the list of diff3 blocks.
  1678.  */
  1679. static struct diff3_block *
  1680. reverse_diff3_blocklist (diff)
  1681.      struct diff3_block *diff;
  1682. {
  1683.   register struct diff3_block *tmp, *next, *prev;
  1684.  
  1685.   for (tmp = diff, prev = 0;  tmp;  tmp = next)
  1686.     {
  1687.       next = tmp->next;
  1688.       tmp->next = prev;
  1689.       prev = tmp;
  1690.     }
  1691.  
  1692.   return prev;
  1693. }
  1694.  
  1695. static size_t
  1696. myread (fd, ptr, size)
  1697.      int fd;
  1698.      char *ptr;
  1699.      size_t size;
  1700. {
  1701.   size_t result = read (fd, ptr, size);
  1702.   if (result == -1)
  1703.     perror_with_exit ("read failed");
  1704.   return result;
  1705. }
  1706.  
  1707. static VOID *
  1708. xmalloc (size)
  1709.      size_t size;
  1710. {
  1711.   VOID *result = (VOID *) malloc (size ? size : 1);
  1712.   if (!result)
  1713.     fatal ("memory exhausted");
  1714.   return result;
  1715. }
  1716.  
  1717. static VOID *
  1718. xrealloc (ptr, size)
  1719.      VOID *ptr;
  1720.      size_t size;
  1721. {
  1722.   VOID *result = (VOID *) realloc (ptr, size ? size : 1);
  1723.   if (!result)
  1724.     fatal ("memory exhausted");
  1725.   return result;
  1726. }
  1727.  
  1728. static void
  1729. fatal (string)
  1730.      char const *string;
  1731. {
  1732.   fprintf (stderr, "%s: %s\n", argv0, string);
  1733.   exit (2);
  1734. }
  1735.  
  1736. static void
  1737. perror_with_exit (string)
  1738.      char const *string;
  1739. {
  1740.   int e = errno;
  1741.   fprintf (stderr, "%s: ", argv0);
  1742.   errno = e;
  1743.   perror (string);
  1744.   exit (2);
  1745. }
  1746.