good morning!!!!

Skip to content
Snippets Groups Projects
context.go 2.05 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    package vm
    
    	"math/big"
    
    
    	"github.com/ethereum/go-ethereum/ethutil"
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    type ContextRef interface {
    
    	ReturnGas(*big.Int, *big.Int)
    	Address() []byte
    
    	SetCode([]byte)
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    type Context struct {
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    	caller ContextRef
    	object ContextRef
    	Code   []byte
    
    
    	Gas, UsedGas, Price *big.Int
    
    	Args []byte
    }
    
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    // Create a new context for the given data items
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func NewContext(caller ContextRef, object ContextRef, code []byte, gas, price *big.Int) *Context {
    	c := &Context{caller: caller, object: object, Code: code, Args: nil}
    
    
    	// Gas should be a pointer so it can safely be reduced through the run
    	// This pointer will be off the state transition
    	c.Gas = gas //new(big.Int).Set(gas)
    	// In most cases price and value are pointers to transaction objects
    	// and we don't want the transaction's values to change.
    	c.Price = new(big.Int).Set(price)
    	c.UsedGas = new(big.Int)
    
    	return c
    }
    
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) GetOp(x uint64) OpCode {
    
    	return OpCode(c.GetByte(x))
    }
    
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) GetByte(x uint64) byte {
    
    	if x < uint64(len(c.Code)) {
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) GetBytes(x, y int) []byte {
    
    	return c.GetRangeValue(uint64(x), uint64(y))
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) GetRangeValue(x, size uint64) []byte {
    
    	x = uint64(math.Min(float64(x), float64(len(c.Code))))
    	y := uint64(math.Min(float64(x+size), float64(len(c.Code))))
    
    	return ethutil.LeftPadBytes(c.Code[x:y], int(size))
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) Return(ret []byte) []byte {
    
    	// Return the remaining gas to the caller
    	c.caller.ReturnGas(c.Gas, c.Price)
    
    	return ret
    }
    
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) UseGas(gas *big.Int) bool {
    
    	if c.Gas.Cmp(gas) < 0 {
    		return false
    	}
    
    	// Sub the amount of gas from the remaining
    	c.Gas.Sub(c.Gas, gas)
    	c.UsedGas.Add(c.UsedGas, gas)
    
    	return true
    }
    
    // Implement the caller interface
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) ReturnGas(gas, price *big.Int) {
    	// Return the gas to the context
    
    	c.Gas.Add(c.Gas, gas)
    	c.UsedGas.Sub(c.UsedGas, gas)
    }
    
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (c *Context) Address() []byte {
    
    	return c.object.Address()
    }
    
    
    Jeffrey Wilcke's avatar
    Jeffrey Wilcke committed
    func (self *Context) SetCode(code []byte) {