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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
#include "mainwindow.h"
#include "iconmanager.h"
#include "dbtree/dbtreeitem.h"
#include "datagrid/sqlquerymodelcolumn.h"
#include "datagrid/sqlquerymodel.h"
#include "sqleditor.h"
#include "windows/editorwindow.h"
#include "windows/tablewindow.h"
#include "windows/viewwindow.h"
#include "dataview.h"
#include "dbtree/dbtree.h"
#include "multieditor/multieditordatetime.h"
#include "multieditor/multieditortime.h"
#include "multieditor/multieditordate.h"
#include "multieditor/multieditorbool.h"
#include "uidebug.h"
#include "completionhelper.h"
#include "services/updatemanager.h"
#include "guiSQLiteStudio_global.h"
#include "log.h"
#include "qio.h"
#include "translations.h"
#include "dialogs/languagedialog.h"
#include "dialogs/triggerdialog.h"
#include "services/pluginmanager.h"
#include "singleapplication/singleapplication.h"
#include "services/impl/configimpl.h"
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QApplication>
#include <QSplashScreen>
#include <QThread>
#include <QPluginLoader>
#include <QDebug>
#include <QMessageBox>
#include <QProcess>
#include <QFileDialog>
#include <QSettings>
#ifdef Q_OS_WIN
# include <windef.h>
# include <windows.h>
#endif
static bool listPlugins = false;
QString uiHandleCmdLineArgs(bool applyOptions = true)
{
QCommandLineParser parser;
parser.setApplicationDescription(QObject::tr("GUI interface to SQLiteStudio, a SQLite manager."));
parser.addHelpOption();
parser.addVersionOption();
QCommandLineOption debugOption({"d", "debug"}, QObject::tr("Enables debug messages in console (accessible with F12)."));
QCommandLineOption debugStdOutOption("debug-stdout", QObject::tr("Redirects debug messages into standard output (forces debug mode)."));
QCommandLineOption debugFileOption("debug-file", QObject::tr("Redirects debug messages into given file (forces debug mode)."), QObject::tr("log file"));
QCommandLineOption lemonDebugOption("debug-lemon", QObject::tr("Enables Lemon parser debug messages for SQL code assistant."));
QCommandLineOption sqlDebugOption("debug-sql", QObject::tr("Enables debugging of every single SQL query being sent to any database."));
QCommandLineOption sqlDebugDbNameOption("debug-sql-db", QObject::tr("Limits SQL query messages to only the given <database>."), QObject::tr("database"));
QCommandLineOption executorDebugOption("debug-query-executor", QObject::tr("Enables debugging of SQLiteStudio's query executor."));
QCommandLineOption listPluginsOption("list-plugins", QObject::tr("Lists plugins installed in the SQLiteStudio and quits."));
QCommandLineOption masterConfigOption("master-config", QObject::tr("Points to the master configuration file. Read manual at wiki page for more details."), QObject::tr("SQLiteStudio settings file"));
parser.addOption(debugOption);
parser.addOption(debugStdOutOption);
parser.addOption(debugFileOption);
parser.addOption(lemonDebugOption);
parser.addOption(sqlDebugOption);
parser.addOption(sqlDebugDbNameOption);
parser.addOption(executorDebugOption);
parser.addOption(masterConfigOption);
parser.addOption(listPluginsOption);
parser.addPositionalArgument(QObject::tr("file"), QObject::tr("Database file to open"));
parser.process(qApp->arguments());
if (applyOptions)
{
bool enableDebug = parser.isSet(debugOption) || parser.isSet(debugStdOutOption) || parser.isSet(sqlDebugOption) || parser.isSet(debugFileOption);
setUiDebug(enableDebug, !parser.isSet(debugStdOutOption), parser.value(debugFileOption));
CompletionHelper::enableLemonDebug = parser.isSet(lemonDebugOption);
setSqlLoggingEnabled(parser.isSet(sqlDebugOption));
setExecutorLoggingEnabled(parser.isSet(executorDebugOption));
if (parser.isSet(sqlDebugDbNameOption))
setSqlLoggingFilter(parser.value(sqlDebugDbNameOption));
if (parser.isSet(listPluginsOption))
listPlugins = true;
if (parser.isSet(masterConfigOption))
Config::setMasterConfigFile(parser.value(masterConfigOption));
}
QStringList args = parser.positionalArguments();
if (args.size() > 0)
return args[0];
return QString();
}
void initHighDpi()
{
if (qgetenv("QT_ENABLE_HIGHDPI_SCALING").isEmpty() && qgetenv("QT_AUTO_SCREEN_SCALE_FACTOR").isEmpty())
{
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
}
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) && defined(Q_OS_WIN)
if (qgetenv("QT_SCALE_FACTOR_ROUNDING_POLICY").isEmpty())
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
#endif
}
bool shouldAllowMultipleSessions()
{
QVariant allowMultipleSessionsValue = Config::getSettings()->value(MainWindow::ALLOW_MULTIPLE_SESSIONS_SETTING);
return allowMultipleSessionsValue.isValid() && allowMultipleSessionsValue.toBool();
}
int main(int argc, char *argv[])
{
initHighDpi();
QCoreApplication::setApplicationName("SQLiteStudio");
QCoreApplication::setOrganizationName("SalSoft");
QCoreApplication::setApplicationVersion(SQLITESTUDIO->getVersionString());
SingleApplication a(argc, argv, true, SingleApplication::ExcludeAppPath|SingleApplication::ExcludeAppVersion|SingleApplication::User);
if (!shouldAllowMultipleSessions() && a.isSecondary()) {
#ifdef Q_OS_WIN
AllowSetForegroundWindow(DWORD( a.primaryPid()));
#endif
QString dbToOpen = uiHandleCmdLineArgs();
a.sendMessage(serializeToBytes(dbToOpen));
return 0;
}
qInstallMessageHandler(uiMessageHandler);
Config::setAskUserForConfigDirFunc([]() -> QString
{
return QFileDialog::getExistingDirectory(nullptr, QObject::tr("Select configuration directory"), QString(), QFileDialog::ShowDirsOnly);
});
QString dbToOpen = uiHandleCmdLineArgs();
DbTreeItem::initMeta();
SqlQueryModelColumn::initMeta();
SqlQueryModel::staticInit();
SQLITESTUDIO->setInitialTranslationFiles({"coreSQLiteStudio", "guiSQLiteStudio", "sqlitestudio"});
SQLITESTUDIO->init(a.arguments(), true);
IconManager::getInstance()->init();
DbTree::staticInit();
DataView::staticInit();
EditorWindow::staticInit();
TableWindow::staticInit();
ViewWindow::staticInit();
MultiEditorDateTime::staticInit();
MultiEditorTime::staticInit();
MultiEditorDate::staticInit();
MultiEditorBool::staticInit();
TriggerDialog::staticInit();
SqlEditor::staticInit();
MainWindow* mainWin = MAINWINDOW;
QObject::connect(&a, &SingleApplication::receivedMessage, mainWin, &MainWindow::messageFromSecondaryInstance);
SQLITESTUDIO->initPlugins();
if (listPlugins)
{
for (const PluginManager::PluginDetails& details : PLUGINS->getAllPluginDetails())
qOut << details.name << " " << details.versionString << "\n";
return 0;
}
IconManager::getInstance()->rescanResources();
if (!LanguageDialog::didAskForDefaultLanguage() && !SQLITESTUDIO->getConfig()->isInMemory())
{
LanguageDialog::askedForDefaultLanguage();
QMap<QString, QString> langs = getAvailableLanguages();
LanguageDialog dialog;
dialog.setLanguages(langs);
dialog.setSelectedLang(getConfigLanguageDefault());
if (dialog.exec() == QDialog::Accepted)
setDefaultLanguage(dialog.getSelectedLang());
QProcess::startDetached(qApp->arguments().at(0), qApp->arguments().mid(1));
return 0;
}
// Shortcuts titles needs to be retranslated, because their titles were set initially in global scope,
// while translation files were not loaded yet. Now they are.
ExtActionContainer::refreshShortcutTranslations();
MainWindow::getInstance()->restoreSession();
MainWindow::getInstance()->show();
if (!dbToOpen.isNull())
MainWindow::getInstance()->openDb(dbToOpen);
#ifdef PORTABLE_CONFIG
UPDATES->checkForUpdates();
#endif
return a.exec();
}
|