1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
|
-- Copyright (c) 2016-present, Facebook, Inc.
-- All rights reserved.
--
-- This source code is licensed under the BSD-style license found in
-- the LICENSE file in the root directory of this source tree. An
-- additional grant of patent rights can be found in the PATENTS file
-- in the same directory.
{-# LANGUAGE MagicHash #-}
-- |
-- Module : Codec.Compression.Zstd.FFI
-- Copyright : (c) 2016-present, Facebook, Inc. All rights reserved.
--
-- License : BSD3
-- Maintainer : bryano@fb.com
-- Stability : experimental
-- Portability : GHC
--
-- Low-level bindings to the native zstd compression library. These
-- bindings make almost no effort to provide any additional safety or
-- ease of use above that of the C library. Unless you have highly
-- specialized needs, you should use the streaming or base APIs
-- instead.
--
-- To correctly use the functions in this module, you must read the
-- API documentation in the zstd library's @zstd.h@ include file. It
-- would also be wise to search elsewhere in this package for uses of
-- the functions you are interested in.
module Codec.Compression.Zstd.FFI
(
-- * One-shot functions
compress
, compressBound
, maxCLevel
, decompress
, getDecompressedSize
-- ** Cheaper operations using contexts
-- *** Compression
, CCtx
, createCCtx
, freeCCtx
, p_freeCCtx
, compressCCtx
-- *** Decompression
, DCtx
, createDCtx
, freeDCtx
, p_freeDCtx
, decompressDCtx
-- * Result and error checks
, isError
, getErrorName
, checkError
, checkAlloc
-- * Streaming operations
-- ** Streaming types
, CStream
, DStream
, Buffer(..)
, In
, Out
-- ** Streaming compression
, cstreamInSize
, cstreamOutSize
, createCStream
, freeCStream
, p_freeCStream
, initCStream
, compressStream
, endStream
-- ** Streaming decompression
, dstreamInSize
, dstreamOutSize
, createDStream
, initDStream
, decompressStream
, freeDStream
, p_freeDStream
-- * Dictionary-based compression
, trainFromBuffer
, getDictID
, compressUsingDict
, decompressUsingDict
-- ** Pre-digested dictionaries
-- *** Compression
, CDict
, createCDict
, freeCDict
, p_freeCDict
, compressUsingCDict
-- *** Decompression
, DDict
, createDDict
, freeDDict
, p_freeDDict
, decompressUsingDDict
-- * Low-level code
, c_maxCLevel
) where
import Codec.Compression.Zstd.FFI.Types
import Foreign.C.Types (CInt(..), CSize(..), CUInt(..), CULLong(..))
import Foreign.Ptr (FunPtr, nullPtr)
import GHC.CString (unpackCString#)
import GHC.IO.Exception
import GHC.Ptr (Ptr(..))
-- | Compress bytes from source buffer into destination buffer.
-- The destination buffer must be already allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_compress"
compress :: Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize -- ^ Size of source buffer.
-> CInt -- ^ Compression level.
-> IO CSize
-- | Returns the maximum compression level supported by the library.
foreign import ccall unsafe "ZSTD_maxCLevel"
c_maxCLevel :: CInt
-- | The maximum compression level supported by the library.
maxCLevel :: Int
maxCLevel = fromIntegral c_maxCLevel
-- | Compute the maximum compressed size of given source buffer.
foreign import ccall unsafe "ZSTD_compressBound"
compressBound :: CSize -- ^ Size of input.
-> IO CSize
foreign import ccall unsafe "ZSTD_isError"
c_isError :: CSize -> CUInt
-- | Indicates whether a return value is an error code.
isError :: CSize -> Bool
isError sizeOrError = c_isError sizeOrError /= 0
-- | Gives the description associated with an error code.
--
-- Always returns a valid pointer to a constant string.
foreign import ccall unsafe "ZSTD_getErrorName"
c_getErrorName :: CSize -> Ptr a
-- | Gives the description associated with an error code.
getErrorName :: CSize -> String
getErrorName cs = unpackCString# (case c_getErrorName cs of Ptr a -> a)
-- | Decompress a buffer. The destination buffer must be already
-- allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_decompress"
decompress :: Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize
-- ^ Size of compressed input. This must be exact, so
-- for example supplying the size of a buffer that is
-- larger than the compressed input will cause a failure.
-> IO CSize
-- | Returns the decompressed size of a compressed payload if known, 0
-- otherwise.
--
-- To discover precisely why a result is 0, follow up with
-- 'getFrameParams'.
foreign import ccall unsafe "ZSTD_getDecompressedSize"
getDecompressedSize :: Ptr src
-> CSize
-> IO CULLong
-- | Allocate a compression context.
foreign import ccall unsafe "ZSTD_createCCtx"
createCCtx :: IO (Ptr CCtx)
-- | Free a compression context.
foreign import ccall unsafe "ZSTD_freeCCtx"
freeCCtx :: Ptr CCtx -> IO ()
-- | Free a compression context. For use by a finalizer.
foreign import ccall unsafe "zstd.h &ZSTD_freeCCtx"
p_freeCCtx :: FunPtr (Ptr CCtx -> IO ())
-- | Compress bytes from source buffer into destination buffer.
-- The destination buffer must be already allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_compressCCtx"
compressCCtx :: Ptr CCtx -- ^ Compression context.
-> Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize -- ^ Size of source buffer.
-> CInt -- ^ Compression level.
-> IO CSize
-- | Compress bytes from source buffer into destination buffer, using
-- a prebuilt dictionary. The destination buffer must be already
-- allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_compress_usingDict"
compressUsingDict
:: Ptr CCtx -- ^ Compression context.
-> Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize -- ^ Size of source buffer.
-> Ptr dict -- ^ Dictionary.
-> CSize -- ^ Size of dictionary.
-> CInt -- ^ Compression level.
-> IO CSize
-- | Compress bytes from source buffer into destination buffer, using
-- a pre-built, pre-digested dictionary. The destination buffer must
-- be already allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_compress_usingCDict"
compressUsingCDict
:: Ptr CCtx -- ^ Compression context.
-> Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize -- ^ Size of source buffer.
-> Ptr CDict -- ^ Dictionary.
-> IO CSize
-- | Decompress a buffer, using a prebuilt dictionary. The
-- destination buffer must be already allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_decompress_usingDict"
decompressUsingDict
:: Ptr DCtx -- ^ Decompression context.
-> Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize
-- ^ Size of compressed input. This must be exact, so
-- for example supplying the size of a buffer that is
-- larger than the compressed input will cause a failure.
-> Ptr dict -- ^ Dictionary.
-> CSize -- ^ Size of dictionary.
-> IO CSize
-- | Decompress a buffer, using a pre-built, pre-digested dictionary.
-- The destination buffer must be already allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_decompress_usingDDict"
decompressUsingDDict
:: Ptr DCtx -- ^ Decompression context.
-> Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize
-- ^ Size of compressed input. This must be exact, so
-- for example supplying the size of a buffer that is
-- larger than the compressed input will cause a failure.
-> Ptr DDict -- ^ Dictionary.
-> IO CSize
-- | Allocate a decompression context.
foreign import ccall unsafe "ZSTD_createDCtx"
createDCtx :: IO (Ptr DCtx)
-- | Free a decompression context.
foreign import ccall unsafe "ZSTD_freeDCtx"
freeDCtx :: Ptr DCtx -> IO ()
-- | Free a decompression context. For use by a finalizer.
foreign import ccall unsafe "zstd.h &ZSTD_freeDCtx"
p_freeDCtx :: FunPtr (Ptr DCtx -> IO ())
-- | Decompress a buffer. The destination buffer must be already
-- allocated.
--
-- Returns the number of bytes written into destination buffer, or an
-- error code if it fails (which can be tested using 'isError').
foreign import ccall unsafe "ZSTD_decompressDCtx"
decompressDCtx :: Ptr DCtx -- ^ Decompression context.
-> Ptr dst -- ^ Destination buffer.
-> CSize -- ^ Capacity of destination buffer.
-> Ptr src -- ^ Source buffer.
-> CSize
-- ^ Size of compressed input. This must be exact, so
-- for example supplying the size of a buffer that is
-- larger than the compressed input will cause a failure.
-> IO CSize
-- | Recommended size for input buffer.
foreign import ccall unsafe "ZSTD_CStreamInSize"
cstreamInSize :: CSize
-- | Recommended size for output buffer.
foreign import ccall unsafe "ZSTD_CStreamOutSize"
cstreamOutSize :: CSize
-- | A context for streaming compression.
data CStream
-- | Create a streaming compression context. This must be freed using
-- 'freeCStream', or if using a finalizer, with 'p_freeCStream'.
foreign import ccall unsafe "ZSTD_createCStream"
createCStream :: IO (Ptr CStream)
-- | Free a 'CStream' value.
foreign import ccall unsafe "ZSTD_freeCStream"
freeCStream :: Ptr CStream -> IO ()
-- | Free a 'CStream' value. For use by a finalizer.
foreign import ccall unsafe "zstd.h &ZSTD_freeCStream"
p_freeCStream :: FunPtr (Ptr CStream -> IO ())
-- | Begin a new compression operation.
foreign import ccall unsafe "ZSTD_initCStream"
initCStream :: Ptr CStream
-> CInt -- ^ Compression level.
-> IO CSize
-- | Consume part or all of an input.
foreign import ccall unsafe "ZSTD_compressStream"
compressStream :: Ptr CStream -> Ptr (Buffer Out) -> Ptr (Buffer In)
-> IO CSize
-- | End a compression stream. This performs a flush and writes a
-- frame epilogue.
foreign import ccall unsafe "ZSTD_endStream"
endStream :: Ptr CStream -> Ptr (Buffer Out) -> IO CSize
-- | Recommended size for input buffer.
foreign import ccall unsafe "ZSTD_DStreamInSize"
dstreamInSize :: CSize
-- | Recommended size for output buffer.
foreign import ccall unsafe "ZSTD_DStreamOutSize"
dstreamOutSize :: CSize
-- | A context for streaming decompression.
data DStream
-- | Create a streaming decompression context. This must be freed using
-- 'freeDStream', or if using a finalizer, with 'p_freeDStream'.
foreign import ccall unsafe "ZSTD_createDStream"
createDStream :: IO (Ptr DStream)
-- | Begin a new streaming decompression operation.
foreign import ccall unsafe "ZSTD_initDStream"
initDStream :: Ptr DStream -> IO CSize
-- | Consume part or all of an input.
foreign import ccall unsafe "ZSTD_decompressStream"
decompressStream :: Ptr DStream -> Ptr (Buffer Out) -> Ptr (Buffer In)
-> IO CSize
-- | Free a 'CStream' value.
foreign import ccall unsafe "ZSTD_freeDStream"
freeDStream :: Ptr DStream -> IO ()
-- | Free a 'CStream' value. For use by a finalizer.
foreign import ccall unsafe "zstd.h &ZSTD_freeDStream"
p_freeDStream :: FunPtr (Ptr DStream -> IO ())
-- | Train a dictionary from a collection of samples.
-- Returns the number size of the resulting dictionary.
foreign import ccall unsafe "ZDICT_trainFromBuffer"
trainFromBuffer :: Ptr dict
-- ^ Preallocated dictionary buffer.
-> CSize
-- ^ Capacity of dictionary buffer.
-> Ptr samples
-- ^ Concatenated samples.
-> Ptr CSize
-- ^ Array of sizes of samples.
-> CUInt
-- ^ Number of samples.
-> IO CSize
-- | Return the identifier for the given dictionary, or zero if
-- not a valid dictionary.
foreign import ccall unsafe "ZDICT_getDictID"
getDictID :: Ptr dict
-- ^ Dictionary.
-> CSize
-- ^ Size of dictionary.
-> IO CUInt
-- | Allocate a pre-digested dictionary.
foreign import ccall unsafe "ZSTD_createCDict"
createCDict :: Ptr dict
-- ^ Dictionary.
-> CSize
-- ^ Size of dictionary.
-> CInt
-- ^ Compression level.
-> IO (Ptr CDict)
-- | Free a pre-digested dictionary.
foreign import ccall unsafe "ZSTD_freeCDict"
freeCDict :: Ptr CDict -> IO ()
-- | Free a pre-digested dictionary.
foreign import ccall unsafe "zstd.h &ZSTD_freeCDict"
p_freeCDict :: FunPtr (Ptr CDict -> IO ())
-- | Allocate a pre-digested dictionary.
foreign import ccall unsafe "ZSTD_createDDict"
createDDict :: Ptr dict
-- ^ Dictionary.
-> CSize
-- ^ Size of dictionary.
-> IO (Ptr DDict)
-- | Free a pre-digested dictionary.
foreign import ccall unsafe "ZSTD_freeDDict"
freeDDict :: Ptr DDict -> IO ()
-- | Free a pre-digested dictionary.
foreign import ccall unsafe "zstd.h &ZSTD_freeDDict"
p_freeDDict :: FunPtr (Ptr DDict -> IO ())
-- | Check that an allocating operation is successful. If it fails,
-- throw an 'IOError'.
checkAlloc :: String -> IO (Ptr a) -> IO (Ptr a)
checkAlloc name act = do
addr <- act
if addr == nullPtr
then ioError (IOError Nothing ResourceExhausted name
"out of memory" Nothing Nothing)
else return addr
-- | Check whether a 'CSize' has an error encoded in it (yuck!), and
-- report success or failure more safely.
checkError :: IO CSize -> IO (Either String CSize)
checkError act = do
ret <- act
return $! if isError ret
then Left (getErrorName ret)
else Right ret
|