QGCApplication.cc 30.5 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>
29 30 31 32 33
#ifdef Q_OS_LINUX
#ifndef __mobile__
    #include <QMessageBox>
#endif
#endif
pixhawk's avatar
pixhawk committed
34

dogmaphobic's avatar
dogmaphobic committed
35 36 37 38
#ifdef QGC_ENABLE_BLUETOOTH
#include <QBluetoothLocalDevice>
#endif

39 40
#include <QDebug>

41
#include "VideoStreaming.h"
Gus Grubba's avatar
Gus Grubba committed
42

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

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

#ifndef __mobile__
111
#include "GeoTagController.h"
112
#include "GPS/GPSManager.h"
113
#endif
114

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

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

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

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

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

dogmaphobic's avatar
dogmaphobic committed
133 134
const char* QGCApplication::_darkStyleFile          = ":/res/styles/style-dark.css";
const char* QGCApplication::_lightStyleFile         = ":/res/styles/style-light.css";
135

136 137 138
// Mavlink status structures for entire app
mavlink_status_t m_mavlink_status[MAVLINK_COMM_NUM_BUFFERS];

139
// Qml Singleton factories
140

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

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

    return qmlGlobal;
154 155
}

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

161
QGCApplication::QGCApplication(int &argc, char* argv[], bool unitTesting)
Don Gagne's avatar
Don Gagne committed
162 163
    : QGuiApplication           (argc, argv)
    , _runningUnitTests         (unitTesting)
pixhawk's avatar
pixhawk committed
164
{
165
    _app = this;
166 167 168
    // Setup for network proxy support
    QNetworkProxyFactory::setUseSystemConfiguration(true);

169 170
#ifdef Q_OS_LINUX
#ifndef __mobile__
171 172 173
    if (!_runningUnitTests) {
        if (getuid() == 0) {
            QMessageBox msgBox;
174
            msgBox.setInformativeText(tr("You are running %1 as root. "
DonLakeFlyer's avatar
DonLakeFlyer committed
175
                                         "You should not do this since it will cause other issues with %1. "
Don Gagne's avatar
Don Gagne committed
176
                                         "%1 will now exit. "
DonLakeFlyer's avatar
DonLakeFlyer committed
177 178 179
                                         "If you are having serial port issues on Ubuntu, execute the following commands to fix most issues:\n"
                                         "sudo usermod -a -G dialout $USER\n"
                                         "sudo apt-get remove modemmanager").arg(qgcApp()->applicationName()));
180 181 182 183 184
            msgBox.setStandardButtons(QMessageBox::Ok);
            msgBox.setDefaultButton(QMessageBox::Ok);
            msgBox.exec();
            _exit(0);
        }
185

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
        // 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"))) {
                    QMessageBox msgBox;
                    msgBox.setInformativeText("The current user does not have the correct permissions to access serial devices. "
                                              "You should also remove modemmanager since it also interferes. "
                                              "If you are using Ubuntu, execute the following commands to fix these issues:\n"
                                              "sudo usermod -a -G dialout $USER\n"
                                              "sudo apt-get remove modemmanager");
                    msgBox.setStandardButtons(QMessageBox::Ok);
                    msgBox.setDefaultButton(QMessageBox::Ok);
                    msgBox.exec();
                    break;
                }
203
            }
204
            permFile.close();
205 206 207 208 209
        }
    }
#endif
#endif

210
    // Parse command line options
dogmaphobic's avatar
dogmaphobic committed
211

212
    bool fClearSettingsOptions = false; // Clear stored settings
Don Gagne's avatar
Don Gagne committed
213
    bool fClearCache = false;           // Clear parameter/airframe caches
214 215
    bool logging = false;               // Turn on logging
    QString loggingOptions;
dogmaphobic's avatar
dogmaphobic committed
216

217
    CmdLineOpt_t rgCmdLineOptions[] = {
218
        { "--clear-settings",   &fClearSettingsOptions, nullptr },
Don Gagne's avatar
Don Gagne committed
219
        { "--clear-cache",      &fClearCache,           nullptr },
220
        { "--logging",          &logging,               &loggingOptions },
221 222
        { "--fake-mobile",      &_fakeMobile,           nullptr },
        { "--log-output",       &_logOutput,            nullptr },
223 224
        // Add additional command line option flags here
    };
dogmaphobic's avatar
dogmaphobic committed
225

