The Data.Data interface is capable (just about!) of constructing and deconstructing values of a type that may or may not exist. Unfortunately, HaXml doesn't appear to have Data instances for its types, and you can't define one since you can't refer to the type that might or might not exist, so we have to resort to Template Haskell:
The following module exports qnameCompat:
{-# LANGUAGE TemplateHaskell #-}
module HaXmlCompat (qnameCompat) where
import Language.Haskell.TH
qnameCompat :: Q [Dec]
qnameCompat = do
mi <- maybeReify "N"
case mi of
Nothing -> sequence [
tySynD (mkName "QName") [] [t| String |],
valD [p| toQName |] (normalB [| id |]) [],
valD [p| fromQName |] (normalB [| Just |]) []]
Just (DataConI n _ _ _) -> do
s <- newName "s"
sequence [
valD [p| toQName |] (normalB (conE n)) [],
funD (mkName "fromQName") [
clause [conP n [varP s]] (normalB (appE [| Just |] (varE s))) [],
clause [ [p| _ |] ] (normalB [| Nothing |]) []]]
Just i -> fail $
"N exists, but isn't the sort of thing I expected: " ++ show i
maybeReify :: String -> Q (Maybe Info)
maybeReify = recover (return Nothing) . fmap Just . reify . mkName
When spliced at the top level using Template Haskell, qnameCompat will check if N exists. If it does, it produces the following code:
toQName = N
fromQName (N s) = Just s
fromQName _ = Nothing
If it doesn't, the following is produced:
type QName = String
toQName = id
fromQName = Just
Now you can create and deconstruct Elements, e.g. using the ViewPatterns extension:
myElt :: String -> Element i
myElt = Elem (toQName "elemName") [] []
eltName :: Element i -> String
eltName (Elem (fromQName -> Just n) _ _) = n
ViewPatterns is convenient, but not essential, of course: using ordinary pattern matching on the result of fromQName will work just as well.
(These ideas are what led me to develop the notcpp package, which includes maybeReify and some other useful utilities)
Elementconstructor now takes a value of typedata QName = N String | SomethingIDon'tCareAboutinstead of aString. TheSetup.hsfile uses theElementconstructor both as a function (always with a literalString) and for pattern matching (sometimes with a literalStringand sometimes with a catch-all variable pattern). – Daniel Wagner Apr 24 '12 at 21:36toQNameandfromQNamesuch that whenQNameexists,toQName = NandfromQNameturnsN sintoJust s(and anything else intoNothing), whereas whenQNamedoes not exist,toQName = idandfromQName = Just? Then you might be able to do what you want with view patterns? I thinktoQNameandfromQNamecan be defined with template haskell, using ideas similar to that in my notcpp package – Ben Millwood Apr 25 '12 at 9:57