File: report.c

package info (click to toggle)
raft 0.22.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,504 kB
  • sloc: ansic: 37,539; makefile: 264; sh: 77; python: 22
file content (229 lines) | stat: -rw-r--r-- 4,824 bytes parent folder | download | duplicates (2)
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
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

#include "report.h"

void HistogramInit(struct histogram *h, unsigned n, unsigned gap)
{
    unsigned i;
    assert(n >= 2);
    h->n = n;
    h->buckets = malloc(h->n * sizeof *h->buckets);
    for (i = 0; i < n; i++) {
        h->buckets[i] = 0;
    }
    assert(h->buckets != NULL);
    h->first = gap;
    h->gap = gap;
}

void HistogramClose(struct histogram *h)
{
    free(h->buckets);
}

void HistogramCount(struct histogram *h, unsigned long value)
{
    unsigned i;
    if (value <= h->first) {
        i = 0;
    } else {
        i = (unsigned)(value - h->first) / h->gap;
        if (i >= h->n) {
            i = h->n - 1;
        }
    }
    h->buckets[i]++;
}

/* Use the 0.50 percentile for reports. See:
 *
 * https://www.elastic.co/blog/averages-can-dangerous-use-percentile
 */
#define PERCENTILE 0.50

static void metricInit(struct metric *m, int kind)
{
    m->kind = kind;
    m->value = 0;
    m->lower_bound = 0;
    m->upper_bound = 0;
}

static void metricPrint(struct metric *m)
{
    const char *kind;
    switch (m->kind) {
        case METRIC_KIND_LATENCY:
            kind = "latency";
            break;
        case METRIC_KIND_THROUGHPUT:
            kind = "throughput";
            break;
        default:
            kind = NULL;
            assert(0);
            break;
    }

    printf("    \"%s\": {\n", kind);
    printf("      \"value\": %f,\n", m->value);
    printf("      \"lower_bound\": %f,\n", m->lower_bound);
    printf("      \"upper_bound\": %f\n", m->upper_bound);
    printf("    }");
}

void MetricFillHistogram(struct metric *m, struct histogram *h)
{
    unsigned counter = 0;
    unsigned median;
    unsigned lower = 0;
    unsigned upper = 0;
    unsigned i;

    for (i = 0; i < h->n; i++) {
        counter += h->buckets[i];
        if (lower == 0 && h->buckets[i] > 0) {
            lower = i;
        }
        if (upper == 0 && h->buckets[h->n - 1 - i] > 0) {
            upper = h->n - 1 - i;
        }
    }

    assert(counter >= 1);
    if (counter == 1) {
        median = 1;
    } else {
        median = counter / 2;
    }

    counter = 0;
    for (i = 0; i <= h->n; i++) {
        counter += h->buckets[i];
        if (counter >= median) {
            break;
        }
    }

    m->value = (double)(h->first + (unsigned long)(i * h->gap));
    m->lower_bound = (double)(h->first + (unsigned long)(lower * h->gap));
    m->upper_bound = (double)(h->first + (unsigned long)(upper * h->gap));
}

void MetricFillThroughput(struct metric *m,
                          unsigned n_ops,
                          unsigned long duration)
{
    double seconds = (double)duration / (1024 * 1024 * 1024);
    m->value = (double)n_ops / seconds;
}

static void benchmarkInit(struct benchmark *b, char *name)
{
    b->name = name;
    b->metrics = NULL;
    b->n_metrics = 0;
}

static void benchmarkClose(struct benchmark *b)
{
    unsigned i;

    for (i = 0; i < b->n_metrics; i++) {
        struct metric *metric = b->metrics[i];
        free(metric);
    }
    free(b->name);
    free(b->metrics);
}

struct metric *BenchmarkGrow(struct benchmark *b, int kind)
{
    struct metric *m = malloc(sizeof *m);
    unsigned n = b->n_metrics + 1;
    assert(m != NULL);

    b->metrics = realloc(b->metrics, n * sizeof *b->metrics);
    assert(b->metrics != NULL);

    b->metrics[n - 1] = m;
    b->n_metrics = n;

    metricInit(m, kind);

    return m;
}

static void benchmarkPrint(struct benchmark *b)
{
    unsigned i;

    printf("  \"%s\": {\n", b->name);

    for (i = 0; i < b->n_metrics; i++) {
        struct metric *metric = b->metrics[i];
        metricPrint(metric);
        if (i < b->n_metrics - 1) {
            printf(",");
        }
        printf("\n");
    }

    printf("  }");
}

void ReportInit(struct report *r)
{
    r->benchmarks = NULL;
    r->n_benchmarks = 0;
}

void ReportClose(struct report *r)
{
    unsigned i;

    for (i = 0; i < r->n_benchmarks; i++) {
        struct benchmark *benchmark = r->benchmarks[i];
        benchmarkClose(benchmark);
        free(benchmark);
    }

    free(r->benchmarks);
}

struct benchmark *ReportGrow(struct report *r, char *name)
{
    struct benchmark *b = malloc(sizeof *b);
    unsigned n = r->n_benchmarks + 1;

    assert(b != NULL);

    r->benchmarks = realloc(r->benchmarks, n * sizeof *r->benchmarks);
    assert(r->benchmarks != NULL);

    r->benchmarks[n - 1] = b;
    r->n_benchmarks = n;

    benchmarkInit(b, name);

    return b;
}

void ReportPrint(struct report *r)
{
    unsigned i;

    printf("{\n");

    for (i = 0; i < r->n_benchmarks; i++) {
        benchmarkPrint(r->benchmarks[i]);
        if (i < r->n_benchmarks - 1) {
            printf(",");
        }
        printf("\n");
    }

    printf("}\n");
}