blob: 0193604b82d9e7c86056c902d7bae7f164598450 [file] [log] [blame]
// Copyright 2015 Google Inc. All rights reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
"sort"
"time"
)
type statsData struct {
Name string
Count int
Longest time.Duration
Total time.Duration
}
var stats = map[string]statsData{}
func addStats(name string, v Value, t time.Time) {
if !katiEvalStatsFlag {
return
}
d := time.Since(t)
key := fmt.Sprintf("%s:%s", name, v.String())
s := stats[key]
if d > s.Longest {
s.Longest = d
}
s.Total += d
s.Count++
stats[key] = s
}
func dumpStats() {
if !katiEvalStatsFlag {
return
}
var sv byTotalTime
for k, v := range stats {
v.Name = k
sv = append(sv, v)
}
sort.Sort(sv)
fmt.Println("count,longest(ns),total(ns),longest,total,name")
for _, s := range sv {
fmt.Printf("%d,%d,%d,%v,%v,%s\n", s.Count, s.Longest, s.Total, s.Longest, s.Total, s.Name)
}
}
type byTotalTime []statsData
func (b byTotalTime) Len() int { return len(b) }
func (b byTotalTime) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
func (b byTotalTime) Less(i, j int) bool {
return b[i].Total > b[j].Total
}