state_object.go 5.84 KB
Newer Older
1 2 3
package ethchain

import (
obscuren's avatar
obscuren committed
4
	"fmt"
5 6
	"github.com/ethereum/eth-go/ethutil"
	"math/big"
7
	"strings"
8 9
)

10 11 12 13 14 15
type Code []byte

func (self Code) String() string {
	return strings.Join(Disassemble(self), " ")
}

16 17 18 19
type StateObject struct {
	// Address of the object
	address []byte
	// Shared attributes
20 21 22
	Amount     *big.Int
	ScriptHash []byte
	Nonce      uint64
23 24
	// Contract related attributes
	state      *State
25 26
	script     Code
	initScript Code
27 28 29 30 31

	// Total gas pool is the total amount of gas currently
	// left if this object is the coinbase. Gas is directly
	// purchased of the coinbase.
	gasPool *big.Int
32 33
}

34 35 36 37
// Converts an transaction in to a state object
func MakeContract(tx *Transaction, state *State) *StateObject {
	// Create contract if there's no recipient
	if tx.IsContract() {
38
		addr := tx.CreationAddress()
39

40
		contract := state.NewStateObject(addr)
obscuren's avatar
obscuren committed
41
		contract.initScript = tx.Data
42
		contract.state = NewState(ethutil.NewTrie(ethutil.Config.Db, ""))
43 44 45 46 47 48 49

		return contract
	}

	return nil
}

50 51 52 53
func NewStateObject(addr []byte) *StateObject {
	return &StateObject{address: addr, Amount: new(big.Int)}
}

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
func NewContract(address []byte, Amount *big.Int, root []byte) *StateObject {
	contract := &StateObject{address: address, Amount: Amount, Nonce: 0}
	contract.state = NewState(ethutil.NewTrie(ethutil.Config.Db, string(root)))

	return contract
}

// Returns a newly created account
func NewAccount(address []byte, amount *big.Int) *StateObject {
	account := &StateObject{address: address, Amount: amount, Nonce: 0}

	return account
}

func NewStateObjectFromBytes(address, data []byte) *StateObject {
	object := &StateObject{address: address}
	object.RlpDecode(data)

	return object
}

75 76 77 78
func (c *StateObject) State() *State {
	return c.state
}

obscuren's avatar
obscuren committed
79 80 81 82
func (c *StateObject) N() *big.Int {
	return big.NewInt(int64(c.Nonce))
}

83 84 85 86 87 88 89 90
func (c *StateObject) Addr(addr []byte) *ethutil.Value {
	return ethutil.NewValueFromBytes([]byte(c.state.trie.Get(string(addr))))
}

func (c *StateObject) SetAddr(addr []byte, value interface{}) {
	c.state.trie.Update(string(addr), string(ethutil.NewValue(value).Encode()))
}

91
func (c *StateObject) SetStorage(num *big.Int, val *ethutil.Value) {
92
	addr := ethutil.BigToBytes(num, 256)
93
	//fmt.Printf("sstore %x => %v\n", addr, val)
94
	c.SetAddr(addr, val)
95 96
}

obscuren's avatar
obscuren committed
97
func (c *StateObject) GetStorage(num *big.Int) *ethutil.Value {
98 99 100 101 102
	nb := ethutil.BigToBytes(num, 256)

	return c.Addr(nb)
}

obscuren's avatar
obscuren committed
103 104 105 106 107
/* DEPRECATED */
func (c *StateObject) GetMem(num *big.Int) *ethutil.Value {
	return c.GetStorage(num)
}

108 109 110 111 112 113 114 115 116
func (c *StateObject) GetInstr(pc *big.Int) *ethutil.Value {
	if int64(len(c.script)-1) < pc.Int64() {
		return ethutil.NewValue(0)
	}

	return ethutil.NewValueFromBytes([]byte{c.script[pc.Int64()]})
}

// Return the gas back to the origin. Used by the Virtual machine or Closures
obscuren's avatar
obscuren committed
117
func (c *StateObject) ReturnGas(gas, price *big.Int, state *State) {
118 119 120 121
	/*
		remainder := new(big.Int).Mul(gas, price)
		c.AddAmount(remainder)
	*/
122 123 124
}

func (c *StateObject) AddAmount(amount *big.Int) {
125
	c.SetAmount(new(big.Int).Add(c.Amount, amount))
obscuren's avatar
obscuren committed
126

127
	ethutil.Config.Log.Printf(ethutil.LogLevelInfo, "%x: #%d %v (+ %v)\n", c.Address(), c.Nonce, c.Amount, amount)
128 129 130
}

