This file is indexed.

/usr/share/gocode/src/github.com/bep/debounce/debounce.go is in golang-github-bep-debounce-dev 1.1.0-1.

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
// Copyright © 2016 Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>.
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.

// Package debounce provides a debouncer func. The most typical use case would be
// the user typing a text into a form; the UI needs an update, but let's wait for
// a break.
package debounce

import (
	"time"
)

// New returns a debounced function and two channels:
// 1. A quit channel that can be closed to signal a stop
// 2. A done channel that signals when the debouncer is completed
// of the goroutine.
// The function will, as long as it continues to be invoked, not be triggered.
// The function will be called after it stops being called for the given duration.
// The created debounced function can be invoked with different functions, if needed,
// the last one will win.
// Also note that a stop signal means a full stop of the debouncer; there is no
// concept of flushing future invocations.
func New(d time.Duration) (func(f func()), chan struct{}, chan struct{}) {
	in, out, quit := debounceChan(d)
	done := make(chan struct{})

	go func() {
		for {
			select {
			case f := <-out:
				f()
			case <-quit:
				close(out)
				close(in)
				close(done)
				return
			}
		}
	}()

	debounce := func(f func()) {
		in <- f
	}

	return debounce, quit, done
}

func debounceChan(interval time.Duration) (in, out chan func(), quit chan struct{}) {
	in = make(chan func(), 1)
	out = make(chan func())
	quit = make(chan struct{})

	go func() {
		var f func() = func() {}
		for {
			select {
			case f = <-in:
			case <-time.After(interval):
				out <- f
				<-in
				// new interval
			case <-quit:
				return
			}
		}
	}()

	return
}