LogCompressor.cc 8.92 KB
Newer Older
lm's avatar
lm committed
1
/*===================================================================
pixhawk's avatar
pixhawk committed
2 3 4 5 6 7 8 9 10 11
QGroundControl Open Source Ground Control Station

(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL 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.
lm's avatar
lm committed
12
    
pixhawk's avatar
pixhawk committed
13 14 15 16
    QGROUNDCONTROL 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.
lm's avatar
lm committed
17
    
pixhawk's avatar
pixhawk committed
18 19
    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
lm's avatar
lm committed
20
    
pixhawk's avatar
pixhawk committed
21 22 23 24 25 26 27 28 29
======================================================================*/

/**
 * @file
 *   @brief Implementation of class LogCompressor
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

pixhawk's avatar
pixhawk committed
30 31 32
#include <QFile>
#include <QTextStream>
#include <QStringList>
33
#include <QFileInfo>
lm's avatar
lm committed
34
#include <QList>
pixhawk's avatar
pixhawk committed
35 36 37 38
#include "LogCompressor.h"

#include <QDebug>

39 40 41
/**
 * It will only get active upon calling startCompression()
 */
42
LogCompressor::LogCompressor(QString logFileName, QString outFileName, int uasid) :
pixhawk's avatar
pixhawk committed
43
        logFileName(logFileName),
44 45 46 47
        outFileName(outFileName),
        running(true),
        currentDataLine(0),
        dataLines(1),
pixhawk's avatar
pixhawk committed
48 49 50 51 52 53 54 55 56
        uasid(uasid)
{
}

