You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
4.0 KiB
139 lines
4.0 KiB
|
|
// options
|
|
// * executionContext
|
|
// * offsetToLineColumnConverter
|
|
// *** disable for now
|
|
// * compiler
|
|
// ** lastCompilationResult
|
|
|
|
var remixLib = require('remix-lib')
|
|
//var executionContext = remixLib.execution.executionContext
|
|
|
|
var Debugger = require('./src/debugger/debugger.js')
|
|
|
|
var compilation = {
|
|
}
|
|
|
|
compilation.lastCompilationResult = require('./compilation.json')
|
|
|
|
// connecting to a node
|
|
var Web3 = require('web3')
|
|
web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"))
|
|
// global.my_web3 = web3
|
|
|
|
// with vm
|
|
var ContextManager = require('./contextManager.js')
|
|
var contextManager = new ContextManager()
|
|
|
|
_debugger = new Debugger({
|
|
//web3: web3,
|
|
web3: contextManager.getWeb3(),
|
|
//executionContext: executionContext,
|
|
//offsetToLineColumnConverter: this.registry.get('offsettolinecolumnconverter').api,
|
|
compiler: compilation
|
|
})
|
|
|
|
// with vm
|
|
contextManager.event.register('providerChanged', () => {
|
|
_debugger.updateWeb3(contextManager.getWeb3())
|
|
})
|
|
|
|
contextManager.initProviders()
|
|
|
|
contextManager.addProvider('myweb3', web3)
|
|
contextManager.switchProvider('myweb3')
|
|
|
|
//contextManager.switchProvider('vm')
|
|
|
|
_debugger.event.register('debuggerStatus', function (isActive) {
|
|
console.dir("debugger status")
|
|
console.dir(isActive)
|
|
});
|
|
|
|
_debugger.event.register('newSourceLocation', function (lineColumnPos, rawLocation) {
|
|
console.dir("newSourceLocation")
|
|
|
|
if (!lineColumnPos || !lineColumnPos.start) return;
|
|
|
|
let line
|
|
//let line = compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line].slice(lineColumnPos.start.column, lineColumnPos.start.column + lineColumnPos.end.column)
|
|
line = compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line - 1]
|
|
console.dir(line)
|
|
line = compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line]
|
|
console.dir(line)
|
|
console.dir("^^^^^^^^^^^^^^^ ")
|
|
line = compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line + 1]
|
|
console.dir(line)
|
|
});
|
|
|
|
_debugger.event.register('debuggerUnloaded', function() {
|
|
console.dir("debugger unloaded")
|
|
});
|
|
|
|
let _web3 = _debugger.debugger.web3
|
|
// let web3 = _debugger.debugger.executionContext.web3()
|
|
|
|
|
|
|
|
let blockNumber = null
|
|
let txNumber = null
|
|
let tx = null
|
|
|
|
let code = compilation.lastCompilationResult.data.contracts['browser/ballot.sol'].Ballot.evm.bytecode.object
|
|
_web3.eth.sendTransaction({data: "0x" + code, from: _web3.eth.accounts[0], gas: 800000}, (err, txHash) => {
|
|
//console.dir(err)
|
|
//console.dir(txHash)
|
|
|
|
|
|
txNumber = txHash
|
|
global.mytx = txHash
|
|
|
|
_debugger.event.register('newSourceLocation', (lineColumnPos, rawLocation) => {
|
|
console.dir("************ new source location *********")
|
|
console.dir(lineColumnPos)
|
|
console.dir(rawLocation)
|
|
})
|
|
|
|
_debugger.debug(blockNumber, txNumber, tx, () => {
|
|
|
|
_debugger.step_manager.event.register('stepChanged', (stepIndex) => {
|
|
console.dir("---------")
|
|
console.dir("stepChanged: " + stepIndex)
|
|
console.dir("---------")
|
|
})
|
|
|
|
_debugger.step_manager.event.register('traceLengthChanged', (traceLength) => {
|
|
console.dir("---------")
|
|
console.dir("traceLengthChanged: " + traceLength)
|
|
console.dir("---------")
|
|
});
|
|
|
|
_debugger.vmDebuggerLogic.event.register('codeManagerChanged', (code, address, index) => {
|
|
console.dir("---------")
|
|
console.dir("codeManagerChanged")
|
|
console.dir("address: " + address)
|
|
console.dir("asm code: " + code[index])
|
|
console.dir("---------")
|
|
});
|
|
|
|
_debugger.vmDebuggerLogic.event.register('traceManagerMemoryUpdate', (data) => {
|
|
console.dir("---------")
|
|
console.dir("traceManagerMemoryUpdate")
|
|
console.dir(data)
|
|
console.dir("---------")
|
|
});
|
|
|
|
console.dir('debugger started')
|
|
})
|
|
|
|
})
|
|
|
|
//_debugger.debug(blockNumber, txNumber, tx, () => {
|
|
// console.dir('debugger started')
|
|
//})
|
|
|
|
//_debugger.debugger.web3.eth.accounts()
|
|
|
|
console.dir("done!")
|
|
|
|
module.exports = _debugger
|
|
|