Bug 451802 - GPX files fails to load
Summary: GPX files fails to load
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Geolocation-Correlator (show other bugs)
Version: 8.0.0
Platform: Kubuntu Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-03-22 18:47 UTC by Kristian Karl
Modified: 2022-03-24 10:49 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In: 8.0.0
Sentry Crash Report:


Attachments
test.gpx (1.84 MB, application/gpx+xml)
2022-03-22 18:47 UTC, Kristian Karl
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Kristian Karl 2022-03-22 18:47:36 UTC
Created attachment 147670 [details]
test.gpx

SUMMARY
After the commit https://invent.kde.org/graphics/digikam/-/commit/94e656db9f78d5abf9577a45f3a2a54f4a5a47b4 gpx files from strava (and elsewhere) fails to load.

STEPS TO REPRODUCE
1. Select an image, and choosed to "Edit the geolocation"
2. In "Geolocation Editor", select tab "GPS Correlator", and click button "Load GPX files..."
3. Use the attached test file test.gps

OBSERVED RESULT
Digikam displays an error: "The following GPX file could not be loaded:"

EXPECTED RESULT
The track of the test.gpx file displayed on the map.

SOFTWARE/OS VERSIONS
Operating System: KDE neon 5.24
KDE Plasma Version: 5.24.3
KDE Frameworks Version: 5.92.0
Qt Version: 5.15.3
Kernel Version: 5.13.0-37-generic (64-bit)
Graphics Platform: X11

ADDITIONAL INFORMATION
When reverting commit 94e656db (https://invent.kde.org/graphics/digikam/-/commit/94e656db9f78d5abf9577a45f3a2a54f4a5a47b4) the file test.gpx loads without problems.

Compiled from latest source commit: 9ff9a4b8
Comment 1 caulier.gilles 2022-03-22 19:05:31 UTC
I CC the student who provides the PR on Gitlab. Wait and see...

Gilles Caulier
Comment 2 Maik Qualmann 2022-03-22 20:09:14 UTC
 The track data contains an "extensions" block the first time reading "gpxtpx:TrackPointExtension" the QXmlStreamReader gives an error QXmlStreamReader::UnexpectedElementError. 

   <extensions>
     <gpxtpx:TrackPointExtension>
      <gpxtpx:atemp>21</gpxtpx:atemp>
      <gpxtpx:hr>97</gpxtpx:hr>
      <gpxtpx:cad>77</gpxtpx:cad>
     </gpxtpx:TrackPointExtension>
    </extensions>

Maik
Comment 3 Maik Qualmann 2022-03-22 20:12:43 UTC
These elements must be added to the QXmlStreamreader as namespace.

Maik
Comment 4 Maik Qualmann 2022-03-23 05:55:45 UTC
The cause is not Comment 3, I leave the task for our student to solve. Is a nice track.

Maik
Comment 5 Kristian Karl 2022-03-23 19:21:48 UTC
Inserting this code after https://invent.kde.org/graphics/digikam/-/blob/master/core/utilities/geolocation/geoiface/tracks/trackreader.cpp#L332  seems to be one solution to the problem.


if (xml.name() == QLatin1String("extensions"))
{
  do {
    xml.readNext();
  }
  while (!(xml.tokenType() == QXmlStreamReader::EndElement && xml.name() == QLatin1String("extensions")) && !xml.hasError()) ;
  continue;
}


Also, I don't think this code is used anymore?
https://invent.kde.org/graphics/digikam/-/blob/master/core/utilities/geolocation/geoiface/tracks/trackreader.cpp#L147-290
Comment 6 Maik Qualmann 2022-03-23 19:25:15 UTC
It's certainly a possibility, but there's an easier way.

Maik
Comment 7 Maik Qualmann 2022-03-23 19:55:10 UTC
Git commit 6280a012ee10a9e588271568ff17aeaf825a1060 by Maik Qualmann.
Committed on 23/03/2022 at 19:53.
Pushed by mqualmann into branch 'master'.

remove dead code and variables

M  +18   -201  core/utilities/geolocation/geoiface/tracks/trackreader.cpp
M  +0    -17   core/utilities/geolocation/geoiface/tracks/trackreader.h

https://invent.kde.org/graphics/digikam/commit/6280a012ee10a9e588271568ff17aeaf825a1060
Comment 8 Maik Qualmann 2022-03-23 20:01:46 UTC
Git commit d3ce44e9de912b33627235fd910c846599705a19 by Maik Qualmann.
Committed on 23/03/2022 at 20:00.
Pushed by mqualmann into branch 'master'.

fix reading child elements
FIXED-IN: 8.0.0

M  +2    -1    NEWS
M  +1    -1    core/utilities/geolocation/geoiface/tracks/trackreader.cpp

https://invent.kde.org/graphics/digikam/commit/d3ce44e9de912b33627235fd910c846599705a19
Comment 9 Kristian Karl 2022-03-24 07:18:03 UTC
I verified the fix this morning. Looks all good now.
Thanks Maik :-)
Comment 10 caulier.gilles 2022-03-24 07:29:25 UTC
Maik, 

Why not to integrate this GPX file in unit-tests ?

Gilles
Comment 11 Maik Qualmann 2022-03-24 10:14:58 UTC
Yes of course we can add it in a small version of the file as unit-test, I do it.

Maik
Comment 12 Maik Qualmann 2022-03-24 10:49:40 UTC
Git commit 17dd52d44236204faf6a22fa387591ecc50538fb by Maik Qualmann.
Committed on 24/03/2022 at 10:48.
Pushed by mqualmann into branch 'master'.

add gpx file with child elements to the track unit-test

A  +78   -0    core/tests/geolocation/geoiface/data/gpx-child-elements.gpx
M  +17   -7    core/tests/geolocation/geoiface/tracks_utest.cpp

https://invent.kde.org/graphics/digikam/commit/17dd52d44236204faf6a22fa387591ecc50538fb