func (c *StateObject) SubAmount(amount *big.Int) {
131
	c.SetAmount(new(big.Int).Sub(c.Amount, amount))
obscuren's avatar
obscuren committed
132

133
	ethutil.Config.Log.Printf(ethutil.LogLevelInfo, "%x: #%d %v (- %v)\n", c.Address(), c.Nonce, c.Amount, amount)
134 135 136 137
}

func (c *StateObject) SetAmount(amount *big.Int) {
	c.Amount = amount
138 139
}

obscuren's avatar
obscuren committed
140 141 142 143 144 145 146 147 148 149 150
func (c *StateObject) ConvertGas(gas, price *big.Int) error {
	total := new(big.Int).Mul(gas, price)
	if total.Cmp(c.Amount) > 0 {
		return fmt.Errorf("insufficient amount: %v, %v", c.Amount, total)
	}

	c.SubAmount(total)

	return nil
}

151 152 153
func (self *StateObject) SetGasPool(gasLimit *big.Int) {
	self.gasPool = new(big.Int).Set(gasLimit)

obscuren's avatar
obscuren committed
154
	ethutil.Config.Log.Printf(ethutil.LogLevelSystem, "%x: fuel (+ %v)", self.Address(), self.gasPool)
155 156
}

obscuren's avatar
obscuren committed
157
func (self *StateObject) BuyGas(gas, price *big.Int) error {
158 159 160 161
	if self.gasPool.Cmp(gas) < 0 {
		return GasLimitError(self.gasPool, gas)
	}

obscuren's avatar
obscuren committed
162
	rGas := new(big.Int).Set(gas)
163
	rGas.Mul(rGas, price)
obscuren's avatar
obscuren committed
164 165 166 167 168 169

	self.AddAmount(rGas)

	return nil
}

obscuren's avatar
obscuren committed
170 171 172 173 174 175 176 177 178
func (self *StateObject) RefundGas(gas, price *big.Int) {
	self.gasPool.Add(self.gasPool, gas)

	rGas := new(big.Int).Set(gas)
	rGas.Mul(rGas, price)

	self.Amount.Sub(self.Amount, rGas)
}

179 180 181 182 183 184 185 186
func (self *StateObject) Copy() *StateObject {
	stCopy := &StateObject{}
	stCopy.address = make([]byte, len(self.address))
	copy(stCopy.address, self.address)
	stCopy.Amount = new(big.Int).Set(self.Amount)
	stCopy.ScriptHash = make([]byte, len(self.ScriptHash))
	copy(stCopy.ScriptHash, self.ScriptHash)
	stCopy.Nonce = self.Nonce
187 188 189
	if self.state != nil {
		stCopy.state = self.state.Copy()
	}
190 191 192 193 194 195 196 197
	stCopy.script = make([]byte, len(self.script))
	copy(stCopy.script, self.script)
	stCopy.initScript = make([]byte, len(self.initScript))
	copy(stCopy.initScript, self.initScript)

	return stCopy
}

obscuren's avatar
obscuren committed
198
// Returns the address of the contract/account
199 200 201 202
func (c *StateObject) Address() []byte {
	return c.address
}

obscuren's avatar
obscuren committed
203
// Returns the main script body
204
func (c *StateObject) Script() Code {
205 206 207
	return c.script
}

obscuren's avatar
obscuren committed
208
// Returns the initialization script
209
func (c *StateObject) Init() Code {
210 211 212
	return c.initScript
}

obscuren's avatar
obscuren committed
213
// State object encoding methods
214 215 216 217 218
func (c *StateObject) RlpEncode() []byte {
	var root interface{}
	if c.state != nil {
		root = c.state.trie.Root
	} else {
obscuren's avatar
obscuren committed
219
		root = ""
220
	}
221

obscuren's avatar
obscuren committed
222
	return ethutil.Encode([]interface{}{c.Nonce, c.Amount, root, ethutil.Sha3Bin(c.script)})
223 224 225 226 227
}

func (c *StateObject) RlpDecode(data []byte) {
	decoder := ethutil.NewValueFromBytes(data)

obscuren's avatar
obscuren committed
228 229
	c.Nonce = decoder.Get(0).Uint()
	c.Amount = decoder.Get(1).BigInt()
230
	c.state = NewState(ethutil.NewTrie(ethutil.Config.Db, decoder.Get(2).Interface()))
231 232 233 234

	c.ScriptHash = decoder.Get(3).Bytes()

	c.script, _ = ethutil.Config.Db.Get(c.ScriptHash)
235 236
}

obscuren's avatar
obscuren committed
237 238
// Storage change object. Used by the manifest for notifying changes to
// the sub channels.
239 240 241 242 243
type StorageState struct {
	StateAddress []byte
	Address      []byte
	Value        *big.Int
}