danicoin/src/simplewallet/simplewallet.h

157 lines
5.8 KiB
C
Raw Normal View History

2014-08-13 10:38:35 +00:00
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
2014-03-03 22:07:58 +00:00
#pragma once
#include <memory>
#include <boost/program_options/variables_map.hpp>
#include "cryptonote_core/cryptonote_basic_impl.h"
2014-08-13 10:51:37 +00:00
#include "cryptonote_core/Currency.h"
2014-03-03 22:07:58 +00:00
#include "wallet/wallet2.h"
#include "console_handler.h"
#include "password_container.h"
namespace cryptonote
{
/************************************************************************/
/* */
/************************************************************************/
2014-04-02 16:00:17 +00:00
class simple_wallet : public tools::i_wallet2_callback
2014-03-03 22:07:58 +00:00
{
public:
typedef std::vector<std::string> command_type;
2014-08-13 10:51:37 +00:00
simple_wallet(const cryptonote::Currency& currency);
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
//wallet *create_wallet();
bool process_command(const std::vector<std::string> &args);
std::string get_commands_str();
2014-08-13 10:51:37 +00:00
const cryptonote::Currency& currency() const { return m_currency; }
2014-03-03 22:07:58 +00:00
private:
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>());
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);
bool refresh(const std::vector<std::string> &args = std::vector<std::string>());
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-03-20 11:46:11 +00:00
uint64_t get_daemon_blockchain_height(std::string& err);
bool try_connect_to_daemon();
2014-04-29 16:26:45 +00:00
bool ask_wallet_create_if_needed();
2014-03-03 22:07:58 +00:00
2014-04-02 16:00:17 +00:00
//----------------- i_wallet2_callback ---------------------
2014-08-13 10:51:37 +00:00
virtual void on_new_block(uint64_t height);
virtual void on_money_received(uint64_t height, const cryptonote::Transaction& tx, size_t out_index);
virtual void on_money_spent(uint64_t height, const cryptonote::Transaction& in_tx, size_t out_index, const cryptonote::Transaction& spend_tx);
virtual void on_skip_transaction(uint64_t height, const cryptonote::Transaction& tx);
2014-04-02 16:00:17 +00:00
//----------------------------------------------------------
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();
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);
}
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()
{
std::string err;
uint64_t blockchain_height = m_simple_wallet.get_daemon_blockchain_height(err);
if (err.empty())
{
m_blockchain_height = blockchain_height;
m_blockchain_height_update_time = std::chrono::system_clock::now();
}
else
{
LOG_ERROR("Failed to get current blockchain height: " << err);
}
}
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:
2014-03-03 22:07:58 +00:00
std::string m_wallet_file;
std::string m_generate_new;
std::string m_import_path;
std::string m_daemon_address;
std::string m_daemon_host;
int m_daemon_port;
epee::console_handlers_binder m_cmd_binder;
2014-08-13 10:51:37 +00:00
const cryptonote::Currency& m_currency;
2014-03-20 11:46:11 +00:00
std::unique_ptr<tools::wallet2> m_wallet;
epee::net_utils::http::http_simple_client m_http_client;
2014-04-02 16:00:17 +00:00
refresh_progress_reporter_t m_refresh_progress_reporter;
2014-03-03 22:07:58 +00:00
};
}