danicoin/src/SimpleWallet/SimpleWallet.h

169 lines
6 KiB
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
2014-03-03 22:07:58 +00:00
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
2015-10-01 15:27:18 +00:00
#include <condition_variable>
#include <future>
2015-10-01 15:27:18 +00:00
#include <memory>
#include <mutex>
2014-03-03 22:07:58 +00:00
#include <boost/program_options/variables_map.hpp>
2015-07-30 15:22:07 +00:00
#include "IWalletLegacy.h"
#include "PasswordContainer.h"
2015-05-27 12:08:46 +00:00
#include "Common/ConsoleHandler.h"
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/CryptoNoteBasicImpl.h"
#include "CryptoNoteCore/Currency.h"
#include "NodeRpcProxy/NodeRpcProxy.h"
2015-07-30 15:22:07 +00:00
#include "WalletLegacy/WalletHelper.h"
2014-03-03 22:07:58 +00:00
2015-05-27 12:08:46 +00:00
#include <Logging/LoggerRef.h>
#include <Logging/LoggerManager.h>
#include <System/Dispatcher.h>
#include <System/Ipv4Address.h>
namespace CryptoNote
2014-03-03 22:07:58 +00:00
{
/************************************************************************/
/* */
/************************************************************************/
class simple_wallet : public CryptoNote::INodeObserver, public CryptoNote::IWalletLegacyObserver, public CryptoNote::INodeRpcProxyObserver {
2014-03-03 22:07:58 +00:00
public:
2015-05-27 12:08:46 +00:00
simple_wallet(System::Dispatcher& dispatcher, const CryptoNote::Currency& currency, Logging::LoggerManager& log);
2014-03-03 22:07:58 +00:00
bool init(const boost::program_options::variables_map& vm);
bool deinit();
bool run();
2014-03-20 11:46:11 +00:00
void stop();
2014-03-03 22:07:58 +00:00
bool process_command(const std::vector<std::string> &args);
std::string get_commands_str();
2014-08-13 10:51:37 +00:00
2015-05-27 12:08:46 +00:00
const CryptoNote::Currency& currency() const { return m_currency; }
2014-08-13 10:51:37 +00:00
2014-03-03 22:07:58 +00:00
private:
2015-05-27 12:08:46 +00:00
Logging::LoggerMessage success_msg_writer(bool color = false) {
return logger(Logging::INFO, color ? Logging::GREEN : Logging::DEFAULT);
}
Logging::LoggerMessage fail_msg_writer() const {
2015-05-27 12:08:46 +00:00
auto msg = logger(Logging::ERROR, Logging::BRIGHT_RED);
msg << "Error: ";
return msg;
}
2014-04-02 16:00:17 +00:00
void handle_command_line(const boost::program_options::variables_map& vm);
2014-03-03 22:07:58 +00:00
bool run_console_handler();
bool new_wallet(const std::string &wallet_file, const std::string& password);
bool open_wallet(const std::string &wallet_file, const std::string& password);
bool close_wallet();
2014-03-20 11:46:11 +00:00
bool help(const std::vector<std::string> &args = std::vector<std::string>());
2015-05-27 12:08:46 +00:00
bool exit(const std::vector<std::string> &args);
2014-03-03 22:07:58 +00:00
bool start_mining(const std::vector<std::string> &args);
bool stop_mining(const std::vector<std::string> &args);
2014-03-20 11:46:11 +00:00
bool show_balance(const std::vector<std::string> &args = std::vector<std::string>());
2014-03-03 22:07:58 +00:00
bool show_incoming_transfers(const std::vector<std::string> &args);
2014-04-29 16:26:45 +00:00
bool show_payments(const std::vector<std::string> &args);
2014-03-03 22:07:58 +00:00
bool show_blockchain_height(const std::vector<std::string> &args);
bool listTransfers(const std::vector<std::string> &args);
2014-03-03 22:07:58 +00:00
bool transfer(const std::vector<std::string> &args);
2014-04-02 16:00:17 +00:00
bool print_address(const std::vector<std::string> &args = std::vector<std::string>());
2014-03-03 22:07:58 +00:00
bool save(const std::vector<std::string> &args);
bool reset(const std::vector<std::string> &args);
2014-03-03 22:07:58 +00:00
bool set_log(const std::vector<std::string> &args);
2014-04-29 16:26:45 +00:00
bool ask_wallet_create_if_needed();
2014-03-03 22:07:58 +00:00
void printConnectionError() const;
2015-10-01 15:27:18 +00:00
//---------------- IWalletLegacyObserver -------------------------
virtual void initCompleted(std::error_code result) override;
virtual void externalTransactionCreated(CryptoNote::TransactionId transactionId) override;
2015-10-01 15:27:18 +00:00
virtual void synchronizationCompleted(std::error_code result) override;
virtual void synchronizationProgressUpdated(uint32_t current, uint32_t total) override;
2014-04-02 16:00:17 +00:00
//----------------------------------------------------------
//----------------- INodeRpcProxyObserver --------------------------
virtual void connectionStatusUpdated(bool connected) override;
2014-04-02 16:00:17 +00:00
//----------------------------------------------------------
friend class refresh_progress_reporter_t;
class refresh_progress_reporter_t
{
public:
2015-05-27 12:08:46 +00:00
refresh_progress_reporter_t(CryptoNote::simple_wallet& simple_wallet)
2014-04-02 16:00:17 +00:00
: m_simple_wallet(simple_wallet)
, m_blockchain_height(0)
, m_blockchain_height_update_time()
, m_print_time()
{
}
void update(uint64_t height, bool force = false)
{
auto current_time = std::chrono::system_clock::now();
2014-08-13 10:51:37 +00:00
if (std::chrono::seconds(m_simple_wallet.currency().difficultyTarget() / 2) < current_time - m_blockchain_height_update_time ||
m_blockchain_height <= height) {
2014-04-02 16:00:17 +00:00
update_blockchain_height();
m_blockchain_height = (std::max)(m_blockchain_height, height);
}
2015-10-01 15:27:18 +00:00
if (std::chrono::milliseconds(1) < current_time - m_print_time || force) {
2015-05-27 12:08:46 +00:00
std::cout << "Height " << height << " of " << m_blockchain_height << '\r';
2014-04-02 16:00:17 +00:00
m_print_time = current_time;
}
}
private:
void update_blockchain_height()
{
uint64_t blockchain_height = m_simple_wallet.m_node->getLastLocalBlockHeight();
2015-10-01 15:27:18 +00:00
m_blockchain_height = blockchain_height;
m_blockchain_height_update_time = std::chrono::system_clock::now();
2014-04-02 16:00:17 +00:00
}
private:
2015-05-27 12:08:46 +00:00
CryptoNote::simple_wallet& m_simple_wallet;
2014-04-02 16:00:17 +00:00
uint64_t m_blockchain_height;
std::chrono::system_clock::time_point m_blockchain_height_update_time;
std::chrono::system_clock::time_point m_print_time;
};
private:
std::string m_wallet_file_arg;
2014-03-03 22:07:58 +00:00
std::string m_generate_new;
std::string m_import_path;
std::string m_daemon_address;
std::string m_daemon_host;
2015-05-27 12:08:46 +00:00
uint16_t m_daemon_port;
2014-03-03 22:07:58 +00:00
std::string m_wallet_file;
std::unique_ptr<std::promise<std::error_code>> m_initResultPromise;
2014-03-03 22:07:58 +00:00
2015-05-27 12:08:46 +00:00
Common::ConsoleHandler m_consoleHandler;
const CryptoNote::Currency& m_currency;
Logging::LoggerManager& logManager;
System::Dispatcher& m_dispatcher;
Logging::LoggerRef logger;
std::unique_ptr<CryptoNote::NodeRpcProxy> m_node;
2015-07-30 15:22:07 +00:00
std::unique_ptr<CryptoNote::IWalletLegacy> m_wallet;
2014-04-02 16:00:17 +00:00
refresh_progress_reporter_t m_refresh_progress_reporter;
2015-10-01 15:27:18 +00:00
bool m_walletSynchronized;
std::mutex m_walletSynchronizedMutex;
std::condition_variable m_walletSynchronizedCV;
2014-03-03 22:07:58 +00:00
};
}