mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-15 21:58:33 +00:00
Upgraded from 99c19923, branch release-3.0. This required fetching or upgrading the following: * k8s.io/api to kubernetes-1.9.1 * k8s.io/apimachinery to kubernetes-1.9.1 * github.com/juju/ratelimit to 1.0.1 * github.com/spf13/pflag to 4c012f6d Also, update Scope's imports/function calls to be compatible with the new client.
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
/*
|
|
* Copyright (c) 2013 Matt Jibson <matt.jibson@gmail.com>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
package appstats
|
|
|
|
import (
|
|
"html/template"
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
// eq reports whether the first argument is equal to
|
|
// any of the remaining arguments.
|
|
func eq(args ...interface{}) bool {
|
|
if len(args) == 0 {
|
|
return false
|
|
}
|
|
x := args[0]
|
|
switch x := x.(type) {
|
|
case string, int, int64, byte, float32, float64:
|
|
for _, y := range args[1:] {
|
|
if x == y {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
for _, y := range args[1:] {
|
|
if reflect.DeepEqual(x, y) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func add(a, b int) int {
|
|
return a + b
|
|
}
|
|
|
|
func rjust(i, count int) string {
|
|
s := strconv.Itoa(i)
|
|
return strings.Repeat(" ", count-len(s)) + s
|
|
}
|
|
|
|
func lt(a, b int) bool {
|
|
return a < b
|
|
}
|
|
|
|
var funcs = template.FuncMap{
|
|
"add": add,
|
|
"eq": eq,
|
|
"lt": lt,
|
|
"rjust": rjust,
|
|
}
|