2020-11-14 03:04:17 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* main.c */
|
|
|
|
#include "core/downloadfromdcthread.h" // for fill_computer_list
|
|
|
|
#include "core/errorhelper.h"
|
|
|
|
#include "core/parse.h"
|
|
|
|
#include "core/qthelper.h"
|
|
|
|
#include "core/subsurfacestartup.h"
|
|
|
|
#include "core/settings/qPref.h"
|
|
|
|
#include "core/tag.h"
|
|
|
|
#include "core/dive.h"
|
2020-11-15 03:22:14 +00:00
|
|
|
#include "core/subsurface-string.h"
|
2020-11-27 20:32:40 +00:00
|
|
|
#include "core/file.h"
|
|
|
|
#include "core/trip.h"
|
2020-12-19 13:05:46 +00:00
|
|
|
#include "core/libdivecomputer.h"
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <git2.h>
|
|
|
|
|
|
|
|
static bool filesOnCommandLine = false;
|
|
|
|
static void messageHandler(QtMsgType type, const QMessageLogContext &ctx, const QString &msg);
|
2020-11-15 21:12:21 +00:00
|
|
|
extern void cliDownloader(const char *vendor, const char *product, const char *device);
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
qInstallMessageHandler(messageHandler);
|
|
|
|
// we always run this in verbose mode as there is no UI
|
|
|
|
verbose = 1;
|
|
|
|
|
|
|
|
// now let's say Hi
|
|
|
|
print_version();
|
|
|
|
|
|
|
|
// supporting BT makes sense when used with an iPhone and an rfcomm BT device?
|
|
|
|
QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true"));
|
|
|
|
|
|
|
|
int i;
|
|
|
|
bool no_filenames = true;
|
2020-11-16 12:05:06 +00:00
|
|
|
std::unique_ptr<QCoreApplication> app(new QCoreApplication(argc, argv));
|
2020-11-14 03:04:17 +00:00
|
|
|
QStringList files;
|
|
|
|
QStringList importedFiles;
|
|
|
|
QStringList arguments = QCoreApplication::arguments();
|
2020-11-27 20:32:40 +00:00
|
|
|
struct dive_table dive_table = empty_dive_table;
|
|
|
|
struct dive_site_table sites = empty_dive_site_table;
|
|
|
|
struct device_table devices;
|
|
|
|
struct filter_preset_table presets;
|
|
|
|
|
2020-12-03 00:27:35 +00:00
|
|
|
// set a default logfile name for libdivecomputer so we always get a logfile
|
|
|
|
logfile_name = "subsurface-downloader.log";
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
const char *default_directory = system_default_directory();
|
|
|
|
const char *default_filename = system_default_filename();
|
|
|
|
subsurface_mkdir(default_directory);
|
|
|
|
|
|
|
|
if (subsurface_user_is_root() && !force_root) {
|
|
|
|
printf("You are running Subsurface as root. This is not recommended.\n");
|
|
|
|
printf("If you insist to do so, run with option --allow_run_as_root.\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
git_libgit2_init();
|
|
|
|
setup_system_prefs();
|
|
|
|
copy_prefs(&default_prefs, &prefs);
|
|
|
|
|
|
|
|
// now handle the arguments
|
2020-11-15 21:12:21 +00:00
|
|
|
fill_computer_list();
|
2020-11-14 03:04:17 +00:00
|
|
|
for (i = 1; i < arguments.length(); i++) {
|
|
|
|
QString a = arguments.at(i);
|
|
|
|
if (a.isEmpty())
|
|
|
|
continue;
|
|
|
|
if (a.at(0) == '-') {
|
|
|
|
parse_argument(qPrintable(a));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (imported) {
|
|
|
|
importedFiles.push_back(a);
|
|
|
|
} else {
|
|
|
|
no_filenames = false;
|
|
|
|
files.push_back(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parse_xml_init();
|
|
|
|
taglist_init_global();
|
|
|
|
|
|
|
|
if (no_filenames) {
|
|
|
|
if (prefs.default_file_behavior == LOCAL_DEFAULT_FILE) {
|
|
|
|
QString defaultFile(prefs.default_filename);
|
|
|
|
if (!defaultFile.isEmpty())
|
|
|
|
files.push_back(QString(prefs.default_filename));
|
|
|
|
} else if (prefs.default_file_behavior == CLOUD_DEFAULT_FILE) {
|
|
|
|
QString cloudURL;
|
|
|
|
if (getCloudURL(cloudURL) == 0)
|
|
|
|
files.push_back(cloudURL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
filesOnCommandLine = !files.isEmpty() || !importedFiles.isEmpty();
|
2020-11-27 20:32:40 +00:00
|
|
|
if (!files.isEmpty()) {
|
2020-11-14 03:04:17 +00:00
|
|
|
qDebug() << "loading dive data from" << files;
|
2020-11-27 20:32:40 +00:00
|
|
|
parse_file(qPrintable(files.first()), &dive_table, &trip_table, &sites, &devices, &presets);
|
|
|
|
}
|
2020-11-14 03:04:17 +00:00
|
|
|
print_files();
|
|
|
|
if (!quit) {
|
2020-11-15 03:22:14 +00:00
|
|
|
if (!empty_string(prefs.dive_computer.vendor) && !empty_string(prefs.dive_computer.product) && !empty_string(prefs.dive_computer.device)) {
|
|
|
|
// download from that dive computer
|
|
|
|
printf("Downloading dives from %s %s (via %s)\n", prefs.dive_computer.vendor, prefs.dive_computer.product, prefs.dive_computer.device);
|
2020-11-15 21:12:21 +00:00
|
|
|
cliDownloader(prefs.dive_computer.vendor, prefs.dive_computer.product, prefs.dive_computer.device);
|
2020-11-15 03:22:14 +00:00
|
|
|
}
|
2020-11-14 03:04:17 +00:00
|
|
|
}
|
2020-11-27 20:32:40 +00:00
|
|
|
save_dives(qPrintable(files.first()));
|
2020-11-14 03:04:17 +00:00
|
|
|
taglist_free(g_tag_list);
|
|
|
|
parse_xml_exit();
|
|
|
|
free((void *)default_directory);
|
|
|
|
free((void *)default_filename);
|
|
|
|
|
|
|
|
// Sync struct preferences to disk
|
|
|
|
qPref::sync();
|
|
|
|
|
|
|
|
free_prefs();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// install this message handler primarily so that the Windows build can log to files
|
|
|
|
void messageHandler(QtMsgType type, const QMessageLogContext &, const QString &msg)
|
|
|
|
{
|
|
|
|
QByteArray localMsg = msg.toUtf8();
|
|
|
|
switch (type) {
|
|
|
|
case QtDebugMsg:
|
|
|
|
fprintf(stdout, "%s\n", localMsg.constData());
|
|
|
|
break;
|
|
|
|
case QtInfoMsg:
|
|
|
|
fprintf(stdout, "%s\n", localMsg.constData());
|
|
|
|
break;
|
|
|
|
case QtWarningMsg:
|
|
|
|
fprintf(stderr, "%s\n", localMsg.constData());
|
|
|
|
break;
|
|
|
|
case QtCriticalMsg:
|
|
|
|
fprintf(stderr, "%s\n", localMsg.constData());
|
|
|
|
break;
|
|
|
|
case QtFatalMsg:
|
|
|
|
fprintf(stderr, "%s\n", localMsg.constData());
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|