2023-12-18 05:21:39 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2022-05-13 13:12:05 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2016-01-04 16:13:08 +00:00
|
|
|
|
2020-10-31 13:11:17 +00:00
|
|
|
#include <QtCore>
|
2016-01-04 16:13:08 +00:00
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QSqlDatabase>
|
|
|
|
#include <QSqlError>
|
|
|
|
#include <QtQml>
|
|
|
|
|
|
|
|
static void connectToDatabase()
|
|
|
|
{
|
|
|
|
QSqlDatabase database = QSqlDatabase::database();
|
|
|
|
if (!database.isValid()) {
|
|
|
|
database = QSqlDatabase::addDatabase("QSQLITE");
|
|
|
|
if (!database.isValid())
|
|
|
|
qFatal("Cannot add database: %s", qPrintable(database.lastError().text()));
|
|
|
|
}
|
|
|
|
|
|
|
|
const QDir writeDir = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
|
|
|
if (!writeDir.mkpath("."))
|
|
|
|
qFatal("Failed to create writable directory at %s", qPrintable(writeDir.absolutePath()));
|
|
|
|
|
|
|
|
// Ensure that we have a writable location on all devices.
|
|
|
|
const QString fileName = writeDir.absolutePath() + "/chat-database.sqlite3";
|
|
|
|
// When using the SQLite driver, open() will create the SQLite database if it doesn't exist.
|
|
|
|
database.setDatabaseName(fileName);
|
|
|
|
if (!database.open()) {
|
|
|
|
qFatal("Cannot open database: %s", qPrintable(database.lastError().text()));
|
|
|
|
QFile::remove(fileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
|
|
|
|
connectToDatabase();
|
|
|
|
|
|
|
|
QQmlApplicationEngine engine;
|
2023-12-18 05:21:39 +00:00
|
|
|
engine.loadFromModule("chattutorial", "Main");
|
2016-01-04 16:13:08 +00:00
|
|
|
if (engine.rootObjects().isEmpty())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|