// Copyright (c) 2011-2016 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once #include #include #include #include #include #include "IWalletLegacy.h" #include "PasswordContainer.h" #include "Common/ConsoleHandler.h" #include "CryptoNoteCore/CryptoNoteBasicImpl.h" #include "CryptoNoteCore/Currency.h" #include "NodeRpcProxy/NodeRpcProxy.h" #include "WalletLegacy/WalletHelper.h" #include #include #include #include namespace CryptoNote { /************************************************************************/ /* */ /************************************************************************/ class simple_wallet : public CryptoNote::INodeObserver, public CryptoNote::IWalletLegacyObserver, public CryptoNote::INodeRpcProxyObserver { public: simple_wallet(System::Dispatcher& dispatcher, const CryptoNote::Currency& currency, Logging::LoggerManager& log); bool init(const boost::program_options::variables_map& vm); bool deinit(); bool run(); void stop(); bool process_command(const std::vector &args); std::string get_commands_str(); const CryptoNote::Currency& currency() const { return m_currency; } private: Logging::LoggerMessage success_msg_writer(bool color = false) { return logger(Logging::INFO, color ? Logging::GREEN : Logging::DEFAULT); } Logging::LoggerMessage fail_msg_writer() const { auto msg = logger(Logging::ERROR, Logging::BRIGHT_RED); msg << "Error: "; return msg; } void handle_command_line(const boost::program_options::variables_map& vm); 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(); bool help(const std::vector &args = std::vector()); bool exit(const std::vector &args); bool start_mining(const std::vector &args); bool stop_mining(const std::vector &args); bool show_balance(const std::vector &args = std::vector()); bool show_incoming_transfers(const std::vector &args); bool show_payments(const std::vector &args); bool show_blockchain_height(const std::vector &args); bool listTransfers(const std::vector &args); bool transfer(const std::vector &args); bool print_address(const std::vector &args = std::vector()); bool save(const std::vector &args); bool reset(const std::vector &args); bool set_log(const std::vector &args); bool ask_wallet_create_if_needed(); void printConnectionError() const; //---------------- IWalletLegacyObserver ------------------------- virtual void initCompleted(std::error_code result) override; virtual void externalTransactionCreated(CryptoNote::TransactionId transactionId) override; virtual void synchronizationCompleted(std::error_code result) override; virtual void synchronizationProgressUpdated(uint32_t current, uint32_t total) override; //---------------------------------------------------------- //----------------- INodeRpcProxyObserver -------------------------- virtual void connectionStatusUpdated(bool connected) override; //---------------------------------------------------------- friend class refresh_progress_reporter_t; class refresh_progress_reporter_t { public: refresh_progress_reporter_t(CryptoNote::simple_wallet& simple_wallet) : 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(); if (std::chrono::seconds(m_simple_wallet.currency().difficultyTarget() / 2) < current_time - m_blockchain_height_update_time || m_blockchain_height <= height) { update_blockchain_height(); m_blockchain_height = (std::max)(m_blockchain_height, height); } if (std::chrono::milliseconds(1) < current_time - m_print_time || force) { std::cout << "Height " << height << " of " << m_blockchain_height << '\r'; m_print_time = current_time; } } private: void update_blockchain_height() { uint64_t blockchain_height = m_simple_wallet.m_node->getLastLocalBlockHeight(); m_blockchain_height = blockchain_height; m_blockchain_height_update_time = std::chrono::system_clock::now(); } private: CryptoNote::simple_wallet& m_simple_wallet; 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; std::string m_generate_new; std::string m_import_path; std::string m_daemon_address; std::string m_daemon_host; uint16_t m_daemon_port; std::string m_wallet_file; std::unique_ptr> m_initResultPromise; Common::ConsoleHandler m_consoleHandler; const CryptoNote::Currency& m_currency; Logging::LoggerManager& logManager; System::Dispatcher& m_dispatcher; Logging::LoggerRef logger; std::unique_ptr m_node; std::unique_ptr m_wallet; refresh_progress_reporter_t m_refresh_progress_reporter; bool m_walletSynchronized; std::mutex m_walletSynchronizedMutex; std::condition_variable m_walletSynchronizedCV; }; }