svg.c revision 3c527fd195ed9acddedb6dd6f50be6bffc94e9ae
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright (C) 2009-2013 Intel Corporation
Authors:
Auke Kok <auke-jan.h.kok@intel.com>
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <limits.h>
#include <unistd.h>
#include <fcntl.h>
#include "util.h"
#include "macro.h"
#include "store.h"
#include "svg.h"
#include "bootchart.h"
#include "list.h"
#define time_to_graph(t) ((t) * arg_scale_x)
#define ps_to_graph(n) ((n) * arg_scale_y)
static char str[8092];
static const char * const colorwheel[12] = {
"rgb(255,32,32)", // red
"rgb(32,192,192)", // cyan
"rgb(255,128,32)", // orange
"rgb(128,32,192)", // blue-violet
"rgb(255,255,32)", // yellow
"rgb(192,32,128)", // red-violet
"rgb(32,255,32)", // green
"rgb(255,64,32)", // red-orange
"rgb(32,32,255)", // blue
"rgb(255,192,32)", // yellow-orange
"rgb(192,32,192)", // violet
"rgb(32,192,32)" // yellow-green
};
static double idletime = -1.0;
static int pfiltered = 0;
static int pcount = 0;
static int kcount = 0;
static float psize = 0;
static float ksize = 0;
static float esize = 0;
static struct list_sample_data *sampledata;
static struct list_sample_data *prev_sampledata;
extern struct list_sample_data *head;
static void svg_header(void) {
float w;
float h;
struct list_sample_data *sampledata_last;
sampledata = head;
}
/* min width is about 1600px due to the label */
w = ((w < 1600.0) ? 1600.0 : w);
/* height is variable based on pss, psize, ksize */
svg("<?xml version=\"1.0\" standalone=\"no\"?>\n");
svg("<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" ");
//svg("<g transform=\"translate(10,%d)\">\n", 1000 + 150 + (pcount * 20));
svg("<svg width=\"%.0fpx\" height=\"%.0fpx\" version=\"1.1\" ",
w, h);
svg("xmlns=\"http://www.w3.org/2000/svg\">\n\n");
/* write some basic info as a comment, including some help */
svg("<!-- This file is a bootchart SVG file. It is best rendered in a browser -->\n");
svg("<!-- such as Chrome, Chromium, or Firefox. Other applications that -->\n");
svg("<!-- render these files properly but more slowly are ImageMagick, gimp, -->\n");
svg("<!-- inkscape, etc. To display the files on your system, just point -->\n");
/* style sheet */
svg(" rect { stroke-width: 1; }\n");
svg(" rect.wait { fill: rgb(240,240,0); stroke-width: 0; fill-opacity: 0.7; }\n");
svg(" rect.bi { fill: rgb(240,128,128); stroke-width: 0; fill-opacity: 0.7; }\n");
svg(" rect.bo { fill: rgb(192,64,64); stroke-width: 0; fill-opacity: 0.7; }\n");
svg(" rect.ps { fill: rgb(192,192,192); stroke: rgb(128,128,128); fill-opacity: 0.7; }\n");
svg(" rect.krnl { fill: rgb(240,240,0); stroke: rgb(128,128,128); fill-opacity: 0.7; }\n");
svg(" rect.box { fill: rgb(240,240,240); stroke: rgb(192,192,192); }\n");
svg(" line { stroke: rgb(64,64,64); stroke-width: 1; }\n");
svg(" line.dot { stroke-dasharray: 2 4; }\n");
svg(" line.idle { stroke: rgb(64,64,64); stroke-dasharray: 10 6; stroke-opacity: 0.7; }\n");
svg(" .run { font-size: 8; font-style: italic; }\n");
svg(" text { font-family: Verdana, Helvetica; font-size: 10; }\n");
svg(" text.idle { font-size: 18; }\n");
svg(" ]]>\n </style>\n</defs>\n\n");
}
char buf[256];
char *c;
FILE *f;
time_t t;
int fd;
if (f) {
fclose(f);
}
/* extract root fs so we can find disk model name in sysfs */
/* FIXME: this works only in the simple case */
if (c) {
if (f) {
fclose(f);
}
}
/* various utsname parameters */
/* date */
/* CPU type */
if (f) {
break;
}
}
fclose(f);
}
svg("<text class=\"t1\" x=\"0\" y=\"30\">Bootchart for %s - %s</text>\n",
svg("<text class=\"t2\" x=\"20\" y=\"50\">System: %s %s %s %s</text>\n",
svg("<text class=\"t2\" x=\"20\" y=\"65\">CPU: %s</text>\n",
cpu);
svg("<text class=\"t2\" x=\"20\" y=\"80\">Disk: %s</text>\n",
model);
svg("<text class=\"t2\" x=\"20\" y=\"95\">Boot options: %s</text>\n",
cmdline);
svg("<text class=\"t2\" x=\"20\" y=\"110\">Build: %s</text>\n",
build);
svg("<text class=\"t2\" x=\"20\" y=\"140\">Idle time: ");
if (idletime >= 0.0)
else
svg("Not detected");
svg("</text>\n");
svg("<text class=\"sec\" x=\"20\" y=\"155\">Graph data: %.03f samples/sec, recorded %i total, dropped %i samples, %i processes, %i filtered</text>\n",
}
static void svg_graph_box(int height) {
double d = 0.0;
int i = 0;
double finalsample = 0.0;
struct list_sample_data *sampledata_last;
}
/* outside box, fill */
svg("<rect class=\"box\" x=\"%.03f\" y=\"0\" width=\"%.03f\" height=\"%.03f\" />\n",
time_to_graph(0.0),
for (d = graph_start; d <= finalsample;
/* lines for each second */
if (i % 50 == 0)
svg(" <line class=\"sec5\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n",
time_to_graph(d - graph_start),
time_to_graph(d - graph_start),
else if (i % 10 == 0)
svg(" <line class=\"sec1\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n",
time_to_graph(d - graph_start),
time_to_graph(d - graph_start),
else
svg(" <line class=\"sec01\" x1=\"%.03f\" y1=\"0\" x2=\"%.03f\" y2=\"%.03f\" />\n",
time_to_graph(d - graph_start),
time_to_graph(d - graph_start),
/* time label */
if (i % 10 == 0)
svg(" <text class=\"sec\" x=\"%.03f\" y=\"%.03f\" >%.01fs</text>\n",
time_to_graph(d - graph_start),
-5.0,
d - graph_start);
i++;
}
}
/* xml comments must not contain "--" */
static char* xml_comment_encode(const char* name) {
char *enc_name, *p;
if (!enc_name)
return NULL;
for (p = enc_name; *p; p++)
if (p[0] == '-' && p[1] == '-')
p[1] = '_';
return enc_name;
}
static void svg_pss_graph(void) {
int i;
struct list_sample_data *sampledata_last;
}
svg("\n\n<!-- Pss memory size graph -->\n");
svg("\n <text class=\"t2\" x=\"5\" y=\"-15\">Memory allocation - Pss</text>\n");
/* vsize 1000 == 1000mb */
svg_graph_box(100);
/* draw some hlines for usable memory sizes */
for (i = 100000; i < 1000000; i += 100000) {
svg(" <line class=\"sec01\" x1=\"%.03f\" y1=\"%.0f\" x2=\"%.03f\" y2=\"%.0f\"/>\n",
time_to_graph(.0),
kb_to_graph(i),
kb_to_graph(i));
svg(" <text class=\"sec\" x=\"%.03f\" y=\"%.0f\">%dM</text>\n",
}
svg("\n");
/* now plot the graph itself */
i = 1;
int bottom;
int top;
struct ps_sched_struct *cross_place;
bottom = 0;
top = 0;
/* put all the small pss blocks into the bottom */
if (!ps)
continue;
break;
}
break;
}
}
}
svg(" <rect class=\"clrw\" style=\"fill: %s\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
"rgb(64,64,64)",
/* now plot the ones that are of significant size */
if (!ps)
continue;
break;
}
/* don't draw anything smaller than 2mb */
svg(" <rect class=\"clrw\" style=\"fill: %s\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
}
break;
}
}
svg(" <rect class=\"clrw\" style=\"fill: %s\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
}
}
i++;
}
/* overlay all the text labels */
i = 1;
int bottom;
int top;
struct ps_sched_struct *prev_sample;
struct ps_sched_struct *cross_place;
bottom = 0;
top = 0;
/* put all the small pss blocks into the bottom */
if (!ps)
continue;
break;
}
break;
}
}
}
/* now plot the ones that are of significant size */
if (!ps)
continue;
break;
}
/* don't draw anything smaller than 2mb */
/* draw a label with the process / PID */
svg(" <text x=\"%.03f\" y=\"%.03f\"><![CDATA[%s]]> [%i]</text>\n",
}
break;
}
}
/* draw a label with the process / PID */
svg(" <text x=\"%.03f\" y=\"%.03f\"><![CDATA[%s]]> [%i]</text>\n",
}
}
i++;
}
/* debug output - full data dump */
svg("\n\n<!-- PSS map - csv format -->\n");
if (!ps)
continue;
if(!enc_name)
continue;
}
svg(" -->\n");
}
}
static void svg_io_bi_bar(void) {
double max = 0.0;
double range;
int max_here = 0;
int i;
int k;
svg("<!-- IO utilization graph - In -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">IO utilization - read</text>\n");
/*
* calculate rounding range
*
* We need to round IO data since IO block data is not updated on
* each poll. Applying a smoothing function loses some burst data,
* so keep the smoothing range short.
*/
if (range < 2.0)
/* surrounding box */
svg_graph_box(5);
/* find the max IO first */
i = 1;
int start;
int stop;
int diff;
double tot;
/ diff;
max_here = i;
}
/ diff;
i++;
}
/* plot bi */
i = 1;
int start;
int stop;
int diff;
double tot;
double pbi;
tot = 0;
pbi = 0;
/ diff;
if (max > 0)
if (pbi > 0.001)
svg("<rect class=\"bi\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
/* labels around highest value */
if (i == max_here) {
}
i++;
}
}
static void svg_io_bo_bar(void) {
double max = 0.0;
double range;
int max_here = 0;
int i;
int k;
svg("<!-- IO utilization graph - out -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">IO utilization - write</text>\n");
/*
* calculate rounding range
*
* We need to round IO data since IO block data is not updated on
* each poll. Applying a smoothing function loses some burst data,
* so keep the smoothing range short.
*/
if (range < 2.0)
/* surrounding box */
svg_graph_box(5);
/* find the max IO first */
i = 0;
int start;
int stop;
int diff;
double tot;
/ diff;
/ diff;
max_here = i;
}
i++;
}
/* plot bo */
i=1;
int start;
int stop;
int diff;
double tot;
double pbo;
tot = 0;
pbo = 0;
/ diff;
if (max > 0)
if (pbo > 0.001)
svg("<rect class=\"bo\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
/* labels around highest bo value */
if (i == max_here) {
}
i++;
}
}
static void svg_cpu_bar(void) {
svg("<!-- CPU utilization graph -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">CPU utilization</text>\n");
/* surrounding box */
svg_graph_box(5);
/* bars for each sample, proportional to the CPU util. */
int c;
double trt;
double ptrt;
for (c = 0; c < cpus; c++)
if (trt > 0.0)
if (ptrt > 1.0)
ptrt = 1.0;
if (ptrt > 0.001) {
svg("<rect class=\"cpu\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
}
}
}
static void svg_wait_bar(void) {
svg("<!-- Wait time aggregation box -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">CPU wait</text>\n");
/* surrounding box */
svg_graph_box(5);
/* bars for each sample, proportional to the CPU util. */
int c;
double twt;
double ptwt;
for (c = 0; c < cpus; c++)
if (twt > 0.0)
if (ptwt > 1.0)
ptwt = 1.0;
if (ptwt > 0.001) {
svg("<rect class=\"wait\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
}
}
}
static void svg_entropy_bar(void) {
svg("<!-- entropy pool graph -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">Entropy pool size</text>\n");
/* surrounding box */
svg_graph_box(5);
/* bars for each sample, scale 0-4096 */
/* svg("<!-- entropy %.03f %i -->\n", sampletime[i], entropy_avail[i]); */
svg("<rect class=\"cpu\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
}
}
/*
* walk the list of processes and return the next one to be
* painted
*/
/* go deep */
/* find siblings */
/* go back for parent siblings */
while (1) {
if (!ps)
return ps;
}
return NULL;
}
if (!arg_filter)
return 0;
/* can't draw data when there is only 1 sample (need start + stop) */
return -1;
/* don't filter kthreadd */
return 0;
/* drop stuff that doesn't use any real CPU time */
return -1;
return 0;
}
static void svg_do_initcall(int count_only) {
double t;
char func[256];
int ret;
int usecs;
/* can't plot initcall when disabled or in relative mode */
if (!initcall || arg_relative) {
kcount = 0;
return;
}
if (!count_only) {
svg("<!-- initcall -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">Kernel init threads</text>\n");
/* surrounding box */
}
kcount = 0;
/*
* Initcall graphing - parses dmesg buffer and displays kernel threads
* This somewhat uses the same methods and scaling to show processes
* but looks a lot simpler. It's overlaid entirely onto the PS graph
* when appropriate.
*/
if (!f)
return;
while (!feof(f)) {
int c;
int z = 0;
char l[256];
continue;
c = sscanf(l, "[%lf] initcall %s %*s %d %*s %d %*s",
if (c != 4) {
/* also parse initcalls done by module loading */
c = sscanf(l, "[%lf] initcall %s %*s %*s %d %*s %d %*s",
if (c != 4)
continue;
}
/* chop the +0xXX/0xXX stuff */
while(func[z] != '+')
z++;
func[z] = 0;
if (count_only) {
/* filter out irrelevant stuff */
if (usecs >= 1000)
kcount++;
continue;
}
svg("<!-- thread=\"%s\" time=\"%.3f\" elapsed=\"%d\" result=\"%d\" -->\n",
if (usecs < 1000)
continue;
/* rect */
svg(" <rect class=\"krnl\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
ps_to_graph(1));
/* label */
svg(" <text x=\"%.03f\" y=\"%.03f\">%s <tspan class=\"run\">%.03fs</tspan></text>\n",
func,
usecs / 1000000.0);
kcount++;
}
}
static void svg_ps_bars(void) {
int i = 0;
int j = 0;
int pid;
double w = 0.0;
svg("<!-- Process graph -->\n");
svg("<text class=\"t2\" x=\"5\" y=\"-15\">Processes</text>\n");
/* surrounding box */
/* pass 2 - ps boxes */
double endtime;
double starttime;
int t;
if(!enc_name)
continue;
/* leave some trace of what we actually filtered etc. */
/* remember where _to_ our children need to draw a line */
/* hook children to our parent coords instead */
/* if this is the last child, we might still need to draw a connecting line */
svg(" <line class=\"dot\" x1=\"%.03f\" y1=\"%.03f\" x2=\"%.03f\" y2=\"%.03f\" />\n",
continue;
}
svg(" <rect class=\"ps\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
ps_to_graph(j),
ps_to_graph(1));
/* paint cpu load over these */
t = 1;
struct ps_sched_struct *prev;
/* calculate over interval */
/* this can happen if timekeeping isn't accurate enough */
if (prt > 1.0)
prt = 1.0;
if (wrt > 1.0)
wrt = 1.0;
continue;
svg(" <rect class=\"wait\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
ps_to_graph(j),
ps_to_graph(wrt));
svg(" <rect class=\"cpu\" x=\"%.03f\" y=\"%.03f\" width=\"%.03f\" height=\"%.03f\" />\n",
ps_to_graph(prt));
t++;
}
/* determine where to display the process name */
/* too small to fit label inside the box */
w = endtime;
else
w = starttime;
/* text label of process name */
svg(" <text x=\"%.03f\" y=\"%.03f\"><![CDATA[%s]]> [%i]<tspan class=\"run\">%.03fs</tspan></text>\n",
ps_to_graph(j) + 14.0,
/* paint lines to the parent process */
/* horizontal part */
svg(" <line class=\"dot\" x1=\"%.03f\" y1=\"%.03f\" x2=\"%.03f\" y2=\"%.03f\" />\n",
ps_to_graph(j) + 10.0,
ps_to_graph(j) + 10.0);
/* one vertical line connecting all the horizontal ones up */
svg(" <line class=\"dot\" x1=\"%.03f\" y1=\"%.03f\" x2=\"%.03f\" y2=\"%.03f\" />\n",
ps_to_graph(j) + 10.0,
}
j++; /* count boxes */
svg("\n");
}
/* last pass - determine when idle */
/* make sure we start counting from the point where we actually have
* data: assume that bootchart's first sample is when data started
*/
break;
}
/* need to know last node first */
double crt;
double brt;
int c;
int ii;
struct ps_sched_struct *sample_hz;
/* subtract bootchart cpu utilization from total */
crt = 0.0;
for (c = 0; c < cpus; c++)
/*
* our definition of "idle":
*
* if for (hz / 2) we've used less CPU than (interval / 2) ...
* defaults to 4.0%, which experimentally, is where atom idles
*/
svg("\n<!-- idle detected at %.03f seconds -->\n",
idletime);
svg("<line class=\"idle\" x1=\"%.03f\" y1=\"%.03f\" x2=\"%.03f\" y2=\"%.03f\" />\n",
svg("<text class=\"idle\" x=\"%.03f\" y=\"%.03f\">%.01fs</text>\n",
idletime);
break;
}
i++;
}
}
static void svg_top_ten_cpu(void) {
int n, m;
for (n = 0; n < (int) ELEMENTSOF(top); n++)
/* walk all ps's and setup ptrs */
for (n = 0; n < 10; n++) {
continue;
/* cascade insert */
for (m = 9; m > n; m--)
break;
}
}
svg("<text class=\"t2\" x=\"20\" y=\"0\">Top CPU consumers:</text>\n");
for (n = 0; n < 10; n++)
svg("<text class=\"t3\" x=\"20\" y=\"%d\">%3.03fs - <![CDATA[%s]]> [%d]</text>\n",
20 + (n * 13),
}
static void svg_top_ten_pss(void) {
int n, m;
for (n = 0; n < (int) ELEMENTSOF(top); n++)
/* walk all ps's and setup ptrs */
for (n = 0; n < 10; n++) {
continue;
/* cascade insert */
for (m = 9; m > n; m--)
break;
}
}
svg("<text class=\"t2\" x=\"20\" y=\"0\">Top PSS consumers:</text>\n");
for (n = 0; n < 10; n++)
svg("<text class=\"t3\" x=\"20\" y=\"%d\">%dK - <![CDATA[%s]]> [%d]</text>\n",
20 + (n * 13),
}
/* count initcall thread count first */
svg_do_initcall(1);
/* then count processes */
pcount++;
else
pfiltered++;
}
/* after this, we can draw the header with proper sizing */
svg_header();
svg("<g transform=\"translate(10,400)\">\n");
svg("</g>\n\n");
svg("</g>\n\n");
svg_cpu_bar();
svg("</g>\n\n");
svg_wait_bar();
svg("</g>\n\n");
if (kcount) {
svg_do_initcall(0);
svg("</g>\n\n");
}
svg_ps_bars();
svg("</g>\n\n");
svg("<g transform=\"translate(10, 0)\">\n");
svg("</g>\n\n");
svg("<g transform=\"translate(10,200)\">\n");
svg("</g>\n\n");
if (arg_entropy) {
svg("</g>\n\n");
}
if (arg_pss) {
svg("<g transform=\"translate(10,%.03f)\">\n", 400.0 + (arg_scale_y * 28.0) + ksize + psize + esize);
svg("</g>\n\n");
svg("<g transform=\"translate(410,200)\">\n");
svg("</g>\n\n");
}
/* svg footer */
svg("\n</svg>\n");
}