* src/dd.c (flags): noatime and nofollow now depend on
[coreutils/bo.git] / src / tsort.c
blob9393232139dabdc3c3ede930254608fce5678a40
1 /* tsort - topological sort.
2 Copyright (C) 1998-2005 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)
7 any later version.
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 Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18 /* Written by Mark Kettenis <kettenis@phys.uva.nl>. */
20 /* The topological sort is done according to Algorithm T (Topological
21 sort) in Donald E. Knuth, The Art of Computer Programming, Volume
22 1/Fundamental Algorithms, page 262. */
24 #include <config.h>
26 #include <stdio.h>
27 #include <assert.h>
28 #include <getopt.h>
29 #include <sys/types.h>
31 #include "system.h"
32 #include "long-options.h"
33 #include "error.h"
34 #include "quote.h"
35 #include "readtokens.h"
37 /* The official name of this program (e.g., no `g' prefix). */
38 #define PROGRAM_NAME "tsort"
40 #define AUTHORS "Mark Kettenis"
42 /* Token delimiters when reading from a file. */
43 #define DELIM " \t\n"
45 /* Members of the list of successors. */
46 struct successor
48 struct item *suc;
49 struct successor *next;
52 /* Each string is held in core as the head of a list of successors. */
53 struct item
55 const char *str;
56 struct item *left, *right;
57 int balance; /* -1, 0, or +1 */
58 size_t count;
59 struct item *qlink;
60 struct successor *top;
63 /* The name this program was run with. */
64 char *program_name;
66 /* The head of the sorted list. */
67 static struct item *head = NULL;
69 /* The tail of the list of `zeros', strings that have no predecessors. */
70 static struct item *zeros = NULL;
72 /* Used for loop detection. */
73 static struct item *loop = NULL;
75 /* The number of strings to sort. */
76 static size_t n_strings = 0;
78 void
79 usage (int status)
81 if (status != EXIT_SUCCESS)
82 fprintf (stderr, _("Try `%s --help' for more information.\n"),
83 program_name);
84 else
86 printf (_("\
87 Usage: %s [OPTION] [FILE]\n\
88 Write totally ordered list consistent with the partial ordering in FILE.\n\
89 With no FILE, or when FILE is -, read standard input.\n\
90 \n\
91 "), program_name);
92 fputs (HELP_OPTION_DESCRIPTION, stdout);
93 fputs (VERSION_OPTION_DESCRIPTION, stdout);
94 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
97 exit (status);
100 /* Create a new item/node for STR. */
101 static struct item *
102 new_item (const char *str)
104 struct item *k = xmalloc (sizeof *k);
106 k->str = (str ? xstrdup (str): NULL);
107 k->left = k->right = NULL;
108 k->balance = 0;
110 /* T1. Initialize (COUNT[k] <- 0 and TOP[k] <- ^). */
111 k->count = 0;
112 k->qlink = NULL;
113 k->top = NULL;
115 return k;
118 /* Search binary tree rooted at *ROOT for STR. Allocate a new tree if
119 *ROOT is NULL. Insert a node/item for STR if not found. Return
120 the node/item found/created for STR.
122 This is done according to Algorithm A (Balanced tree search and
123 insertion) in Donald E. Knuth, The Art of Computer Programming,
124 Volume 3/Searching and Sorting, pages 455--457. */
126 static struct item *
127 search_item (struct item *root, const char *str)
129 struct item *p, *q, *r, *s, *t;
130 int a;
132 assert (root);
134 /* Make sure the tree is not empty, since that is what the algorithm
135 below expects. */
136 if (root->right == NULL)
137 return (root->right = new_item (str));
139 /* A1. Initialize. */
140 t = root;
141 s = p = root->right;
143 for (;;)
145 /* A2. Compare. */
146 a = strcmp (str, p->str);
147 if (a == 0)
148 return p;
150 /* A3 & A4. Move left & right. */
151 if (a < 0)
152 q = p->left;
153 else
154 q = p->right;
156 if (q == NULL)
158 /* A5. Insert. */
159 q = new_item (str);
161 /* A3 & A4. (continued). */
162 if (a < 0)
163 p->left = q;
164 else
165 p->right = q;
167 /* A6. Adjust balance factors. */
168 assert (!STREQ (str, s->str));
169 if (strcmp (str, s->str) < 0)
171 r = p = s->left;
172 a = -1;
174 else
176 r = p = s->right;
177 a = 1;
180 while (p != q)
182 assert (!STREQ (str, p->str));
183 if (strcmp (str, p->str) < 0)
185 p->balance = -1;
186 p = p->left;
188 else
190 p->balance = 1;
191 p = p->right;
195 /* A7. Balancing act. */
196 if (s->balance == 0 || s->balance == -a)
198 s->balance += a;
199 return q;
202 if (r->balance == a)
204 /* A8. Single Rotation. */
205 p = r;
206 if (a < 0)
208 s->left = r->right;
209 r->right = s;
211 else
213 s->right = r->left;
214 r->left = s;
216 s->balance = r->balance = 0;
218 else
220 /* A9. Double rotation. */
221 if (a < 0)
223 p = r->right;
224 r->right = p->left;
225 p->left = r;
226 s->left = p->right;
227 p->right = s;
229 else
231 p = r->left;
232 r->left = p->right;
233 p->right = r;
234 s->right = p->left;
235 p->left = s;
238 s->balance = 0;
239 r->balance = 0;
240 if (p->balance == a)
241 s->balance = -a;
242 else if (p->balance == -a)
243 r->balance = a;
244 p->balance = 0;
247 /* A10. Finishing touch. */
248 if (s == t->right)
249 t->right = p;
250 else
251 t->left = p;
253 return q;
256 /* A3 & A4. (continued). */
257 if (q->balance)
259 t = p;
260 s = q;
263 p = q;
266 /* NOTREACHED */
269 /* Record the fact that J precedes K. */
271 static void
272 record_relation (struct item *j, struct item *k)
274 struct successor *p;
276 if (!STREQ (j->str, k->str))
278 k->count++;
279 p = xmalloc (sizeof *p);
280 p->suc = k;
281 p->next = j->top;
282 j->top = p;
286 static bool
287 count_items (struct item *unused ATTRIBUTE_UNUSED)
289 n_strings++;
290 return false;
293 static bool
294 scan_zeros (struct item *k)
296 /* Ignore strings that have already been printed. */
297 if (k->count == 0 && k->str)
299 if (head == NULL)
300 head = k;
301 else
302 zeros->qlink = k;
304 zeros = k;
307 return false;
310 /* Try to detect the loop. If we have detected that K is part of a
311 loop, print the loop on standard error, remove a relation to break
312 the loop, and return true.
314 The loop detection strategy is as follows: Realise that what we're
315 dealing with is essentially a directed graph. If we find an item
316 that is part of a graph that contains a cycle we traverse the graph
317 in backwards direction. In general there is no unique way to do
318 this, but that is no problem. If we encounter an item that we have
319 encountered before, we know that we've found a cycle. All we have
320 to do now is retrace our steps, printing out the items until we
321 encounter that item again. (This is not necessarily the item that
322 we started from originally.) Since the order in which the items
323 are stored in the tree is not related to the specified partial
324 ordering, we may need to walk the tree several times before the
325 loop has completely been constructed. If the loop was found, the
326 global variable LOOP will be NULL. */
328 static bool
329 detect_loop (struct item *k)
331 if (k->count > 0)
333 /* K does not have to be part of a cycle. It is however part of
334 a graph that contains a cycle. */
336 if (loop == NULL)
337 /* Start traversing the graph at K. */
338 loop = k;
339 else
341 struct successor **p = &k->top;
343 while (*p)
345 if ((*p)->suc == loop)
347 if (k->qlink)
349 /* We have found a loop. Retrace our steps. */
350 while (loop)
352 struct item *tmp = loop->qlink;
354 fprintf (stderr, "%s: %s\n", program_name,
355 loop->str);
357 /* Until we encounter K again. */
358 if (loop == k)
360 /* Remove relation. */
361 (*p)->suc->count--;
362 *p = (*p)->next;
363 break;
366 /* Tidy things up since we might have to
367 detect another loop. */
368 loop->qlink = NULL;
369 loop = tmp;
372 while (loop)
374 struct item *tmp = loop->qlink;
376 loop->qlink = NULL;
377 loop = tmp;
380 /* Since we have found the loop, stop walking
381 the tree. */
382 return true;
384 else
386 k->qlink = loop;
387 loop = k;
388 break;
392 p = &(*p)->next;
397 return false;
400 /* Recurse (sub)tree rooted at ROOT, calling ACTION for each node.
401 Stop when ACTION returns true. */
403 static bool
404 recurse_tree (struct item *root, bool (*action) (struct item *))
406 if (root->left == NULL && root->right == NULL)
407 return (*action) (root);
408 else
410 if (root->left != NULL)
411 if (recurse_tree (root->left, action))
412 return true;
413 if ((*action) (root))
414 return true;
415 if (root->right != NULL)
416 if (recurse_tree (root->right, action))
417 return true;
420 return false;
423 /* Walk the tree specified by the head ROOT, calling ACTION for
424 each node. */
426 static void
427 walk_tree (struct item *root, bool (*action) (struct item *))
429 if (root->right)
430 recurse_tree (root->right, action);
433 /* Do a topological sort on FILE. Return true if successful. */
435 static bool
436 tsort (const char *file)
438 bool ok = true;
439 struct item *root;
440 struct item *j = NULL;
441 struct item *k = NULL;
442 token_buffer tokenbuffer;
443 bool is_stdin = STREQ (file, "-");
445 /* Intialize the head of the tree will hold the strings we're sorting. */
446 root = new_item (NULL);
448 if (!is_stdin && ! freopen (file, "r", stdin))
449 error (EXIT_FAILURE, errno, "%s", file);
451 init_tokenbuffer (&tokenbuffer);
453 while (1)
455 /* T2. Next Relation. */
456 size_t len = readtoken (stdin, DELIM, sizeof (DELIM) - 1, &tokenbuffer);
457 if (len == (size_t) -1)
458 break;
460 assert (len != 0);
462 k = search_item (root, tokenbuffer.buffer);
463 if (j)
465 /* T3. Record the relation. */
466 record_relation (j, k);
467 k = NULL;
470 j = k;
473 if (k != NULL)
474 error (EXIT_FAILURE, 0, _("%s: input contains an odd number of tokens"),
475 file);
477 /* T1. Initialize (N <- n). */
478 walk_tree (root, count_items);
480 while (n_strings > 0)
482 /* T4. Scan for zeros. */
483 walk_tree (root, scan_zeros);
485 while (head)
487 struct successor *p = head->top;
489 /* T5. Output front of queue. */
490 printf ("%s\n", head->str);
491 head->str = NULL; /* Avoid printing the same string twice. */
492 n_strings--;
494 /* T6. Erase relations. */
495 while (p)
497 p->suc->count--;
498 if (p->suc->count == 0)
500 zeros->qlink = p->suc;
501 zeros = p->suc;
504 p = p->next;
507 /* T7. Remove from queue. */
508 head = head->qlink;
511 /* T8. End of process. */
512 if (n_strings > 0)
514 /* The input contains a loop. */
515 error (0, 0, _("%s: input contains a loop:"), file);
516 ok = false;
518 /* Print the loop and remove a relation to break it. */
520 walk_tree (root, detect_loop);
521 while (loop);
525 if (fclose (stdin) != 0)
526 error (EXIT_FAILURE, errno, "%s",
527 is_stdin ? _("standard input") : quote (file));
529 return ok;
533 main (int argc, char **argv)
535 bool ok;
537 initialize_main (&argc, &argv);
538 program_name = argv[0];
539 setlocale (LC_ALL, "");
540 bindtextdomain (PACKAGE, LOCALEDIR);
541 textdomain (PACKAGE);
543 atexit (close_stdout);
545 parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
546 usage, AUTHORS, (char const *) NULL);
547 if (getopt_long (argc, argv, "", NULL, NULL) != -1)
548 usage (EXIT_FAILURE);
550 if (1 < argc - optind)
552 error (0, 0, _("extra operand %s"), quote (argv[optind + 1]));
553 usage (EXIT_FAILURE);
556 ok = tsort (optind == argc ? "-" : argv[optind]);
558 exit (ok ? EXIT_SUCCESS : EXIT_FAILURE);