]> gitweb.michael.orlitzky.com - dead/htsn-import.git/commitdiff
Split the (Parent a) associated type into a new Child class.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 4 Jul 2014 06:38:48 +0000 (02:38 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 4 Jul 2014 06:38:48 +0000 (02:38 -0400)
src/Xml.hs

index 5c846648a85d8a2f7b267db22b6b9b200dc67d78..7cfe6eb19f169dbb544d80869f6d43acfc2a33e4 100644 (file)
@@ -4,6 +4,7 @@
 -- | General XML stuff.
 --
 module Xml (
+  Child(..),
   DtdName(..),
   FromXml(..),
   FromXmlFk(..),
@@ -66,16 +67,24 @@ class (ToDb a) => FromXml a where
   from_xml :: a -> Db a
 
 
--- | Some database types cannot be constructed from the XML type
---   alone; they must be supplied a foreign key to a parent object
---   first. Members of this class can be converted from an XML
---   representation to a database representation in this manner.
+-- | A class for XML representations which are children of other
+--   elements. The foal is to associate a child XML element with its
+--   parent element's database type. This is required to construct the
+--   database analogue of @a@ in the 'FromXmlFk' and 'FromXmlFkTeams'
+--   classes.
 --
-class (ToDb a) => FromXmlFk a where
+class Child a where
   -- | The type of our parent object, i.e. to the type to whom our
   --   foreign key will point.
   type Parent a :: *
 
+
+-- | Some database types cannot be constructed from the XML type
+--   alone; they must be supplied a foreign key to a parent object
+--   first. Members of this class can be converted from an XML
+--   representation to a database representation in this manner.
+--
+class (Child a, ToDb a) => FromXmlFk a where
   -- | The function that produces a @Db a@ out of a foreign key and an
   --   @a@. The parameter order makes it easier to map this function
   --   over a bunch of things.
@@ -87,7 +96,7 @@ class (ToDb a) => FromXmlFk a where
 --   conversion, but also two foreign keys to away/home teams (as
 --   represented in "TSN.Team").
 --
-class (ToDb a) => FromXmlFkTeams a where
+class (Child a, 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.