souplesse/lib/Track.hs

115 lines
3.1 KiB
Haskell
Raw Normal View History

2024-10-28 23:35:36 +00:00
{-# LANGUAGE OverloadedStrings #-}
2024-10-30 21:03:11 +00:00
module Track
( Track,
Pos (..),
2024-10-31 16:18:40 +00:00
BadFile,
2024-10-30 21:03:11 +00:00
pos,
cadence,
power,
2024-10-31 13:00:01 +00:00
heartRate,
2024-10-30 21:03:11 +00:00
time,
parse,
Track.length,
)
where
import Control.Exception
2024-10-31 16:18:40 +00:00
import Data.Functor ((<&>))
2024-10-30 21:03:11 +00:00
import Data.List as List
import Data.List qualified
import Data.Map as Map
import Data.Maybe
2024-10-30 21:03:11 +00:00
import Data.Text qualified
import Data.Text.Lazy as T
2024-10-27 23:13:39 +00:00
import Data.Time
2024-10-30 21:03:11 +00:00
import Data.Time.ISO8601 qualified
import Debug.Trace (trace, traceShow)
2024-10-28 23:35:36 +00:00
import Text.XML
import Text.XML.Cursor as Cursor
2024-10-31 16:18:40 +00:00
import Text.Read (readMaybe)
data Pos = Pos Float Float (Maybe Float) deriving (Show, Eq)
2024-10-30 21:03:11 +00:00
2024-10-28 23:35:36 +00:00
type Power = Maybe Int
2024-10-30 21:03:11 +00:00
2024-10-28 23:35:36 +00:00
type Cadence = Maybe Int
2024-10-30 21:03:11 +00:00
2024-10-28 23:35:36 +00:00
type HeartRate = Maybe Int
2024-10-30 21:03:11 +00:00
data Point = Point
{ pos :: Pos,
time :: UTCTime,
cadence :: Cadence,
power :: Power,
heartRate :: HeartRate
}
deriving (Show)
2024-10-27 23:13:39 +00:00
2024-10-29 19:35:17 +00:00
-- TODO do we even need this type?
2024-10-27 23:13:39 +00:00
type Track = [Point]
2024-10-30 17:17:48 +00:00
gpxNS localName =
Name localName (Just "http://www.topografix.com/GPX/1/1") Nothing
tpxNS localName =
Name localName (Just "http://www.garmin.com/xmlschemas/TrackPointExtension/v2") Nothing
2024-10-30 13:30:33 +00:00
2024-10-31 16:18:40 +00:00
data BadFile = BadFile String deriving (Show)
instance Exception BadFile
elToPoint :: Cursor -> Either SomeException Point
2024-10-29 21:22:49 +00:00
elToPoint c =
case node c of
2024-10-28 23:35:36 +00:00
NodeElement (Element _ attrs _) ->
2024-10-31 16:18:40 +00:00
let lat = (listToMaybe $ attribute "lat" c ) >>= asFloat
lon = (listToMaybe $ attribute "lon" c ) >>= asFloat
ele = listToMaybe $ child c >>= element (gpxNS "ele") >>= child >>= content
ts =
listToMaybe (child c >>= element (gpxNS "time") >>= child >>= content)
>>= (Data.Time.ISO8601.parseISO8601 . Data.Text.unpack)
2024-10-30 21:03:11 +00:00
gpxtpx =
child c
>>= element (gpxNS "extensions")
>>= child
>>= element (tpxNS "TrackPointExtension")
>>= child
2024-10-31 13:20:16 +00:00
extn n =
gpxtpx >>= element n >>= child >>= content
cadence = extn (tpxNS "cad")
hr = extn (tpxNS "hr")
power = extn "{http://www.garmin.com/xmlschemas/PowerExtension/v1}PowerInWatts"
2024-10-31 16:18:40 +00:00
in if isJust lat && isJust lon && isJust ts
then
Right $
Point
(Pos (fromJust lat) (fromJust lon) (ele >>= asFloat))
2024-10-31 16:18:40 +00:00
(fromJust ts)
(listToMaybe cadence >>= asInt)
(listToMaybe power >>= asInt)
(listToMaybe hr >>= asInt)
else Left (toException (BadFile "missing a required attribute"))
2024-10-29 21:22:49 +00:00
where
2024-10-31 16:18:40 +00:00
asFloat v = return (Data.Text.unpack v) >>= (readMaybe :: String -> Maybe Float)
asInt v = return (Data.Text.unpack v) >>= (readMaybe :: String -> Maybe Int)
_ -> Left (toException (BadFile "did not find trkpt"))
2024-10-28 23:35:36 +00:00
getPoints :: Cursor -> Either SomeException [Point]
2024-10-28 23:35:36 +00:00
getPoints c =
2024-10-30 21:03:11 +00:00
let trkpts =
element (gpxNS "gpx") c
>>= child
>>= element (gpxNS "trk")
>>= descendant
>>= element (gpxNS "trkpt")
in traverse elToPoint trkpts
2024-10-28 23:35:36 +00:00
parse :: String -> Either SomeException [Point]
parse str = do
gpx <- parseText def (T.pack str)
getPoints (fromDocument gpx)
2024-10-28 23:35:36 +00:00
2024-10-27 23:13:39 +00:00
length :: Track -> Int
2024-10-30 14:25:54 +00:00
length = Data.List.length