aboutsummaryrefslogtreecommitdiffstats
path: root/state/log.go
blob: f8aa4c08c9ce81e195fbfe8b1284746ab6d1d9dc (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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package state

import (
    "fmt"
    "io"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/rlp"
)

type Log interface {
    Address() common.Address
    Topics() []common.Hash
    Data() []byte

    Number() uint64
}

type StateLog struct {
    address common.Address
    topics  []common.Hash
    data    []byte
    number  uint64
}

func NewLog(address common.Address, topics []common.Hash, data []byte, number uint64) *StateLog {
    return &StateLog{address, topics, data, number}
}

func (self *StateLog) Address() common.Address {
    return self.address
}

func (self *StateLog) Topics() []common.Hash {
    return self.topics
}

func (self *StateLog) Data() []byte {
    return self.data
}

func (self *StateLog) Number() uint64 {
    return self.number
}

/*
func NewLogFromValue(decoder *common.Value) *StateLog {
    var extlog struct {

    }

    log := &StateLog{
        address: decoder.Get(0).Bytes(),
        data:    decoder.Get(2).Bytes(),
    }

    it := decoder.Get(1).NewIterator()
    for it.Next() {
        log.topics = append(log.topics, it.Value().Bytes())
    }

    return log
}
*/

func (self *StateLog) EncodeRLP(w io.Writer) error {
    return rlp.Encode(w, []interface{}{self.address, self.topics, self.data})
}

/*
func (self *StateLog) RlpData() interface{} {
    return []interface{}{self.address, common.ByteSliceToInterface(self.topics), self.data}
}
*/

func (self *StateLog) String() string {
    return fmt.Sprintf(`log: %x %x %x`, self.address, self.topics, self.data)
}

type Logs []Log

/*
func (self Logs) RlpData() interface{} {
    data := make([]interface{}, len(self))
    for i, log := range self {
        data[i] = log.RlpData()
    }

    return data
}
*/

func (self Logs) String() (ret string) {
    for _, log := range self {
        ret += fmt.Sprintf("%v", log)
    }

    return "[" + ret + "]"
}