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"
|
core: introduce divelog structure
The parser API was very annoying, as a number of tables
to-be-filled were passed in as pointers. The goal of this
commit is to collect all these tables in a single struct.
This should make it (more or less) clear what is actually
written into the divelog files.
Moreover, it should now be rather easy to search for
instances, where the global logfile is accessed (and it
turns out that there are many!).
The divelog struct does not contain the tables as substructs,
but only collects pointers. The idea is that the "divelog.h"
file can be included without all the other files describing
the numerous tables.
To make it easier to use from C++ parts of the code, the
struct implements a constructor and a destructor. Sadly,
we can't use smart pointers, since the pointers are accessed
from C code. Therfore the constructor and destructor are
quite complex.
The whole commit is large, but was mostly an automatic
conversion.
One oddity of note: the divelog structure also contains
the "autogroup" flag, since that is saved in the divelog.
This actually fixes a bug: Before, when importing dives
from a different log, the autogroup flag was overwritten.
This was probably not intended and does not happen anymore.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2022-11-08 20:31:08 +00:00
|
|
|
#include "core/divelog.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"
|
2024-01-28 14:24:48 +00:00
|
|
|
#include "commands/command.h"
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <git2.h>
|
|
|
|
|
|
|
|
static void messageHandler(QtMsgType type, const QMessageLogContext &ctx, const QString &msg);
|
2024-06-13 20:59:32 +00:00
|
|
|
extern void cliDownloader(const std::string &vendor, const std::string &product, const std::string &device);
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2024-01-28 14:24:48 +00:00
|
|
|
Command::init();
|
2020-11-14 03:04:17 +00:00
|
|
|
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"));
|
|
|
|
|
|
|
|
bool no_filenames = true;
|
2020-11-16 12:05:06 +00:00
|
|
|
std::unique_ptr<QCoreApplication> app(new QCoreApplication(argc, argv));
|
2024-03-25 09:58:27 +00:00
|
|
|
std::vector<std::string> files;
|
|
|
|
std::vector<std::string> importedFiles;
|
2020-11-14 03:04:17 +00:00
|
|
|
QStringList arguments = QCoreApplication::arguments();
|
2020-11-27 20:32:40 +00:00
|
|
|
|
2020-12-03 00:27:35 +00:00
|
|
|
// set a default logfile name for libdivecomputer so we always get a logfile
|
2024-05-28 21:14:10 +00:00
|
|
|
logfile_name = "subsurface-downloader.log";
|
2020-11-14 03:04:17 +00:00
|
|
|
|
2024-06-13 20:59:32 +00:00
|
|
|
subsurface_mkdir(system_default_directory().c_str());
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
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();
|
2024-06-13 20:59:32 +00:00
|
|
|
prefs = default_prefs;
|
2020-11-14 03:04:17 +00:00
|
|
|
|
|
|
|
// now handle the arguments
|
2020-11-15 21:12:21 +00:00
|
|
|
fill_computer_list();
|
2024-03-25 09:58:27 +00:00
|
|
|
for (int i = 1; i < arguments.length(); i++) {
|
|
|
|
std::string a = arguments[i].toStdString();
|
|
|
|
if (a.empty())
|
2020-11-14 03:04:17 +00:00
|
|
|
continue;
|
2024-03-25 09:58:27 +00:00
|
|
|
if (a[0] == '-') {
|
|
|
|
parse_argument(a.c_str());
|
2020-11-14 03:04:17 +00:00
|
|
|
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) {
|
2024-06-13 20:59:32 +00:00
|
|
|
if (!prefs.default_filename.empty())
|
|
|
|
files.emplace_back(prefs.default_filename.c_str());
|
2020-11-14 03:04:17 +00:00
|
|
|
} else if (prefs.default_file_behavior == CLOUD_DEFAULT_FILE) {
|
2024-03-24 21:05:28 +00:00
|
|
|
auto cloudURL = getCloudURL();
|
|
|
|
if (cloudURL)
|
2024-03-25 09:58:27 +00:00
|
|
|
files.emplace_back(*cloudURL);
|
2020-11-14 03:04:17 +00:00
|
|
|
}
|
|
|
|
}
|
2024-03-25 09:58:27 +00:00
|
|
|
if (!files.empty()) {
|
|
|
|
report_info("loading dive data from %s", join(files, ", ").c_str());
|
|
|
|
if (parse_file(files.front().c_str(), &divelog) < 0) {
|
|
|
|
printf("Failed to load dives from file '%s', aborting.\n", files.front().c_str());
|
2024-01-27 14:14:12 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2020-11-27 20:32:40 +00:00
|
|
|
}
|
2020-11-14 03:04:17 +00:00
|
|
|
print_files();
|
|
|
|
if (!quit) {
|
2024-06-13 20:59:32 +00:00
|
|
|
if (!prefs.dive_computer.vendor.empty() && !prefs.dive_computer.product.empty() && !prefs.dive_computer.device.empty()) {
|
2020-11-15 03:22:14 +00:00
|
|
|
// download from that dive computer
|
2024-06-13 20:59:32 +00:00
|
|
|
printf("Downloading dives from %s %s (via %s)\n", prefs.dive_computer.vendor.c_str(),
|
|
|
|
prefs.dive_computer.product.c_str(), prefs.dive_computer.device.c_str());
|
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
|
|
|
}
|
2024-03-25 09:58:27 +00:00
|
|
|
if (!files.empty()) {
|
|
|
|
report_info("saving dive data to %s", join(files, ", ").c_str());
|
|
|
|
save_dives(files.front().c_str());
|
|
|
|
} else {
|
2024-01-23 14:59:59 +00:00
|
|
|
printf("No log files given, not saving dive data.\n");
|
|
|
|
printf("Give a log file name as argument, or configure a cloud URL.\n");
|
|
|
|
}
|
2020-11-14 03:04:17 +00:00
|
|
|
parse_xml_exit();
|
|
|
|
|
|
|
|
// Sync struct preferences to disk
|
|
|
|
qPref::sync();
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|