quorum/event/filter/generic_filter.go

49 lines
1.4 KiB
Go
Raw Normal View History

2015-07-06 17:54:22 -07:00
// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
2015-07-06 17:54:22 -07:00
//
// The go-ethereum library is free software: you can redistribute it and/or modify
2015-07-06 17:54:22 -07:00
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
2015-07-06 17:54:22 -07:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-07-06 17:54:22 -07:00
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
2015-07-06 17:54:22 -07:00
2014-12-12 13:19:39 -08:00
package filter
type Generic struct {
Str1, Str2, Str3 string
2014-12-16 10:55:57 -08:00
Data map[string]struct{}
2014-12-12 13:19:39 -08:00
Fn func(data interface{})
}
2014-12-16 10:55:57 -08:00
// self = registered, f = incoming
2014-12-12 13:19:39 -08:00
func (self Generic) Compare(f Filter) bool {
2014-12-16 10:55:57 -08:00
var strMatch, dataMatch = true, true
2014-12-12 13:19:39 -08:00
filter := f.(Generic)
2014-12-16 10:55:57 -08:00
if (len(self.Str1) > 0 && filter.Str1 != self.Str1) ||
(len(self.Str2) > 0 && filter.Str2 != self.Str2) ||
(len(self.Str3) > 0 && filter.Str3 != self.Str3) {
strMatch = false
}
2017-01-06 06:52:03 -08:00
for k := range self.Data {
2014-12-16 10:55:57 -08:00
if _, ok := filter.Data[k]; !ok {
return false
}
2014-12-12 13:19:39 -08:00
}
2014-12-16 10:55:57 -08:00
return strMatch && dataMatch
2014-12-12 13:19:39 -08:00
}
func (self Generic) Trigger(data interface{}) {
self.Fn(data)
}