I'm torn between two implementations of a certain data structure, and input from the Haskell community as to what is right/standard would be appreciated.
Data Types
Take, for example, a ADT "Server" which defines several servers as nullary data constructors.
data Server = Server1
| Server2
| Server3
Now, for each of these servers I want to have (among other things) the ability to get an IP address. Assuming I can code these statically, I can have some function "getURL" and pattern match.
getUrl :: Server -> String
getUrl Server1 = "192.168.1.1"
and etc. Now any function which uses servers can put Server in the type and call getURL.
serverStuff :: Server -> IO ()
This method seems to have the benefit of simple, non-polymorphic functions at the expense of having lots of pattern matching in getURL. Additionally, if the programmer adds a Server but forgets to add the pattern to getURL, they will get a runtime error without warning unless they compile with -Wall.
Typeclasses
Attacking the same problem with typeclasses, I can break out my multi-constructor ADT into a set of ADTs specific to the server and create a type class for URL.
data Server1 = Server1
data Server2 = Server2
data Server3 = Server3
class Server a where
getUrl :: a -> String
instance Server Server1 where
getUrl Server1 = "192.168.1.1"
and etc. Now instead of the simple non-polymorphic function I used before, I have to create something like
serverStuff :: Server a => a -> IO ()
and deal with the implications of ad-hoc polymorphism (function specialization and the like).
On the bright side, the typeclass method easy to expand, breaks up the pattern matching into smaller chunks, allows for greater abstraction e.g. grouped servers (data ServerCenter1 = Server1 | Server2 | Server3), and, while you can still get runtime errors (without compiler warning) if you don't declare getUrl, you're at least forced to make that decision when you create the instance.
So, I'm torn but leaning toward instances as a better way of doing things. Is there a standard way to handle this issue, or is it a "whatever seems clean" type of thing?
data Server = Server { getUrl :: String }? – hammar Nov 28 '12 at 16:54data Server = Server { getUrl :: String, doStuff :: IO () }. – hammar Nov 28 '12 at 17:27