quorum/state/log.go

86 lines
1.5 KiB
Go
Raw Normal View History

2014-10-31 06:43:14 -07:00
package state
2014-10-27 03:44:16 -07:00
2014-11-11 03:16:36 -08:00
import (
"fmt"
"github.com/ethereum/go-ethereum/ethutil"
)
2014-10-27 03:44:16 -07:00
2014-12-04 03:35:23 -08:00
type Log interface {
ethutil.RlpEncodable
Address() []byte
Topics() [][]byte
Data() []byte
2015-02-22 04:24:26 -08:00
Number() uint64
2014-12-04 03:35:23 -08:00
}
type StateLog struct {
address []byte
topics [][]byte
data []byte
2015-02-22 04:24:26 -08:00
number uint64
2014-12-04 03:35:23 -08:00
}
2015-02-22 04:24:26 -08:00
func NewLog(address []byte, topics [][]byte, data []byte, number uint64) *StateLog {
return &StateLog{address, topics, data, number}
2014-12-04 03:35:23 -08:00
}
func (self *StateLog) Address() []byte {
return self.address
}
func (self *StateLog) Topics() [][]byte {
return self.topics
2014-10-27 03:44:16 -07:00
}
2014-12-04 03:35:23 -08:00
func (self *StateLog) Data() []byte {
return self.data
}
2015-02-22 04:24:26 -08:00
func (self *StateLog) Number() uint64 {
return self.number
}
2014-12-04 03:35:23 -08:00
func NewLogFromValue(decoder *ethutil.Value) *StateLog {
log := &StateLog{
address: decoder.Get(0).Bytes(),
data: decoder.Get(2).Bytes(),
}
it := decoder.Get(1).NewIterator()
for it.Next() {
2014-12-04 03:35:23 -08:00
log.topics = append(log.topics, it.Value().Bytes())
}
return log
}
2014-12-04 03:35:23 -08:00
func (self *StateLog) RlpData() interface{} {
return []interface{}{self.address, ethutil.ByteSliceToInterface(self.topics), self.data}
}
2014-12-04 03:35:23 -08:00
func (self *StateLog) String() string {
return fmt.Sprintf(`log: %x %x %x`, self.address, self.topics, self.data)
2014-11-11 03:16:36 -08:00
}
2014-12-04 03:35:23 -08:00
type Logs []Log
func (self Logs) RlpData() interface{} {
data := make([]interface{}, len(self))
for i, log := range self {
data[i] = log.RlpData()
}
return data
}
2014-11-11 03:16:36 -08:00
2014-12-04 03:35:23 -08:00
func (self Logs) String() (ret string) {
2014-11-11 03:16:36 -08:00
for _, log := range self {
2014-12-04 03:35:23 -08:00
ret += fmt.Sprintf("%v", log)
2014-11-11 03:16:36 -08:00
}
2014-12-04 03:35:23 -08:00
return "[" + ret + "]"
2014-11-11 03:16:36 -08:00
}