-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathmain.cpp
More file actions
171 lines (164 loc) · 5.83 KB
/
main.cpp
File metadata and controls
171 lines (164 loc) · 5.83 KB
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
#include "UI/mainwindow.h"
#include <QApplication>
#include <QMessageBox>
#include <QLocalSocket>
#include <QLocalServer>
#include <QElapsedTimer>
#include "globalobjects.h"
#include "Play/Playlist/playlist.h"
#include "Play/playcontext.h"
#include "Extension/App/appmanager.h"
#include "Common/logger.h"
#ifdef KSERVICE
#include "Service/kservice.h"
#else
#include "Common/kstats.h"
#endif
#ifdef Q_OS_WIN
#include <Windows.h>
#include <DbgHelp.h>
#pragma comment (lib,"DbgHelp.lib")
LONG AppCrashHandler(EXCEPTION_POINTERS *pException)
{
HANDLE hDumpFile = CreateFile((LPCWSTR)(QCoreApplication::applicationDirPath() + QDateTime::currentDateTime().toString("\\yyyy-MM-dd-hh-mm-ss")+".dmp").utf16(), GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (hDumpFile != INVALID_HANDLE_VALUE)
{
MINIDUMP_EXCEPTION_INFORMATION dumpInfo;
dumpInfo.ExceptionPointers = pException;
dumpInfo.ThreadId = GetCurrentThreadId();
dumpInfo.ClientPointers = TRUE;
MiniDumpWriteDump(GetCurrentProcess(), GetCurrentProcessId(), hDumpFile, MiniDumpNormal, &dumpInfo, NULL, NULL);
}
EXCEPTION_RECORD* record = pException->ExceptionRecord;
QString errCode(QString::number(record->ExceptionCode, 16)), errAdr(QString::number((uint)record->ExceptionAddress, 16)), errMod;
QMessageBox::critical(nullptr, "Error", QString("Error Code: %1 Error Address: %2").arg(errCode).arg(errAdr),QMessageBox::Ok);
return EXCEPTION_EXECUTE_HANDLER;
}
#endif
bool decodeParam(const QStringList &args, bool passMode = false)
{
if (args.empty()) return false;
QCommandLineParser parser;
QCommandLineOption titleOption("title", "Playlist Item titles", "title");
parser.addOption(titleOption);
parser.process(args);
const QStringList urlList = parser.positionalArguments();
QStringList itemTitles = parser.values(titleOption);
Logger::logger()->log(Logger::APP, "args: " + args.join(" "));
if (!urlList.empty())
{
if (GlobalObjects::playlist->isAddExternal())
{
QHash<QString, QString> titleMapping;
if (!itemTitles.empty())
{
for (int i = 0; i < urlList.size() && i < itemTitles.size(); ++i)
{
titleMapping[urlList[i]] = itemTitles[i];
}
}
GlobalObjects::playlist->addURL(urlList, QModelIndex(), false, &titleMapping);
const PlayListItem *curItem = GlobalObjects::playlist->setCurrentItem(urlList.last());
if (curItem)
{
PlayContext::context()->playItem(curItem);
}
}
else
{
PlayContext::context()->playURL(urlList.last());
}
return true;
}
return false;
}
bool isRunning()
{
QLocalSocket socket;
socket.connectToServer("KikoPlaySingleServer");
if (socket.waitForConnected())
{
QStringList args = QCoreApplication::arguments();
if (!args.empty())
{
QByteArray data;
QDataStream s(&data, QIODevice::WriteOnly);
s << args;
socket.write(data);
socket.waitForBytesWritten();
}
return true;
}
return false;
}
int main(int argc, char *argv[])
{
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough);
#else
qputenv("QT_SCALE_FACTOR", "1.5");
#endif
#endif
QElapsedTimer timer;
timer.start();
QApplication a(argc, argv);
a.setApplicationName("KikoPlay");
a.setWindowIcon(QIcon(":/res/images/app.png"));
#ifdef Q_OS_WIN
SetUnhandledExceptionFilter((LPTOP_LEVEL_EXCEPTION_FILTER)AppCrashHandler);
#endif
if(isRunning()) return 0;
GlobalObjects::context()->tick(&timer, "app");
GlobalObjects::init(&timer);
MainWindow w;
GlobalObjects::mainWindow = &w;
GlobalObjects::context()->devicePixelRatioF = w.devicePixelRatioF();
QLocalServer *singleServer=new QLocalServer(&a);
QObject::connect(singleServer, &QLocalServer::newConnection, [singleServer,&w](){
QLocalSocket *localSocket = singleServer->nextPendingConnection();
localSocket->waitForReadyRead();
QByteArray data(localSocket->readAll());
QStringList args;
QDataStream s(data);
s >> args;
decodeParam(args, true);
w.raise();
w.activateWindow();
w.setWindowState((w.windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
w.show();
});
if (!singleServer->listen("KikoPlaySingleServer"))
{
if (singleServer->serverError() == QAbstractSocket::AddressInUseError)
{
QLocalServer::removeServer("KikoPlaySingleServer");
singleServer->listen("KikoPlaySingleServer");
}
}
w.raise();
w.activateWindow();
w.show();
GlobalObjects::context()->tick(&timer, "ui");
if (decodeParam(QCoreApplication::arguments())) GlobalObjects::context()->hasStartupArgs = true;
QTimer::singleShot(100, [](){
GlobalObjects::appManager->autoStart();
});
GlobalObjects::context()->startupTime += timer.elapsed();
Logger::logger()->log(Logger::APP, QString("startup time: %1ms").arg(GlobalObjects::context()->startupTime));
QStringList stepTimes{"step time: "};
for (auto &p : GlobalObjects::context()->stepTime)
{
stepTimes.append(QString("%1:\t%2").arg(p.first, -10).arg(p.second));
}
Logger::logger()->log(Logger::APP, stepTimes.join('\n'));
Logger::logger()->log(Logger::APP, QString::asprintf("main thread: %p", QCoreApplication::instance()->thread()));
#ifdef KSERVICE
KService::instance();
#else
KStats::instance();
#endif
return a.exec();
}