This file is indexed.

/usr/share/gocode/src/github.com/influxdata/influxdb/stress/v2/statement/function.go is in golang-github-influxdb-influxdb-dev 1.1.1+dfsg1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package statement

import (
	crypto "crypto/rand"
	"fmt"
	"math/rand"
)

// ################
// # Function     #
// ################

// Function is a struct that holds information for generating values in templated points
type Function struct {
	Type     string
	Fn       string
	Argument int
	Count    int
}

// NewStringer creates a new Stringer
func (f *Function) NewStringer(series int) Stringer {
	var fn Stringer
	switch f.Type {
	case "int":
		fn = NewIntFunc(f.Fn, f.Argument)
	case "float":
		fn = NewFloatFunc(f.Fn, f.Argument)
	case "str":
		fn = NewStrFunc(f.Fn, f.Argument)
	default:
		fn = func() string { return "STRINGER ERROR" }
	}

	if int(f.Count) != 0 {
		return cycle(f.Count, fn)
	}

	return nTimes(series, fn)

}

// ################
// # Stringers    #
// ################

// Stringers is a collection of Stringer
type Stringers []Stringer

// Eval returns an array of all the Stringer functions evaluated once
func (s Stringers) Eval(time func() int64) []interface{} {
	arr := make([]interface{}, len(s)+1)

	for i, st := range s {
		arr[i] = st()
	}

	arr[len(s)] = time()

	return arr
}

// Stringer is a function that returns a string
type Stringer func() string

func randStr(n int) func() string {
	return func() string {
		b := make([]byte, n/2)

		_, _ = crypto.Read(b)

		return fmt.Sprintf("%x", b)
	}
}

// NewStrFunc reates a new striger to create strings for templated writes
func NewStrFunc(fn string, arg int) Stringer {
	switch fn {
	case "rand":
		return randStr(arg)
	default:
		return func() string { return "STR ERROR" }
	}
}

func randFloat(n int) func() string {
	return func() string {
		return fmt.Sprintf("%v", rand.Intn(n))
	}
}

func incFloat(n int) func() string {
	i := n
	return func() string {
		s := fmt.Sprintf("%v", i)
		i++
		return s
	}
}

// NewFloatFunc reates a new striger to create float values for templated writes
func NewFloatFunc(fn string, arg int) Stringer {
	switch fn {
	case "rand":
		return randFloat(arg)
	case "inc":
		return incFloat(arg)
	default:
		return func() string { return "FLOAT ERROR" }
	}
}

func randInt(n int) Stringer {
	return func() string {
		return fmt.Sprintf("%vi", rand.Intn(n))
	}
}

func incInt(n int) Stringer {
	i := n
	return func() string {
		s := fmt.Sprintf("%vi", i)
		i++
		return s
	}
}

// NewIntFunc reates a new striger to create int values for templated writes
func NewIntFunc(fn string, arg int) Stringer {
	switch fn {
	case "rand":
		return randInt(arg)
	case "inc":
		return incInt(arg)
	default:
		return func() string { return "INT ERROR" }
	}
}

// nTimes will return the previous return value of a function
// n-many times before calling the function again
func nTimes(n int, fn Stringer) Stringer {
	i := 0
	t := fn()
	return func() string {
		i++
		if i > n {
			t = fn()
			i = 1
		}
		return t
	}
}

// cycle will cycle through a list of values before repeating them

func cycle(n int, fn Stringer) Stringer {
	if n == 0 {
		return fn
	}
	i := 0
	cache := make([]string, n)
	t := fn()
	cache[i] = t

	return func() string {
		i++

		if i < n {
			cache[i] = fn()
		}

		t = cache[(i-1)%n]
		return t
	}
}