]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Add an (un)pickler for the AutoRacingResults earnings (unfinished).
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 12 Jun 2014 21:24:14 +0000 (17:24 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 12 Jun 2014 21:24:14 +0000 (17:24 -0400)
src/TSN/Picklers.hs

index dc3ed9a05cb452fbba1ad884593fc5ace02967c9..387f4cf4fe4926d0c436678ca0e2ed509b075049 100644 (file)
@@ -4,6 +4,7 @@
 module TSN.Picklers (
   xp_date,
   xp_date_padded,
+  xp_earnings,
   xp_gamedate,
   xp_racedate,
   xp_tba_time,
@@ -12,6 +13,7 @@ module TSN.Picklers (
 where
 
 -- System imports.
+import Data.String.Utils ( replace )
 import Data.Time.Clock ( NominalDiffTime, UTCTime, addUTCTime )
 import Data.Time.Format ( formatTime, parseTime )
 import System.Locale ( defaultTimeLocale )
@@ -76,6 +78,30 @@ xp_date_padded =
     from_date = formatTime defaultTimeLocale date_format_padded
 
 
+-- | Parse \<Earnings\> from an 'AutoRaceResultsListing'. These are
+--   essentially 'Int's, but they look like,
+--
+--   * <Earnings>336,826</Earnings>
+--   * <Earnings>1,000,191</Earnings>
+--   * <Earnings>TBA</Earnings>
+--
+xp_earnings :: PU (Maybe Int)
+xp_earnings =
+  (to_earnings, from_earnings) `xpWrap` xpText
+  where
+    strip_commas :: String -> String
+    strip_commas = replace "," ""
+
+    to_earnings :: String -> Maybe Int
+    to_earnings s
+      | s == "TBA" = Nothing
+      | otherwise = (read . strip_commas . show) s
+
+    from_earnings :: Maybe Int -> String
+    from_earnings Nothing = ""
+    from_earnings (Just i) = show i
+
+
 -- | (Un)pickle a 'UTCTime' from a \<RaceDate\> element in an
 --   'AutoRaceResults' message.
 --