quorum/core/types/bloom9.go

56 lines
1.0 KiB
Go
Raw Normal View History

package types
import (
"math/big"
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
2015-03-16 09:27:23 -07:00
"github.com/ethereum/go-ethereum/crypto"
2014-10-31 06:43:14 -07:00
"github.com/ethereum/go-ethereum/state"
)
2015-03-16 09:27:23 -07:00
func CreateBloom(receipts Receipts) Bloom {
bin := new(big.Int)
2014-11-14 05:17:54 -08:00
for _, receipt := range receipts {
bin.Or(bin, LogsBloom(receipt.logs))
}
2015-03-16 09:27:23 -07:00
return BytesToBloom(bin.Bytes())
}
func LogsBloom(logs state.Logs) *big.Int {
bin := new(big.Int)
for _, log := range logs {
data := make([][]byte, len(log.Topics())+1)
data[0] = log.Address()
for i, topic := range log.Topics() {
data[i+1] = topic
}
for _, b := range data {
2015-03-16 03:27:38 -07:00
bin.Or(bin, common.BigD(bloom9(crypto.Sha3(b)).Bytes()))
}
}
return bin
}
func bloom9(b []byte) *big.Int {
r := new(big.Int)
2015-03-03 02:56:12 -08:00
for i := 0; i < 16; i += 2 {
t := big.NewInt(1)
2015-03-03 02:56:12 -08:00
b := uint(b[i+1]) + 1024*(uint(b[i])&1)
2014-11-03 16:29:49 -08:00
r.Or(r, t.Lsh(t, b))
}
return r
}
func BloomLookup(bin, topic []byte) bool {
2015-03-16 03:27:38 -07:00
bloom := common.BigD(bin)
cmp := bloom9(crypto.Sha3(topic))
return bloom.And(bloom, cmp).Cmp(cmp) == 0
}