aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/bloom9.go
blob: 508644b62ea4c9b7607bce82cf76f60ca52302f6 (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
package ethchain

import (
    "math/big"

    "github.com/ethereum/go-ethereum/vm"
)

func CreateBloom(block *Block) []byte {
    bin := new(big.Int)
    bin.Or(bin, bloom9(block.Coinbase))
    for _, tx := range block.Transactions() {
        bin.Or(bin, LogsBloom(tx.logs))
    }

    return bin.Bytes()
}

func LogsBloom(logs []vm.Log) *big.Int {
    bin := new(big.Int)
    for _, log := range logs {
        data := [][]byte{log.Address}
        for _, topic := range log.Topics {
            data = append(data, topic)
        }
        data = append(data, log.Data)

        for _, b := range data {
            bin.Or(bin, bloom9(b))
        }
    }

    return bin
}

func bloom9(b []byte) *big.Int {
    r := new(big.Int)
    for _, i := range []int{0, 2, 4} {
        t := big.NewInt(1)
        r.Or(r, t.Lsh(t, uint(b[i+1])+256*(uint(b[i])&1)))
    }

    return r
}