226
    ParseCmdLineOptions(argc, argv, rgCmdLineOptions, sizeof(rgCmdLineOptions)/sizeof(rgCmdLineOptions[0]), false);
227

228
    // Set up timer for delayed missing fact display
Don Gagne's avatar
Don Gagne committed
229 230 231
    _missingParamsDelayedDisplayTimer.setSingleShot(true);
    _missingParamsDelayedDisplayTimer.setInterval(_missingParamsDelayedDisplayTimerTimeout);
    connect(&_missingParamsDelayedDisplayTimer, &QTimer::timeout, this, &QGCApplication::_missingParamsDisplay);
dogmaphobic's avatar
dogmaphobic committed
232

Don Gagne's avatar
Don Gagne committed
233
    // Set application information
234 235 236 237 238 239 240 241 242
    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);
243

Daniel Agar's avatar
Daniel Agar committed
244
    this->setApplicationVersion(QString(GIT_VERSION));
245

246 247
    // Set settings format
    QSettings::setDefaultFormat(QSettings::IniFormat);
248
    QSettings settings;
249
    qDebug() << "Settings location" << settings.fileName() << "Is writable?:" << settings.isWritable();
Don Gagne's avatar
Don Gagne committed
250

251
#ifdef UNITTEST_BUILD
Don Gagne's avatar
Don Gagne committed
252 253 254
    if (!settings.isWritable()) {
        qWarning() << "Setings location is not writable";
    }
255
#endif
256
    // The setting will delete all settings on this boot
Don Gagne's avatar
Don Gagne committed
257
    fClearSettingsOptions |= settings.contains(_deleteAllSettingsKey);
258

Don Gagne's avatar
Don Gagne committed
259
    if (_runningUnitTests) {
260
        // Unit tests run with clean settings
Don Gagne's avatar
Don Gagne committed
261 262
        fClearSettingsOptions = true;
    }
263

264 265 266
    if (fClearSettingsOptions) {
        // User requested settings to be cleared on command line
        settings.clear();
267

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

Don Gagne's avatar
Don Gagne committed
288 289 290
    if (fClearCache) {
        QDir dir(ParameterManager::parameterCacheDir());
        dir.removeRecursively();
291
        QFile airframe(cachedAirframeMetaDataFile());
Don Gagne's avatar
Don Gagne committed
292
        airframe.remove();
293
        QFile parameter(cachedParameterMetaDataFile());
Don Gagne's avatar
Don Gagne committed
294 295 296
        parameter.remove();
    }

297 298 299
    // Set up our logging filters
    QGCLoggingCategoryRegister::instance()->setFilterRulesFromSettings(loggingOptions);

dogmaphobic's avatar
dogmaphobic committed
300 301 302 303 304 305 306 307 308
    // Initialize Bluetooth
#ifdef QGC_ENABLE_BLUETOOTH
    QBluetoothLocalDevice localDevice;
    if (localDevice.isValid())
    {
        _bluetoothAvailable = true;
    }
#endif

309 310 311 312 313
    // Gstreamer debug settings
#if defined(__ios__) || defined(__android__)
    // Initialize Video Streaming
    initializeVideoStreaming(argc, argv, nullptr, nullptr);
#else
314 315
    QString savePath, gstDebugLevel;
    if (settings.contains(AppSettings::savePathName)) {
316
        savePath = settings.value(AppSettings::savePathName).toString();
317
    }
318 319 320 321 322 323 324 325 326
    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();
327
    }
328
    // Initialize Video Streaming
329
    initializeVideoStreaming(argc, argv, savePath.toUtf8().data(), gstDebugLevel.toUtf8().data());
330
#endif
331 332

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

335 336 337 338 339 340 341 342 343 344 345
#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__ */

346
   setLanguage();
Don Gagne's avatar
Don Gagne committed
347
    _checkForNewVersion();
348 349
}

