[core] Check invalid track difficulty value.

This commit is contained in:
Daria Volvenkova 2020-03-24 14:39:00 +03:00 committed by Vladimir Byko-Ianko
parent 6280f7740f
commit 3fda8eebdf
2 changed files with 10 additions and 1 deletions

View file

@ -44,6 +44,13 @@ ElevationInfo::ElevationInfo(Track const & track)
FillProperty(properties, kDescentKey, m_descent);
FillProperty(properties, kLowestPointKey, m_minAltitude);
FillProperty(properties, kHighestPointKey, m_maxAltitude);
FillProperty(properties, kDifficultyKey, m_difficulty);
if (m_difficulty > kMaxDifficulty)
{
LOG(LWARNING, ("Invalid difficulty value", m_difficulty, "in track", track.GetName()));
m_difficulty = kMaxDifficulty;
}
FillProperty(properties, kDurationKey, m_duration);
}

View file

@ -39,6 +39,8 @@ public:
uint32_t GetDuration() const { return m_duration; }
private:
static uint8_t constexpr kMaxDifficulty = 3;
kml::TrackId m_id = kml::kInvalidTrackId;
std::string m_name;
// Points with distance from start of the track and altitude.
@ -51,7 +53,7 @@ private:
uint16_t m_minAltitude = 0;
// Altitude in meters.
uint16_t m_maxAltitude = 0;
// Some digital difficulty level with value in range [0-3]
// Some digital difficulty level with value in range [0-kMaxDifficulty]
uint8_t m_difficulty = 0;
// Duration in seconds.
uint32_t m_duration = 0;