mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-04 04:31:44 +00:00
Implement the logging package for mixer. A common log file can be set for all the mixer commands in the builder.conf. E.g. `mixer config set Mixer.LOG <filepath>` The log file and level can also be set for individual mixer commands using the `--log` and `--log-level` flags respectively. The various log levels are: ERROR (1), WARNING (2), INFO (3), DEBUG (4) and VERBOSE (5). Default log level is 4. Fixes #666 Signed-off-by: Ashlesha Atrey ashlesha.atrey@intel.com
73 lines
1.4 KiB
Go
73 lines
1.4 KiB
Go
package builder
|
|
|
|
import (
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/clearlinux/mixer-tools/log"
|
|
)
|
|
|
|
// stopWatch keeps track of a sequence of durations. Use Start and Stop to mark the sections, then
|
|
// write the final result with WriteSummary.
|
|
type stopWatch struct {
|
|
entries []stopWatchEntry
|
|
t time.Time
|
|
w io.Writer
|
|
}
|
|
|
|
type stopWatchEntry struct {
|
|
name string
|
|
d time.Duration
|
|
used bool
|
|
}
|
|
|
|
func (sw *stopWatch) Start(name string) {
|
|
if sw.w != nil {
|
|
if len(sw.entries) > 0 {
|
|
var d time.Duration
|
|
for _, e := range sw.entries {
|
|
d += e.d
|
|
}
|
|
log.Info(log.Mixer, "=> %s (%s elapsed since start)", name,
|
|
d.Truncate(time.Millisecond))
|
|
} else {
|
|
log.Info(log.Mixer, "=> %s", name)
|
|
}
|
|
}
|
|
sw.entries = append(sw.entries, stopWatchEntry{name: name})
|
|
sw.t = time.Now()
|
|
}
|
|
|
|
func (sw *stopWatch) Stop() {
|
|
if len(sw.entries) == 0 {
|
|
return
|
|
}
|
|
last := len(sw.entries) - 1
|
|
if sw.entries[last].used {
|
|
sw.entries = append(sw.entries, sw.entries[last])
|
|
last++
|
|
}
|
|
e := &sw.entries[last]
|
|
e.used = true
|
|
e.d = time.Since(sw.t)
|
|
}
|
|
|
|
func (sw *stopWatch) WriteSummary(w io.Writer) {
|
|
if len(sw.entries) == 0 {
|
|
return
|
|
}
|
|
max := 0
|
|
for _, e := range sw.entries {
|
|
if len(e.name) > max {
|
|
max = len(e.name)
|
|
}
|
|
}
|
|
var sum time.Duration
|
|
log.Info(log.Mixer, "TIMINGS")
|
|
for _, e := range sw.entries {
|
|
log.Info(log.Mixer, " %-*s %s", max, e.name, e.d.Truncate(time.Millisecond))
|
|
sum += e.d
|
|
}
|
|
log.Info(log.Mixer, "TOTAL: %s", sum.Truncate(time.Millisecond))
|
|
}
|