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.

185 lines
5.7 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 ClientModel.h
* @author Yann yann@ethdev.com
* @author Arkadiy Paronyan arkadiy@ethdev.com
* @date 2015
* Ethereum IDE client.
*/
#pragma once
#include <atomic>
10 years ago
#include <map>
#include <QString>
#include "MixClient.h"
namespace dev
{
namespace mix
{
class AppContext;
class Web3Server;
class RpcConnector;
10 years ago
class QEther;
class QDebugData;
/// Backend transaction config class
struct TransactionSettings
{
TransactionSettings() {}
TransactionSettings(QString const& _functionId, u256 _value, u256 _gas, u256 _gasPrice):
functionId(_functionId), value(_value), gas(_gas), gasPrice(_gasPrice) {}
10 years ago
TransactionSettings(u256 _value, u256 _gas, u256 _gasPrice):
value(_value), gas(_gas), gasPrice(_gasPrice) {}
10 years ago
TransactionSettings(QString const& _stdContractName, QString const& _stdContractUrl):
functionId(_stdContractName), stdContractUrl(_stdContractUrl) {}
/// Contract function name
QString functionId;
/// Transaction value
u256 value;
/// Gas
u256 gas;
/// Gas price
u256 gasPrice;
/// Mapping from contract function parameter name to value
std::map<QString, u256> parameterValues;
10 years ago
/// Standard contract url
QString stdContractUrl;
};
10 years ago
/// UI Transaction log record
10 years ago
class TransactionLogEntry: public QObject
{
Q_OBJECT
10 years ago
/// Transaction block number
10 years ago
Q_PROPERTY(unsigned block MEMBER m_block CONSTANT)
10 years ago
/// Transaction index within the block
10 years ago
Q_PROPERTY(unsigned index MEMBER m_index CONSTANT)
10 years ago
/// Contract name if any
10 years ago
Q_PROPERTY(QString contract MEMBER m_contract CONSTANT)
10 years ago
/// Function name if any
10 years ago
Q_PROPERTY(QString function MEMBER m_function CONSTANT)
10 years ago
/// Transaction value
10 years ago
Q_PROPERTY(QString value MEMBER m_value CONSTANT)
10 years ago
/// Receiving address
10 years ago
Q_PROPERTY(QString address MEMBER m_address CONSTANT)
10 years ago
/// Returned value or transaction address in case of creation
10 years ago
Q_PROPERTY(QString returned MEMBER m_returned CONSTANT)
public:
TransactionLogEntry():
m_block(0), m_index(0) {}
TransactionLogEntry(int _block, int _index, QString _contract, QString _function, QString _value, QString _address, QString _returned):
m_block(_block), m_index(_index), m_contract(_contract), m_function(_function), m_value(_value), m_address(_address), m_returned(_returned) {}
private:
unsigned m_block;
unsigned m_index;
QString m_contract;
QString m_function;
QString m_value;
QString m_address;
QString m_returned;
};
/**
* @brief Ethereum state control
*/
class ClientModel: public QObject
{
Q_OBJECT
public:
ClientModel(AppContext* _context);
~ClientModel();
/// @returns true if currently executing contract code
10 years ago
Q_PROPERTY(bool running MEMBER m_running NOTIFY runStateChanged)
/// @returns address of the last executed contract
Q_PROPERTY(QString contractAddress READ contractAddress NOTIFY contractAddressChanged)
/// ethereum.js RPC request entry point
/// @param _message RPC request in Json format
/// @returns RPC response in Json format
Q_INVOKABLE QString apiCall(QString const& _message);
10 years ago
/// Simulate mining. Creates a new block
Q_INVOKABLE void mine();
public slots:
/// Run the contract constructor and show debugger window.
void debugDeployment();
/// Setup state, run transaction sequence, show debugger for the last transaction
/// @param _state JS object with state configuration
10 years ago
void setupState(QVariantMap _state);
/// Show the debugger for a specified transaction
Q_INVOKABLE void debugTransaction(unsigned _block, unsigned _index);
private slots:
/// Update UI with machine states result. Display a modal dialog.
10 years ago
void showDebugger();
/// Update UI with transaction run error.
void showDebugError(QString const& _error);
signals:
/// Transaction execution started
void runStarted();
/// Transaction execution completed successfully
void runComplete();
/// Transaction execution completed with error
/// @param _message Error message
void runFailed(QString const& _message);
/// Contract address changed
void contractAddressChanged();
/// Execution state changed
10 years ago
void newBlock();
/// Execution state changed
10 years ago
void runStateChanged();
/// Show debugger window request
void debugDataReady(QObject* _debugData);
/// ethereum.js RPC response ready
/// @param _message RPC response in Json format
void apiResponse(QString const& _message);
10 years ago
/// New transaction log entry
void newTransaction(TransactionLogEntry* _tr);
/// State (transaction log) cleared
void stateCleared();
private:
QString contractAddress() const;
10 years ago
void executeSequence(std::vector<TransactionSettings> const& _sequence, u256 _balance);
dev::Address deployContract(bytes const& _code, TransactionSettings const& _tr = TransactionSettings());
void callContract(Address const& _contract, bytes const& _data, TransactionSettings const& _tr);
void onNewTransaction();
void onStateReset();
10 years ago
void showDebuggerForTransaction(ExecutionResult const& _t);
AppContext* m_context;
std::atomic<bool> m_running;
std::unique_ptr<MixClient> m_client;
std::unique_ptr<RpcConnector> m_rpcConnector;
std::unique_ptr<Web3Server> m_web3Server;
Address m_contractAddress;
10 years ago
std::map<QString, Address> m_stdContractAddresses;
10 years ago
std::map<Address, QString> m_stdContractNames;
};
}
}