aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/bloom9.go
blob: b3cab86a0b211963b1fa1446572dcb060a6add3c (plain) (blame)
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
package types

import (
    "math/big"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/crypto"
    "github.com/ethereum/go-ethereum/state"
)

func CreateBloom(receipts Receipts) Bloom {
    bin := new(big.Int)
    for _, receipt := range receipts {
        bin.Or(bin, LogsBloom(receipt.logs))
    }

    return BytesToBloom(bin.Bytes())
}

func LogsBloom(logs state.Logs) *big.Int {
    bin := new(big.Int)
    for _, log := range logs {
        data := make([]common.Hash, len(log.Topics())+1)
        data[0] = log.Address().Hash()

        for i, topic := range log.Topics() {
            data[i+1] = topic
        }

        for _, b := range data {
            bin.Or(bin, common.BigD(bloom9(crypto.Sha3(b[:])).Bytes()))
        }
    }

    return bin
}

func bloom9(b []byte) *big.Int {
    r := new(big.Int)

    for i := 0; i < 16; i += 2 {
        t := big.NewInt(1)
        b := uint(b[i+1]) + 1024*(uint(b[i])&1)
        r.Or(r, t.Lsh(t, b))
    }

    return r
}

func BloomLookup(bin, topic []byte) bool {
    bloom := common.BigD(bin)
    cmp := bloom9(crypto.Sha3(topic))

    return bloom.And(bloom, cmp).Cmp(cmp) == 0
}