aboutsummaryrefslogtreecommitdiffstats
path: root/modules/gtprof/event.go
blob: da4a0faff934aa59a1aece092f2d065a1c22b8ba (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
// Copyright 2025 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package gtprof

type EventConfig struct {
	attributes []*TraceAttribute
}

type EventOption interface {
	applyEvent(*EventConfig)
}

type applyEventFunc func(*EventConfig)

func (f applyEventFunc) applyEvent(cfg *EventConfig) {
	f(cfg)
}

func WithAttributes(attrs ...*TraceAttribute) EventOption {
	return applyEventFunc(func(cfg *EventConfig) {
		cfg.attributes = append(cfg.attributes, attrs...)
	})
}

func eventConfigFromOptions(options ...EventOption) *EventConfig {
	cfg := &EventConfig{}
	for _, opt := range options {
		opt.applyEvent(cfg)
	}
	return cfg
}