void LogCompressor::run()
{
    QString separator = "\t";
    QString fileName = logFileName;
    QFile file(fileName);
57
    QFile outfile(outFileName);
pixhawk's avatar
pixhawk committed
58
    QStringList* keys = new QStringList();
lm's avatar
lm committed
59 60
    QList<quint64> times;// = new QList<quint64>();
    QList<quint64> finalTimes;
lm's avatar
lm committed
61 62

    qDebug() << "LOG COMPRESSOR: Starting" << fileName;
lm's avatar
lm committed
63
    
lm's avatar
lm committed
64 65
    if (!file.exists() || !file.open(QIODevice::ReadOnly | QIODevice::Text))
    {
66
        //qDebug() << "LOG COMPRESSOR: INPUT FILE DOES NOT EXIST";
lm's avatar
lm committed
67
        emit logProcessingStatusChanged(tr("Log Compressor: Cannot start/compress log file, since input file %1 is not readable").arg(QFileInfo(fileName).absoluteFilePath()));
pixhawk's avatar
pixhawk committed
68
        return;
lm's avatar
lm committed
69
    }
lm's avatar
lm committed
70
    
71
        // Check if file is writeable
lm's avatar
lm committed
72
        if (outFileName == ""/* || !QFileInfo(outfile).isWritable()*/)
73
        {
74
            //qDebug() << "LOG COMPRESSOR: OUTPUT FILE DOES NOT EXIST" << outFileName;
lm's avatar
lm committed
75
            emit logProcessingStatusChanged(tr("Log Compressor: Cannot start/compress log file, since output file %1 is not writable").arg(QFileInfo(outFileName).absoluteFilePath()));
76 77
            return;
        }
lm's avatar
lm committed
78
    
pixhawk's avatar
pixhawk committed
79 80
    // Find all keys
    QTextStream in(&file);
lm's avatar
lm committed
81 82 83 84 85 86 87 88 89

    // Search only a certain region, assuming that not more
    // than N dimensions at H Hertz can be send
    const unsigned int keySearchLimit = 15000;
    // e.g. 500 Hz * 30 values or
    // e.g. 100 Hz * 150 values

    unsigned int keyCounter = 0;
    while (!in.atEnd() && keyCounter < keySearchLimit) {
pixhawk's avatar
pixhawk committed
90 91 92 93 94
        QString line = in.readLine();
        // Accumulate map of keys
        // Data field name is at position 2
        QString key = line.split(separator).at(2);
        if (!keys->contains(key)) keys->append(key);
lm's avatar
lm committed
95
        keyCounter++;
pixhawk's avatar
pixhawk committed
96 97
    }
    keys->sort();
lm's avatar
lm committed
98
    
pixhawk's avatar
pixhawk committed
99 100 101 102 103 104 105 106
    QString header = "";
    QString spacer = "";
    for (int i = 0; i < keys->length(); i++)
    {
        header += keys->at(i) + separator;
        spacer += " " + separator;
    }

lm's avatar
lm committed
107 108
    emit logProcessingStatusChanged(tr("Log compressor: Dataset contains dimension: ") + header);
    
109
    //qDebug() << header;
lm's avatar
lm committed
110
    
111
    //qDebug() << "NOW READING TIMES";
lm's avatar
lm committed
112
    
pixhawk's avatar
pixhawk committed
113 114 115 116 117
    // Find all times
    //in.reset();
    file.reset();
    in.reset();
    in.resetStatus();
lm's avatar
lm committed
118 119 120
    bool ok;
    while (!in.atEnd())
    {
pixhawk's avatar
pixhawk committed
121 122
        QString line = in.readLine();
        // Accumulate map of keys
lm's avatar
lm committed
123 124 125
        // Data field name is at position 2b
        quint64 time = static_cast<QString>(line.split(separator).at(0)).toLongLong(&ok);
        if (ok)
pixhawk's avatar
pixhawk committed
126
        {
lm's avatar
lm committed
127
            times.append(time);
pixhawk's avatar
pixhawk committed
128 129
        }
    }
lm's avatar
lm committed
130 131 132 133 134
    
    qSort(times);
    
    qint64 lastTime = -1;
    
pixhawk's avatar
pixhawk committed
135 136
    // Create lines
    QStringList* outLines = new QStringList();
lm's avatar
lm committed
137
    for (int i = 0; i < times.length(); i++)
pixhawk's avatar
pixhawk committed
138
    {
lm's avatar
lm committed
139 140
        // Cast to signed on purpose, 64 bit timestamp still long enough
        if (static_cast<qint64>(times.at(i)) != lastTime)
lm's avatar
lm committed
141 142 143 144 145 146
        {
            outLines->append(QString("%1").arg(times.at(i)) + separator + spacer);
            lastTime = static_cast<qint64>(times.at(i));
            finalTimes.append(times.at(i));
            //qDebug() << "ADDED:" << outLines->last();
        }
pixhawk's avatar
pixhawk committed
147 148
    }

lm's avatar
lm committed
149 150 151 152
    dataLines = finalTimes.length();

    emit logProcessingStatusChanged(tr("Log compressor: Now processing %1 log lines").arg(finalTimes.length()));
    
pixhawk's avatar
pixhawk committed
153 154 155
    // Fill in the values for all keys
    file.reset();
    QTextStream data(&file);
156
    int linecounter = 0;
157
    quint64 lastTimeIndex = 0;
lm's avatar
lm committed
158 159
    bool failed = false;
    
160 161
    while (!data.atEnd())
    {
162 163
        linecounter++;
        currentDataLine = linecounter;
pixhawk's avatar
pixhawk committed
164 165 166
        QString line = data.readLine();
        QStringList parts = line.split(separator);
        // Get time
lm's avatar
lm committed
167
        quint64 time = static_cast<QString>(parts.first()).toLongLong(&ok);
pixhawk's avatar
pixhawk committed
168 169
        QString field = parts.at(2);
        QString value = parts.at(3);
170 171 172 173 174
        // Enforce NaN if no value is present
        if (value.length() == 0 || value == "" || value == " " || value == "\t" || value == "\n")
        {
            value = "NaN";
        }
pixhawk's avatar
pixhawk committed
175
        // Get matching output line
lm's avatar
lm committed
176
        
177 178 179 180
        // Constraining the search area might result in not finding a key,
        // but it significantly reduces the time needed for the search
        // setting a window of 1000 entries means that a 1 Hz data point
        // can still be located
lm's avatar
lm committed
181
        quint64 offsetLimit = 100;
182
        quint64 offset;
lm's avatar
lm committed
183 184 185 186 187 188
        qint64 index = -1;
        failed = false;

        // Search the index until it is valid (!= -1)
        // or the start of the list has been reached (failed)
        while (index == -1 && !failed)
189 190 191 192 193 194 195 196 197
        {
            if (lastTimeIndex > offsetLimit)
            {
                offset = lastTimeIndex - offsetLimit;
            }
            else
            {
                offset = 0;
            }
lm's avatar
lm committed
198 199
            
            index = finalTimes.indexOf(time, offset);
200 201
            if (index == -1)
            {
lm's avatar
lm committed
202 203 204
                if (offset == 0)
                {
                    emit logProcessingStatusChanged(tr("Log compressor: Timestamp %1 not found in dataset, ignoring log line %2").arg(time).arg(linecounter));
lm's avatar
lm committed
205
                    qDebug() << "Completely failed finding value";
lm's avatar
lm committed
206 207 208 209 210 211 212 213
                    //continue;
                    failed = true;
                }
                else
                {
                    emit logProcessingStatusChanged(tr("Log compressor: Timestamp %1 not found in dataset, restarting search.").arg(time));
                    offsetLimit*=2;
                }
214 215
            }
        }
lm's avatar
lm committed
216

217
        if (dataLines > 100) if (index % (dataLines/100) == 0) emit logProcessingStatusChanged(tr("Log compressor: Processed %1% of %2 lines").arg(index/(float)dataLines*100, 0, 'f', 2).arg(dataLines));
lm's avatar
lm committed
218
        
lm's avatar
lm committed
219 220 221 222 223 224 225 226 227 228 229
        if (!failed)
        {
            // When the algorithm reaches here the correct index was found
            lastTimeIndex = index;
            QString outLine = outLines->at(index);
            QStringList outParts = outLine.split(separator);
            // Replace measurement placeholder with current value
            outParts.replace(keys->indexOf(field)+1, value);
            outLine = outParts.join(separator);
            outLines->replace(index, outLine);
        }
pixhawk's avatar
pixhawk committed
230
    }
lm's avatar
lm committed
231 232
    
    
pixhawk's avatar
pixhawk committed
233 234
    // Add header, write out file
    file.close();
lm's avatar
lm committed
235
    
236
    if (outFileName == logFileName)
237 238 239
    {
        QFile::remove(file.fileName());
        outfile.setFileName(file.fileName());
240

241 242
    }
    if (!outfile.open(QIODevice::WriteOnly | QIODevice::Text))
pixhawk's avatar
pixhawk committed
243
        return;
244
    outfile.write(QString(QString("unix_timestamp") + separator + header.replace(" ", "_") + QString("\n")).toLatin1());
245
    emit logProcessingStatusChanged(tr("Log Compressor: Writing output to file %1").arg(QFileInfo(outFileName).absoluteFilePath()));
pixhawk's avatar
pixhawk committed
246
    //QString fileHeader = QString("unix_timestamp") + header.replace(" ", "_") + QString("\n");
lm's avatar
lm committed
247
    
248
    // File output
pixhawk's avatar
pixhawk committed
249 250 251
    for (int i = 0; i < outLines->length(); i++)
    {
        //qDebug() << outLines->at(i);
252
        outfile.write(QString(outLines->at(i) + "\n").toLatin1());
lm's avatar
lm committed
253
        
pixhawk's avatar
pixhawk committed
254
    }
lm's avatar
lm committed
255
    
256 257
    currentDataLine = 0;
    dataLines = 1;
pixhawk's avatar
pixhawk committed
258
    delete keys;
lm's avatar
lm committed
259
    emit logProcessingStatusChanged(tr("Log compressor: Finished processing file: %1").arg(outfile.fileName()));
lm's avatar
lm committed
260
    qDebug() << "Done with logfile processing";
261
    emit finishedFile(outfile.fileName());
262 263 264
    running = false;
}

265 266 267 268 269
void LogCompressor::startCompression()
{
    start();
}

270 271 272 273 274 275 276 277 278 279 280 281 282
bool LogCompressor::isFinished()
{
    return !running;
}

int LogCompressor::getCurrentLine()
{
    return currentDataLine;
}

int LogCompressor::getDataLines()
{
    return dataLines;
pixhawk's avatar
pixhawk committed
283
}