mirror of
https://github.com/boldsuck/haveno.git
synced 2025-01-24 16:45:51 +00:00
93 lines
2.5 KiB
Java
93 lines
2.5 KiB
Java
/*
|
|
* This file is part of Haveno.
|
|
*
|
|
* Haveno is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or (at
|
|
* your option) any later version.
|
|
*
|
|
* Haveno 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 Affero General Public
|
|
* License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Haveno. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package bisq.statistics;
|
|
|
|
import bisq.core.app.misc.ExecutableForAppWithP2p;
|
|
import bisq.core.app.misc.ModuleForAppWithP2p;
|
|
|
|
import bisq.common.UserThread;
|
|
import bisq.common.app.AppModule;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
@Slf4j
|
|
public class StatisticsMain extends ExecutableForAppWithP2p {
|
|
private static final String VERSION = "1.0.1";
|
|
private Statistics statistics;
|
|
|
|
public StatisticsMain() {
|
|
super("Bisq Statsnode", "bisq-statistics", "bisq_statistics", VERSION);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
log.info("Statistics.VERSION: " + VERSION);
|
|
new StatisticsMain().execute(args);
|
|
}
|
|
|
|
@Override
|
|
protected void doExecute() {
|
|
super.doExecute();
|
|
|
|
checkMemory(config, this);
|
|
|
|
keepRunning();
|
|
}
|
|
|
|
@Override
|
|
protected void addCapabilities() {
|
|
}
|
|
|
|
@Override
|
|
protected void launchApplication() {
|
|
UserThread.execute(() -> {
|
|
try {
|
|
statistics = new Statistics();
|
|
UserThread.execute(this::onApplicationLaunched);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
protected void onApplicationLaunched() {
|
|
super.onApplicationLaunched();
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
// We continue with a series of synchronous execution tasks
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
@Override
|
|
protected AppModule getModule() {
|
|
return new ModuleForAppWithP2p(config);
|
|
}
|
|
|
|
@Override
|
|
protected void applyInjector() {
|
|
super.applyInjector();
|
|
|
|
statistics.setInjector(injector);
|
|
}
|
|
|
|
@Override
|
|
protected void startApplication() {
|
|
statistics.startApplication();
|
|
}
|
|
}
|