I often find this Pattern in Haskell code:
options :: MVar OptionRecord
options = unsafePerformIO $ newEmptyMVar
...
doSomething :: Foo -> Bar
doSomething = unsafePerformIO $ do
opt <- readMVar options
doSomething' where ...
Basically, one has a record of options or something similar, that is initially set at the programs beginning. As the programmer is lazy, he don't wants to carry the options record all over the program. He defines an MVar to keep it - defined by an uggly use of unsafePerformIO. The programmer ensures, that the state is set only once and before any operation has taken place. Now each part of the program has to use unsafePerformIO again, just to extract the options.
In my opinion, such a variable is considered pragmatically pure (don't beat me). Is there a library, that abstracts this concept away and ensures e.g. that the variable is set only once, no call is done before that initialization and that one don't has to write unsafeFireZeMissilesAndMakeYourCodeUgglyAnd DisgustingBecauseOfThisLongFunctionName
unsafePerformIOin top-level bindings for certain limited kinds of initialization I can imagine, like creating anIORef. Top level bindings doing arbitraryIOwouldn't surprise me, but it seems unwise. UsingunsafePerformIOto read bits of potentially mutable data from inside assorted functions is just ridiculous. – C. A. McCann May 20 '11 at 21:30