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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
|
#!/usr/bin/env python3
from __future__ import print_function
from datetime import datetime
import sys
sys.path.append("/usr/share/botch")
from util import read_json_file
from functools import reduce
def partition(L, p):
return reduce(lambda x, y: x[not p(y)].append(y) or x, L, ([], []))
# string of package
def sob(binpkg):
name, arch, ver = binpkg
return '<span class="pkg" title="%s:%s (= %s)">%s</span>' % (
name,
arch,
ver,
name,
)
def sos(srcpkg):
name, ver = srcpkg
return '<a href="/source/%s_%s.html" class="pkg"' % (
name,
ver,
) + ' title="src:%s (= %s)">src:%s</a>' % (name, ver, name)
# string of list
def sobl(L):
return ", ".join([sob(pkg) for pkg in L])
def sosl(L):
return ", ".join([sos(pkg) for pkg in L])
# string of vector
def sov(vertex):
t, data = vertex
if t == "SrcPkg":
name, ver = data
fullname = "src:%s (= %s)" % (name, ver)
return '<a href="/source/%s_%s.html" class="pkg"' % (
name,
ver,
) + ' title="%s">src:%s</a>' % (fullname, name)
elif t == "InstSet":
(name, arch, ver), instset = data
instset = ", ".join(
["%s:%s (= %s)" % (n, a, v) for n, a, v in instset]
)
fullname = "%s:%s (= %s), installation set = { %s }" % (
name,
arch,
ver,
instset,
)
return '<span class="pkg" title="%s">%s</span>' % (fullname, name)
elif t == "SCC":
raise Exception("SCC not implemented yet")
else:
raise Exception("invalid vertex type: %s" % t)
# string of cycle
def soc(c):
res = sov(c[0])
for v in c[1:]:
t, data = v
if t == "SrcPkg":
# the previous edge was a "buildsfrom" edge
res += (
' <span title="builds from" class="arrowouter">'
+ '<span class="arrowinner">→</span></span> '
)
elif t == "InstSet":
# the previous edge was a "builddepends" edge
res += (
' <span title="build depends" class="arrowouter">'
+ '<span class="arrowinner">⇢</span></span> '
)
else:
raise Exception("invalid vertex type: %s" % t)
res += sov(v)
return res
tables = {
"srcgraph": {
"type1cycles": {
"title": "Type 1 Self-Cycles",
"descr": "<p>A source package directly Build-Depends on a "
+ "binary package it itself builds</p>",
"heads": [
"source package",
"strongly depends on",
"because of the source package build depending on",
],
"printer": lambda src, l1, l2: (sos(src), sobl(l1), sobl(l2)),
"order": 0,
},
"type2cycles": {
"title": "Type 2 Self-Cycles",
"descr": "<p>A source indirectly strongly Build-Depends on a "
+ "binary package it itself builds through one of its "
+ "direct build dependencies.</p>",
"heads": [
"source package",
"strongly depends on",
"because of the source package build depending on",
],
"printer": lambda src, l1, l2: (sos(src), sobl(l1), sobl(l2)),
"order": 0,
},
"type3cycles": {
"title": "Type 3 Self-Cycles",
"descr": "<p>Not-strong self-cycles which can probably be "
+ "solved by choosing a different installationset</p>",
"heads": ["source package", "in non-strong cycle with"],
"printer": lambda src, deps: (sos(src), sobl(deps)),
"order": 0,
},
},
"buildgraph": {
"cycles": {
"title": "Cycles",
"descr": "Small dependency cycles. The second column shows the "
+ "packages involved in the cycle.",
"heads": ["Length", "Cycle"],
"printer": lambda *row: ("%d" % (len(row)), soc(row)),
"order": 0,
},
"cycleedge": {
"title": "Amount of Cycles through Edges",
"descr": "After enumerating all cycles in the graph up to a "
+ "certain maximum length, the first column indicates "
+ "the amount of cycles that the edge in the second "
+ "column is part of. Removing an edge with many cycles "
+ "through it, immediately breaks all those cycles.",
"heads": ["Amount", "Edge"],
"printer": lambda edge, a: ("%d" % (a), soc(edge)),
"order": 1,
},
"builddeps": {
"title": "Amount of Missing Build Dependencies",
"descr": "Source packages which only lack very few build dependencies.",
"heads": ["Amount", "Source Package", "Build Dependencies"],
"printer": lambda src, deps: ("%d" % (len(deps)), sos(src), sobl(deps)),
"order": 0,
},
"ratio_source": {
"title": "Ratio Source Heuristic",
"descr": """
<p>Find source packages that build-depend on many others but are only needed by
few binary packages which are in turn only needed buy a few source packages.
Maybe the source packages that need those few binary packages can be built
without them?</p>
<p>In other words: The source package in the second column draws in many binary
packages as build dependencies (amount in the third column). But that source
package must only be built because of few binary packages (fourth column) which
in turn are only needed by few other source packages as build dependencies
(fifth column). If the source packages in the fifth column could be built
without the binary packages in the fourth column, then the source package of
the second column would not be needed anymore and would therefor not draw in
the amount of binary packages in the third column.</p>
<p>The value of the first column is the result of dividing the value in the
third column by the amount of packages in the fifth column</p>""",
"heads": [
"Ratio",
"Source Package",
"Missing Build Dependencies",
"Source Package is needed by",
"Those Packages are Build Dependencies of",
],
"printer": lambda s, b, n, o: (
"%.02f" % (float(b) / len(o)),
sos(s),
"%d" % (b),
sobl(n),
sosl(o),
),
"order": 1,
},
"ratio_binary": {
"title": "Ratio Binary Heuristic",
"descr": """
<p>Find binary packages that are only needed by few source package but need
many other source packages to be built to satisfy their runtime dependencies.
Maybe the source package that needs this binary package can be built without
it?</p>
<p>In other words: The binary package in the second column draws in many source
packages (amount in the third column) because of its installation set. If the
source package in the fourth column could be built without the binary package
in the second column, then the binary package in the second column would not be
needed anymore and would therefor not draw in the amount of source packages in
the third column.</p>
<p>The value of the first column is the result of dividing the value in the
third column by the amount of packages in the fourth column</p>""",
"heads": [
"Ratio",
"Binary Package",
"Needs Source Package",
"Is Build Dependency of",
],
"printer": lambda b, s, o: (
"%.02f" % (float(s) / len(o)),
sob(b),
"%d" % (s),
sosl(o),
),
"order": 1,
},
"weak": {
"title": "Only Weak Build Dependencies Missing",
"descr": '<p>Source packages that only lack "weak" '
+ "build dependencies as classified as such by "
+ '<a href="https://salsa.debian.org/debian-bootstrap-team/'
+ 'botch/-/raw/master/droppable/weak-build-dependencies.list"'
+ ">this list</a>.</p>",
"heads": ["Amount", "Source Package", "Weak Build Dependencies"],
"printer": lambda src, deps: ("%d" % (len(deps)), sos(src), sobl(deps)),
"order": 0,
},
"srcbinstats": {
"title": "Vertex Statistics",
"descr": "<p>Several vertex degree based statistics. The first "
+ "column shows the source vertex or installation set "
+ "vertex name. The second column shows the amount of "
+ "ingoing edges and the third column the amount of "
+ "outgoing edges. The fourth column shows the ratio and "
+ "the fifth column the sum of those two.<p>",
"heads": [
"Source package or Installation Set",
"In-Degree",
"Out-Degree",
"Ratio",
"Connectedness",
],
"printer": lambda v, outd, ind: (
sov(v),
"%d" % (ind),
"%d" % (outd),
"%.03f" % (float(ind) / float(outd)),
"%d" % (ind + outd),
),
"order": 0,
},
"fas": {
"title": "Feedback Arc Set",
"descr": "A feedback arc set which would make the dependency "
+ "graph acyclic.",
"heads": ["Source Package", "Build Dependencies to Drop"],
"printer": lambda src, deps: (sos(src), sobl(deps)),
"order": 0,
},
"sap": {
"title": "Strong Articulation Points",
"descr": "If the vertex shown in the second column could be "
+ "removed from the dependency graph, then this strongly "
+ "connected component would be broken into as many "
+ "strongly connected components as shown in the first "
+ "column.",
"heads": ["Amount of SCC", "Vertex"],
"printer": lambda vert, a: ("%d" % (a), sov(vert)),
"order": 1,
},
"sb": {
"title": "Strong Bridges",
"descr": "If the edge shown in the second column could be "
+ "removed from the dependency graph, then this strongly "
+ "connected component would be broken into as many "
+ "strongly connected components as shown in the first "
+ "column.",
"heads": ["Amount of SCC", "Edge"],
"printer": lambda edge, a: ("%d" % (a), soc(edge)),
"order": 1,
},
},
}
controls = """<form>
<a href="#" class="first">first</a>
<a href="#" class="prev">prev</a>
<input type="text" class="pagedisplay"/>
<a href="#" class="next">next</a>
<a href="#" class="last">last</a>
<select class="pagesize">
<option selected="selected" value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
per page (%d rows in total)
</form>"""
def render_section_srcgraph(name, dat):
table = tables["srcgraph"][name]
print('<div id="%s">' % name)
print('<a name="%s"></a>' % name)
print("<h2>%s</h2>" % (table["title"]))
print(table["descr"])
render_table(table, name, dat, 0)
print("</div>")
def render_section_buildgraph(name, sccs):
table = tables["buildgraph"][name]
print('<div id="%s">' % name)
print('<a name="%s"></a>' % name)
print("<h2>%s</h2>" % (table["title"]))
print(table["descr"])
for i, dat in sccs:
render_table(table, name, dat, i + 1)
print("</div>")
def render_table(table, name, dat, num):
print('<div class="scc_%d">' % num)
if num != 0:
print("<h3>SCC #%d</h3>" % num)
print('<div id="%s_%d_pager">%s</div>' % (name, num, controls % len(dat[name])))
print('<table class="tablesorter %s" id="%s_%d">' % (name, name, num))
print("<thead><tr>")
for head in table["heads"]:
print("<th>%s</th>" % head)
print("</tr></thead>\n<tbody>")
if dat[name]:
for row in dat[name]:
# we have to do this so that it works in python2 and python3
# see http://stackoverflow.com/questions/23944976
sys.stdout.flush()
getattr(sys.stdout, "buffer", sys.stdout).flush()
getattr(sys.stdout, "buffer", sys.stdout).write(
(
"<tr><td>"
+ "</td><td>".join(table["printer"](*row))
+ "</td></tr>\n"
).encode("utf8")
)
getattr(sys.stdout, "buffer", sys.stdout).flush()
sys.stdout.flush()
else:
print('<tr><td colspan="%d">empty</td></tr>\n' % len(table["heads"]))
print("</tbody></table>")
print("</div>")
def stat_html(data, online=False, verbose=False):
# sort SCCs with descending number of vertices
# if the number of vertices is the same, sort by the number of edges, then
# by the vertex properties
sccs = list(
enumerate(
sorted(
data["buildgraph"]["sccs"],
key=lambda x: (x["sg_vertex"], x["sg_edges"], x["srcbinstats"]),
reverse=True,
)
)
)
if online:
webresources_style = "/webresources"
webresources_jquery = "/webresources"
webresources_tablesorter = "/webresources"
webresources_pager = "/webresources"
else:
webresources_style = "file:///usr/share/javascript/jquery-tablesorter/css"
webresources_jquery = "file:///usr/share/javascript/jquery"
webresources_tablesorter = "file:///usr/share/javascript/jquery-tablesorter"
webresources_pager = (
"file:///usr/share/javascript/jquery-tablesorter/addons/pager"
)
print(
"""<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Debian Dependency Graph Analysis Results</title>
<link href="%s/theme.blue.css" rel="stylesheet" />
<style>
body {margin-top:6em}
table {font-size: 1em !important}
.pkg:hover {background-color: #e6EEEE}
#topbar {
position:fixed;
top:0px;
left:0px;
}
ul {list-style-type:none;padding-left:0.5em}
.topbutton {border:2px solid #CDCDCD;
padding:0em 0.5em;float:left;margin:0.5em;
background-color:#FFF}
.topbutton ul {height:0px;overflow:hidden;margin:0px;}
.topbutton:hover ul {height:auto;margin-bottom:0.5em}
.topbutton h1 {font-family:arial;font-size: 1.2em;}
.arrowouter {
display: inline-block;
height: 1em;
overflow: hidden;
vertical-align: bottom;
}
.arrowinner {
display:block;
font-size: 2em;
margin-top: -0.4em;
}
</style>
<script type="text/javascript" src="%s/jquery.js"></script>
<script type="text/javascript" src="%s/jquery.tablesorter.js"></script>
<script type="text/javascript" src="%s/jquery.tablesorter.pager.js">"""
% (
webresources_style,
webresources_jquery,
webresources_tablesorter,
webresources_pager,
)
+ """</script>
<script>
function toggle_hidesrc () {
if ($('#hidesrc').is(':checked')) {
$("#srcgraph").hide();
} else {
$("#srcgraph").show();
}
}
function toggle_hidebuild () {
if ($('#hidebuild').is(':checked')) {
$("#buildgraph").hide();
} else {
$("#buildgraph").show();
}
}
function toggle_scc (i) {
if ($('#show_scc_'+i).is(':checked')) {
$('.scc_'+i).show();
} else {
$('.scc_'+i).hide();
}
}
function toggle_result (i) {
if ($('#show_'+i).is(':checked')) {
$('#'+i).show();
$('#'+i+'_toc').show();
} else {
$('#'+i).hide();
$('#'+i+'_toc').hide();
}
}
function toggle_scc_all () {"""
)
for i, scc in sccs:
print(" toggle_scc(%d)" % (i + 1))
print(
""" }
function toggle_result_all () {"""
)
for i in sorted(list(tables["srcgraph"].keys())) + sorted(
list(tables["buildgraph"].keys())
):
print(" toggle_result('%s')" % i)
print(
""" }
function hide_scc_all () {
$.each($(".show_scc"), function(index, val) {
$(val).prop('checked', true);
});
toggle_scc_all();
}
function show_scc_all () {
$.each($(".show_scc"), function(index, val) {
$(val).prop('checked', false);
});
toggle_scc_all();
}
function hide_srcresult_all () {
$.each($(".show_srcresult"), function(index, val) {
$(val).prop('checked', false);
});
toggle_result_all();
}
function show_srcresult_all () {
$.each($(".show_srcresult"), function(index, val) {
$(val).prop('checked', true);
});
toggle_result_all();
}
function hide_buildresult_all () {
$.each($(".show_buildresult"), function(index, val) {
$(val).prop('checked', false);
});
toggle_result_all();
}
function show_buildresult_all () {
$.each($(".show_buildresult"), function(index, val) {
$(val).prop('checked', true);
});
toggle_result_all();
}
function restore_default_order () {"""
)
for name, val in sorted(list(tables["srcgraph"].items())) + sorted(
list(tables["buildgraph"].items())
):
print(" $('.%s').trigger(\"sorton\",[[[0,%d]]]);" % (name, val["order"]))
print(
""" }
$(document).ready(function() {
$.each($("table.tablesorter"), function(index, val) {
var id = $(val).attr('id');
$(val).tablesorter({widthFixed:true}).tablesorterPager({contain"""
+ """er: $('#' + id + '_pager'), positionFixed: false});
});
$('#defaultsort').click(restore_default_order);
$('#hideall').click(hide_scc_all);
$('#showall').click(show_scc_all);
$('#hide_srcresult').click(hide_srcresult_all);
$('#show_srcresult').click(show_srcresult_all);
$('#hide_buildresult').click(hide_buildresult_all);
$('#show_buildresult').click(show_buildresult_all);
$('#hidesrc').click(toggle_hidesrc);
$('#hidebuild').click(toggle_hidebuild);"""
)
for i, scc in sorted(sccs):
print(
" $('#show_scc_%d').click(function() {toggle_scc(%d);})"
% ((i + 1), (i + 1))
)
for i in sorted(list(tables["srcgraph"].keys())) + sorted(
list(tables["buildgraph"].keys())
):
print(" $('#show_%s').click(function() {toggle_result('%s');})" % (i, i))
print(
""" toggle_hidesrc();
toggle_hidebuild();
toggle_scc_all();
toggle_result_all();
restore_default_order();
});
</script>
</head>
<body>
"""
)
if args.online:
print(""" <p>updated: %s</p>""" % (datetime.now().isoformat()))
print(
"""
<div id="topbar">
<div class="topbutton">
<h1>Table of Contents</h1>
<ul>
<li><a href="#srcgraph">Source Graph</a>
<ul>"""
)
for name, val in sorted(
list(tables["srcgraph"].items()), key=lambda x_y: x_y[1]["title"]
):
print(
""" <li id="%s_toc"><a href="#%s">%s</a></li>"""
% (name, name, val["title"])
)
print(
"""
</ul>
</li>
<li><a href="#buildgraph">Build Graph</a>
<ul>"""
)
for name, val in sorted(
list(tables["buildgraph"].items()), key=lambda x_y1: x_y1[1]["title"]
):
print(
""" <li id="%s_toc"><a href="#%s">%s</a></li>"""
% (name, name, val["title"])
)
print(
"""
</ul>
</li>
<ul>
</div>
<div class="topbutton">
<h1>Global Options</h1>
<ul>
<li><input type="checkbox" id="hidesrc" />Hide Source Graph</li>
<li><input type="checkbox" id="hidebuild" />Hide Build Graph</li>
<li><input type="button" value="Restore Default Order" id="defau"""
+ """ltsort" /></li>
</ul>
</div>
<div class="topbutton">
<h1>Toggle Stats</h1>
<ul>
<li><input type="button" value="Show All" id="show_buildresult" />
<input type="button" value="Hide All" id="hide_buildresult" /></li>
<li>Source Graph
<ul>"""
)
for name, val in sorted(
list(tables["srcgraph"].items()), key=lambda x_y2: x_y2[1]["title"]
):
print(
"""
<li><input type="checkbox" checked="checked" class="show_srcre"""
+ """sult" id="show_%s" />Show %s</li>""" % (name, val["title"])
)
print(
"""
</ul>
</li>
<li>Build Graph
<ul>"""
)
for name, val in sorted(
list(tables["buildgraph"].items()), key=lambda x_y3: x_y3[1]["title"]
):
print(
"""
<li><input type="checkbox" checked="checked" class="show_build"""
+ """result" id="show_%s" />Show %s</li>""" % (name, val["title"])
)
print(
"""
</ul>
</li>
</ul>
</div>
<div class="topbutton">
<h1>Toggle SCCs</h1>
<ul>
<li><input type="button" value="Show All" id="hideall" />
<input type="button" value="Hide All" id="showall" /></li>"""
)
for i, scc in sccs:
print(
"""<li><input type="checkbox" %s class="show_scc" id="show_s"""
% ('checked="checked" ' if i == 0 else "")
+ """cc_%d" />Show SCC #%d (%d vertices)</li>"""
% (i + 1, i + 1, scc["sg_vertex"])
)
print(
""" </ul>
</div>
</div>
<p>Click on the table headers to sort by that column. Shift+Click allows to
sort by multiple columns.</p>
<p>Hover over a package name for architecture and version information.</p>
<div id="srcgraph">
<a name="srcgraph"></a>
<h1>Source Graph</h1>
<p>The source graph only contains source package vertices and is the"""
+ """refore the
natural choice for calculating a build order. But it is also the gra"""
+ """ph type
that can be used to identify strong dependency relationships between"""
+ """ source
packages. It can therefore be used to identify strong cycles which c"""
+ """annot be
broken by choosing a different installation set. The smallest possib"""
+ """le cycle is
the self-cycle of a source package with itself.</p>
<p>amount of vertices: %d</p>
<p>amount of edges: %d</p>"""
% (data["srcgraph"]["snr_vertex"], data["srcgraph"]["snr_edges"])
)
for i in sorted(tables["srcgraph"], key=lambda x: tables["srcgraph"][x]["title"]):
render_section_srcgraph(i, data["srcgraph"])
print(
"""
</div>
<div id="buildgraph">
<a name="buildgraph"></a>
<h1>Build Graph</h1>
<p>The build graph is most important for finding build dependencies to
remove to make the graph acyclic.</p>
<p>If you use JavaScript, then by default only statistics of the biggest
strongly connected component will be displayed to avoid clutter. You can
activate or deactivate the displaying of statistics for individual
strongly components by using the respective checkboxes in the "Toggle
SCCs" menu on the top.</p>
<p>Just as you can make a selection of the strongly connected components
you want statistics to be displayed for, you can also make a selection of
displayed statistic types in the "Toggle Stats" menu on the top.</p>
<p>amount of vertices: %d</p>
<p>amount of edges: %d</p>
<form>"""
% (data["buildgraph"]["bnr_vertex"], data["buildgraph"]["bnr_edges"])
)
print(
"""
<div style="clear:both">
</div>"""
)
for i, scc in sccs:
srcstats, binstats = partition(
scc["srcbinstats"], lambda x: x[0][0].startswith("src:")
)
print(
"""
<div style="width:16em;float:left;" class="scc_%d">
<form>
<fieldset>
<legend>SCC #%d</legend>
<table>
<tr><td>amount of vertices</td><td>%s</td></tr>
<tr><td>amount of edges</td><td>%s</td></tr>
<tr><td>amount of sources</td><td>%s</td></tr>
<tr><td>amount of installation sets</td><td>%s</td></tr>
</table>
</fieldset>
</form>
</div>"""
% (
i + 1,
i + 1, # id of this scc
scc["sg_vertex"], # number of vertices
scc["sg_edges"], # number of edges
len(srcstats), # number of source packages
len(binstats),
)
) # number of binary packages
print(
"""
<div style="clear:both"></div>
</form>"""
)
for i in sorted(
tables["buildgraph"], key=lambda x: tables["buildgraph"][x]["title"]
):
render_section_buildgraph(i, sccs)
print(
"""
</div>
</body>
</html>"""
)
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(
description="Turn json statistics into human readable html"
)
parser.add_argument(
"infile", type=read_json_file, help="input statistics in json format"
)
parser.add_argument(
"--online",
action="store_true",
help="generate online version (puts timestamp and " + "adjusts links)",
)
parser.add_argument("--verbose", action="store_true", help="be verbose")
args = parser.parse_args()
ret = stat_html(args.infile, args.online, args.verbose)
|