350 351 352
void QGCApplication::setLanguage()
{
    QLocale locale = QLocale::system();
353
    qDebug() << "System reported locale:" << locale << locale.name();
354
    int langID = toolbox()->settingsManager()->appSettings()->language()->rawValue().toInt();
Gus Grubba's avatar
Gus Grubba committed
355
    //-- See App.SettinsGroup.json for index
356 357 358
    if(langID) {
        switch(langID) {
        case 1:
Gus Grubba's avatar
Gus Grubba committed
359
            locale = QLocale(QLocale::English);
360 361
            break;
        case 2:
Gus Grubba's avatar
Gus Grubba committed
362
            locale = QLocale(QLocale::Bulgarian);
363 364
            break;
        case 3:
Gus Grubba's avatar
Gus Grubba committed
365
            locale = QLocale(QLocale::German);
366 367
            break;
        case 4:
Gus Grubba's avatar
Gus Grubba committed
368
            locale = QLocale(QLocale::French);
369 370
            break;
        case 5:
Gus Grubba's avatar
Gus Grubba committed
371
            locale = QLocale(QLocale::Italian);
372 373
            break;
        case 6:
Gus Grubba's avatar
Gus Grubba committed
374
            locale = QLocale(QLocale::Korean);
375 376
            break;
        case 7:
Gus Grubba's avatar
Gus Grubba committed
377
            locale = QLocale(QLocale::Russian);
378 379
            break;
        case 8:
Gus Grubba's avatar
Gus Grubba committed
380 381 382
            locale = QLocale(QLocale::Turkish);
            break;
        case 9:
383 384 385 386 387 388 389 390 391
            locale = QLocale(QLocale::Chinese);
            break;
        }
    }
    //-- Our localization
    if(_QGCTranslator.load(locale, "qgc_", "", ":/localization"))
        _app->installTranslator(&_QGCTranslator);
}

392
void QGCApplication::_shutdown()
Don Gagne's avatar
Don Gagne committed
393
{
394
    shutdownVideoStreaming();
395
    delete _toolbox;
Don Gagne's avatar
Don Gagne committed
396 397
}

Don Gagne's avatar
Don Gagne committed
398 399 400
QGCApplication::~QGCApplication()
{
    // Place shutdown code in _shutdown
401
    _app = nullptr;
Don Gagne's avatar
Don Gagne committed
402 403
}

404
void QGCApplication::_initCommon()
405
{
406 407 408 409
    static const char* kRefOnly         = "Reference only";
    static const char* kQGCControllers  = "QGroundControl.Controllers";
    static const char* kQGCVehicle      = "QGroundControl.Vehicle";

410
    QSettings settings;
411

Don Gagne's avatar
Don Gagne committed
412
    // Register our Qml objects
dogmaphobic's avatar
dogmaphobic committed
413

Don Gagne's avatar
Don Gagne committed
414 415
    qmlRegisterType<QGCPalette>     ("QGroundControl.Palette", 1, 0, "QGCPalette");
    qmlRegisterType<QGCMapPalette>  ("QGroundControl.Palette", 1, 0, "QGCMapPalette");
dogmaphobic's avatar
dogmaphobic committed
416

417 418 419 420 421 422
    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<QGCCameraManager>    (kQGCVehicle,                           1, 0, "QGCCameraManager",           kRefOnly);
    qmlRegisterUncreatableType<QGCCameraControl>    (kQGCVehicle,                           1, 0, "QGCCameraControl",           kRefOnly);
Gus Grubba's avatar
Gus Grubba committed
423
    qmlRegisterUncreatableType<QGCVideoStreamInfo>  (kQGCVehicle,                           1, 0, "QGCVideoStreamInfo",         kRefOnly);
424 425 426 427 428 429
    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);

430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
    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);

    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);

445
    qmlRegisterType<QGCMapCircle>                   ("QGroundControl.FlightMap",            1, 0, "QGCMapCircle");
446

447 448 449 450 451 452 453 454 455
    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");
456
    qmlRegisterType<MAVLinkInspectorController>     (kQGCControllers,                       1, 0, "MAVLinkInspectorController");
457 458
    qmlRegisterType<SyslinkComponentController>     (kQGCControllers,                       1, 0, "SyslinkComponentController");
    qmlRegisterType<EditPositionDialogController>   (kQGCControllers,                       1, 0, "EditPositionDialogController");
459

Don Gagne's avatar
Don Gagne committed
460
#ifndef __mobile__
461
#ifndef NO_SERIAL_LINK
462
    qmlRegisterType<FirmwareUpgradeController>      (kQGCControllers,                       1, 0, "FirmwareUpgradeController");
463
#endif
464
    qmlRegisterType<GeoTagController>               (kQGCControllers,                       1, 0, "GeoTagController");
Don Gagne's avatar
Don Gagne committed
465
#endif
466
    qmlRegisterType<MavlinkConsoleController>       (kQGCControllers,                       1, 0, "MavlinkConsoleController");
