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
|
package mapr
import (
"context"
"sync"
)
// SafeAggregateSet is a thread-safe wrapper around AggregateSet for use in turbo mode.
// It uses a read-write mutex to allow concurrent reads but exclusive writes.
type SafeAggregateSet struct {
mu sync.RWMutex
set *AggregateSet
}
// NewSafeAggregateSet creates a new thread-safe aggregate set.
func NewSafeAggregateSet() *SafeAggregateSet {
return &SafeAggregateSet{
set: NewAggregateSet(),
}
}
// Aggregate data to the aggregate set with thread safety.
func (s *SafeAggregateSet) Aggregate(key string, agg AggregateOperation, value string, clientAggregation bool) error {
s.mu.Lock()
defer s.mu.Unlock()
return s.set.Aggregate(key, agg, value, clientAggregation)
}
// IncrementSamples increments the sample count safely.
func (s *SafeAggregateSet) IncrementSamples() {
s.mu.Lock()
defer s.mu.Unlock()
s.set.Samples++
}
// Clone creates a deep copy of the aggregate set.
// This is useful for serialization to avoid holding locks for too long.
func (s *SafeAggregateSet) Clone() *AggregateSet {
s.mu.RLock()
defer s.mu.RUnlock()
clone := &AggregateSet{
Samples: s.set.Samples,
FValues: make(map[string]float64, len(s.set.FValues)),
SValues: make(map[string]string, len(s.set.SValues)),
}
// Deep copy the maps
for k, v := range s.set.FValues {
clone.FValues[k] = v
}
for k, v := range s.set.SValues {
clone.SValues[k] = v
}
return clone
}
// Serialize the aggregate set safely.
func (s *SafeAggregateSet) Serialize(ctx context.Context, groupKey string, ch chan<- string) {
// Clone the set to avoid holding the lock during serialization
clone := s.Clone()
clone.Serialize(ctx, groupKey, ch)
}
// GetSamples returns the current sample count safely.
func (s *SafeAggregateSet) GetSamples() int {
s.mu.RLock()
defer s.mu.RUnlock()
return s.set.Samples
}
|