QGCApplication.cc 33.1 KB
Newer Older
1
/****************************************************************************
2 3 4 5 6 7 8
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9

pixhawk's avatar
pixhawk committed
10 11 12

/**
 * @file
Don Gagne's avatar
Don Gagne committed
13
 *   @brief Implementation of class QGCApplication
pixhawk's avatar
pixhawk committed
14 15 16 17 18 19 20 21 22 23 24 25
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#include <QFile>
#include <QFlags>
#include <QPixmap>
#include <QDesktopWidget>
#include <QPainter>
#include <QStyleFactory>
#include <QAction>
26
#include <QStringListModel>
Don Gagne's avatar
Don Gagne committed
27
#include <QRegularExpression>
Gus Grubba's avatar
Gus Grubba committed
28
#include <QFontDatabase>
pixhawk's avatar
pixhawk committed
29

dogmaphobic's avatar
dogmaphobic committed
30 31 32 33
#ifdef QGC_ENABLE_BLUETOOTH
#include <QBluetoothLocalDevice>
#endif

34 35
#include <QDebug>

36
#include "VideoStreaming.h"
Gus Grubba's avatar
Gus Grubba committed
37

38
#include "QGC.h"
Don Gagne's avatar
Don Gagne committed
39
#include "QGCApplication.h"
40
#include "CmdLineOptParser.h"
41 42
#include "UDPLink.h"
#include "LinkManager.h"
43
#include "UASMessageHandler.h"
44
#include "QGCTemporaryFile.h"
45
#include "QGCPalette.h"
Don Gagne's avatar
Don Gagne committed
46
#include "QGCMapPalette.h"
47
#include "QGCLoggingCategory.h"
Don Gagne's avatar
Don Gagne committed
48 49
#include "ViewWidgetController.h"
#include "ParameterEditorController.h"
Don Gagne's avatar
Don Gagne committed
50
#include "CustomCommandWidgetController.h"
dogmaphobic's avatar
dogmaphobic committed
51
#include "ESP8266ComponentController.h"
Don Gagne's avatar
Don Gagne committed
52
#include "ScreenToolsController.h"
53
#include "QGCFileDialogController.h"
Don Gagne's avatar
Don Gagne committed
54
#include "RCChannelMonitorController.h"
55
#include "SyslinkComponentController.h"
56 57
#include "AutoPilotPlugin.h"
#include "VehicleComponent.h"
Don Gagne's avatar
Don Gagne committed
58
#include "FirmwarePluginManager.h"
59 60
#include "MultiVehicleManager.h"
#include "Vehicle.h"
61
#include "JoystickConfigController.h"
62
#include "JoystickManager.h"
63
#include "QmlObjectListModel.h"
64
#include "QGCGeoBoundingCube.h"
Don Gagne's avatar
Don Gagne committed
65
#include "MissionManager.h"
66
#include "QGroundControlQmlGlobal.h"
67
#include "FlightMapSettings.h"
68
#include "CoordinateVector.h"
69
#include "PlanMasterController.h"
70
#include "VideoManager.h"
71 72
#include "VideoSurface.h"
#include "VideoReceiver.h"
dogmaphobic's avatar
dogmaphobic committed
73
#include "LogDownloadController.h"
74
#include "MAVLinkInspectorController.h"
75
#include "ValuesWidgetController.h"
76
#include "AppMessages.h"
Jimmy Johnson's avatar
Jimmy Johnson committed
77 78 79
#include "SimulatedPosition.h"
#include "PositionManager.h"
#include "FollowMe.h"
80
#include "MissionCommandTree.h"
81
#include "QGCMapPolygon.h"
82
#include "QGCMapCircle.h"
83
#include "ParameterManager.h"
84
#include "SettingsManager.h"
85
#include "QGCCorePlugin.h"
86
#include "QGCCameraManager.h"
87
#include "CameraCalc.h"
88
#include "VisualMissionItem.h"
89
#include "EditPositionDialogController.h"
90
#include "FactValueSliderListModel.h"
91
#include "ShapeFileHelper.h"
Don Gagne's avatar
Don Gagne committed
92
#include "QGCFileDownload.h"
Don Gagne's avatar
Don Gagne committed
93
#include "FirmwareImage.h"
94
#include "MavlinkConsoleController.h"
95
#include "MAVLinkInspectorController.h"
96
#include "GeoTagController.h"
97
#include "LogReplayLink.h"
Gus Grubba's avatar
Gus Grubba committed
98
#include "VehicleObjectAvoidance.h"
99

Gus Grubba's avatar
Gus Grubba committed
100 101 102 103
#if defined(QGC_ENABLE_PAIRING)
#include "PairingManager.h"
#endif

Gus Grubba's avatar
Gus Grubba committed
104 105 106
#ifndef __mobile__
#include "FirmwareUpgradeController.h"
#endif
107

Gus Grubba's avatar
Gus Grubba committed
108
#ifndef NO_SERIAL_LINK
109
#include "SerialLink.h"
110 111 112
#endif

#ifndef __mobile__
113
#include "GPS/GPSManager.h"
114
#endif
115

116
#ifdef QGC_RTLAB_ENABLED
117
#include "OpalLink.h"
118
#endif
119

Don Gagne's avatar
Don Gagne committed
120 121 122 123 124 125
#ifdef Q_OS_LINUX
#ifndef __mobile__
#include <unistd.h>
#include <sys/types.h>
#endif
#endif
126

dogmaphobic's avatar
dogmaphobic committed
127 128
#include "QGCMapEngine.h"

129
QGCApplication* QGCApplication::_app = nullptr;
pixhawk's avatar
pixhawk committed
130

131 132
const char* QGCApplication::_deleteAllSettingsKey           = "DeleteAllSettingsNextBoot";
const char* QGCApplication::_settingsVersionKey             = "SettingsVersion";
Don Gagne's avatar
Don Gagne committed
133

134 135 136
// Mavlink status structures for entire app
mavlink_status_t m_mavlink_status[MAVLINK_COMM_NUM_BUFFERS];

137
// Qml Singleton factories
138

Don Gagne's avatar
Don Gagne committed
139
static QObject* screenToolsControllerSingletonFactory(QQmlEngine*, QJSEngine*)
140
{
Don Gagne's avatar
Don Gagne committed
141 142
    ScreenToolsController* screenToolsController = new ScreenToolsController;
    return screenToolsController;
143 144
}

145 146
static QObject* qgroundcontrolQmlGlobalSingletonFactory(QQmlEngine*, QJSEngine*)
{
147
    // We create this object as a QGCTool even though it isn't in the toolbox
148
    QGroundControlQmlGlobal* qmlGlobal = new QGroundControlQmlGlobal(qgcApp(), qgcApp()->toolbox());
149 150 151
    qmlGlobal->setToolbox(qgcApp()->toolbox());

    return qmlGlobal;
152 153
}

154
static QObject* shapeFileHelperSingletonFactory(QQmlEngine*, QJSEngine*)
155
{
156
    return new ShapeFileHelper;
157
}
pixhawk's avatar
pixhawk committed
158

159
QGCApplication::QGCApplication(int &argc, char* argv[], bool unitTesting)
Don Gagne's avatar
Don Gagne committed
160 161
    : QGuiApplication           (argc, argv)
    , _runningUnitTests         (unitTesting)
pixhawk's avatar
pixhawk committed
162
{
163
    _app = this;
164 165
    _msecsElapsedTime.start();

166 167
#ifdef Q_OS_LINUX
#ifndef __mobile__
168 169
    if (!_runningUnitTests) {
        if (getuid() == 0) {
170 171 172 173 174 175 176 177
            _exitWithError(QString(
                tr("You are running %1 as root. "
                    "You should not do this since it will cause other issues with %1."
                    "%1 will now exit.<br/><br/>"
                    "If you are having serial port issues on Ubuntu, execute the following commands to fix most issues:<br/>"
                    "<pre>sudo usermod -a -G dialout $USER<br/>"
                    "sudo apt-get remove modemmanager</pre>").arg(qgcApp()->applicationName())));
            return;
178 179 180 181 182 183 184
        }
        // Determine if we have the correct permissions to access USB serial devices
        QFile permFile("/etc/group");
        if(permFile.open(QIODevice::ReadOnly)) {
            while(!permFile.atEnd()) {
                QString line = permFile.readLine();
                if (line.contains("dialout") && !line.contains(getenv("USER"))) {
185 186 187 188 189 190 191 192
                    permFile.close();
                    _exitWithError(QString(
                        tr("The current user does not have the correct permissions to access serial devices. "
                           "You should also remove modemmanager since it also interferes.<br/><br/>"
                           "If you are using Ubuntu, execute the following commands to fix these issues:<br/>"
                           "<pre>sudo usermod -a -G dialout $USER<br/>"
                           "sudo apt-get remove modemmanager</pre>")));
                    return;
193
                }
194
            }
195
            permFile.close();
196 197 198 199 200
        }
    }
#endif
#endif

201 202 203
    // Setup for network proxy support
    QNetworkProxyFactory::setUseSystemConfiguration(true);

204
    // Parse command line options
dogmaphobic's avatar
dogmaphobic committed
205

206
    bool fClearSettingsOptions = false; // Clear stored settings
Don Gagne's avatar
Don Gagne committed
207
    bool fClearCache = false;           // Clear parameter/airframe caches
208 209
    bool logging = false;               // Turn on logging
    QString loggingOptions;
dogmaphobic's avatar
dogmaphobic committed
210

211
    CmdLineOpt_t rgCmdLineOptions[] = {
212
        { "--clear-settings",   &fClearSettingsOptions, nullptr },
Don Gagne's avatar
Don Gagne committed
213
        { "--clear-cache",      &fClearCache,           nullptr },
214
        { "--logging",          &logging,               &loggingOptions },
215 216
        { "--fake-mobile",      &_fakeMobile,           nullptr },
        { "--log-output",       &_logOutput,            nullptr },
217 218
        // Add additional command line option flags here
    };
dogmaphobic's avatar
dogmaphobic committed
219

220
    ParseCmdLineOptions(argc, argv, rgCmdLineOptions, sizeof(rgCmdLineOptions)/sizeof(rgCmdLineOptions[0]), false);
221

222
    // Set up timer for delayed missing fact display
Don Gagne's avatar
Don Gagne committed
223 224 225
    _missingParamsDelayedDisplayTimer.setSingleShot(true);
    _missingParamsDelayedDisplayTimer.setInterval(_missingParamsDelayedDisplayTimerTimeout);
    connect(&_missingParamsDelayedDisplayTimer, &QTimer::timeout, this, &QGCApplication::_missingParamsDisplay);
dogmaphobic's avatar
dogmaphobic committed
226

Don Gagne's avatar
Don Gagne committed
227
    // Set application information
228 229 230 231 232 233 234 235 236
    if (_runningUnitTests) {
        // We don't want unit tests to use the same QSettings space as the normal app. So we tweak the app
        // name. Also we want to run unit tests with clean settings every time.
        setApplicationName(QString("%1_unittest").arg(QGC_APPLICATION_NAME));
    } else {
        setApplicationName(QGC_APPLICATION_NAME);
    }
    setOrganizationName(QGC_ORG_NAME);
    setOrganizationDomain(QGC_ORG_DOMAIN);
237

Daniel Agar's avatar
Daniel Agar committed
238
    this->setApplicationVersion(QString(GIT_VERSION));
239

240 241
    // Set settings format
    QSettings::setDefaultFormat(QSettings::IniFormat);
242
    QSettings settings;
243
    qDebug() << "Settings location" << settings.fileName() << "Is writable?:" << settings.isWritable();
Don Gagne's avatar
Don Gagne committed
244

245
#ifdef UNITTEST_BUILD
Don Gagne's avatar
Don Gagne committed
246 247 248
    if (!settings.isWritable()) {
        qWarning() << "Setings location is not writable";
    }
249
#endif
250
    // The setting will delete all settings on this boot
Don Gagne's avatar
Don Gagne committed
251
    fClearSettingsOptions |= settings.contains(_deleteAllSettingsKey);
252

Don Gagne's avatar
Don Gagne committed
253
    if (_runningUnitTests) {
254
        // Unit tests run with clean settings
Don Gagne's avatar
Don Gagne committed
255 256
        fClearSettingsOptions = true;
    }
257

258 259 260
    if (fClearSettingsOptions) {
        // User requested settings to be cleared on command line
        settings.clear();
261

262
        // Clear parameter cache
263
        QDir paramDir(ParameterManager::parameterCacheDir());
264 265
        paramDir.removeRecursively();
        paramDir.mkpath(paramDir.absolutePath());
266
    } else {
267
        // Determine if upgrade message for settings version bump is required. Check and clear must happen before toolbox is started since
268 269 270
        // that will write some settings.
        if (settings.contains(_settingsVersionKey)) {
            if (settings.value(_settingsVersionKey).toInt() != QGC_SETTINGS_VERSION) {
271
                settings.clear();
272 273 274 275
                _settingsUpgraded = true;
            }
        } else if (settings.allKeys().count()) {
            // Settings version key is missing and there are settings. This is an upgrade scenario.
276
            settings.clear();
277 278
            _settingsUpgraded = true;
        }
279
    }
280
    settings.setValue(_settingsVersionKey, QGC_SETTINGS_VERSION);
Gus Grubba's avatar
Gus Grubba committed
281

Don Gagne's avatar
Don Gagne committed
282 283 284
    if (fClearCache) {
        QDir dir(ParameterManager::parameterCacheDir());
        dir.removeRecursively();
285
        QFile airframe(cachedAirframeMetaDataFile());
Don Gagne's avatar
Don Gagne committed
286
        airframe.remove();
287
        QFile parameter(cachedParameterMetaDataFile());
Don Gagne's avatar
Don Gagne committed
288 289 290
        parameter.remove();
    }

291 292 293
    // Set up our logging filters
    QGCLoggingCategoryRegister::instance()->setFilterRulesFromSettings(loggingOptions);

dogmaphobic's avatar
dogmaphobic committed
294 295 296 297 298 299 300 301 302
    // Initialize Bluetooth
#ifdef QGC_ENABLE_BLUETOOTH
    QBluetoothLocalDevice localDevice;
    if (localDevice.isValid())
    {
        _bluetoothAvailable = true;
    }
#endif

303 304 305 306 307
    // Gstreamer debug settings
#if defined(__ios__) || defined(__android__)
    // Initialize Video Streaming
    initializeVideoStreaming(argc, argv, nullptr, nullptr);
#else
308 309
    QString savePath, gstDebugLevel;
    if (settings.contains(AppSettings::savePathName)) {
310
        savePath = settings.value(AppSettings::savePathName).toString();
311
    }
312 313 314 315 316 317 318 319 320
    if(savePath.isEmpty()) {
        savePath = "/tmp";
    }
    savePath = savePath + "/Logs/gst";
    if (!QDir(savePath).exists()) {
        QDir().mkpath(savePath);
    }
    if (settings.contains(AppSettings::gstDebugLevelName)) {
        gstDebugLevel = "*:" + settings.value(AppSettings::gstDebugLevelName).toString();
321
    }
322
    // Initialize Video Streaming
323
    initializeVideoStreaming(argc, argv, savePath.toUtf8().data(), gstDebugLevel.toUtf8().data());
324
#endif
325 326

    _toolbox = new QGCToolbox(this);
327
    _toolbox->setChildToolboxes();
Don Gagne's avatar
Don Gagne committed
328

329 330 331 332 333 334 335 336 337 338 339
#ifndef __mobile__
    _gpsRtkFactGroup = new GPSRTKFactGroup(this);
   GPSManager *gpsManager = _toolbox->gpsManager();
   if (gpsManager) {
       connect(gpsManager, &GPSManager::onConnect,          this, &QGCApplication::_onGPSConnect);
       connect(gpsManager, &GPSManager::onDisconnect,       this, &QGCApplication::_onGPSDisconnect);
       connect(gpsManager, &GPSManager::surveyInStatus,     this, &QGCApplication::_gpsSurveyInStatus);
       connect(gpsManager, &GPSManager::satelliteUpdate,    this, &QGCApplication::_gpsNumSatellites);
   }
#endif /* __mobile__ */

