aboutsummaryrefslogblamecommitdiffstats
path: root/core/execution.go
blob: 72eb22bd5c4bc17347fb3ae3f4cefd46fcb12484 (plain) (tree)
1
2
3
4
5
6
7
8
9
            

        
                  
              
 
                                                

                                                    
                                                


                       
                                        

                                         
                                  

 
                                                                                                                        
                                                                                                            

 
                                                                                            
                                      
                                                  
 
                                                 

 
                                                                                                                     

                           
                       
                            
                                           

                                                      


                                           
                                       
                                

                                                               
                                                                     
                                                               
                                    
         
                                      
 
                                                                                                                

                                                


                                                      
 
                                                                                                                                

         


                                                                              

                                                                    


                                         



              
                                                                                                         

                                                                


              
package core

import (
    "math/big"
    "time"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/core/state"
    "github.com/ethereum/go-ethereum/core/vm"
    "github.com/ethereum/go-ethereum/crypto"
)

type Execution struct {
    env               vm.Environment
    address           *common.Address
    input             []byte
    Gas, price, value *big.Int
}

func NewExecution(env vm.Environment, address *common.Address, input []byte, gas, gasPrice, value *big.Int) *Execution {
    return &Execution{env: env, address: address, input: input, Gas: gas, price: gasPrice, value: value}
}

func (self *Execution) Call(codeAddr common.Address, caller vm.ContextRef) ([]byte, error) {
    // Retrieve the executing code
    code := self.env.State().GetCode(codeAddr)

    return self.exec(&codeAddr, code, caller)
}

func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.ContextRef) (ret []byte, err error) {
    start := time.Now()

    env := self.env
    evm := vm.NewVm(env)
    if env.Depth() == vm.MaxCallDepth {
        caller.ReturnGas(self.Gas, self.price)

        return nil, vm.DepthError{}
    }

    vsnapshot := env.State().Copy()
    if self.address == nil {
        // Generate a new address
        nonce := env.State().GetNonce(caller.Address())
        addr := crypto.CreateAddress(caller.Address(), nonce)
        env.State().SetNonce(caller.Address(), nonce+1)
        self.address = &addr
    }
    snapshot := env.State().Copy()

    from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(*self.address)
    err = env.Transfer(from, to, self.value)
    if err != nil {
        env.State().Set(vsnapshot)

        caller.ReturnGas(self.Gas, self.price)

        return nil, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance())
    }

    context := vm.NewContext(caller, to, self.value, self.Gas, self.price)
    context.SetCallCode(contextAddr, code)

    ret, err = evm.Run(context, self.input)
    evm.Printf("message call took %v", time.Since(start)).Endl()
    if err != nil {
        env.State().Set(snapshot)
    }

    return
}

func (self *Execution) Create(caller vm.ContextRef) (ret []byte, err error, account *state.StateObject) {
    ret, err = self.exec(nil, self.input, caller)
    account = self.env.State().GetStateObject(*self.address)

    return
}