main.cpp 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. #include <locale.h>
  2. #include <QGuiApplication>
  3. #include <QApplication>
  4. #include <QFileInfo>
  5. #include <QIcon>
  6. #include <QtQml>
  7. #include <QtWebEngine/qtwebengineglobal.h>
  8. #include <QErrorMessage>
  9. #include <QCommandLineOption>
  10. #include "shared/Names.h"
  11. #include "system/SystemComponent.h"
  12. #include "system/UpdateManager.h"
  13. #include "system/UpdaterComponent.h"
  14. #include "QsLog.h"
  15. #include "Paths.h"
  16. #include "player/CodecsComponent.h"
  17. #include "player/PlayerComponent.h"
  18. #include "player/OpenGLDetect.h"
  19. #include "breakpad/CrashDumps.h"
  20. #include "Version.h"
  21. #include "settings/SettingsComponent.h"
  22. #include "settings/SettingsSection.h"
  23. #include "ui/KonvergoWindow.h"
  24. #include "ui/KonvergoWindow.h"
  25. #include "Globals.h"
  26. #include "ui/ErrorMessage.h"
  27. #include "UniqueApplication.h"
  28. #include "utils/HelperLauncher.h"
  29. #include "utils/Log.h"
  30. #ifdef Q_OS_MAC
  31. #include "PFMoveApplication.h"
  32. #endif
  33. #if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
  34. #include "SignalManager.h"
  35. #endif
  36. /////////////////////////////////////////////////////////////////////////////////////////
  37. static void preinitQt()
  38. {
  39. QCoreApplication::setApplicationName(Names::MainName());
  40. QCoreApplication::setApplicationVersion(Version::GetVersionString());
  41. QCoreApplication::setOrganizationDomain("plex.tv");
  42. #ifdef Q_OS_WIN32
  43. QVariant useOpengl = SettingsComponent::readPreinitValue(SETTINGS_SECTION_MAIN, "useOpenGL");
  44. // Warning: this must be the same as the default value as declared in
  45. // the settings_description.json file, or confusion will result.
  46. if (useOpengl.type() != QMetaType::Bool)
  47. useOpengl = false;
  48. if (useOpengl.toBool())
  49. QCoreApplication::setAttribute(Qt::AA_UseDesktopOpenGL);
  50. else
  51. QCoreApplication::setAttribute(Qt::AA_UseOpenGLES);
  52. #endif
  53. }
  54. /////////////////////////////////////////////////////////////////////////////////////////
  55. char** appendCommandLineArguments(int argc, char **argv, const QStringList& args)
  56. {
  57. size_t newSize = (argc + args.length() + 1) * sizeof(char*);
  58. char** newArgv = (char**)calloc(1, newSize);
  59. memcpy(newArgv, argv, (size_t)(argc * sizeof(char*)));
  60. int pos = argc;
  61. for(const QString& str : args)
  62. newArgv[pos++] = qstrdup(str.toUtf8().data());
  63. return newArgv;
  64. }
  65. /////////////////////////////////////////////////////////////////////////////////////////
  66. void ShowLicenseInfo()
  67. {
  68. QFile licenses(":/misc/licenses.txt");
  69. licenses.open(QIODevice::ReadOnly | QIODevice::Text);
  70. QByteArray contents = licenses.readAll();
  71. printf("%.*s\n", contents.size(), contents.data());
  72. }
  73. /////////////////////////////////////////////////////////////////////////////////////////
  74. QStringList g_qtFlags = {"--enable-viewport", "--disable-gpu", "--disable-web-security"};
  75. /////////////////////////////////////////////////////////////////////////////////////////
  76. int main(int argc, char *argv[])
  77. {
  78. try
  79. {
  80. QCommandLineParser parser;
  81. parser.setApplicationDescription("Plex Media Player");
  82. parser.addHelpOption();
  83. parser.addVersionOption();
  84. parser.addOptions({{{"l", "licenses"}, "Show license information"},
  85. {{"a", "from-auto-update"}, "When invoked from auto-update"},
  86. {"desktop", "Start in desktop mode"},
  87. {"tv", "Start in TV mode"},
  88. {"auto-layout", "Use auto-layout mode"},
  89. {"windowed", "Start in windowed mode"},
  90. {"fullscreen", "Start in fullscreen"},
  91. {"no-updates", "Disable auto-updating"},
  92. {"terminal", "Log to terminal"}});
  93. auto scaleOption = QCommandLineOption("scale-factor", "Set to a integer or default auto which controls" \
  94. "the scale (DPI) of the desktop interface.");
  95. scaleOption.setValueName("scale");
  96. scaleOption.setDefaultValue("auto");
  97. parser.addOption(scaleOption);
  98. char **newArgv = appendCommandLineArguments(argc, argv, g_qtFlags);
  99. int newArgc = argc + g_qtFlags.size();
  100. // Suppress SSL related warnings on OSX
  101. // See https://bugreports.qt.io/browse/QTBUG-43173 for more info
  102. //
  103. #ifdef Q_OS_MAC
  104. qputenv("QT_LOGGING_RULES", "qt.network.ssl.warning=false");
  105. #endif
  106. // Qt calls setlocale(LC_ALL, "") in a bunch of places, which breaks
  107. // float/string processing in mpv and ffmpeg.
  108. #ifdef Q_OS_UNIX
  109. qputenv("LC_ALL", "C");
  110. qputenv("LC_NUMERIC", "C");
  111. #endif
  112. preinitQt();
  113. detectOpenGLEarly();
  114. QStringList arguments;
  115. for (int i = 0; i < argc; i++)
  116. arguments << QString::fromLatin1(argv[i]);
  117. {
  118. // This is kinda dumb. But in order for the QCommandLineParser
  119. // to work properly we need to init if before we call process
  120. // but we don't want to do that for the main application since
  121. // we need to set the scale factor before we do that. So it becomes
  122. // a small chicken-or-egg problem, which we "solve" by making
  123. // this temporary console app.
  124. //
  125. QCoreApplication core(newArgc, newArgv);
  126. // Now parse the command line.
  127. parser.process(arguments);
  128. }
  129. if (parser.isSet("licenses"))
  130. {
  131. ShowLicenseInfo();
  132. return EXIT_SUCCESS;
  133. }
  134. auto scale = parser.value("scale-factor");
  135. if (scale.isEmpty() || scale == "auto")
  136. QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
  137. else
  138. qputenv("QT_SCALE_FACTOR", scale.toUtf8());
  139. QApplication app(newArgc, newArgv);
  140. app.setWindowIcon(QIcon(":/images/icon.png"));
  141. #if defined(Q_OS_MAC) && defined(NDEBUG)
  142. PFMoveToApplicationsFolderIfNecessary();
  143. #endif
  144. // init breakpad.
  145. setupCrashDumper();
  146. UniqueApplication* uniqueApp = new UniqueApplication();
  147. if (!uniqueApp->ensureUnique())
  148. return EXIT_SUCCESS;
  149. #ifdef Q_OS_UNIX
  150. // install signals handlers for proper app closing.
  151. SignalManager signalManager(&app);
  152. Q_UNUSED(signalManager);
  153. #endif
  154. Log::Init();
  155. if (parser.isSet("terminal"))
  156. Log::EnableTerminalOutput();
  157. // Quit app and apply update if we find one.
  158. if (!parser.isSet("no-updates") && UpdateManager::CheckForUpdates())
  159. {
  160. app.quit();
  161. return 0;
  162. }
  163. detectOpenGLLate();
  164. Codecs::preinitCodecs();
  165. // Initialize all the components. This needs to be done
  166. // early since most everything else relies on it
  167. //
  168. ComponentManager::Get().initialize();
  169. if (parser.isSet("no-updates"))
  170. UpdaterComponent::Get().disable();
  171. SettingsComponent::Get().setCommandLineValues(parser.optionNames());
  172. // enable remote inspection if we have the correct setting for it.
  173. if (SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "remoteInspector").toBool())
  174. qputenv("QTWEBENGINE_REMOTE_DEBUGGING", "0.0.0.0:9992");
  175. QtWebEngine::initialize();
  176. // start our helper
  177. #if ENABLE_HELPER
  178. HelperLauncher::Get().connectToHelper();
  179. #endif
  180. // load QtWebChannel so that we can register our components with it.
  181. QQmlApplicationEngine *engine = Globals::Engine();
  182. KonvergoWindow::RegisterClass();
  183. Globals::SetContextProperty("components", &ComponentManager::Get().getQmlPropertyMap());
  184. // the only way to detect if QML parsing fails is to hook to this signal and then see
  185. // if we get a valid object passed to it. Any error messages will be reported on stderr
  186. // but since no normal user should ever see this it should be fine
  187. //
  188. QObject::connect(engine, &QQmlApplicationEngine::objectCreated, [=](QObject* object, const QUrl& url)
  189. {
  190. Q_UNUSED(url);
  191. if (object == nullptr)
  192. throw FatalException(QObject::tr("Failed to parse application engine script."));
  193. KonvergoWindow* window = Globals::MainWindow();
  194. QObject* webChannel = qvariant_cast<QObject*>(window->property("webChannel"));
  195. Q_ASSERT(webChannel);
  196. ComponentManager::Get().setWebChannel(qobject_cast<QWebChannel*>(webChannel));
  197. QObject::connect(uniqueApp, &UniqueApplication::otherApplicationStarted, window, &KonvergoWindow::otherAppFocus);
  198. });
  199. engine->load(QUrl(QStringLiteral("qrc:/ui/webview.qml")));
  200. Log::UpdateLogLevel();
  201. // run our application
  202. int ret = app.exec();
  203. delete uniqueApp;
  204. Globals::EngineDestroy();
  205. Log::Uninit();
  206. return ret;
  207. }
  208. catch (FatalException& e)
  209. {
  210. QLOG_FATAL() << "Unhandled FatalException:" << qPrintable(e.message());
  211. QApplication errApp(argc, argv);
  212. auto msg = new ErrorMessage(e.message(), true);
  213. msg->show();
  214. errApp.exec();
  215. Log::Uninit();
  216. return 1;
  217. }
  218. }