mirror of https://github.com/divan/expvarmon.git
43 lines
899 B
Go
43 lines
899 B
Go
package main
|
|
|
|
// DefaultSize specifies maximum number of items in stack.
|
|
//
|
|
// Values should be enough for sparklines on high-res terminals
|
|
// with minimal font size.
|
|
const DefaultSize = 1200
|
|
|
|
// Stack is a limited FIFO for holding sparkline values.
|
|
type Stack struct {
|
|
Values []int
|
|
Len int
|
|
}
|
|
|
|
// NewStack inits new Stack with default size limit.
|
|
func NewStack() *Stack {
|
|
return NewStackWithSize(DefaultSize)
|
|
}
|
|
|
|
// NewStackWithSize inits new Stack with size limit.
|
|
func NewStackWithSize(size int) *Stack {
|
|
return &Stack{
|
|
Values: make([]int, size),
|
|
Len: size,
|
|
}
|
|
}
|
|
|
|
// Push inserts data to stack, preserving constant length.
|
|
func (s *Stack) Push(val int) {
|
|
s.Values = append(s.Values, val)
|
|
if len(s.Values) > s.Len {
|
|
s.Values = s.Values[1:]
|
|
}
|
|
}
|
|
|
|
// Front returns front value.
|
|
func (s *Stack) Front() int {
|
|
if len(s.Values) == 0 {
|
|
return 0
|
|
}
|
|
return s.Values[len(s.Values)-1]
|
|
}
|