2017-04-17 19:55:43 +02:00
|
|
|
// Copyright (c) 2018 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <interface/node.h>
|
|
|
|
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <init.h>
|
|
|
|
#include <interface/handler.h>
|
2017-04-17 20:23:14 +02:00
|
|
|
#include <net.h>
|
|
|
|
#include <netaddress.h>
|
|
|
|
#include <netbase.h>
|
2017-04-17 19:55:43 +02:00
|
|
|
#include <scheduler.h>
|
|
|
|
#include <ui_interface.h>
|
|
|
|
#include <util.h>
|
|
|
|
#include <warnings.h>
|
|
|
|
|
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
|
|
|
|
namespace interface {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class NodeImpl : public Node
|
|
|
|
{
|
|
|
|
void parseParameters(int argc, const char* const argv[]) override
|
|
|
|
{
|
|
|
|
gArgs.ParseParameters(argc, argv);
|
|
|
|
}
|
|
|
|
void readConfigFile(const std::string& conf_path) override { gArgs.ReadConfigFile(conf_path); }
|
2017-04-17 20:23:14 +02:00
|
|
|
bool softSetArg(const std::string& arg, const std::string& value) override { return gArgs.SoftSetArg(arg, value); }
|
|
|
|
bool softSetBoolArg(const std::string& arg, bool value) override { return gArgs.SoftSetBoolArg(arg, value); }
|
2017-04-17 19:55:43 +02:00
|
|
|
void selectParams(const std::string& network) override { SelectParams(network); }
|
|
|
|
void initLogging() override { InitLogging(); }
|
|
|
|
void initParameterInteraction() override { InitParameterInteraction(); }
|
|
|
|
std::string getWarnings(const std::string& type) override { return GetWarnings(type); }
|
|
|
|
bool baseInitialize() override
|
|
|
|
{
|
|
|
|
return AppInitBasicSetup() && AppInitParameterInteraction() && AppInitSanityChecks() &&
|
|
|
|
AppInitLockDataDirectory();
|
|
|
|
}
|
|
|
|
bool appInitMain() override { return AppInitMain(); }
|
|
|
|
void appShutdown() override
|
|
|
|
{
|
|
|
|
Interrupt();
|
|
|
|
Shutdown();
|
|
|
|
}
|
|
|
|
void startShutdown() override { StartShutdown(); }
|
2017-04-17 20:33:47 +02:00
|
|
|
bool shutdownRequested() override { return ShutdownRequested(); }
|
2017-04-17 20:23:14 +02:00
|
|
|
void mapPort(bool use_upnp) override
|
|
|
|
{
|
|
|
|
if (use_upnp) {
|
|
|
|
StartMapPort();
|
|
|
|
} else {
|
|
|
|
InterruptMapPort();
|
|
|
|
StopMapPort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool getProxy(Network net, proxyType& proxy_info) override { return GetProxy(net, proxy_info); }
|
2017-04-17 19:55:43 +02:00
|
|
|
std::unique_ptr<Handler> handleInitMessage(InitMessageFn fn) override
|
|
|
|
{
|
|
|
|
return MakeHandler(::uiInterface.InitMessage.connect(fn));
|
|
|
|
}
|
2017-04-17 20:33:47 +02:00
|
|
|
std::unique_ptr<Handler> handleMessageBox(MessageBoxFn fn) override
|
|
|
|
{
|
|
|
|
return MakeHandler(::uiInterface.ThreadSafeMessageBox.connect(fn));
|
|
|
|
}
|
|
|
|
std::unique_ptr<Handler> handleQuestion(QuestionFn fn) override
|
|
|
|
{
|
|
|
|
return MakeHandler(::uiInterface.ThreadSafeQuestion.connect(fn));
|
|
|
|
}
|
2017-04-17 19:55:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
std::unique_ptr<Node> MakeNode() { return MakeUnique<NodeImpl>(); }
|
|
|
|
|
|
|
|
} // namespace interface
|