340
   setLanguage();
Don Gagne's avatar
Don Gagne committed
341
    _checkForNewVersion();
342 343
}

344 345 346 347 348 349 350 351 352 353 354
void QGCApplication::_exitWithError(QString errorMessage)
{
    _error = true;
    QQmlApplicationEngine* pEngine = new QQmlApplicationEngine(this);
    pEngine->addImportPath("qrc:/qml");
    pEngine->rootContext()->setContextProperty("errorMessage", errorMessage);
    pEngine->load(QUrl(QStringLiteral("qrc:/qml/ExitWithErrorWindow.qml")));
    // Exit main application when last window is closed
    connect(this, &QGCApplication::lastWindowClosed, this, QGCApplication::quit);
}

355 356
void QGCApplication::setLanguage()
{
357 358
    _locale = QLocale::system();
    qDebug() << "System reported locale:" << _locale << _locale.name();
359
    int langID = toolbox()->settingsManager()->appSettings()->language()->rawValue().toInt();
Gus Grubba's avatar
Gus Grubba committed
360
    //-- See App.SettinsGroup.json for index
361 362 363
    if(langID) {
        switch(langID) {
        case 1:
364
            _locale = QLocale(QLocale::Bulgarian);
365 366
            break;
        case 2:
367
            _locale = QLocale(QLocale::Chinese);
368 369
            break;
        case 3:
370
            _locale = QLocale(QLocale::Dutch);
371 372
            break;
        case 4:
373
            _locale = QLocale(QLocale::English);
374 375
            break;
        case 5:
376
            _locale = QLocale(QLocale::Finnish);
377 378
            break;
        case 6:
379
            _locale = QLocale(QLocale::French);
380 381
            break;
        case 7:
382
            _locale = QLocale(QLocale::German);
383 384
            break;
        case 8:
385
            _locale = QLocale(QLocale::Greek);
Gus Grubba's avatar
Gus Grubba committed
386 387
            break;
        case 9:
388
            _locale = QLocale(QLocale::Hebrew);
389 390
            break;
        case 10:
391
            _locale = QLocale(QLocale::Italian);
392 393
            break;
        case 11:
394
            _locale = QLocale(QLocale::Japanese);
395 396
            break;
        case 12:
397
            _locale = QLocale(QLocale::Korean);
398 399
            break;
        case 13:
400
            _locale = QLocale(QLocale::Norwegian);
401 402
            break;
        case 14:
403
            _locale = QLocale(QLocale::Polish);
404 405
            break;
        case 15:
406
            _locale = QLocale(QLocale::Portuguese);
407 408
            break;
        case 16:
409
            _locale = QLocale(QLocale::Russian);
410 411
            break;
        case 17:
412
            _locale = QLocale(QLocale::Spanish);
413 414
            break;
        case 18:
415
            _locale = QLocale(QLocale::Swedish);
416 417
            break;
        case 19:
418
            _locale = QLocale(QLocale::Turkish);
419 420 421
            break;
        }
    }
422
    //-- We have specific fonts for Korean
423 424
    if(_locale == QLocale::Korean) {
        qDebug() << "Loading Korean fonts" << _locale.name();
425 426 427 428 429 430 431
        if(QFontDatabase::addApplicationFont(":/fonts/NanumGothic-Regular") < 0) {
            qWarning() << "Could not load /fonts/NanumGothic-Regular font";
        }
        if(QFontDatabase::addApplicationFont(":/fonts/NanumGothic-Bold") < 0) {
            qWarning() << "Could not load /fonts/NanumGothic-Bold font";
        }
    }
432
    qDebug() << "Loading localization for" << _locale.name();
433 434
    _app->removeTranslator(&_QGCTranslator);
    _app->removeTranslator(&_QGCTranslatorQt);
435
    if(_QGCTranslatorQt.load("qt_" + _locale.name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
436 437
        _app->installTranslator(&_QGCTranslatorQt);
    } else {
Gus Grubba's avatar
Gus Grubba committed
438
        qDebug() << "Qt localization for" << _locale.name() << "is not present";
439
    }
440 441
    if(_QGCTranslator.load(_locale, QLatin1String("qgc_"), "", ":/i18n")) {
        QLocale::setDefault(_locale);
442
        _app->installTranslator(&_QGCTranslator);
443
    } else {
444
        qDebug() << "Error loading application localization for" << _locale.name();
445 446 447
    }
    if(_qmlAppEngine)
        _qmlAppEngine->retranslate();
448
    emit languageChanged(_locale);
449 450
}

451
void QGCApplication::_shutdown()
Don Gagne's avatar
Don Gagne committed
452
{
453 454 455
    // Close out all Qml before we delete toolbox. This way we don't get all sorts of null reference complaints from Qml.
    delete _qmlAppEngine;

456
    shutdownVideoStreaming();
457
    delete _toolbox;
Don Gagne's avatar
Don Gagne committed
458 459
}

Don Gagne's avatar
Don Gagne committed
460 461 462
QGCApplication::~QGCApplication()
{
    // Place shutdown code in _shutdown
463
    _app = nullptr;
Don Gagne's avatar
Don Gagne committed
464 465
}

466
void QGCApplication::_initCommon()
467
{
468 469 470 471
    static const char* kRefOnly         = "Reference only";
    static const char* kQGCControllers  = "QGroundControl.Controllers";
    static const char* kQGCVehicle      = "QGroundControl.Vehicle";

472
    QSettings settings;
473

Don Gagne's avatar
Don Gagne committed
474
    // Register our Qml objects
dogmaphobic's avatar
dogmaphobic committed
475

Don Gagne's avatar
Don Gagne committed
476 477
    qmlRegisterType<QGCPalette>     ("QGroundControl.Palette", 1, 0, "QGCPalette");
    qmlRegisterType<QGCMapPalette>  ("QGroundControl.Palette", 1, 0, "QGCMapPalette");
dogmaphobic's avatar
dogmaphobic committed
478

Gus Grubba's avatar
Gus Grubba committed
479 480 481 482 483 484 485 486 487 488 489 490 491
    qmlRegisterUncreatableType<Vehicle>                 (kQGCVehicle,                       1, 0, "Vehicle",                    kRefOnly);
    qmlRegisterUncreatableType<MissionItem>             (kQGCVehicle,                       1, 0, "MissionItem",                kRefOnly);
    qmlRegisterUncreatableType<MissionManager>          (kQGCVehicle,                       1, 0, "MissionManager",             kRefOnly);
    qmlRegisterUncreatableType<ParameterManager>        (kQGCVehicle,                       1, 0, "ParameterManager",           kRefOnly);
    qmlRegisterUncreatableType<VehicleObjectAvoidance>  (kQGCVehicle,                       1, 0, "VehicleObjectAvoidance",     kRefOnly);
    qmlRegisterUncreatableType<QGCCameraManager>        (kQGCVehicle,                       1, 0, "QGCCameraManager",           kRefOnly);
    qmlRegisterUncreatableType<QGCCameraControl>        (kQGCVehicle,                       1, 0, "QGCCameraControl",           kRefOnly);
    qmlRegisterUncreatableType<QGCVideoStreamInfo>      (kQGCVehicle,                       1, 0, "QGCVideoStreamInfo",         kRefOnly);
    qmlRegisterUncreatableType<LinkInterface>           (kQGCVehicle,                       1, 0, "LinkInterface",              kRefOnly);
    qmlRegisterUncreatableType<MissionController>       (kQGCControllers,                   1, 0, "MissionController",          kRefOnly);
    qmlRegisterUncreatableType<GeoFenceController>      (kQGCControllers,                   1, 0, "GeoFenceController",         kRefOnly);
    qmlRegisterUncreatableType<RallyPointController>    (kQGCControllers,                   1, 0, "RallyPointController",       kRefOnly);
    qmlRegisterUncreatableType<VisualMissionItem>       (kQGCControllers,                   1, 0, "VisualMissionItem",          kRefOnly);
492

493 494 495 496
    qmlRegisterUncreatableType<CoordinateVector>    ("QGroundControl",                      1, 0, "CoordinateVector",           kRefOnly);
    qmlRegisterUncreatableType<QmlObjectListModel>  ("QGroundControl",                      1, 0, "QmlObjectListModel",         kRefOnly);
    qmlRegisterUncreatableType<MissionCommandTree>  ("QGroundControl",                      1, 0, "MissionCommandTree",         kRefOnly);
    qmlRegisterUncreatableType<CameraCalc>          ("QGroundControl",                      1, 0, "CameraCalc",                 kRefOnly);
497
    qmlRegisterUncreatableType<LogReplayLink>       ("QGroundControl",                      1, 0, "LogReplayLink",              kRefOnly);
Gus Grubba's avatar
Gus Grubba committed
498 499 500
#if defined(QGC_ENABLE_PAIRING)
    qmlRegisterUncreatableType<PairingManager>      ("QGroundControl",                      1, 0, "PairingManager",             kRefOnly);
#endif
501 502

    qmlRegisterType<LogReplayLinkController>        ("QGroundControl",                      1, 0, "LogReplayLinkController");
503 504 505 506 507 508 509 510 511 512 513

    qmlRegisterUncreatableType<AutoPilotPlugin>     ("QGroundControl.AutoPilotPlugin",      1, 0, "AutoPilotPlugin",            kRefOnly);
    qmlRegisterUncreatableType<VehicleComponent>    ("QGroundControl.AutoPilotPlugin",      1, 0, "VehicleComponent",           kRefOnly);
    qmlRegisterUncreatableType<JoystickManager>     ("QGroundControl.JoystickManager",      1, 0, "JoystickManager",            kRefOnly);
    qmlRegisterUncreatableType<Joystick>            ("QGroundControl.JoystickManager",      1, 0, "Joystick",                   kRefOnly);
    qmlRegisterUncreatableType<QGCPositionManager>  ("QGroundControl.QGCPositionManager",   1, 0, "QGCPositionManager",         kRefOnly);
    qmlRegisterUncreatableType<FactValueSliderListModel>("QGroundControl.FactControls",     1, 0, "FactValueSliderListModel",   kRefOnly);

    qmlRegisterUncreatableType<QGCMapPolygon>       ("QGroundControl.FlightMap",            1, 0, "QGCMapPolygon",              kRefOnly);
    qmlRegisterUncreatableType<QGCGeoBoundingCube>  ("QGroundControl.FlightMap",            1, 0, "QGCGeoBoundingCube",         kRefOnly);

514
    qmlRegisterType<QGCMapCircle>                   ("QGroundControl.FlightMap",            1, 0, "QGCMapCircle");
515

516 517 518 519 520 521 522 523 524
    qmlRegisterType<ParameterEditorController>      (kQGCControllers,                       1, 0, "ParameterEditorController");
    qmlRegisterType<ESP8266ComponentController>     (kQGCControllers,                       1, 0, "ESP8266ComponentController");
    qmlRegisterType<ScreenToolsController>          (kQGCControllers,                       1, 0, "ScreenToolsController");
    qmlRegisterType<PlanMasterController>           (kQGCControllers,                       1, 0, "PlanMasterController");
    qmlRegisterType<ValuesWidgetController>         (kQGCControllers,                       1, 0, "ValuesWidgetController");
    qmlRegisterType<QGCFileDialogController>        (kQGCControllers,                       1, 0, "QGCFileDialogController");
    qmlRegisterType<RCChannelMonitorController>     (kQGCControllers,                       1, 0, "RCChannelMonitorController");
    qmlRegisterType<JoystickConfigController>       (kQGCControllers,                       1, 0, "JoystickConfigController");
    qmlRegisterType<LogDownloadController>          (kQGCControllers,                       1, 0, "LogDownloadController");
525
    qmlRegisterType<MAVLinkInspectorController>     (kQGCControllers,                       1, 0, "MAVLinkInspectorController");
526 527
    qmlRegisterType<SyslinkComponentController>     (kQGCControllers,                       1, 0, "SyslinkComponentController");
    qmlRegisterType<EditPositionDialogController>   (kQGCControllers,                       1, 0, "EditPositionDialogController");
528

Don Gagne's avatar
Don Gagne committed
529
#ifndef __mobile__
530
#ifndef NO_SERIAL_LINK
531
    qmlRegisterType<FirmwareUpgradeController>      (kQGCControllers,                       1, 0, "FirmwareUpgradeController");
532
#endif
Don Gagne's avatar
Don Gagne committed
533
#endif
534
    qmlRegisterType<GeoTagController>               (kQGCControllers,                       1, 0, "GeoTagController");
535
    qmlRegisterType<MavlinkConsoleController>       (kQGCControllers,                       1, 0, "MavlinkConsoleController");
536
    qmlRegisterType<MAVLinkInspectorController>     (kQGCControllers,                       1, 0, "MAVLinkInspectorController");
dogmaphobic's avatar
dogmaphobic committed
537

538
    // Register Qml Singletons
539 540
    qmlRegisterSingletonType<QGroundControlQmlGlobal>   ("QGroundControl",                          1, 0, "QGroundControl",         qgroundcontrolQmlGlobalSingletonFactory);
    qmlRegisterSingletonType<ScreenToolsController>     ("QGroundControl.ScreenToolsController",    1, 0, "ScreenToolsController",  screenToolsControllerSingletonFactory);
541
    qmlRegisterSingletonType<ShapeFileHelper>           ("QGroundControl.ShapeFileHelper",          1, 0, "ShapeFileHelper",        shapeFileHelperSingletonFactory);
542 543
}

544
bool QGCApplication::_initForNormalAppBoot()
545
{
546

547 548 549 550 551
    if(QFontDatabase::addApplicationFont(":/fonts/opensans") < 0) {
        qWarning() << "Could not load /fonts/opensans font";
    }
    if(QFontDatabase::addApplicationFont(":/fonts/opensans-demibold") < 0) {
        qWarning() << "Could not load /fonts/opensans-demibold font";
Gus Grubba's avatar
Gus Grubba committed
552 553
    }

554
    QSettings settings;
555

556
    // Exit main application when last window is closed
557
    connect(this, &QGCApplication::lastWindowClosed, this, QGCApplication::quit);
558

559
    _qmlAppEngine = toolbox()->corePlugin()->createRootWindow(this);
560

561
    // Now that main window is up check for lost log files
562
    connect(this, &QGCApplication::checkForLostLogFiles, toolbox()->mavlinkProtocol(), &MAVLinkProtocol::checkForLostLogFiles);
563
    emit checkForLostLogFiles();
564 565

    // Load known link configurations
566
    toolbox()->linkManager()->loadLinkConfigurationList();
567

Jacob Walser's avatar
Jacob Walser committed
568 569
    // Probe for joysticks
    toolbox()->joystickManager()->init();
570

571
    if (_settingsUpgraded) {
572 573
        showMessage(QString(tr("The format for %1 saved settings has been modified. "
                    "Your saved settings have been reset to defaults.")).arg(applicationName()));
Don Gagne's avatar
Don Gagne committed
574 575
    }

576 577 578
    // Connect links with flag AutoconnectLink
    toolbox()->linkManager()->startAutoConnectedLinks();

dogmaphobic's avatar
dogmaphobic committed
579
    if (getQGCMapEngine()->wasCacheReset()) {
580 581
        showMessage(tr("The Offline Map Cache database has been upgraded. "
                    "Your old map cache sets have been reset."));
dogmaphobic's avatar
dogmaphobic committed
582 583
    }

Don Gagne's avatar
Don Gagne committed
584
    settings.sync();
585
    return true;
pixhawk's avatar
pixhawk committed
586 587
}

588
bool QGCApplication::_initForUnitTests()
pixhawk's avatar
pixhawk committed
589
{
590
    return true;
pixhawk's avatar
pixhawk committed
591 592
}

Don Gagne's avatar
Don Gagne committed
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
void QGCApplication::deleteAllSettingsNextBoot(void)
{
    QSettings settings;
    settings.setValue(_deleteAllSettingsKey, true);
}

void QGCApplication::clearDeleteAllSettingsNextBoot(void)
{
    QSettings settings;
    settings.remove(_deleteAllSettingsKey);
}

/// @brief Returns the QGCApplication object singleton.
QGCApplication* qgcApp(void)
{
608 609 610
    return QGCApplication::_app;
}

611 612
void QGCApplication::informationMessageBoxOnMainThread(const QString& title, const QString& msg)
{
613 614
    Q_UNUSED(title);
    showMessage(msg);
615 616 617 618
}

void QGCApplication::warningMessageBoxOnMainThread(const QString& title, const QString& msg)
{
619 620
    Q_UNUSED(title)
    showMessage(msg);
621 622 623 624
}

void QGCApplication::criticalMessageBoxOnMainThread(const QString& title, const QString& msg)
{
625 626
    Q_UNUSED(title)
    showMessage(msg);
627 628
}

629
void QGCApplication::saveTelemetryLogOnMainThread(QString tempLogfile)
630
{
631 632 633 634 635 636 637 638
    // The vehicle is gone now and we are shutting down so we need to use a message box for errors to hold shutdown and show the error
    if (_checkTelemetrySavePath(true /* useMessageBox */)) {

        QString saveDirPath = _toolbox->settingsManager()->appSettings()->telemetrySavePath();
        QDir saveDir(saveDirPath);

        QString nameFormat("%1%2.%3");
        QString dtFormat("yyyy-MM-dd hh-mm-ss");
639

640 641
        int tryIndex = 1;
        QString saveFileName = nameFormat.arg(
642
            QDateTime::currentDateTime().toString(dtFormat)).arg(QStringLiteral("")).arg(toolbox()->settingsManager()->appSettings()->telemetryFileExtension);
643 644 645 646 647 648 649 650 651 652
        while (saveDir.exists(saveFileName)) {
            saveFileName = nameFormat.arg(
                QDateTime::currentDateTime().toString(dtFormat)).arg(QStringLiteral(".%1").arg(tryIndex++)).arg(toolbox()->settingsManager()->appSettings()->telemetryFileExtension);
        }
        QString saveFilePath = saveDir.absoluteFilePath(saveFileName);

        QFile tempFile(tempLogfile);
        if (!tempFile.copy(saveFilePath)) {
            QString error = tr("Unable to save telemetry log. Error copying telemetry to '%1': '%2'.").arg(saveFilePath).arg(tempFile.errorString());
            showMessage(error);
653
        }
654
    }
655 656
    QFile::remove(tempLogfile);
}
657

658
void QGCApplication::checkTelemetrySavePathOnMainThread()
659 660 661 662 663 664 665 666 667
{
    // This is called with an active vehicle so don't pop message boxes which holds ui thread
    _checkTelemetrySavePath(false /* useMessageBox */);
}

bool QGCApplication::_checkTelemetrySavePath(bool useMessageBox)
{
    QString errorTitle = tr("Telemetry save error");

668
    QString saveDirPath = _toolbox->settingsManager()->appSettings()->telemetrySavePath();
669
    if (saveDirPath.isEmpty()) {
670
        QString error = tr("Unable to save telemetry log. Application save directory is not set.");
Gus Grubba's avatar
Gus Grubba committed
671 672
        Q_UNUSED(useMessageBox);
        showMessage(error);
673 674 675 676 677 678
        return false;
    }

    QDir saveDir(saveDirPath);
    if (!saveDir.exists()) {
        QString error = tr("Unable to save telemetry log. Telemetry save directory \"%1\" does not exist.").arg(saveDirPath);
Gus Grubba's avatar
Gus Grubba committed
679
        showMessage(error);
680 681 682 683 684
        return false;
    }

    return true;
}
685

Don Gagne's avatar
Don Gagne committed
686
void QGCApplication::reportMissingParameter(int componentId, const QString& name)
687
{
Don Gagne's avatar
Don Gagne committed
688 689
    _missingParams += QString("%1:%2").arg(componentId).arg(name);
    _missingParamsDelayedDisplayTimer.start();
690
}
691

Don Gagne's avatar
Don Gagne committed
692 693
/// Called when the delay timer fires to show the missing parameters warning
void QGCApplication::_missingParamsDisplay(void)
694
{
DonLakeFlyer's avatar
DonLakeFlyer committed
695 696 697 698 699 700 701 702
    if (_missingParams.count()) {
        QString params;
        foreach (const QString &name, _missingParams) {
            if (params.isEmpty()) {
                params += name;
            } else {
                params += QString(", %1").arg(name);
            }
703
        }
DonLakeFlyer's avatar
DonLakeFlyer committed
704
        _missingParams.clear();
dogmaphobic's avatar
dogmaphobic committed
705

706
        showMessage(tr("Parameters are missing from firmware. You may be running a version of firmware QGC does not work correctly with or your firmware has a bug in it. Missing params: %1").arg(params));
DonLakeFlyer's avatar
DonLakeFlyer committed
707
    }
708 709
}

Gus Grubba's avatar
Gus Grubba committed
710
QObject* QGCApplication::_rootQmlObject()
Don Gagne's avatar
Don Gagne committed
711
{
712 713 714
    if(_qmlAppEngine && _qmlAppEngine->rootObjects().size())
        return _qmlAppEngine->rootObjects()[0];
    return nullptr;
Don Gagne's avatar
Don Gagne committed
715 716 717
}


718
void QGCApplication::showMessage(const QString& message)
Don Gagne's avatar
Don Gagne committed
719
{
720
    // PreArm messages are handled by Vehicle and shown in Map
721
    if (message.startsWith(QStringLiteral("PreArm")) || message.startsWith(QStringLiteral("preflight"), Qt::CaseInsensitive)) {
Don Gagne's avatar
Don Gagne committed
722 723
        return;
    }
724 725 726 727 728
    QObject* rootQmlObject = _rootQmlObject();
    if (rootQmlObject) {
        QVariant varReturn;
        QVariant varMessage = QVariant::fromValue(message);
        QMetaObject::invokeMethod(_rootQmlObject(), "showMessage", Q_RETURN_ARG(QVariant, varReturn), Q_ARG(QVariant, varMessage));
Don Gagne's avatar
Don Gagne committed
729 730 731
    } else if (runningUnitTests()) {
        // Unit tests can run without UI
        qDebug() << "QGCApplication::showMessage unittest" << message;
732 733 734
    } else {
        qWarning() << "Internal error";
    }
Don Gagne's avatar
Don Gagne committed
735 736
}

737
QQuickItem* QGCApplication::mainRootWindow()
738
{
739 740
    if(_mainRootWindow) {
        _mainRootWindow = reinterpret_cast<QQuickItem*>(_rootQmlObject());
741
    }
742
    return _mainRootWindow;
743 744 745
}

void QGCApplication::showSetupView()
Don Gagne's avatar
Don Gagne committed
746
{
747 748 749
    if(_rootQmlObject()) {
        QMetaObject::invokeMethod(_rootQmlObject(), "showSetupView");
    }
Don Gagne's avatar
Don Gagne committed
750 751
}

752
void QGCApplication::qmlAttemptWindowClose()
Don Gagne's avatar
Don Gagne committed
753
{
754 755 756
    if(_rootQmlObject()) {
        QMetaObject::invokeMethod(_rootQmlObject(), "attemptWindowClose");
    }
Don Gagne's avatar
Don Gagne committed
757
}
758 759 760

bool QGCApplication::isInternetAvailable()
{
761 762 763
    if(_toolbox->settingsManager()->appSettings()->checkInternet()->rawValue().toBool())
        return getQGCMapEngine()->isInternetActive();
    return true;
764
}
Don Gagne's avatar
Don Gagne committed
765

766
void QGCApplication::_checkForNewVersion()
Don Gagne's avatar
Don Gagne committed
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
{
#ifndef __mobile__
    if (!_runningUnitTests) {
        if (_parseVersionText(applicationVersion(), _majorVersion, _minorVersion, _buildVersion)) {
            QString versionCheckFile = toolbox()->corePlugin()->stableVersionCheckFileUrl();
            if (!versionCheckFile.isEmpty()) {
                _currentVersionDownload = new QGCFileDownload(this);
                connect(_currentVersionDownload, &QGCFileDownload::downloadFinished, this, &QGCApplication::_currentVersionDownloadFinished);
                connect(_currentVersionDownload, &QGCFileDownload::error, this, &QGCApplication::_currentVersionDownloadError);
                _currentVersionDownload->download(versionCheckFile);
            }
        }
    }
#endif
}

void QGCApplication::_currentVersionDownloadFinished(QString remoteFile, QString localFile)
{
    Q_UNUSED(remoteFile);

Don Gagne's avatar
Don Gagne committed
787 788 789
#ifdef __mobile__
    Q_UNUSED(localFile);
#else
Don Gagne's avatar
Don Gagne committed
790 791 792 793 794 795 796 797 798 799 800 801
    QFile versionFile(localFile);
    if (versionFile.open(QIODevice::ReadOnly)) {
        QTextStream textStream(&versionFile);
        QString version = textStream.readLine();

        qDebug() << version;

        int majorVersion, minorVersion, buildVersion;
        if (_parseVersionText(version, majorVersion, minorVersion, buildVersion)) {
            if (_majorVersion < majorVersion ||
                    (_majorVersion == majorVersion && _minorVersion < minorVersion) ||
                    (_majorVersion == majorVersion && _minorVersion == minorVersion && _buildVersion < buildVersion)) {
Gus Grubba's avatar
Gus Grubba committed
802 803
                //-- TODO
                ///QGCMessageBox::information(tr("New Version Available"), tr("There is a newer version of %1 available. You can download it from %2.").arg(applicationName()).arg(toolbox()->corePlugin()->stableDownloadLocation()));
Don Gagne's avatar
Don Gagne committed
804 805 806 807 808
            }
        }
    }

    _currentVersionDownload->deleteLater();
Don Gagne's avatar
Don Gagne committed
809
#endif
Don Gagne's avatar
Don Gagne committed
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
}

void QGCApplication::_currentVersionDownloadError(QString errorMsg)
{
    Q_UNUSED(errorMsg);
    _currentVersionDownload->deleteLater();
}

bool QGCApplication::_parseVersionText(const QString& versionString, int& majorVersion, int& minorVersion, int& buildVersion)
{
    QRegularExpression regExp("v(\\d+)\\.(\\d+)\\.(\\d+)");
    QRegularExpressionMatch match = regExp.match(versionString);
    if (match.hasMatch() && match.lastCapturedIndex() == 3) {
        majorVersion = match.captured(1).toInt();
        minorVersion = match.captured(2).toInt();
        buildVersion = match.captured(3).toInt();
        return true;
    }

    return false;
}
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845


void QGCApplication::_onGPSConnect()
{
    _gpsRtkFactGroup->connected()->setRawValue(true);
}

void QGCApplication::_onGPSDisconnect()
{
    _gpsRtkFactGroup->connected()->setRawValue(false);
}

void QGCApplication::_gpsSurveyInStatus(float duration, float accuracyMM,  double latitude, double longitude, float altitude, bool valid, bool active)
{
    _gpsRtkFactGroup->currentDuration()->setRawValue(duration);
846
    _gpsRtkFactGroup->currentAccuracy()->setRawValue(static_cast<double>(accuracyMM) / 1000.0);
847 848 849 850 851 852 853 854 855 856 857 858
    _gpsRtkFactGroup->currentLatitude()->setRawValue(latitude);
    _gpsRtkFactGroup->currentLongitude()->setRawValue(longitude);
    _gpsRtkFactGroup->currentAltitude()->setRawValue(altitude);
    _gpsRtkFactGroup->valid()->setRawValue(valid);
    _gpsRtkFactGroup->active()->setRawValue(active);
}

void QGCApplication::_gpsNumSatellites(int numSatellites)
{
    _gpsRtkFactGroup->numSatellites()->setRawValue(numSatellites);
}

859 860 861 862 863 864 865 866 867 868 869 870 871
QString QGCApplication::cachedParameterMetaDataFile(void)
{
    QSettings settings;
    QDir parameterDir = QFileInfo(settings.fileName()).dir();
    return parameterDir.filePath(QStringLiteral("ParameterFactMetaData.xml"));
}

QString QGCApplication::cachedAirframeMetaDataFile(void)
{
    QSettings settings;
    QDir airframeDir = QFileInfo(settings.fileName()).dir();
    return airframeDir.filePath(QStringLiteral("PX4AirframeFactMetaData.xml"));
}