danicoin/src/PaymentGate/WalletService.h

106 lines
4 KiB
C
Raw Normal View History

// Copyright (c) 2011-2015 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2015-05-27 12:08:46 +00:00
#pragma once
2015-07-30 15:22:07 +00:00
#include <System/ContextGroup.h>
2015-05-27 12:08:46 +00:00
#include <System/Dispatcher.h>
2015-07-30 15:22:07 +00:00
#include <System/Event.h>
2015-05-27 12:08:46 +00:00
#include "IWallet.h"
#include "INode.h"
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/Currency.h"
#include "PaymentServiceJsonRpcMessages.h"
2015-05-27 12:08:46 +00:00
#undef ERROR //TODO: workaround for windows build. fix it
#include "Logging/LoggerRef.h"
#include <fstream>
#include <memory>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/hashed_index.hpp>
namespace PaymentService {
struct SendTransactionRequest;
struct SendTransactionResponse;
struct TransferDestination;
struct TransactionRpcInfo;
struct TransferRpcInfo;
2015-07-30 15:22:07 +00:00
struct WalletConfiguration {
std::string walletFile;
std::string walletPassword;
};
void generateNewWallet(const CryptoNote::Currency &currency, const WalletConfiguration &conf, Logging::ILogger &logger, System::Dispatcher& dispatcher);
2015-05-27 12:08:46 +00:00
2015-07-30 15:22:07 +00:00
class WalletService {
2015-05-27 12:08:46 +00:00
public:
typedef std::map<std::string, std::vector<PaymentDetails> > IncomingPayments;
2015-07-30 15:22:07 +00:00
explicit WalletService(const CryptoNote::Currency& currency, System::Dispatcher& sys, CryptoNote::INode& node, const WalletConfiguration& conf, Logging::ILogger& logger);
2015-05-27 12:08:46 +00:00
virtual ~WalletService();
void init();
void saveWallet();
std::error_code sendTransaction(const SendTransactionRequest& req, SendTransactionResponse& resp);
std::error_code getIncomingPayments(const std::vector<std::string>& payments, IncomingPayments& result);
2015-07-30 15:22:07 +00:00
std::error_code getAddress(size_t index, std::string& address);
std::error_code getAddressCount(size_t& count);
std::error_code createAddress(std::string& address);
std::error_code deleteAddress(const std::string& address);
std::error_code getActualBalance(const std::string& address, uint64_t& actualBalance);
std::error_code getPendingBalance(const std::string& address, uint64_t& pendingBalance);
2015-05-27 12:08:46 +00:00
std::error_code getActualBalance(uint64_t& actualBalance);
std::error_code getPendingBalance(uint64_t& pendingBalance);
std::error_code getTransactionsCount(uint64_t& txCount);
std::error_code getTransfersCount(uint64_t& trCount);
2015-07-30 15:22:07 +00:00
std::error_code getTransactionByTransferId(size_t transfer, size_t& transaction);
std::error_code getTransaction(size_t txId, bool& found, TransactionRpcInfo& rpcInfo);
std::error_code listTransactions(size_t startingTxId, uint32_t maxTxCount, std::vector<TransactionRpcInfo>& txsRpcInfo);
std::error_code getTransfer(size_t txId, bool& found, TransferRpcInfo& rpcInfo);
2015-05-27 12:08:46 +00:00
private:
2015-07-30 15:22:07 +00:00
void refresh();
2015-05-27 12:08:46 +00:00
2015-07-30 15:22:07 +00:00
void loadWallet();
void loadPaymentsCacheAndTransferIndices();
void insertTransaction(size_t id, const Crypto::Hash& paymentIdBin, bool confirmed);
2015-05-27 12:08:46 +00:00
2015-07-30 15:22:07 +00:00
void fillTransactionRpcInfo(size_t txId, const CryptoNote::WalletTransaction& tx, TransactionRpcInfo& rpcInfo);
void makeTransfers(const std::vector<TransferDestination>& destinations, std::vector<CryptoNote::WalletTransfer>& transfers);
2015-05-27 12:08:46 +00:00
struct PaymentItem {
std::string paymentId;
2015-07-30 15:22:07 +00:00
size_t transactionId;
bool confirmed;
2015-05-27 12:08:46 +00:00
};
2015-07-30 15:22:07 +00:00
typedef boost::multi_index::hashed_unique<BOOST_MULTI_INDEX_MEMBER(PaymentItem, size_t, transactionId)> TxIdIndex;
2015-05-27 12:08:46 +00:00
typedef boost::multi_index::hashed_non_unique<BOOST_MULTI_INDEX_MEMBER(PaymentItem, std::string, paymentId)> PaymentIndex;
typedef boost::multi_index::multi_index_container<
PaymentItem,
boost::multi_index::indexed_by<
TxIdIndex,
PaymentIndex
>
> PaymentsContainer;
2015-07-30 15:22:07 +00:00
std::unique_ptr<CryptoNote::IWallet > wallet;
2015-05-27 12:08:46 +00:00
CryptoNote::INode* node;
2015-07-30 15:22:07 +00:00
const WalletConfiguration& config;
2015-05-27 12:08:46 +00:00
bool inited;
Logging::LoggerRef logger;
2015-07-30 15:22:07 +00:00
std::vector<size_t> transfersIndices;
System::Dispatcher& dispatcher;
System::ContextGroup refreshContext;
2015-05-27 12:08:46 +00:00
PaymentsContainer paymentsCache;
PaymentsContainer::nth_index<0>::type& txIdIndex;
PaymentsContainer::nth_index<1>::type& paymentIdIndex;
};
} //namespace PaymentService