quorum/ethpipe/world.go

65 lines
1.1 KiB
Go
Raw Normal View History

2014-08-04 07:25:53 -07:00
package ethpipe
import (
"container/list"
"github.com/ethereum/go-ethereum/ethstate"
2014-08-04 07:25:53 -07:00
)
2014-08-05 02:30:12 -07:00
type World struct {
2014-08-04 07:25:53 -07:00
pipe *Pipe
2014-08-05 02:31:39 -07:00
cfg *Config
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:30:12 -07:00
func NewWorld(pipe *Pipe) *World {
world := &World{pipe, nil}
2014-08-05 02:31:39 -07:00
world.cfg = &Config{pipe}
2014-08-04 07:25:53 -07:00
return world
}
2014-08-05 02:30:12 -07:00
func (self *Pipe) World() *World {
2014-08-04 07:25:53 -07:00
return self.world
}
2014-08-05 02:30:12 -07:00
func (self *World) State() *ethstate.State {
2014-08-04 07:25:53 -07:00
return self.pipe.stateManager.CurrentState()
}
2014-08-05 02:30:12 -07:00
func (self *World) Get(addr []byte) *Object {
2014-08-05 02:26:12 -07:00
return &Object{self.State().GetStateObject(addr)}
2014-08-04 07:25:53 -07:00
}
func (self *World) SafeGet(addr []byte) *Object {
return &Object{self.safeGet(addr)}
}
2014-08-05 02:30:12 -07:00
func (self *World) safeGet(addr []byte) *ethstate.StateObject {
2014-08-05 02:10:24 -07:00
object := self.State().GetStateObject(addr)
if object == nil {
object = ethstate.NewStateObject(addr)
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:10:24 -07:00
return object
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:30:12 -07:00
func (self *World) Coinbase() *ethstate.StateObject {
2014-08-04 07:25:53 -07:00
return nil
}
2014-08-05 02:30:12 -07:00
func (self *World) IsMining() bool {
2014-08-04 07:25:53 -07:00
return self.pipe.obj.IsMining()
}
2014-08-05 02:30:12 -07:00
func (self *World) IsListening() bool {
2014-08-04 07:25:53 -07:00
return self.pipe.obj.IsListening()
}
2014-08-05 02:30:12 -07:00
func (self *World) Peers() *list.List {
2014-08-05 01:17:26 -07:00
return self.pipe.obj.Peers()
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:31:39 -07:00
func (self *World) Config() *Config {
2014-08-04 07:25:53 -07:00
return self.cfg
}