main.cpp 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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 = {
  75. "--disable-gpu",
  76. "--disable-web-security"
  77. };
  78. /////////////////////////////////////////////////////////////////////////////////////////
  79. int main(int argc, char *argv[])
  80. {
  81. try
  82. {
  83. QCommandLineParser parser;
  84. parser.setApplicationDescription("Plex Media Player");
  85. parser.addHelpOption();
  86. parser.addVersionOption();
  87. parser.addOptions({{{"l", "licenses"}, "Show license information"},
  88. {{"a", "from-auto-update"}, "When invoked from auto-update"},
  89. {"desktop", "Start in desktop mode"},
  90. {"tv", "Start in TV mode"},
  91. {"auto-layout", "Use auto-layout mode"},
  92. {"windowed", "Start in windowed mode"},
  93. {"fullscreen", "Start in fullscreen"},
  94. {"no-updates", "Disable auto-updating"},
  95. {"terminal", "Log to terminal"}});
  96. auto scaleOption = QCommandLineOption("scale-factor", "Set to a integer or default auto which controls" \
  97. "the scale (DPI) of the desktop interface.");
  98. scaleOption.setValueName("scale");
  99. scaleOption.setDefaultValue("auto");
  100. parser.addOption(scaleOption);
  101. char **newArgv = appendCommandLineArguments(argc, argv, g_qtFlags);
  102. int newArgc = argc + g_qtFlags.size();
  103. // Qt calls setlocale(LC_ALL, "") in a bunch of places, which breaks
  104. // float/string processing in mpv and ffmpeg.
  105. #ifdef Q_OS_UNIX
  106. qputenv("LC_ALL", "C");
  107. qputenv("LC_NUMERIC", "C");
  108. #endif
  109. preinitQt();
  110. detectOpenGLEarly();
  111. QStringList arguments;
  112. for (int i = 0; i < argc; i++)
  113. arguments << QString::fromLatin1(argv[i]);
  114. {
  115. // This is kinda dumb. But in order for the QCommandLineParser
  116. // to work properly we need to init if before we call process
  117. // but we don't want to do that for the main application since
  118. // we need to set the scale factor before we do that. So it becomes
  119. // a small chicken-or-egg problem, which we "solve" by making
  120. // this temporary console app.
  121. //
  122. QCoreApplication core(newArgc, newArgv);
  123. // Now parse the command line.
  124. parser.process(arguments);
  125. }
  126. if (parser.isSet("licenses"))
  127. {
  128. ShowLicenseInfo();
  129. return EXIT_SUCCESS;
  130. }
  131. auto scale = parser.value("scale-factor");
  132. if (scale.isEmpty() || scale == "auto")
  133. QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
  134. else if (scale != "none")
  135. qputenv("QT_SCALE_FACTOR", scale.toUtf8());
  136. QApplication app(newArgc, newArgv);
  137. #if defined(Q_OS_WIN) || defined(Q_OS_LINUX)
  138. // Setting window icon on OSX will break user ability to change it
  139. app.setWindowIcon(QIcon(":/images/icon.png"));
  140. #endif
  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. Codecs::Uninit();
  206. Log::Uninit();
  207. return ret;
  208. }
  209. catch (FatalException& e)
  210. {
  211. QLOG_FATAL() << "Unhandled FatalException:" << qPrintable(e.message());
  212. QApplication errApp(argc, argv);
  213. auto msg = new ErrorMessage(e.message(), true);
  214. msg->show();
  215. errApp.exec();
  216. Codecs::Uninit();
  217. Log::Uninit();
  218. return 1;
  219. }
  220. }