]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Add the FromXmlFkTeams class.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 4 Jul 2014 05:25:12 +0000 (01:25 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 4 Jul 2014 05:25:12 +0000 (01:25 -0400)
src/Xml.hs

index e7d47a12c319617d9a70c8e7d8f6a8cead7eae81..5c846648a85d8a2f7b267db22b6b9b200dc67d78 100644 (file)
@@ -7,6 +7,7 @@ module Xml (
   DtdName(..),
   FromXml(..),
   FromXmlFk(..),
+  FromXmlFkTeams(..),
   ToDb(..),
   parse_opts,
   pickle_unpickle,
@@ -36,6 +37,11 @@ import Text.XML.HXT.Core (
   xunpickleVal,
   yes )
 
+
+-- Local imports.
+import TSN.Team ( Team(..) )
+
+
 -- | Common associated type shared by 'FromXml' and 'FromXmlFk'. This
 --   basically just forces the client to define the \"database
 --   version\" of his type.
@@ -76,6 +82,22 @@ class (ToDb a) => FromXmlFk a where
   from_xml_fk :: DefaultKey (Parent a) -> a -> Db a
 
 
+-- | A further refinement of 'FromXmlFk'. These types need not only a
+--   foreign key to a parent in order to make the XML -> DB
+--   conversion, but also two foreign keys to away/home teams (as
+--   represented in "TSN.Team").
+--
+class (ToDb a) => FromXmlFkTeams a where
+  -- | The function that produces a @Db a@ out of a parent foreign
+  -- key, two team foreign keys, and an @a@. The parameter order makes
+  -- it easier to map this function over a bunch of things.
+  from_xml_fk_teams :: DefaultKey (Parent a)
+                    -> DefaultKey Team -- ^ The away team FK
+                    -> DefaultKey Team -- ^ The home team FK
+                    -> a
+                    -> Db a
+
+
 -- | Represents the DTD filename (\"SYSTEM\") part of the DOCTYPE
 --   definition.
 newtype DtdName = DtdName String