summaryrefslogtreecommitdiff
path: root/txnsync/sent_filter.go
blob: 603a73a129dac343bbd2d3cfe513f00c1694f02f (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
74
75
76
77
78
79
80
81
82
// Copyright (C) 2019-2021 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package txnsync

import (
	"github.com/algorand/go-algorand/data/basics"
)

//msgp:ignore sentFilterStat
type sentFilterStat struct {
	// .Modulator .Offset
	EncodingParams requestParams

	// lastCounter is the group counter of the last txn group included in a sent filter
	lastCounter uint64

	round basics.Round
}

// sentFilters is the set of filter stats for one peer to another peer.
// There should be at most one entry per (Modulator,Offset)
//msgp:ignore sentFilters
type sentFilters []sentFilterStat

const maxSentFilterSet = 10

func (sf *sentFilters) setSentFilter(filter bloomFilter, round basics.Round) {
	encodingParams := filter.encoded.EncodingParams
	for i, sfs := range *sf {
		if sfs.EncodingParams == encodingParams {
			(*sf)[i].lastCounter = filter.containedTxnsRange.lastCounter
			(*sf)[i].round = round
			return
		}
	}
	nsf := sentFilterStat{
		EncodingParams: encodingParams,
		lastCounter:    filter.containedTxnsRange.lastCounter,
		round:          round,
	}
	*sf = append(*sf, nsf)
	// trim oldest content if we're too long
	for len(*sf) > maxSentFilterSet {
		oldestRound := round
		popCandidate := -1
		for i, sfs := range *sf {
			if sfs.round < oldestRound {
				oldestRound = sfs.round
				popCandidate = i
			}
		}
		if popCandidate >= 0 {
			last := len(*sf) - 1
			(*sf)[popCandidate] = (*sf)[last]
			*sf = (*sf)[:last]
			break
		}
	}
}

func (sf *sentFilters) nextFilterGroup(encodingParams requestParams) (lastCounter uint64, round basics.Round) {
	for _, sfs := range *sf {
		if sfs.EncodingParams == encodingParams {
			return sfs.lastCounter + 1, sfs.round
		}
	}
	return 0, 0 // include everything since the start
}