1 {-# LANGUAGE TypeFamilies #-}
3 -- | General XML stuff.
11 import Database.Groundhog ( AutoKey )
12 import Text.XML.HXT.Core (
30 -- | A typeclass for types which can be converted into an associated
31 -- XML type. The story behind this is long, but basically, we need
32 -- to different types for each XML thingie we're going to import: a
33 -- database type and an XML type. Both Groundhog and HXT are very
34 -- particular about the types that they can use, and there's no way
35 -- to reuse e.g. a type that HXT can pickle in Groundhog. So this
36 -- typeclass gives us a way to get the XML type from the Groundhog
39 -- At first there appears to be an equally-valid approach, getting the
40 -- Groundhog type from the XML one. But Groundhog won't use type family
41 -- instances, so here we are.
43 class ToFromXml a where
44 -- | Each instance a must declare its associated XML type (Xml a)
48 -- | And provide a function for getting an (Xml a) out of an "a."
51 -- | And provide a function for getting an "a" out of an (Xml a).
52 from_xml :: Xml a -> a
54 -- | Often we need to provide a key to use as a foreign key into
55 -- some container. If the instance "belongs" to some other object,
56 -- then it might need to be passed a key before it can un-XML
57 -- itself. For example, the XML version of 'NewsTeam' doesn't
58 -- contain a message ID which is part of its database type.
59 from_xml_fk :: AutoKey (Container a) -> Xml a -> a
60 from_xml_fk _ = from_xml
62 -- | A list of options passed to 'readDocument' when we parse an XML
63 -- document. We don't validate because the DTDs from TSN are
64 -- wrong. As a result, we don't want to keep useless DTDs
65 -- areound. Thus we disable 'withSubstDTDEntities' which, when
66 -- combined with "withValidate no", prevents HXT from trying to read
69 parse_opts :: SysConfigList
71 [ withPreserveComment no,
73 withSubstDTDEntities no,
77 -- | Given a root element name and a file path, return both the
78 -- original unpickled root "object" and the one that was constructed
79 -- by pickled and unpickling the original. This is used in a number
80 -- of XML tests which pickle/unpickle and then make sure that the
81 -- output is the same as the input.
83 -- We return the object instead of an XmlTree (which would save us
84 -- an unpickle call) because otherwise the type of @a@ in the call
85 -- to 'xpickle' would be ambiguous. By returning some @a@s, we allow
86 -- the caller to annotate its type.
88 pickle_unpickle :: XmlPickler a
92 pickle_unpickle root_element filepath = do
93 -- We need to check only the root message element since
94 -- readDocument produces a bunch of other junk.
95 expected <- runX $ arr_getobj
96 actual <- runX $ arr_getobj
102 return (expected, actual)
104 arr_getobj = readDocument parse_opts filepath