aboutsummaryrefslogtreecommitdiff
path: root/src/comp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c113
1 files changed, 73 insertions, 40 deletions
diff --git a/src/comp.c b/src/comp.c
index 17832ad..fcd0a14 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -127,3 +127,3 @@ component_lookup_index (const char *tag)
127 for (i = 0; i < comp_count; i++) 127 for (i = 0; i < comp_count; i++)
128 if (comp_array[i] && strcmp (comp_array[i]->tag, tag) == 0) 128 if (strcmp (comp_array[i]->tag, tag) == 0)
129 return i; 129 return i;
@@ -390,16 +390,35 @@ list_str_cmp (const void *a, const void *b)
390 390
391/* Report cyclic dependency starting at IDX. Mark each element with
392 CF_REMOVE for subsequent removal.
393 DP is a transitive closure of depmap.
394*/
391static void 395static void
392component_log_dep (size_t idx) 396report_cyclic_dependency (pies_depmap_t dp, size_t idx)
393{ 397{
394 pies_depmap_pos_t pos; 398 size_t i;
395 size_t n;
396 399
397 logmsg_printf (LOG_NOTICE, "%s -> ", comp_array[idx]->tag); 400 i = idx;
398 for (n = depmap_first (depmap, depmap_col, idx, &pos); 401 do
399 n != (size_t)-1;
400 n = depmap_next (depmap, pos))
401 { 402 {
402 logmsg_printf (LOG_NOTICE, "%s -> ", comp_array[n]->tag); 403 size_t n;
404 pies_depmap_pos_t pos;
405
406 logmsg_printf (LOG_NOTICE, "%s -> ", comp_array[i]->tag);
407 comp_array[i]->flags |= CF_REMOVE;
408 for (n = depmap_first (depmap, depmap_col, i, &pos);
409 n != (size_t)-1;
410 n = depmap_next (depmap, pos))
411 {
412 if (n == i)
413 continue;
414 if (depmap_isset (dp, n, i) && depmap_isset (dp, n, n))
415 break;
416 }
417 depmap_end (pos);
418
419 if (n == (size_t)-1)
420 break;
421 i = n;
403 } 422 }
404 depmap_end (pos); 423 while (i != idx);
405 logmsg_printf (LOG_NOTICE, "%s\n", comp_array[idx]->tag); 424 logmsg_printf (LOG_NOTICE, "%s\n", comp_array[idx]->tag);
@@ -408,2 +427,13 @@ component_log_dep (size_t idx)
408void 427void
428comp_array_remove (size_t i)
429{
430 struct component *comp = comp_array[i];
431 if (i < comp_count - 1)
432 memmove (&comp_array[i], &comp_array[i+1],
433 (comp_count - i - 1) * sizeof comp_array[0]);
434 component_free (comp);
435 comp_count--;
436}
437
438void
409component_build_depmap (void) 439component_build_depmap (void)
@@ -415,3 +445,3 @@ component_build_depmap (void)
415 depmap = depmap_alloc (comp_count); 445 depmap = depmap_alloc (comp_count);
416 for (i = 0; i < comp_count; i++) 446 for (i = 0; i < comp_count; )
417 { 447 {
@@ -431,6 +461,4 @@ component_build_depmap (void)
431 comp->tag, tag); 461 comp->tag, tag);
432 component_free (comp); 462 comp_array_remove (i);
433 comp_array[i] = NULL; 463 depmap_remove (depmap, i);
434 depmap_clear_all (depmap, depmap_row, i);
435 depmap_clear_all (depmap, depmap_col, i);
436 continue; 464 continue;
@@ -454,2 +482,4 @@ component_build_depmap (void)
454 } 482 }
483
484 i++;
455 } 485 }
@@ -459,3 +489,3 @@ component_build_depmap (void)
459 for (i = 0; i < comp_count; i++) 489 for (i = 0; i < comp_count; i++)
460 if (depmap_isset (dp, i, i)) 490 if (!(comp_array[i]->flags & CF_REMOVE) && depmap_isset (dp, i, i))
461 { 491 {
@@ -463,9 +493,15 @@ component_build_depmap (void)
463 comp_array[i]->tag); 493 comp_array[i]->tag);
464 component_log_dep (i); 494 report_cyclic_dependency (dp, i);
465 component_free (comp_array[i]); 495 }
466 comp_array[i] = NULL; 496
467 depmap_clear_all (depmap, depmap_row, i); 497
468 depmap_clear_all (depmap, depmap_col, i); 498 for (i = 0; i < comp_count;)
469 continue; 499 if (comp_array[i]->flags & CF_REMOVE)
500 {
501 comp_array_remove (i);
502 depmap_remove (depmap, i);
470 } 503 }
504 else
505 i++;
506
471 free (dp); 507 free (dp);
@@ -750,5 +786,5 @@ component_get (size_t n)
750void 786void
751components_dump_depmap (void) 787depmap_dump (pies_depmap_t dpm)
752{ 788{
753 size_t i, j, k; 789 size_t i, j;
754 790
@@ -756,20 +792,11 @@ components_dump_depmap (void)
756 printf (" "); 792 printf (" ");
757 for (i = k = 0; i < comp_count; i++) 793 for (i = 0; i < comp_count; i++)
758 if (comp_array[i]) 794 printf (" %2lu", (unsigned long)i);
759 {
760 printf (" %2lu", (unsigned long)k);
761 k++;
762 }
763 printf ("\n"); 795 printf ("\n");
764 for (i = k = 0; i < comp_count; i++) 796 for (i = 0; i < comp_count; i++)
765 { 797 {
766 if (comp_array[i]) 798 printf ("%2lu", (unsigned long)i);
767 { 799 for (j = 0; j < comp_count; j++)
768 printf ("%2lu ", (unsigned long)k); 800 printf (" %c", depmap_isset (dpm, i, j) ? 'X' : ' ');
769 for (j = 0; j < comp_count; j++) 801 printf ("\n");
770 if (comp_array[j])
771 printf (" %c ", depmap_isset (depmap, i, j) ? 'X' : ' ');
772 printf ("\n");
773 k++;
774 }
775 } 802 }
@@ -781,2 +808,8 @@ components_dump_depmap (void)
781void 808void
809components_dump_depmap (void)
810{
811 depmap_dump (depmap);
812}
813
814void
782component_trace (size_t idx, enum pies_depmap_direction dir) 815component_trace (size_t idx, enum pies_depmap_direction dir)

Return to:

Send suggestions and report system problems to the System administrator.