summaryrefslogtreecommitdiffstats
path: root/src/options_pprof.go
blob: 968853598171fb7892e3e23157307ca323ad1c8e (plain)
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
//go:build pprof
// +build pprof

package fzf

import (
	"fmt"
	"os"
	"runtime"
	"runtime/pprof"

	"github.com/junegunn/fzf/src/util"
)

func (o *Options) initProfiling() error {
	if o.CPUProfile != "" {
		f, err := os.Create(o.CPUProfile)
		if err != nil {
			return fmt.Errorf("could not create CPU profile: %w", err)
		}

		if err := pprof.StartCPUProfile(f); err != nil {
			return fmt.Errorf("could not start CPU profile: %w", err)
		}

		util.AtExit(func() {
			pprof.StopCPUProfile()
			if err := f.Close(); err != nil {
				fmt.Fprintln(os.Stderr, "Error: closing cpu profile:", err)
			}
		})
	}

	stopProfile := func(name string, f *os.File) {
		if err := pprof.Lookup(name).WriteTo(f, 0); err != nil {
			fmt.Fprintf(os.Stderr, "Error: could not write %s profile: %v\n", name, err)
		}
		if err := f.Close(); err != nil {
			fmt.Fprintf(os.Stderr, "Error: closing %s profile: %v\n", name, err)
		}
	}

	if o.MEMProfile != "" {
		f, err := os.Create(o.MEMProfile)
		if err != nil {
			return fmt.Errorf("could not create MEM profile: %w", err)
		}
		util.AtExit(func() {
			runtime.GC()
			stopProfile("allocs", f)
		})
	}

	if o.BlockProfile != "" {
		runtime.SetBlockProfileRate(1)
		f, err := os.Create(o.BlockProfile)
		if err != nil {
			return fmt.Errorf("could not create BLOCK profile: %w", err)
		}
		util.AtExit(func() { stopProfile("block", f) })
	}

	if o.MutexProfile != "" {
		runtime.SetMutexProfileFraction(1)
		f, err := os.Create(o.MutexProfile)
		if err != nil {
			return fmt.Errorf("could not create MUTEX profile: %w", err)
		}
		util.AtExit(func() { stopProfile("mutex", f) })
	}

	return nil
}