I'm trying to better understand how to handle error cases in haskell and made wrote some code to help me with that.
Is there a better way (more elegant, shorter, more generic) of handling multiple alternatives (like nested case expressions)? Any nice tutorials about the topic?
A made-up type for this example.
This is a bit simplified because mostly there are not only these nested
types but dependent values which can only be retrieved sequentially (e.g.
reading an id from stdin, then retrieving the record for this id from a
database). So the nesting here should demonstrate a case where the inner value will only be available when the outer value is already checked for Nothing. Please see my new question for a better example.
type MyType = (Maybe (Maybe Int))
The goal
Return the int when it is less than 10, on other cases (greater or equal 10, Nothing or Just Nothing) return diferent error messages.
process Nothing ~> "error"
process (Just Nothing) ~> "error2"
process (Just (Just 20)) ~> "error3"
process (Just (Just 5)) ~> "5"
Tried so far:
Naiive implementation.
Suffers from "creeping indentation"
process :: MyType -> String
process t = case t of
Nothing -> "error"
Just a -> case a of
Nothing -> "error2"
Just b -> if b < 10 then show b else "error3"
maybe function
Using the maybe function, which makes it shorter but also harder to read.
process2 :: MyType -> String
process2 t = maybe "error" (\a -> maybe "error2" (\b -> if b < 10 then show b else "error3") a) t
Pattern matching
Nicest solution so far but is not possible in more complex cases (see comment above type definition of MyType).
process3 :: MyType -> String
process3 Nothing = "error"
process3 (Just Nothing) = "error2"
process3 (Just (Just a))
| a < 10 = show a
| otherwise = "error3"
A gist with the code can be found under https://gist.github.com/4024395