Files
GoldenCheetah/src/SlfParser.cpp
Mark Liversedge 7c7989a803 Fix Average Temperature Issues
.. Don't include -255 in average

.. Don't show -255 in ride navigator

.. Don't show a value on summary if not preset
2014-06-20 12:59:03 +01:00

164 lines
4.2 KiB
C++

/*
* Copyright (c) 2010 Frank Zschockelt (rox_sigma@freakysoft.de
*
* 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 2 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., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <QString>
#include "SlfParser.h"
#include "TimeUtils.h"
#include "Units.h"
SlfParser::SlfParser (RideFile* rideFile)
: rideFile(rideFile)
{
}
bool
SlfParser::startElement( const QString&, const QString&,
const QString& qName,
const QXmlAttributes& qAttributes)
{
buffer.clear();
(void)qName;
(void)qAttributes;
if (qName == "Log")
{
secs = 0.0;
distance = 0.0;
lap = 0;
}
else if (qName == "Eintrag") {
hr = 0.0;
alt = 0.0;
speed = 0.0;
pauseSec = 0.0;
restSec = 0.0;
if (qAttributes.value("wp").toULong() == 1)
{
lap++;
}
}
else if (qName == "Pause")
{
pauseSec = qAttributes.value("zeit").toDouble();
}
else if (qName == "Rest")
{
restSec = qAttributes.value("zeit").toDouble();
}
return true;
}
bool
SlfParser::endElement( const QString&, const QString&, const QString& qName)
{
if (qName == "StartDatum")
{
start_time.setDate(QDate::fromString(buffer, "dd.MM.yy").addYears(100));
rideFile->setStartTime(start_time);
}
else if (qName == "StartZeit")
{
start_time.setTime(QTime::fromString(buffer, "hh:mm:ss"));
}
else if (qName == "StoppDatum")
{
QMap<QString, QString> workout;
stop_time.setDate(QDate::fromString(buffer, "dd.MM.yy").addYears(100));
workout.insert("value", QString("%1").arg(start_time.secsTo(stop_time)));
rideFile->metricOverrides.insert("workout_time", workout);
}
else if (qName == "StoppZeit")
{
stop_time.setTime(QTime::fromString(buffer, "hh:mm:ss"));
}
else if (qName == "RadGroesse")
{
wheelSize = buffer.toInt();
}
else if (qName == "Einheit")
{
imperial = (buffer == "mph");
}
else if (qName == "Kalorien")
{
QMap<QString, QString> work;
work.insert("value", QString("%1").arg(buffer.toDouble() / 0.239));
rideFile->metricOverrides.insert("total_work", work);
}
else if (qName == "SamplingRate")
{
//Seems like the sampling rate is rounded...
samplingRate = buffer.toDouble() - 0.5;
rideFile->setRecIntSecs(samplingRate);
}
else if (qName == "Speed")
{
speed = buffer.toDouble();
}
else if (qName == "Puls")
{
hr = buffer.toDouble();
}
else if (qName == "Hoehe")
{
alt = buffer.toDouble();
}
else if (qName == "RPLAbs")
{
rotations = buffer.toDouble();
distance += (rotations * (wheelSize) / 1000 / 1000);
}
else if (qName == "Temp")
{
temperature = buffer.toDouble();
}
else if (qName == "Eintrag")
{
double cadence = 0.0;
double torque = 0.0;
double power = 0.0;
double lon = 0.0;
double lat = 0.0;
double headwind = 0.0;
if (pauseSec > 0.0)
{
secs += pauseSec - restSec;
}
else
{
if (imperial)
{
speed *= KM_PER_MILE;
distance *= KM_PER_MILE;
alt *= FEET_PER_METER;
}
rideFile->appendPoint(secs, cadence, hr, distance, speed, torque, power, alt, lon, lat, headwind, 0.0, RideFile::NoTemp, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, lap);
secs += samplingRate;
}
}
return true;
}
bool SlfParser::characters( const QString& str )
{
buffer += str;
return true;
}