467
    qmlRegisterType<MAVLinkInspectorController>     (kQGCControllers,                       1, 0, "MAVLinkInspectorController");
dogmaphobic's avatar
dogmaphobic committed
468

469
    // Register Qml Singletons
470 471
    qmlRegisterSingletonType<QGroundControlQmlGlobal>   ("QGroundControl",                          1, 0, "QGroundControl",         qgroundcontrolQmlGlobalSingletonFactory);
    qmlRegisterSingletonType<ScreenToolsController>     ("QGroundControl.ScreenToolsController",    1, 0, "ScreenToolsController",  screenToolsControllerSingletonFactory);
472
    qmlRegisterSingletonType<ShapeFileHelper>           ("QGroundControl.ShapeFileHelper",          1, 0, "ShapeFileHelper",        shapeFileHelperSingletonFactory);
473 474
}

475
bool QGCApplication::_initForNormalAppBoot()
476
{
477 478 479 480 481 482 483 484 485 486 487

    //-- See App.SettinsGroup.json for index
    int langID = toolbox()->settingsManager()->appSettings()->language()->rawValue().toInt();
    //-- Don't load custom fonts if not using standard character set
    if(langID != 6 /*Korean*/ && langID != 9 /*Chinese*/) {
        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
488 489
    }

490
    QSettings settings;
491

492
    // Exit main application when last window is closed
493
    connect(this, &QGCApplication::lastWindowClosed, this, QGCApplication::quit);
494

495
    _qmlAppEngine = toolbox()->corePlugin()->createRootWindow(this);
496

497
    // Now that main window is up check for lost log files
498
    connect(this, &QGCApplication::checkForLostLogFiles, toolbox()->mavlinkProtocol(), &MAVLinkProtocol::checkForLostLogFiles);
499
    emit checkForLostLogFiles();
500 501

    // Load known link configurations
502
    toolbox()->linkManager()->loadLinkConfigurationList();
503

Jacob Walser's avatar
Jacob Walser committed
504 505
    // Probe for joysticks
    toolbox()->joystickManager()->init();
506

507
    if (_settingsUpgraded) {
508 509
        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
510 511
    }

512 513 514
    // Connect links with flag AutoconnectLink
    toolbox()->linkManager()->startAutoConnectedLinks();

dogmaphobic's avatar
dogmaphobic committed
515
    if (getQGCMapEngine()->wasCacheReset()) {
516 517
        showMessage(tr("The Offline Map Cache database has been upgraded. "
                    "Your old map cache sets have been reset."));
dogmaphobic's avatar
dogmaphobic committed
518 519
    }

Don Gagne's avatar
Don Gagne committed
520
    settings.sync();
521
    return true;
pixhawk's avatar
pixhawk committed
522 523
}

524
bool QGCApplication::_initForUnitTests()
pixhawk's avatar
pixhawk committed
525
{
526
    return true;
pixhawk's avatar
pixhawk committed
527 528
}

Don Gagne's avatar
Don Gagne committed
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
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)
{
544 545 546
    return QGCApplication::_app;
}

547 548
void QGCApplication::informationMessageBoxOnMainThread(const QString& title, const QString& msg)
{
549 550
    Q_UNUSED(title);
    showMessage(msg);
551 552 553 554
}

void QGCApplication::warningMessageBoxOnMainThread(const QString& title, const QString& msg)
{
555 556
    Q_UNUSED(title)
    showMessage(msg);
557 558 559 560
}

void QGCApplication::criticalMessageBoxOnMainThread(const QString& title, const QString& msg)
{
561 562
    Q_UNUSED(title)
    showMessage(msg);
563 564
}

565
void QGCApplication::saveTelemetryLogOnMainThread(QString tempLogfile)
566
{
567 568 569 570 571 572 573 574
    // 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");
575

576 577 578 579 580 581 582 583 584 585 586 587 588
        int tryIndex = 1;
        QString saveFileName = nameFormat.arg(
            QDateTime::currentDateTime().toString(dtFormat)).arg("").arg(toolbox()->settingsManager()->appSettings()->telemetryFileExtension);
        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);
589
        }
590
    }
591 592
    QFile::remove(tempLogfile);
}
593

