forked from mardy/subsurface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
export-html.cpp
75 lines (63 loc) · 1.92 KB
/
export-html.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* Dirk Hohndel, 2015 */
#include <QString>
#include <QCommandLineParser>
#include <QDebug>
#include "qt-gui.h"
#include "dive.h"
#include "save-html.h"
#include "stdio.h"
#include "git2.h"
#include "subsurfacestartup.h"
#include "divelogexportlogic.h"
#include "windowtitleupdate.h"
#include "statistics.h"
QTranslator *qtTranslator, *ssrfTranslator;
int main(int argc, char **argv)
{
QApplication *application = new QApplication(argc, argv);
git_libgit2_init();
copy_prefs(&default_prefs, &prefs);
init_qt_late();
QCommandLineParser parser;
QCommandLineOption sourceDirectoryOption(QStringList() << "s" << "source",
"Read git repository from <directory>",
"directory");
parser.addOption(sourceDirectoryOption);
QCommandLineOption outputDirectoryOption(QStringList() << "u" << "output",
"Write HTML files into <directory>",
"directory");
parser.addOption(outputDirectoryOption);
parser.process(*application);
QString source = parser.value(sourceDirectoryOption);
QString output = parser.value(outputDirectoryOption);
if (source.isEmpty() || output.isEmpty()) {
qDebug() << "need --source and --output";
exit(1);
}
WindowTitleUpdate *wtu = new WindowTitleUpdate();
int ret = parse_file(qPrintable(source));
if (ret) {
fprintf(stderr, "parse_file returned %d\n", ret);
exit(1);
}
// this should have set up the informational preferences - let's grab
// the units from there
prefs.unit_system = informational_prefs.unit_system;
prefs.units = informational_prefs.units;
// populate the statistics
struct dive *d = get_dive(0);
struct dive *pd;
if (d) {
process_all_dives(d, &pd);
}
// now set up the export settings to create the HTML export
struct htmlExportSetting hes;
hes.themeFile = "sand.css";
hes.exportPhotos = true;
hes.selectedOnly = false;
hes.listOnly = false;
hes.yearlyStatistics = true;
hes.subsurfaceNumbers = true;
exportHtmlInitLogic(output, hes);
exit(0);
}