2013-11-19 07:39:52 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file flightlogmanager.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
|
|
* @addtogroup [Group]
|
|
|
|
* @{
|
|
|
|
* @addtogroup FlightLogManager
|
|
|
|
* @{
|
|
|
|
* @brief [Brief]
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "flightlogmanager.h"
|
2013-11-20 12:24:34 +01:00
|
|
|
#include "extensionsystem/pluginmanager.h"
|
2013-11-19 07:39:52 +01:00
|
|
|
|
2013-11-26 16:06:12 +01:00
|
|
|
#include <QApplication>
|
2013-11-26 23:45:38 +01:00
|
|
|
#include <QFileDialog>
|
2013-11-26 16:06:12 +01:00
|
|
|
|
2013-11-20 12:24:34 +01:00
|
|
|
#include "debuglogcontrol.h"
|
2013-11-24 17:50:07 +01:00
|
|
|
#include "uavobjecthelper.h"
|
2013-11-26 23:45:38 +01:00
|
|
|
#include "uavtalk/uavtalk.h"
|
2013-11-27 16:07:34 +01:00
|
|
|
#include "utils/logfile.h"
|
2013-11-20 00:07:04 +01:00
|
|
|
|
|
|
|
FlightLogManager::FlightLogManager(QObject *parent) :
|
2013-12-01 21:22:58 +01:00
|
|
|
QObject(parent), m_disableControls(false),
|
|
|
|
m_disableExport(true), m_cancelDownload(false),
|
|
|
|
m_adjustExportedTimestamps(true)
|
2013-11-26 15:42:49 +01:00
|
|
|
{
|
2013-11-20 12:24:34 +01:00
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
2013-11-26 15:42:49 +01:00
|
|
|
|
|
|
|
m_objectManager = pm->getObject<UAVObjectManager>();
|
2013-11-20 12:24:34 +01:00
|
|
|
Q_ASSERT(m_objectManager);
|
|
|
|
|
2013-11-24 17:50:07 +01:00
|
|
|
m_flightLogControl = DebugLogControl::GetInstance(m_objectManager);
|
|
|
|
Q_ASSERT(m_flightLogControl);
|
|
|
|
|
2013-11-26 15:42:49 +01:00
|
|
|
m_flightLogStatus = DebugLogStatus::GetInstance(m_objectManager);
|
2013-11-20 12:24:34 +01:00
|
|
|
Q_ASSERT(m_flightLogStatus);
|
2013-11-26 22:52:24 +01:00
|
|
|
connect(m_flightLogStatus, SIGNAL(FlightChanged(quint16)), this, SLOT(updateFlightEntries(quint16)));
|
2013-11-20 12:24:34 +01:00
|
|
|
|
2013-12-07 23:28:25 +01:00
|
|
|
m_flightLogEntry = DebugLogEntry::GetInstance(m_objectManager);
|
2013-11-24 17:50:07 +01:00
|
|
|
Q_ASSERT(m_flightLogEntry);
|
2013-11-26 22:52:24 +01:00
|
|
|
|
|
|
|
updateFlightEntries(m_flightLogStatus->getFlight());
|
2014-03-06 00:41:48 +01:00
|
|
|
|
|
|
|
updateUAVOS();
|
2013-11-20 00:07:04 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 15:42:49 +01:00
|
|
|
FlightLogManager::~FlightLogManager()
|
|
|
|
{
|
2013-11-26 15:25:27 +01:00
|
|
|
while (!m_logEntries.isEmpty()) {
|
|
|
|
delete m_logEntries.takeFirst();
|
|
|
|
}
|
2013-11-20 00:07:04 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
void addLogEntries(QQmlListProperty<ExtendedDebugLogEntry> *list, ExtendedDebugLogEntry *entry)
|
2013-11-26 15:42:49 +01:00
|
|
|
{
|
2013-11-25 14:59:23 +01:00
|
|
|
Q_UNUSED(list);
|
|
|
|
Q_UNUSED(entry);
|
2013-11-20 16:24:57 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
int countLogEntries(QQmlListProperty<ExtendedDebugLogEntry> *list)
|
2013-11-26 15:42:49 +01:00
|
|
|
{
|
2013-11-25 14:59:23 +01:00
|
|
|
return static_cast< QList<ExtendedDebugLogEntry *> *>(list->data)->size();
|
2013-11-20 16:24:57 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
ExtendedDebugLogEntry *logEntryAt(QQmlListProperty<ExtendedDebugLogEntry> *list, int index)
|
2013-11-26 15:42:49 +01:00
|
|
|
{
|
2013-11-25 14:59:23 +01:00
|
|
|
return static_cast< QList<ExtendedDebugLogEntry *> *>(list->data)->at(index);
|
2013-11-20 16:24:57 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
void clearLogEntries(QQmlListProperty<ExtendedDebugLogEntry> *list)
|
2013-11-26 15:42:49 +01:00
|
|
|
{
|
2013-11-25 14:59:23 +01:00
|
|
|
return static_cast< QList<ExtendedDebugLogEntry *> *>(list->data)->clear();
|
2013-11-20 16:24:57 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 15:42:49 +01:00
|
|
|
QQmlListProperty<ExtendedDebugLogEntry> FlightLogManager::logEntries()
|
|
|
|
{
|
2013-11-26 22:52:24 +01:00
|
|
|
return QQmlListProperty<ExtendedDebugLogEntry>(this, &m_logEntries, &addLogEntries, &countLogEntries, &logEntryAt, &clearLogEntries);
|
|
|
|
}
|
|
|
|
|
2014-03-06 00:41:48 +01:00
|
|
|
void addUAVOEntries(QQmlListProperty<UAVObject> *list, UAVObject *entry)
|
|
|
|
{
|
|
|
|
Q_UNUSED(list);
|
|
|
|
Q_UNUSED(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
int countUAVOEntries(QQmlListProperty<UAVObject> *list)
|
|
|
|
{
|
|
|
|
return static_cast< QList<UAVObject *> *>(list->data)->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
UAVObject *uavoEntryAt(QQmlListProperty<UAVObject> *list, int index)
|
|
|
|
{
|
|
|
|
return static_cast< QList<UAVObject *> *>(list->data)->at(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void clearUAVOEntries(QQmlListProperty<UAVObject> *list)
|
|
|
|
{
|
|
|
|
return static_cast< QList<UAVObject *> *>(list->data)->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
QQmlListProperty<UAVObject> FlightLogManager::uavoEntries()
|
|
|
|
{
|
|
|
|
return QQmlListProperty<UAVObject>(this, &m_uavoEntries, &addUAVOEntries, &countUAVOEntries, &uavoEntryAt, &clearUAVOEntries);
|
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
QStringList FlightLogManager::flightEntries()
|
|
|
|
{
|
|
|
|
return m_flightEntries;
|
2013-11-20 16:24:57 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 15:42:49 +01:00
|
|
|
void FlightLogManager::clearAllLogs()
|
|
|
|
{
|
2013-11-26 17:00:01 +01:00
|
|
|
setDisableControls(true);
|
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
|
|
|
|
2013-11-26 15:42:49 +01:00
|
|
|
// Clear on flight side
|
2013-11-26 16:22:44 +01:00
|
|
|
UAVObjectUpdaterHelper updateHelper;
|
|
|
|
|
|
|
|
m_flightLogControl->setFlight(0);
|
|
|
|
m_flightLogControl->setEntry(0);
|
|
|
|
m_flightLogControl->setOperation(DebugLogControl::OPERATION_FORMATFLASH);
|
|
|
|
if (updateHelper.doObjectAndWait(m_flightLogControl, UAVTALK_TIMEOUT) == UAVObjectUpdaterHelper::SUCCESS) {
|
2013-11-26 22:52:24 +01:00
|
|
|
// Then empty locally
|
|
|
|
clearLogList();
|
2013-11-26 15:25:27 +01:00
|
|
|
}
|
2013-11-26 17:00:01 +01:00
|
|
|
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
setDisableControls(false);
|
2013-11-20 00:07:04 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
void FlightLogManager::clearLogList()
|
|
|
|
{
|
2013-12-07 23:28:25 +01:00
|
|
|
QList<ExtendedDebugLogEntry *> tmpList(m_logEntries);
|
2013-11-26 22:52:24 +01:00
|
|
|
m_logEntries.clear();
|
|
|
|
|
|
|
|
emit logEntriesChanged();
|
2013-11-30 13:02:52 +01:00
|
|
|
setDisableExport(true);
|
2013-11-26 22:52:24 +01:00
|
|
|
|
|
|
|
while (!tmpList.isEmpty()) {
|
|
|
|
delete tmpList.takeFirst();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-26 15:42:49 +01:00
|
|
|
void FlightLogManager::retrieveLogs(int flightToRetrieve)
|
|
|
|
{
|
2013-11-26 17:00:01 +01:00
|
|
|
setDisableControls(true);
|
2013-11-26 16:06:12 +01:00
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
2013-11-30 13:02:52 +01:00
|
|
|
m_cancelDownload = false;
|
2013-11-24 17:50:07 +01:00
|
|
|
UAVObjectUpdaterHelper updateHelper;
|
|
|
|
UAVObjectRequestHelper requestHelper;
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
clearLogList();
|
2013-11-24 17:50:07 +01:00
|
|
|
|
|
|
|
// Set up what to retrieve
|
|
|
|
int startFlight = (flightToRetrieve == -1) ? 0 : flightToRetrieve;
|
2013-11-26 15:42:49 +01:00
|
|
|
int endFlight = (flightToRetrieve == -1) ? m_flightLogStatus->getFlight() : flightToRetrieve;
|
2013-11-24 17:50:07 +01:00
|
|
|
|
|
|
|
// Prepare to send request for event retrieval
|
|
|
|
m_flightLogControl->setOperation(DebugLogControl::OPERATION_RETRIEVE);
|
2013-11-26 15:42:49 +01:00
|
|
|
for (int flight = startFlight; flight <= endFlight; flight++) {
|
2013-11-24 17:50:07 +01:00
|
|
|
m_flightLogControl->setFlight(flight);
|
|
|
|
bool gotLast = false;
|
2013-11-26 15:42:49 +01:00
|
|
|
int entry = 0;
|
|
|
|
while (!gotLast) {
|
2013-11-24 17:50:07 +01:00
|
|
|
// Send request for loading flight entry on flight side and wait for ack/nack
|
|
|
|
m_flightLogControl->setEntry(entry);
|
|
|
|
|
2013-11-26 16:06:12 +01:00
|
|
|
if (updateHelper.doObjectAndWait(m_flightLogControl, UAVTALK_TIMEOUT) == UAVObjectUpdaterHelper::SUCCESS &&
|
|
|
|
requestHelper.doObjectAndWait(m_flightLogEntry, UAVTALK_TIMEOUT) == UAVObjectUpdaterHelper::SUCCESS) {
|
|
|
|
if (m_flightLogEntry->getType() != DebugLogEntry::TYPE_EMPTY) {
|
|
|
|
// Ok, we retrieved the entry, and it was the correct one. clone it and add it to the list
|
|
|
|
ExtendedDebugLogEntry *logEntry = new ExtendedDebugLogEntry();
|
2013-11-27 16:07:34 +01:00
|
|
|
logEntry->setData(m_flightLogEntry->getData(), m_objectManager);
|
2013-11-26 16:06:12 +01:00
|
|
|
m_logEntries << logEntry;
|
|
|
|
|
|
|
|
// Increment to get next entry from flight side
|
|
|
|
entry++;
|
2013-11-24 17:50:07 +01:00
|
|
|
} else {
|
2013-11-26 16:06:12 +01:00
|
|
|
// We are done, not more entries on this flight
|
|
|
|
gotLast = true;
|
2013-11-24 17:50:07 +01:00
|
|
|
}
|
|
|
|
} else {
|
2013-11-26 16:06:12 +01:00
|
|
|
// We failed for some reason
|
2013-11-24 17:50:07 +01:00
|
|
|
break;
|
|
|
|
}
|
2013-11-30 13:02:52 +01:00
|
|
|
if (m_cancelDownload) {
|
|
|
|
break;
|
|
|
|
}
|
2013-11-24 17:50:07 +01:00
|
|
|
}
|
2013-11-30 13:02:52 +01:00
|
|
|
if (m_cancelDownload) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_cancelDownload) {
|
|
|
|
clearLogList();
|
|
|
|
m_cancelDownload = false;
|
2013-11-24 17:50:07 +01:00
|
|
|
}
|
2013-11-30 13:02:52 +01:00
|
|
|
|
2013-11-25 14:59:23 +01:00
|
|
|
emit logEntriesChanged();
|
2013-11-30 13:02:52 +01:00
|
|
|
setDisableExport(m_logEntries.count() == 0);
|
|
|
|
|
2013-11-26 16:06:12 +01:00
|
|
|
QApplication::restoreOverrideCursor();
|
2013-11-26 17:00:01 +01:00
|
|
|
setDisableControls(false);
|
2013-11-20 00:07:04 +01:00
|
|
|
}
|
2013-11-20 21:08:26 +01:00
|
|
|
|
|
|
|
void FlightLogManager::exportLogs()
|
2013-11-26 23:45:38 +01:00
|
|
|
{
|
2013-12-07 23:28:25 +01:00
|
|
|
if (m_logEntries.isEmpty()) {
|
2013-11-30 11:44:55 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-26 23:45:38 +01:00
|
|
|
setDisableControls(true);
|
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
|
|
|
|
|
|
|
QString fileName = QFileDialog::getSaveFileName(NULL, tr("Save Log"),
|
|
|
|
tr("OP-%0.opl").arg(QDateTime::currentDateTime().toString("yyyy-MM-dd_hh-mm-ss")),
|
2013-12-07 23:28:25 +01:00
|
|
|
tr("OpenPilot Log (*.opl)"));
|
2013-11-26 23:45:38 +01:00
|
|
|
if (!fileName.isEmpty()) {
|
2013-11-30 11:44:55 +01:00
|
|
|
// Loop and create a new file for each flight.
|
|
|
|
fileName = fileName.replace(QString(".opl"), QString("%1.opl"));
|
2013-12-07 23:28:25 +01:00
|
|
|
int currentEntry = 0;
|
2013-11-30 11:44:55 +01:00
|
|
|
int currentFlight = 0;
|
2013-12-01 21:22:58 +01:00
|
|
|
quint32 adjustedBaseTime = 0;
|
2013-11-30 11:44:55 +01:00
|
|
|
// Continue until all entries are exported
|
2013-12-07 23:28:25 +01:00
|
|
|
while (currentEntry < m_logEntries.count()) {
|
2013-12-01 21:22:58 +01:00
|
|
|
if (m_adjustExportedTimestamps) {
|
|
|
|
adjustedBaseTime = m_logEntries[currentEntry]->getFlightTime();
|
|
|
|
}
|
|
|
|
|
2013-11-30 11:44:55 +01:00
|
|
|
// Get current flight
|
|
|
|
currentFlight = m_logEntries[currentEntry]->getFlight();
|
|
|
|
|
|
|
|
LogFile logFile;
|
|
|
|
logFile.useProvidedTimeStamp(true);
|
|
|
|
|
|
|
|
// Set the file name to contain flight number
|
|
|
|
logFile.setFileName(fileName.arg(tr("_flight-%1").arg(currentFlight + 1)));
|
|
|
|
logFile.open(QIODevice::WriteOnly);
|
|
|
|
UAVTalk uavTalk(&logFile, m_objectManager);
|
|
|
|
|
|
|
|
// Export entries until no more available or flight changes
|
2013-12-07 23:28:25 +01:00
|
|
|
while (currentEntry < m_logEntries.count() && m_logEntries[currentEntry]->getFlight() == currentFlight) {
|
|
|
|
ExtendedDebugLogEntry *entry = m_logEntries[currentEntry];
|
2013-11-30 11:44:55 +01:00
|
|
|
|
|
|
|
// Only log uavobjects
|
|
|
|
if (entry->getType() == ExtendedDebugLogEntry::TYPE_UAVOBJECT) {
|
|
|
|
// Set timestamp that should be logged for this entry
|
2013-12-01 21:22:58 +01:00
|
|
|
logFile.setNextTimeStamp(entry->getFlightTime() - adjustedBaseTime);
|
2013-11-30 11:44:55 +01:00
|
|
|
|
|
|
|
// Use UAVTalk to log complete message to file
|
|
|
|
uavTalk.sendObject(entry->uavObject(), false, false);
|
2013-12-01 21:22:58 +01:00
|
|
|
qDebug() << entry->getFlightTime() - adjustedBaseTime << "=" << entry->toStringBrief();
|
2013-11-30 11:44:55 +01:00
|
|
|
}
|
|
|
|
currentEntry++;
|
2013-11-27 16:07:34 +01:00
|
|
|
}
|
2013-11-30 11:44:55 +01:00
|
|
|
|
|
|
|
logFile.close();
|
2013-11-27 16:07:34 +01:00
|
|
|
}
|
2013-11-26 23:45:38 +01:00
|
|
|
}
|
2013-11-27 16:07:34 +01:00
|
|
|
|
2013-11-26 23:45:38 +01:00
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
setDisableControls(false);
|
|
|
|
}
|
2013-11-25 17:58:29 +01:00
|
|
|
|
2013-11-30 13:02:52 +01:00
|
|
|
void FlightLogManager::cancelExportLogs()
|
|
|
|
{
|
|
|
|
m_cancelDownload = true;
|
|
|
|
}
|
|
|
|
|
2013-11-26 22:52:24 +01:00
|
|
|
void FlightLogManager::updateFlightEntries(quint16 currentFlight)
|
|
|
|
{
|
|
|
|
Q_UNUSED(currentFlight);
|
|
|
|
|
|
|
|
int flights = m_flightLogStatus->getFlight();
|
|
|
|
if (m_flightEntries.count() == 0 || (m_flightEntries.count() - 1 != flights)) {
|
|
|
|
m_flightEntries.clear();
|
|
|
|
|
|
|
|
m_flightEntries << tr("All");
|
2013-12-07 23:28:25 +01:00
|
|
|
for (int i = 0; i <= flights; i++) {
|
2013-11-26 22:52:24 +01:00
|
|
|
m_flightEntries << QString::number(i + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
emit flightEntriesChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-06 00:41:48 +01:00
|
|
|
void FlightLogManager::updateUAVOS()
|
|
|
|
{
|
|
|
|
foreach(QList<UAVObject*> objectList , m_objectManager->getObjects()) {
|
|
|
|
UAVObject* object = objectList.at(0);
|
|
|
|
if (!object->isMetaDataObject() && !object->isSettingsObject()) {
|
|
|
|
m_uavoEntries.append(object);
|
|
|
|
qDebug() << objectList.at(0)->getName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
emit uavoEntriesChanged();
|
|
|
|
}
|
|
|
|
|
2013-11-25 17:58:29 +01:00
|
|
|
ExtendedDebugLogEntry::ExtendedDebugLogEntry() : DebugLogEntry(),
|
2013-11-27 16:07:34 +01:00
|
|
|
m_object(0)
|
2013-11-26 15:42:49 +01:00
|
|
|
{}
|
2013-11-25 17:58:29 +01:00
|
|
|
|
|
|
|
ExtendedDebugLogEntry::~ExtendedDebugLogEntry()
|
|
|
|
{
|
2013-11-26 15:42:49 +01:00
|
|
|
if (m_object) {
|
2013-11-25 17:58:29 +01:00
|
|
|
delete m_object;
|
|
|
|
m_object = 0;
|
|
|
|
}
|
|
|
|
}
|
2013-11-20 21:08:26 +01:00
|
|
|
|
2013-11-25 17:58:29 +01:00
|
|
|
QString ExtendedDebugLogEntry::getLogString()
|
|
|
|
{
|
2013-11-26 15:42:49 +01:00
|
|
|
if (getType() == DebugLogEntry::TYPE_TEXT) {
|
|
|
|
return QString((const char *)getData().Data);
|
2013-11-25 17:58:29 +01:00
|
|
|
} else if (getType() == DebugLogEntry::TYPE_UAVOBJECT) {
|
2013-11-27 16:07:34 +01:00
|
|
|
return m_object->toString().replace("\n", " ").replace("\t", " ");
|
2013-11-25 17:58:29 +01:00
|
|
|
} else {
|
|
|
|
return "";
|
|
|
|
}
|
2013-11-20 21:08:26 +01:00
|
|
|
}
|
2013-11-25 14:59:23 +01:00
|
|
|
|
2013-11-27 16:07:34 +01:00
|
|
|
void ExtendedDebugLogEntry::setData(const DebugLogEntry::DataFields &data, UAVObjectManager *objectManager)
|
2013-11-25 14:59:23 +01:00
|
|
|
{
|
2013-11-27 16:07:34 +01:00
|
|
|
DebugLogEntry::setData(data);
|
2013-12-07 23:28:25 +01:00
|
|
|
|
2013-11-27 16:07:34 +01:00
|
|
|
if (getType() == DebugLogEntry::TYPE_UAVOBJECT) {
|
|
|
|
UAVDataObject *object = (UAVDataObject *)objectManager->getObject(getObjectID(), getInstanceID());
|
|
|
|
Q_ASSERT(object);
|
2013-12-07 23:28:25 +01:00
|
|
|
m_object = object->clone(getInstanceID());
|
2013-11-27 16:07:34 +01:00
|
|
|
m_object->unpack(getData().Data);
|
|
|
|
}
|
2013-11-25 14:59:23 +01:00
|
|
|
}
|