diff options
author | davve <davve@dtek.chalmers.se> | 2006-08-13 21:57:08 +0000 |
---|---|---|
committer | davve <davve@dtek.chalmers.se> | 2006-08-13 21:57:08 +0000 |
commit | 454fd062f579dab7daa6f0c8ae94e173f2d46211 (patch) | |
tree | 2ed6b99ea6ffe63d5c1f8ae29e994087be5931b8 /src/HaddockUtil.hs | |
parent | 3fb2208eddb9836d11655e44ad35adf158d2aa23 (diff) |
Misc fixes and interface load/save
Diffstat (limited to 'src/HaddockUtil.hs')
-rw-r--r-- | src/HaddockUtil.hs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/HaddockUtil.hs b/src/HaddockUtil.hs index 8a0edc11..185a4cb7 100644 --- a/src/HaddockUtil.hs +++ b/src/HaddockUtil.hs @@ -27,6 +27,9 @@ module HaddockUtil ( -- * HsDoc markup markup, idMarkup, + + -- * Binary extras +-- FormatVersion, mkFormatVersion ) where import HaddockTypes @@ -37,12 +40,15 @@ import GHC import SrcLoc import Name import OccName +import Binary import Control.Monad ( liftM, MonadPlus(..) ) import Data.Char ( isAlpha, isSpace, toUpper, ord ) import Data.IORef ( IORef, newIORef, readIORef ) import Data.List ( intersect, isSuffixOf, intersperse ) import Data.Maybe ( maybeToList, fromMaybe, isJust, fromJust ) +import Data.Word ( Word8 ) +import Data.Bits ( testBit ) import Network.URI import System.Environment ( getProgName ) import System.Exit ( exitWith, ExitCode(..) ) @@ -282,3 +288,33 @@ idMarkup = Markup { -- the same thing, modifying only the identifiers embedded in it. mapIdent f = idMarkup { markupIdentifier = f } + +----------------------------------------------------------------------------- +-- put here temporarily + +newtype FormatVersion = FormatVersion Int deriving (Eq,Ord) + +nullFormatVersion :: FormatVersion +nullFormatVersion = mkFormatVersion 0 + +mkFormatVersion :: Int -> FormatVersion +mkFormatVersion i = FormatVersion i + +instance Binary FormatVersion where + put_ bh (FormatVersion i) = + case compare i 0 of + EQ -> return () + GT -> put_ bh (-i) + LT -> error ( + "Binary.hs: negative FormatVersion " ++ show i + ++ " is not allowed") + get bh = + do + w8 :: Word8 <- get bh + if testBit w8 7 + then + do + i <- get bh + return (FormatVersion (-i)) + else + return nullFormatVersion |