Home | History | Annotate | Line # | Download | only in tsort
tsort.c revision 1.24
      1  1.24  christos /*	$NetBSD: tsort.c,v 1.24 2020/08/12 23:23:04 christos Exp $	*/
      2   1.9       jtc 
      3   1.1       cgd /*
      4   1.9       jtc  * Copyright (c) 1989, 1993, 1994
      5   1.7       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Michael Rendell of Memorial University of Newfoundland.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18  1.18       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.20     lukem #if HAVE_NBTOOL_CONFIG_H
     36  1.20     lukem #include "nbtool_config.h"
     37  1.20     lukem #endif
     38  1.20     lukem 
     39  1.12     lukem #include <sys/cdefs.h>
     40  1.20     lukem #if !defined(lint)
     41  1.22     lukem __COPYRIGHT("@(#) Copyright (c) 1989, 1993, 1994\
     42  1.22     lukem  The Regents of the University of California.  All rights reserved.");
     43   1.9       jtc #if 0
     44  1.10       jtc static char sccsid[] = "@(#)tsort.c	8.3 (Berkeley) 5/4/95";
     45   1.9       jtc #endif
     46  1.24  christos __RCSID("$NetBSD: tsort.c,v 1.24 2020/08/12 23:23:04 christos Exp $");
     47   1.1       cgd #endif /* not lint */
     48  1.17        tv 
     49   1.1       cgd #include <sys/types.h>
     50   1.9       jtc #include <ctype.h>
     51   1.9       jtc #include <db.h>
     52  1.17        tv #include <err.h>
     53   1.1       cgd #include <errno.h>
     54   1.7       cgd #include <fcntl.h>
     55   1.1       cgd #include <stdio.h>
     56   1.7       cgd #include <stdlib.h>
     57   1.1       cgd #include <string.h>
     58  1.10       jtc #include <unistd.h>
     59  1.24  christos #include <util.h>
     60   1.1       cgd 
     61   1.1       cgd /*
     62   1.7       cgd  *  Topological sort.  Input is a list of pairs of strings separated by
     63   1.1       cgd  *  white space (spaces, tabs, and/or newlines); strings are written to
     64   1.1       cgd  *  standard output in sorted order, one per line.
     65   1.1       cgd  *
     66   1.1       cgd  *  usage:
     67   1.7       cgd  *     tsort [-l] [inputfile]
     68   1.1       cgd  *  If no input file is specified, standard input is read.
     69   1.1       cgd  *
     70  1.15       wiz  *  Should be compatible with AT&T tsort HOWEVER the output is not identical
     71   1.1       cgd  *  (i.e. for most graphs there is more than one sorted order, and this tsort
     72   1.1       cgd  *  usually generates a different one then the AT&T tsort).  Also, cycle
     73   1.1       cgd  *  reporting seems to be more accurate in this version (the AT&T tsort
     74   1.1       cgd  *  sometimes says a node is in a cycle when it isn't).
     75   1.1       cgd  *
     76   1.1       cgd  *  Michael Rendell, michael (at) stretch.cs.mun.ca - Feb 26, '90
     77   1.1       cgd  */
     78   1.1       cgd #define	HASHSIZE	53		/* doesn't need to be big */
     79   1.1       cgd #define	NF_MARK		0x1		/* marker for cycle detection */
     80   1.1       cgd #define	NF_ACYCLIC	0x2		/* this node is cycle free */
     81   1.7       cgd #define	NF_NODEST	0x4		/* Unreachable */
     82   1.7       cgd 
     83   1.1       cgd typedef struct node_str NODE;
     84   1.1       cgd 
     85   1.1       cgd struct node_str {
     86   1.1       cgd 	NODE **n_prevp;			/* pointer to previous node's n_next */
     87   1.1       cgd 	NODE *n_next;			/* next node in graph */
     88   1.7       cgd 	NODE **n_arcs;			/* array of arcs to other nodes */
     89  1.24  christos 	size_t n_narcs;			/* number of arcs in n_arcs[] */
     90  1.24  christos 	size_t n_arcsize;		/* size of n_arcs[] array */
     91  1.24  christos 	size_t n_refcnt;		/* # of arcs pointing to this node */
     92   1.1       cgd 	int n_flags;			/* NF_* */
     93   1.7       cgd 	char n_name[1];			/* name of this node */
     94   1.1       cgd };
     95   1.1       cgd 
     96   1.1       cgd typedef struct _buf {
     97   1.1       cgd 	char *b_buf;
     98  1.24  christos 	size_t b_bsize;
     99   1.1       cgd } BUF;
    100   1.1       cgd 
    101  1.23     joerg static DB *db;
    102  1.23     joerg static NODE *graph, **cycle_buf, **longest_cycle;
    103  1.24  christos static int debug, longest, quiet, reverse;
    104  1.23     joerg 
    105  1.24  christos static void	 add_arc(const char *, const char *);
    106  1.23     joerg static void	 clear_cycle(void);
    107  1.24  christos static size_t	 find_cycle(NODE *, NODE *, size_t, size_t);
    108  1.24  christos static NODE	*get_node(const char *);
    109  1.23     joerg static void	 remove_node(NODE *);
    110  1.23     joerg static void	 tsort(void);
    111  1.23     joerg __dead static void	 usage(void);
    112   1.1       cgd 
    113   1.7       cgd int
    114  1.23     joerg main(int argc, char *argv[])
    115   1.1       cgd {
    116  1.12     lukem 	BUF *b;
    117  1.24  christos 	int c, n, ch;
    118   1.1       cgd 	FILE *fp;
    119  1.24  christos 	size_t bsize, nused;
    120   1.1       cgd 	BUF bufs[2];
    121  1.14       cgd 
    122  1.14       cgd 	setprogname(argv[0]);
    123   1.1       cgd 
    124  1.12     lukem 	fp = NULL;
    125  1.24  christos 	while ((ch = getopt(argc, argv, "dlqr")) != -1)
    126   1.9       jtc 		switch (ch) {
    127   1.7       cgd 		case 'd':
    128   1.9       jtc 			debug = 1;
    129   1.9       jtc 			break;
    130   1.7       cgd 		case 'l':
    131   1.9       jtc 			longest = 1;
    132   1.9       jtc 			break;
    133  1.11   mycroft 		case 'q':
    134  1.11   mycroft 			quiet = 1;
    135  1.11   mycroft 			break;
    136  1.24  christos 		case 'r':
    137  1.24  christos 			reverse = 1;
    138  1.24  christos 			break;
    139   1.7       cgd 		case '?':
    140   1.7       cgd 		default:
    141   1.7       cgd 			usage();
    142   1.7       cgd 		}
    143   1.7       cgd 	argc -= optind;
    144   1.7       cgd 	argv += optind;
    145   1.7       cgd 
    146   1.9       jtc 	switch (argc) {
    147   1.7       cgd 	case 0:
    148   1.1       cgd 		fp = stdin;
    149   1.7       cgd 		break;
    150   1.7       cgd 	case 1:
    151   1.7       cgd 		if ((fp = fopen(*argv, "r")) == NULL)
    152  1.24  christos 			err(EXIT_FAILURE, "%s", *argv);
    153   1.7       cgd 		break;
    154   1.7       cgd 	default:
    155   1.7       cgd 		usage();
    156   1.1       cgd 	}
    157   1.1       cgd 
    158  1.24  christos 	for (b = bufs, n = 2; n-- > 0; b++)
    159  1.24  christos 		b->b_buf = erealloc(NULL, b->b_bsize = 1024);
    160   1.1       cgd 
    161   1.1       cgd 	/* parse input and build the graph */
    162   1.1       cgd 	for (n = 0, c = getc(fp);;) {
    163   1.1       cgd 		while (c != EOF && isspace(c))
    164   1.1       cgd 			c = getc(fp);
    165   1.1       cgd 		if (c == EOF)
    166   1.1       cgd 			break;
    167   1.1       cgd 
    168   1.1       cgd 		nused = 0;
    169   1.1       cgd 		b = &bufs[n];
    170   1.1       cgd 		bsize = b->b_bsize;
    171   1.1       cgd 		do {
    172  1.24  christos 			b->b_buf[nused++] = (char)c;
    173   1.7       cgd 			if (nused == bsize)
    174  1.24  christos 				b->b_buf = erealloc(b->b_buf, bsize *= 2);
    175   1.1       cgd 			c = getc(fp);
    176   1.1       cgd 		} while (c != EOF && !isspace(c));
    177   1.1       cgd 
    178   1.1       cgd 		b->b_buf[nused] = '\0';
    179   1.1       cgd 		b->b_bsize = bsize;
    180  1.24  christos 		if (n) {
    181  1.24  christos 			if (reverse)
    182  1.24  christos 				add_arc(bufs[1].b_buf, bufs[0].b_buf);
    183  1.24  christos 			else
    184  1.24  christos 				add_arc(bufs[0].b_buf, bufs[1].b_buf);
    185  1.24  christos 		}
    186   1.1       cgd 		n = !n;
    187   1.1       cgd 	}
    188   1.1       cgd 	(void)fclose(fp);
    189   1.7       cgd 	if (n)
    190  1.24  christos 		errx(EXIT_FAILURE, "odd data count");
    191   1.1       cgd 
    192   1.1       cgd 	/* do the sort */
    193   1.1       cgd 	tsort();
    194  1.24  christos 	return EXIT_SUCCESS;
    195   1.1       cgd }
    196   1.1       cgd 
    197   1.1       cgd /*
    198   1.1       cgd  * add an arc from node s1 to node s2 in the graph.  If s1 or s2 are not in
    199   1.1       cgd  * the graph, then add them.
    200   1.1       cgd  */
    201  1.23     joerg static void
    202  1.24  christos add_arc(const char *s1, const char *s2)
    203   1.1       cgd {
    204  1.12     lukem 	NODE *n1;
    205   1.1       cgd 	NODE *n2;
    206  1.24  christos 	size_t bsize, i;
    207   1.1       cgd 
    208   1.7       cgd 	n1 = get_node(s1);
    209   1.1       cgd 
    210  1.24  christos 	if (strcmp(s1, s2) == 0)
    211   1.1       cgd 		return;
    212   1.1       cgd 
    213   1.7       cgd 	n2 = get_node(s2);
    214   1.1       cgd 
    215   1.1       cgd 	/*
    216   1.3       cgd 	 * Check if this arc is already here.
    217   1.3       cgd 	 */
    218   1.3       cgd 	for (i = 0; i < n1->n_narcs; i++)
    219   1.3       cgd 		if (n1->n_arcs[i] == n2)
    220   1.3       cgd 			return;
    221   1.3       cgd 	/*
    222   1.3       cgd 	 * Add it.
    223   1.1       cgd 	 */
    224   1.1       cgd 	if (n1->n_narcs == n1->n_arcsize) {
    225   1.1       cgd 		if (!n1->n_arcsize)
    226   1.1       cgd 			n1->n_arcsize = 10;
    227   1.1       cgd 		bsize = n1->n_arcsize * sizeof(*n1->n_arcs) * 2;
    228  1.24  christos 		n1->n_arcs = erealloc(n1->n_arcs, bsize);
    229   1.1       cgd 		n1->n_arcsize = bsize / sizeof(*n1->n_arcs);
    230   1.1       cgd 	}
    231   1.1       cgd 	n1->n_arcs[n1->n_narcs++] = n2;
    232   1.1       cgd 	++n2->n_refcnt;
    233   1.1       cgd }
    234   1.1       cgd 
    235   1.7       cgd /* Find a node in the graph (insert if not found) and return a pointer to it. */
    236  1.23     joerg static NODE *
    237  1.24  christos get_node(const char *name)
    238   1.1       cgd {
    239   1.7       cgd 	DBT data, key;
    240   1.7       cgd 	NODE *n;
    241   1.1       cgd 
    242   1.7       cgd 	if (db == NULL &&
    243   1.7       cgd 	    (db = dbopen(NULL, O_RDWR, 0, DB_HASH, NULL)) == NULL)
    244  1.24  christos 		err(EXIT_FAILURE, "db: %s", name);
    245   1.7       cgd 
    246  1.24  christos 	key.data = __UNCONST(name);
    247   1.7       cgd 	key.size = strlen(name) + 1;
    248   1.7       cgd 
    249   1.9       jtc 	switch ((*db->get)(db, &key, &data, 0)) {
    250   1.7       cgd 	case 0:
    251  1.21  christos 		(void)memmove(&n, data.data, sizeof(n));
    252  1.24  christos 		return n;
    253   1.7       cgd 	case 1:
    254   1.7       cgd 		break;
    255   1.7       cgd 	default:
    256   1.7       cgd 	case -1:
    257  1.24  christos 		err(EXIT_FAILURE, "db: %s", name);
    258   1.7       cgd 	}
    259   1.1       cgd 
    260  1.24  christos 	n = emalloc(sizeof(NODE) + key.size);
    261   1.1       cgd 
    262   1.1       cgd 	n->n_narcs = 0;
    263   1.1       cgd 	n->n_arcsize = 0;
    264   1.7       cgd 	n->n_arcs = NULL;
    265   1.1       cgd 	n->n_refcnt = 0;
    266   1.1       cgd 	n->n_flags = 0;
    267  1.21  christos 	(void)memmove(n->n_name, name, key.size);
    268   1.1       cgd 
    269   1.7       cgd 	/* Add to linked list. */
    270   1.9       jtc 	if ((n->n_next = graph) != NULL)
    271   1.1       cgd 		graph->n_prevp = &n->n_next;
    272   1.1       cgd 	n->n_prevp = &graph;
    273   1.1       cgd 	graph = n;
    274   1.1       cgd 
    275   1.7       cgd 	/* Add to hash table. */
    276   1.7       cgd 	data.data = &n;
    277   1.7       cgd 	data.size = sizeof(n);
    278   1.7       cgd 	if ((*db->put)(db, &key, &data, 0))
    279  1.24  christos 		err(EXIT_FAILURE, "db: %s", name);
    280  1.24  christos 	return n;
    281   1.7       cgd }
    282   1.7       cgd 
    283   1.7       cgd 
    284   1.7       cgd /*
    285   1.7       cgd  * Clear the NODEST flag from all nodes.
    286   1.7       cgd  */
    287  1.23     joerg static void
    288  1.23     joerg clear_cycle(void)
    289   1.7       cgd {
    290   1.7       cgd 	NODE *n;
    291   1.7       cgd 
    292   1.9       jtc 	for (n = graph; n != NULL; n = n->n_next)
    293   1.7       cgd 		n->n_flags &= ~NF_NODEST;
    294   1.1       cgd }
    295   1.1       cgd 
    296   1.1       cgd /* do topological sort on graph */
    297  1.23     joerg static void
    298  1.23     joerg tsort(void)
    299   1.1       cgd {
    300  1.12     lukem 	NODE *n, *next;
    301  1.24  christos 	size_t cnt, i;
    302   1.1       cgd 
    303   1.9       jtc 	while (graph != NULL) {
    304   1.1       cgd 		/*
    305   1.7       cgd 		 * Keep getting rid of simple cases until there are none left,
    306   1.1       cgd 		 * if there are any nodes still in the graph, then there is
    307   1.1       cgd 		 * a cycle in it.
    308   1.1       cgd 		 */
    309   1.1       cgd 		do {
    310   1.9       jtc 			for (cnt = 0, n = graph; n != NULL; n = next) {
    311   1.1       cgd 				next = n->n_next;
    312   1.1       cgd 				if (n->n_refcnt == 0) {
    313   1.1       cgd 					remove_node(n);
    314   1.1       cgd 					++cnt;
    315   1.1       cgd 				}
    316   1.1       cgd 			}
    317   1.9       jtc 		} while (graph != NULL && cnt);
    318   1.1       cgd 
    319   1.9       jtc 		if (graph == NULL)
    320   1.1       cgd 			break;
    321   1.1       cgd 
    322   1.1       cgd 		if (!cycle_buf) {
    323   1.1       cgd 			/*
    324   1.7       cgd 			 * Allocate space for two cycle logs - one to be used
    325   1.1       cgd 			 * as scratch space, the other to save the longest
    326   1.1       cgd 			 * cycle.
    327   1.1       cgd 			 */
    328   1.9       jtc 			for (cnt = 0, n = graph; n != NULL; n = n->n_next)
    329   1.1       cgd 				++cnt;
    330  1.24  christos 			cycle_buf = ecalloc(cnt, sizeof(*cycle_buf));
    331  1.24  christos 			longest_cycle = ecalloc(cnt, sizeof(*longest_cycle));
    332   1.1       cgd 		}
    333  1.13      ross 		for (n = graph; n != NULL; n = n->n_next) {
    334  1.13      ross 			if (!(n->n_flags & NF_ACYCLIC)) {
    335  1.12     lukem 				if ((cnt = find_cycle(n, n, 0, 0)) != 0) {
    336  1.11   mycroft 					if (!quiet) {
    337  1.11   mycroft 						warnx("cycle in data");
    338  1.11   mycroft 						for (i = 0; i < cnt; i++)
    339  1.11   mycroft 							warnx("%s",
    340  1.11   mycroft 							    longest_cycle[i]->n_name);
    341  1.11   mycroft 					}
    342   1.1       cgd 					remove_node(n);
    343   1.7       cgd 					clear_cycle();
    344   1.1       cgd 					break;
    345   1.7       cgd 				} else {
    346   1.1       cgd 					/* to avoid further checks */
    347   1.7       cgd 					n->n_flags  |= NF_ACYCLIC;
    348   1.7       cgd 					clear_cycle();
    349   1.7       cgd 				}
    350  1.13      ross 			}
    351  1.13      ross 		}
    352   1.9       jtc 		if (n == NULL)
    353   1.9       jtc 			errx(1, "internal error -- could not find cycle");
    354   1.1       cgd 	}
    355   1.1       cgd }
    356   1.1       cgd 
    357   1.1       cgd /* print node and remove from graph (does not actually free node) */
    358  1.23     joerg static void
    359  1.23     joerg remove_node(NODE *n)
    360   1.1       cgd {
    361  1.12     lukem 	NODE **np;
    362  1.24  christos 	size_t i;
    363   1.1       cgd 
    364   1.1       cgd 	(void)printf("%s\n", n->n_name);
    365  1.24  christos 	for (np = n->n_arcs, i = n->n_narcs; i-- > 0; np++)
    366   1.1       cgd 		--(*np)->n_refcnt;
    367   1.1       cgd 	n->n_narcs = 0;
    368   1.1       cgd 	*n->n_prevp = n->n_next;
    369   1.1       cgd 	if (n->n_next)
    370   1.1       cgd 		n->n_next->n_prevp = n->n_prevp;
    371   1.1       cgd }
    372   1.1       cgd 
    373   1.7       cgd 
    374   1.7       cgd /* look for the longest? cycle from node from to node to. */
    375  1.24  christos static size_t
    376  1.24  christos find_cycle(NODE *from, NODE *to, size_t longest_len, size_t depth)
    377   1.1       cgd {
    378  1.12     lukem 	NODE **np;
    379  1.24  christos 	size_t i, len;
    380   1.1       cgd 
    381   1.1       cgd 	/*
    382   1.1       cgd 	 * avoid infinite loops and ignore portions of the graph known
    383   1.1       cgd 	 * to be acyclic
    384   1.1       cgd 	 */
    385   1.7       cgd 	if (from->n_flags & (NF_NODEST|NF_MARK|NF_ACYCLIC))
    386  1.24  christos 		return 0;
    387   1.7       cgd 	from->n_flags |= NF_MARK;
    388   1.1       cgd 
    389  1.24  christos 	for (np = from->n_arcs, i = from->n_narcs; i-- > 0; np++) {
    390   1.1       cgd 		cycle_buf[depth] = *np;
    391   1.1       cgd 		if (*np == to) {
    392   1.1       cgd 			if (depth + 1 > longest_len) {
    393   1.1       cgd 				longest_len = depth + 1;
    394  1.21  christos 				(void)memcpy(longest_cycle, cycle_buf,
    395   1.1       cgd 				    longest_len * sizeof(NODE *));
    396   1.1       cgd 			}
    397   1.1       cgd 		} else {
    398   1.7       cgd 			if ((*np)->n_flags & (NF_MARK|NF_ACYCLIC|NF_NODEST))
    399   1.7       cgd 				continue;
    400   1.1       cgd 			len = find_cycle(*np, to, longest_len, depth + 1);
    401   1.7       cgd 
    402   1.7       cgd 			if (debug)
    403  1.24  christos 				(void)printf("%*s %s->%s %zu\n", (int)depth, "",
    404   1.9       jtc 				    from->n_name, to->n_name, len);
    405   1.7       cgd 
    406   1.7       cgd 			if (len == 0)
    407   1.9       jtc 				(*np)->n_flags |= NF_NODEST;
    408   1.7       cgd 
    409   1.7       cgd 			if (len > longest_len)
    410   1.1       cgd 				longest_len = len;
    411   1.7       cgd 
    412   1.7       cgd 			if (len > 0 && !longest)
    413   1.5       cgd 				break;
    414   1.1       cgd 		}
    415   1.1       cgd 	}
    416   1.7       cgd 	from->n_flags &= ~NF_MARK;
    417  1.24  christos 	return longest_len;
    418   1.1       cgd }
    419   1.1       cgd 
    420  1.23     joerg static void
    421  1.23     joerg usage(void)
    422   1.7       cgd {
    423  1.24  christos 	(void)fprintf(stderr, "Usage: %s [-dlqr] [file]\n", getprogname());
    424  1.24  christos 	exit(EXIT_FAILURE);
    425   1.1       cgd }
    426