1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
/*************************************************************************
* Copyright (c) 2011 AT&T Intellectual Property
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors: See CVS logs. Details at http://www.graphviz.org/
*************************************************************************/
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "cgraph.h"
#include "exit.h"
#include "ingraphs.h"
#include <getopt.h>
#define INF ((unsigned int)(-1))
typedef struct Agraphinfo_t {
Agrec_t h;
Agnode_t *rep;
} Agraphinfo_t;
typedef struct Agnodeinfo_t {
Agrec_t h;
unsigned int val;
Agraph_t *scc;
} Agnodeinfo_t;
#define getrep(g) (((Agraphinfo_t*)(g->base.data))->rep)
#define setrep(g,rep) (getrep(g) = rep)
#define getscc(n) (((Agnodeinfo_t*)((n)->base.data))->scc)
#define setscc(n,sub) (getscc(n) = sub)
#define getval(n) (((Agnodeinfo_t*)((n)->base.data))->val)
#define setval(n,newval) (getval(n) = newval)
/********* stack ***********/
typedef struct {
Agnode_t **data;
Agnode_t **ptr;
} Stack;
static void initStack(Stack * sp, int sz)
{
sp->data = malloc(sz * sizeof(Agnode_t *));
sp->ptr = sp->data;
}
static void freeStack(Stack * sp)
{
free(sp->data);
}
static void push(Stack * sp, Agnode_t * n)
{
*(sp->ptr++) = n;
}
static Agnode_t *top(Stack * sp)
{
return *(sp->ptr - 1);
}
static Agnode_t *pop(Stack * sp)
{
sp->ptr--;
return *(sp->ptr);
}
/********* end stack ***********/
typedef struct {
int Comp;
int ID;
int N_nodes_in_nontriv_SCC;
} sccstate;
static int wantDegenerateComp;
static int Silent;
static int StatsOnly;
static int Verbose;
static char *CmdName;
static char **Files;
static FILE *outfp; /* output; stdout by default */
static void nodeInduce(Agraph_t * g, Agraph_t * map)
{
Agnode_t *n;
Agedge_t *e;
Agraph_t *rootg = agroot(g);
for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
for (e = agfstout(rootg, n); e; e = agnxtout(rootg, e)) {
if (agsubnode(g, aghead(e), 0))
agsubedge(g, e, 1);
else {
Agraph_t *tscc = getscc(agtail(e));
Agraph_t *hscc = getscc(aghead(e));
if (tscc && hscc)
agedge(map, getrep(tscc), getrep(hscc), NULL, 1);
}
}
}
}
static int visit(Agnode_t * n, Agraph_t * map, Stack * sp, sccstate * st)
{
unsigned int m, min;
Agnode_t *t;
Agraph_t *subg;
Agedge_t *e;
min = ++(st->ID);
setval(n, min);
push(sp, n);
for (e = agfstout(n->root, n); e; e = agnxtout(n->root, e)) {
t = aghead(e);
if (getval(t) == 0)
m = visit(t, map, sp, st);
else
m = getval(t);
if (m < min)
min = m;
}
if (getval(n) == min) {
if (!wantDegenerateComp && (top(sp) == n)) {
setval(n, INF);
pop(sp);
} else {
char name[32];
Agraph_t *G = agraphof(n);;
snprintf(name, sizeof(name), "cluster_%d", (st->Comp)++);
subg = agsubg(G, name, 1);
agbindrec(subg, "scc_graph", sizeof(Agraphinfo_t), true);
setrep(subg, agnode(map, name, 1));
do {
t = pop(sp);
agsubnode(subg, t, 1);
setval(t, INF);
setscc(t, subg);
st->N_nodes_in_nontriv_SCC++;
} while (t != n);
nodeInduce(subg, map);
if (!StatsOnly)
agwrite(subg, outfp);
}
}
return min;
}
static int label(Agnode_t * n, int nodecnt, int *edgecnt)
{
Agedge_t *e;
setval(n, 1);
nodecnt++;
for (e = agfstedge(n->root, n); e; e = agnxtedge(n->root, e, n)) {
(*edgecnt) += 1;
if (e->node == n)
e = agopp(e);
if (!getval(e->node))
nodecnt = label(e->node, nodecnt, edgecnt);
}
return nodecnt;
}
static int
countComponents(Agraph_t * g, int *max_degree, float *nontree_frac)
{
int nc = 0;
int sum_edges = 0;
int sum_nontree = 0;
int deg;
int n_edges;
int n_nodes;
Agnode_t *n;
for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
if (!getval(n)) {
nc++;
n_edges = 0;
n_nodes = label(n, 0, &n_edges);
sum_edges += n_edges;
sum_nontree += (n_edges - n_nodes + 1);
}
}
if (max_degree) {
int maxd = 0;
for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
deg = agdegree(g, n, 1, 1);
if (maxd < deg)
maxd = deg;
setval(n, 0);
}
*max_degree = maxd;
}
if (nontree_frac) {
if (sum_edges > 0)
*nontree_frac = (float) sum_nontree / (float) sum_edges;
else
*nontree_frac = 0.0;
}
return nc;
}
static void process(Agraph_t * G)
{
Agnode_t *n;
Agraph_t *map;
int nc = 0;
float nontree_frac = 0;
int Maxdegree = 0;
Stack stack;
sccstate state;
aginit(G, AGRAPH, "scc_graph", sizeof(Agraphinfo_t), true);
aginit(G, AGNODE, "scc_node", sizeof(Agnodeinfo_t), true);
state.Comp = state.ID = 0;
state.N_nodes_in_nontriv_SCC = 0;
if (Verbose)
nc = countComponents(G, &Maxdegree, &nontree_frac);
initStack(&stack, agnnodes(G) + 1);
map = agopen("scc_map", Agdirected, (Agdisc_t *) 0);
for (n = agfstnode(G); n; n = agnxtnode(G, n))
if (getval(n) == 0)
visit(n, map, &stack, &state);
freeStack(&stack);
if (!StatsOnly)
agwrite(map, outfp);
agclose(map);
if (Verbose)
fprintf(stderr, "%d %d %d %d %.4f %d %.4f\n",
agnnodes(G), agnedges(G), nc, state.Comp,
state.N_nodes_in_nontriv_SCC / (double) agnnodes(G),
Maxdegree, nontree_frac);
else if (!Silent)
fprintf(stderr, "%d nodes, %d edges, %d strong components\n",
agnnodes(G), agnedges(G), state.Comp);
}
static FILE *openFile(const char *name)
{
FILE *fp;
fp = fopen(name, "w");
if (!fp) {
fprintf(stderr, "gvpack: could not open file %s for writing\n", name);
graphviz_exit(1);
}
return (fp);
}
static char *useString = "Usage: %s [-sdv?] <files>\n\
-s - only produce statistics\n\
-S - silent\n\
-d - allow degenerate components\n\
-o<outfile> - write to <outfile> (stdout)\n\
-v - verbose\n\
-? - print usage\n\
If no files are specified, stdin is used\n";
static void usage(int v)
{
printf(useString, CmdName);
graphviz_exit(v);
}
static void scanArgs(int argc, char **argv)
{
int c;
CmdName = argv[0];
opterr = 0;
while ((c = getopt(argc, argv, ":o:sdvS?")) != EOF) {
switch (c) {
case 's':
StatsOnly = 1;
break;
case 'd':
wantDegenerateComp = 1;
break;
case 'o':
outfp = openFile(optarg);
break;
case 'v':
Verbose = 1;
break;
case 'S':
Verbose = 0;
Silent = 1;
break;
case '?':
if (optopt == '\0')
usage(0);
else {
fprintf(stderr, "%s: option -%c unrecognized\n",
CmdName, optopt);
usage(1);
}
break;
}
}
argv += optind;
argc -= optind;
if (argc)
Files = argv;
if (!outfp)
outfp = stdout; /* stdout the default */
}
int main(int argc, char **argv)
{
Agraph_t *g;
ingraph_state ig;
scanArgs(argc, argv);
newIngraph(&ig, Files);
while ((g = nextGraph(&ig)) != 0) {
if (agisdirected(g))
process(g);
else
fprintf(stderr, "Graph %s in %s is undirected - ignored\n",
agnameof(g), fileName(&ig));
agclose(g);
}
return 0;
}
|