594
void QGCApplication::checkTelemetrySavePathOnMainThread()
595 596 597 598 599 600 601 602 603
{
    // 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");

604
    QString saveDirPath = _toolbox->settingsManager()->appSettings()->telemetrySavePath();
605
    if (saveDirPath.isEmpty()) {
606
        QString error = tr("Unable to save telemetry log. Application save directory is not set.");
Gus Grubba's avatar
Gus Grubba committed
607 608
        Q_UNUSED(useMessageBox);
        showMessage(error);
609 610 611 612 613 614
        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
615
        showMessage(error);
616 617 618 619 620
        return false;
    }

    return true;
}
621

Don Gagne's avatar
Don Gagne committed
622
void QGCApplication::reportMissingParameter(int componentId, const QString& name)
623
{
Don Gagne's avatar
Don Gagne committed
624 625
    _missingParams += QString("%1:%2").arg(componentId).arg(name);
    _missingParamsDelayedDisplayTimer.start();
626
}
627

Don Gagne's avatar
Don Gagne committed
628 629
/// Called when the delay timer fires to show the missing parameters warning
void QGCApplication::_missingParamsDisplay(void)
630
{
DonLakeFlyer's avatar
DonLakeFlyer committed
631 632 633 634 635 636 637 638
    if (_missingParams.count()) {
        QString params;
        foreach (const QString &name, _missingParams) {
            if (params.isEmpty()) {
                params += name;
            } else {
                params += QString(", %1").arg(name);
            }
639
        }
DonLakeFlyer's avatar
DonLakeFlyer committed
640
        _missingParams.clear();
dogmaphobic's avatar
dogmaphobic committed
641

642
        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
643
    }
644 645
}

Gus Grubba's avatar
Gus Grubba committed
646
QObject* QGCApplication::_rootQmlObject()
Don Gagne's avatar
Don Gagne committed
647
{
648 649 650
    if(_qmlAppEngine && _qmlAppEngine->rootObjects().size())
        return _qmlAppEngine->rootObjects()[0];
    return nullptr;
Don Gagne's avatar
Don Gagne committed
651 652 653
}


654
void QGCApplication::showMessage(const QString& message)
Don Gagne's avatar
Don Gagne committed
655
{
656
    // PreArm messages are handled by Vehicle and shown in Map
657
    if (message.startsWith(QStringLiteral("PreArm")) || message.startsWith(QStringLiteral("preflight"), Qt::CaseInsensitive)) {
Don Gagne's avatar
Don Gagne committed
658 659
        return;
    }
660 661 662 663 664 665 666 667
    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));
    } else {
        qWarning() << "Internal error";
    }
Don Gagne's avatar
Don Gagne committed
668 669
}

670
QQuickItem* QGCApplication::mainRootWindow()
671
{
672 673
    if(_mainRootWindow) {
        _mainRootWindow = reinterpret_cast<QQuickItem*>(_rootQmlObject());
674
    }
675
    return _mainRootWindow;
676 677 678
}

void QGCApplication::showSetupView()
Don Gagne's avatar
Don Gagne committed
679
{
680 681 682
    if(_rootQmlObject()) {
        QMetaObject::invokeMethod(_rootQmlObject(), "showSetupView");
    }
Don Gagne's avatar
Don Gagne committed
683 684
}

685
void QGCApplication::qmlAttemptWindowClose()
Don Gagne's avatar
Don Gagne committed
686
{
687 688 689
    if(_rootQmlObject()) {
        QMetaObject::invokeMethod(_rootQmlObject(), "attemptWindowClose");
    }
Don Gagne's avatar
Don Gagne committed
690
}
691 692 693 694 695

bool QGCApplication::isInternetAvailable()
{
    return getQGCMapEngine()->isInternetActive();
}
Don Gagne's avatar
Don Gagne committed
696

697
void QGCApplication::_checkForNewVersion()
Don Gagne's avatar
Don Gagne committed
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
{
#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
718 719 720
#ifdef __mobile__
    Q_UNUSED(localFile);
#else
Don Gagne's avatar
Don Gagne committed
721 722 723 724 725 726 727 728 729 730 731 732
    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
733 734
                //-- 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
735 736 737 738 739
            }
        }
    }

    _currentVersionDownload->deleteLater();
Don Gagne's avatar
Don Gagne committed
740
#endif
Don Gagne's avatar
Don Gagne committed
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
}

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;
}
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789


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);
    _gpsRtkFactGroup->currentAccuracy()->setRawValue(accuracyMM/1000.0);
    _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);
}

790 791 792 793 794 795 796 797 798 799 800 801 802
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"));
}