2018-02-17 14:29:54 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of the Flowee project
|
|
|
|
|
* Copyright (C) 2018 Tom Zander <tomz@freedommail.ch>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
#include <NetworkManager.h>
|
|
|
|
|
|
|
|
|
|
#include "NetworkPaymentProcessor.h"
|
|
|
|
|
|
|
|
|
|
#include <WorkerThreads.h>
|
|
|
|
|
#include <Logger.h>
|
2019-05-07 20:54:26 +02:00
|
|
|
#include <FloweeServiceApplication.h>
|
2018-02-17 14:29:54 +01:00
|
|
|
|
|
|
|
|
#include <boost/asio/ip/address_v4.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int x, char **y)
|
|
|
|
|
{
|
2019-05-07 20:54:26 +02:00
|
|
|
FloweeServiceApplication app(x, y);
|
2018-02-21 18:46:54 +01:00
|
|
|
app.setOrganizationName("flowee");
|
2018-02-17 14:29:54 +01:00
|
|
|
app.setOrganizationDomain("flowee.org");
|
|
|
|
|
app.setApplicationName("pos");
|
|
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
|
parser.addPositionalArgument("[address]", "Addresses to listen to");
|
2019-05-13 11:41:18 +02:00
|
|
|
parser.addHelpOption();
|
2019-05-07 20:54:26 +02:00
|
|
|
app.addClientOptions(parser);
|
|
|
|
|
parser.process(app.arguments());
|
|
|
|
|
app.setup();
|
2018-02-17 14:29:54 +01:00
|
|
|
|
|
|
|
|
auto args = parser.positionalArguments();
|
2018-02-18 15:13:08 +01:00
|
|
|
if (args.isEmpty())
|
|
|
|
|
parser.showHelp(1);
|
2019-05-07 20:54:26 +02:00
|
|
|
|
2019-05-09 12:15:34 +02:00
|
|
|
EndPoint ep = app.serverAddressFromArguments(1235);
|
2019-05-07 20:54:26 +02:00
|
|
|
WorkerThreads threads;
|
|
|
|
|
NetworkManager manager(threads.ioService());
|
2018-02-17 14:29:54 +01:00
|
|
|
auto connection = manager.connection(ep);
|
|
|
|
|
assert (connection.isValid());
|
2018-02-17 23:36:00 +01:00
|
|
|
NetworkPaymentProcessor processor(std::move(connection));
|
2018-02-17 14:29:54 +01:00
|
|
|
for (auto add: args) {
|
|
|
|
|
processor.addListenAddress(add);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
|
}
|