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.
171 lines
6.4 KiB
171 lines
6.4 KiB
/*
|
|
This file is part of cpp-ethereum.
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
You should have received a copy of the GNU General Public License
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file AssemblyDebuggerControl.cpp
|
|
* @author Yann yann@ethdev.com
|
|
* @date 2014
|
|
* display opcode debugging.
|
|
*/
|
|
|
|
#include <QtConcurrent/QtConcurrent>
|
|
#include <QDebug>
|
|
#include <QVariableDefinition.h>
|
|
#include <QQmlContext>
|
|
#include <QModelIndex>
|
|
#include <libdevcore/CommonJS.h>
|
|
#include <libethereum/Transaction.h>
|
|
#include "AssemblyDebuggerModel.h"
|
|
#include "AssemblyDebuggerControl.h"
|
|
#include "KeyEventManager.h"
|
|
#include "AppContext.h"
|
|
#include "DebuggingStateWrapper.h"
|
|
#include "TransactionListModel.h"
|
|
#include "QContractDefinition.h"
|
|
#include "QVariableDeclaration.h"
|
|
#include "ContractCallDataEncoder.h"
|
|
using namespace dev::eth;
|
|
using namespace dev::mix;
|
|
|
|
AssemblyDebuggerControl::AssemblyDebuggerControl(QTextDocument* _doc): Extension(ExtensionDisplayBehavior::ModalDialog)
|
|
{
|
|
qRegisterMetaType<QVariableDefinition*>("QVariableDefinition*");
|
|
qRegisterMetaType<QVariableDefinitionList*>("QVariableDefinitionList*");
|
|
qRegisterMetaType<QList<QVariableDefinition*>>("QList<QVariableDefinition*>");
|
|
qRegisterMetaType<QList<QVariableDeclaration*>>("QList<QVariableDeclaration*>");
|
|
qRegisterMetaType<QVariableDeclaration*>("QVariableDeclaration*");
|
|
qRegisterMetaType<AssemblyDebuggerData>("AssemblyDebuggerData");
|
|
qRegisterMetaType<DebuggingStatusResult>("DebuggingStatusResult");
|
|
|
|
connect(this, SIGNAL(dataAvailable(bool, DebuggingStatusResult, QList<QVariableDefinition*>, QList<QObject*>, AssemblyDebuggerData)),
|
|
this, SLOT(updateGUI(bool, DebuggingStatusResult, QList<QVariableDefinition*>, QList<QObject*>, AssemblyDebuggerData)), Qt::QueuedConnection);
|
|
|
|
m_modelDebugger = std::unique_ptr<AssemblyDebuggerModel>(new AssemblyDebuggerModel);
|
|
m_compilation = std::unique_ptr<ConstantCompilationModel>(new ConstantCompilationModel);
|
|
m_doc = _doc;
|
|
}
|
|
|
|
QString AssemblyDebuggerControl::contentUrl() const
|
|
{
|
|
return QStringLiteral("qrc:/qml/Debugger.qml");
|
|
}
|
|
|
|
QString AssemblyDebuggerControl::title() const
|
|
{
|
|
return QApplication::tr("debugger");
|
|
}
|
|
|
|
void AssemblyDebuggerControl::start() const
|
|
{
|
|
//start to listen on F5
|
|
m_ctx->getKeyEventManager()->registerEvent(this, SLOT(keyPressed(int)));
|
|
}
|
|
|
|
void AssemblyDebuggerControl::keyPressed(int _key)
|
|
{
|
|
if (_key == Qt::Key_F5)
|
|
{
|
|
QtConcurrent::run([this]()
|
|
{
|
|
deployContract(m_doc->toPlainText());
|
|
});
|
|
}
|
|
else if (_key == Qt::Key_F6)
|
|
{
|
|
m_modelDebugger->resetState();
|
|
AppContext::getInstance()->displayMessageDialog(QApplication::tr("State status"), QApplication::tr("State reseted ... need to redeploy contract"));
|
|
}
|
|
}
|
|
|
|
void AssemblyDebuggerControl::callContract(TransactionSettings _tr, dev::Address _contract)
|
|
{
|
|
CompilerResult compilerRes = m_compilation->compile(m_doc->toPlainText());
|
|
if (!compilerRes.success)
|
|
AppContext::getInstance()->displayMessageDialog("debugger","compilation failed");
|
|
else
|
|
{
|
|
ContractCallDataEncoder c;
|
|
std::shared_ptr<QContractDefinition> contractDef = QContractDefinition::Contract(m_doc->toPlainText());
|
|
QFunctionDefinition* f = nullptr;
|
|
for (int k = 0; k < contractDef->functions().size(); k++)
|
|
{
|
|
if (contractDef->functions().at(k)->name() == _tr.functionId)
|
|
{
|
|
f = (QFunctionDefinition*)contractDef->functions().at(k);
|
|
break;
|
|
}
|
|
}
|
|
if (!f)
|
|
AppContext::getInstance()->displayMessageDialog(QApplication::tr("debugger"), QApplication::tr("function not found. Please redeploy this contract."));
|
|
else
|
|
{
|
|
c.encode(f->index());
|
|
for (int k = 0; k < f->parameters().size(); k++)
|
|
{
|
|
QVariableDeclaration* var = (QVariableDeclaration*)f->parameters().at(k);
|
|
c.encode(var, _tr.parameterValues[var->name()]);
|
|
}
|
|
DebuggingContent debuggingContent = m_modelDebugger->callContract(_contract, c.encodedData(), _tr);
|
|
debuggingContent.returnParameters = c.decode(f->returnParameters(), debuggingContent.returnValue);
|
|
finalizeExecution(debuggingContent);
|
|
}
|
|
}
|
|
}
|
|
|
|
void AssemblyDebuggerControl::deployContract(QString _source)
|
|
{
|
|
CompilerResult compilerRes = m_compilation->compile(_source);
|
|
if (!compilerRes.success)
|
|
emit dataAvailable(false, DebuggingStatusResult::Compilationfailed);
|
|
else
|
|
{
|
|
m_previousDebugResult = m_modelDebugger->deployContract(compilerRes.bytes);
|
|
finalizeExecution(m_previousDebugResult);
|
|
}
|
|
}
|
|
|
|
void AssemblyDebuggerControl::finalizeExecution(DebuggingContent _debuggingContent)
|
|
{
|
|
//we need to wrap states in a QObject before sending to QML.
|
|
QList<QObject*> wStates;
|
|
for(int i = 0; i < _debuggingContent.machineStates.size(); i++)
|
|
{
|
|
QPointer<DebuggingStateWrapper> s(new DebuggingStateWrapper(_debuggingContent.executionCode, _debuggingContent.executionData.toBytes()));
|
|
s->setState(_debuggingContent.machineStates.at(i));
|
|
wStates.append(s);
|
|
}
|
|
AssemblyDebuggerData code = DebuggingStateWrapper::getHumanReadableCode(_debuggingContent.executionCode);
|
|
emit dataAvailable(true, DebuggingStatusResult::Ok, _debuggingContent.returnParameters, wStates, code);
|
|
}
|
|
|
|
void AssemblyDebuggerControl::updateGUI(bool _success, DebuggingStatusResult const& _reason, QList<QVariableDefinition*> const& _returnParam, QList<QObject*> const& _wStates, AssemblyDebuggerData const& _code)
|
|
{
|
|
Q_UNUSED(_reason);
|
|
if (_success)
|
|
{
|
|
m_appEngine->rootContext()->setContextProperty("debugStates", QVariant::fromValue(_wStates));
|
|
m_appEngine->rootContext()->setContextProperty("humanReadableExecutionCode", QVariant::fromValue(std::get<0>(_code)));
|
|
m_appEngine->rootContext()->setContextProperty("bytesCodeMapping", QVariant::fromValue(std::get<1>(_code)));
|
|
m_appEngine->rootContext()->setContextProperty("contractCallReturnParameters", QVariant::fromValue(new QVariableDefinitionList(_returnParam)));
|
|
this->addContentOn(this);
|
|
}
|
|
else
|
|
m_ctx->displayMessageDialog(QApplication::tr("debugger"), QApplication::tr("compilation failed"));
|
|
}
|
|
|
|
void AssemblyDebuggerControl::runTransaction(TransactionSettings const& _tr)
|
|
{
|
|
QtConcurrent::run([this, _tr]()
|
|
{
|
|
callContract(_tr, m_previousDebugResult.contractAddress);
|
|
});
|
|
}
|
|
|