hnix-store-core-0.8.0.0: src/System/Nix/Base32.hs
{-|
Description: Implementation of Nix's base32 encoding.
-}
module System.Nix.Base32
( encode
, decode
, digits32
) where
import Data.ByteString (ByteString)
import Data.Text (Text)
import Data.Vector (Vector)
import Data.Word (Word8)
import qualified Data.Bits
import qualified Data.Bool
import qualified Data.ByteString
import qualified Data.ByteString.Char8
import qualified Data.List
import qualified Data.Maybe
import qualified Data.Text
import qualified Data.Vector
import qualified Numeric
-- omitted: E O U T
digits32 :: Vector Char
digits32 = Data.Vector.fromList "0123456789abcdfghijklmnpqrsvwxyz"
-- | Encode a 'BS.ByteString' in Nix's base32 encoding
encode :: ByteString -> Text
encode c = Data.Text.pack $ takeCharPosFromDict <$> [nChar - 1, nChar - 2 .. 0]
where
-- Each base32 character gives us 5 bits of information, while
-- each byte gives is 8. Because 'div' rounds down, we need to add
-- one extra character to the result, and because of that extra 1
-- we need to subtract one from the number of bits in the
-- bytestring to cover for the case where the number of bits is
-- already a factor of 5. Thus, the + 1 outside of the 'div' and
-- the - 1 inside of it.
nChar = fromIntegral $ ((Data.ByteString.length c * 8 - 1) `div` 5) + 1
byte = Data.ByteString.index c . fromIntegral
-- May need to switch to a more efficient calculation at some
-- point.
bAsInteger :: Integer
bAsInteger =
sum
[ fromIntegral (byte j) * (256 ^ j)
| j <- [0 .. Data.ByteString.length c - 1] ]
takeCharPosFromDict :: Integer -> Char
takeCharPosFromDict i = digits32 Data.Vector.! digitInd
where
digitInd =
fromIntegral $
bAsInteger `div` (32^i) `mod` 32
-- | Decode Nix's base32 encoded text
decode :: Text -> Either String ByteString
decode what =
Data.Bool.bool
(Left "Invalid NixBase32 string")
(unsafeDecode what)
(Data.Text.all (`elem` digits32) what)
-- | Decode Nix's base32 encoded text
-- Doesn't check if all elements match `digits32`
unsafeDecode :: Text -> Either String ByteString
unsafeDecode what =
case
Numeric.readInt
32
(`elem` digits32)
(\c -> Data.Maybe.fromMaybe (error "character not in digits32")
$ Data.Vector.findIndex (== c) digits32
)
(Data.Text.unpack what)
of
[(i, _)] -> pure $ padded $ integerToBS i
x -> Left $ "Can't decode: readInt returned " <> show x
where
padded x
| Data.ByteString.length x < decLen = x `Data.ByteString.append` bstr
| otherwise = x
where
bstr = Data.ByteString.Char8.pack $ take (decLen - Data.ByteString.length x) (cycle "\NUL")
decLen = Data.Text.length what * 5 `div` 8
-- | Encode an Integer to a bytestring
-- Similar to Data.Base32String (integerToBS) without `reverse`
integerToBS :: Integer -> ByteString
integerToBS 0 = Data.ByteString.pack [0]
integerToBS i
| i > 0 = Data.ByteString.pack $ Data.List.unfoldr f i
| otherwise = error "integerToBS not defined for negative values"
where
f 0 = Nothing
f x = Just (fromInteger x :: Word8, x `Data.Bits.shiftR` 8)