This file is indexed.

/usr/share/gocode/src/github.com/influxdata/influxdb/stress/v2/statement/template.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
package statement

// A Template contains all information to fill in templated variables in inset and query statements
type Template struct {
	Tags     []string
	Function *Function
}

// Templates are a collection of Template
type Templates []*Template

// Init makes Stringers out of the Templates for quick point creation
func (t Templates) Init(seriesCount int) Stringers {
	arr := make([]Stringer, len(t))
	for i, tmp := range t {
		if len(tmp.Tags) == 0 {
			arr[i] = tmp.Function.NewStringer(seriesCount)
			continue
		}
		arr[i] = tmp.NewTagFunc()
	}
	return arr
}

// Calculates the number of series implied by a template
func (t *Template) numSeries() int {
	// If !t.Tags then tag cardinality is t.Function.Count
	if len(t.Tags) == 0 {
		return t.Function.Count
	}
	// Else tag cardinality is len(t.Tags)
	return len(t.Tags)
}

// NewTagFunc returns a Stringer that loops through the given tags
func (t *Template) NewTagFunc() Stringer {
	if len(t.Tags) == 0 {
		return func() string { return "EMPTY TAGS" }
	}

	i := 0
	return func() string {
		s := t.Tags[i]
		i = (i + 1) % len(t.Tags)
		return s
	}
}