Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Vanadium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Jungho Ahn | 58e85b8 | 2014-12-01 10:01:02 -0800 | [diff] [blame] | 5 | package stats |
| 6 | |
| 7 | import ( |
| 8 | "bytes" |
| 9 | "fmt" |
| 10 | "io" |
| 11 | "strconv" |
| 12 | "strings" |
| 13 | ) |
| 14 | |
| 15 | // Print writes textual output of the histogram values. |
| 16 | func (v HistogramValue) Print(w io.Writer) { |
| 17 | avg := float64(v.Sum) / float64(v.Count) |
| 18 | fmt.Fprintf(w, "Count: %d Min: %d Max: %d Avg: %.2f\n", v.Count, v.Min, v.Max, avg) |
| 19 | fmt.Fprintf(w, "%s\n", strings.Repeat("-", 60)) |
| 20 | if v.Count <= 0 { |
| 21 | return |
| 22 | } |
| 23 | |
| 24 | maxBucketDigitLen := len(strconv.FormatInt(v.Buckets[len(v.Buckets)-1].LowBound, 10)) |
| 25 | if maxBucketDigitLen < 3 { |
| 26 | // For "inf". |
| 27 | maxBucketDigitLen = 3 |
| 28 | } |
| 29 | maxCountDigitLen := len(strconv.FormatInt(v.Count, 10)) |
| 30 | percentMulti := 100 / float64(v.Count) |
| 31 | |
| 32 | accCount := int64(0) |
| 33 | for i, b := range v.Buckets { |
| 34 | fmt.Fprintf(w, "[%*d, ", maxBucketDigitLen, b.LowBound) |
| 35 | if i+1 < len(v.Buckets) { |
| 36 | fmt.Fprintf(w, "%*d)", maxBucketDigitLen, v.Buckets[i+1].LowBound) |
| 37 | } else { |
| 38 | fmt.Fprintf(w, "%*s)", maxBucketDigitLen, "inf") |
| 39 | } |
| 40 | |
| 41 | accCount += b.Count |
| 42 | fmt.Fprintf(w, " %*d %5.1f%% %5.1f%%", maxCountDigitLen, b.Count, float64(b.Count)*percentMulti, float64(accCount)*percentMulti) |
| 43 | |
| 44 | const barScale = 0.1 |
| 45 | barLength := int(float64(b.Count)*percentMulti*barScale + 0.5) |
| 46 | fmt.Fprintf(w, " %s\n", strings.Repeat("#", barLength)) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | // String returns the textual output of the histogram values as string. |
| 51 | func (v HistogramValue) String() string { |
| 52 | var b bytes.Buffer |
| 53 | v.Print(&b) |
| 54 | return b.String() |
| 55 | } |