streamly-core-0.2.0: src/Streamly/Data/MutByteArray.hs
-- |
-- Module : Streamly.Data.MutByteArray
-- Copyright : (c) 2023 Composewell Technologies
-- License : BSD3-3-Clause
-- Maintainer : streamly@composewell.com
-- Portability : GHC
--
-- A low level byte Array type 'MutByteArray', along with type classes 'Unbox'
-- and 'Serialize' for fast binary serialization and deserialization of Haskell
-- values. Serialization, deserialization performance is similar to, and in
-- some cases many times better than the store package. Conceptually, the
-- 'Serialize' type class works in the same way as store.
--
-- Serialize instances are configurable to use constructor names (see
-- 'Streamly.Internal.Data.MutByteArray.encodeConstrNames'), record field names (see
-- 'Streamly.Internal.Data.MutByteArray.encodeRecordFields') instead of binary
-- encoded values. This is an experimental feature which allows JSON like
-- properties with faster speed. For example, you can change the order of
-- constructors or record fields without affecting serialized value.
--
-- Higher level unboxed array modules "Streamly.Data.Array" and
-- "Streamly.Data.MutArray" are built on top of this module. Unboxed arrays are
-- essentially serialized Haskell values. Array modules provide higher level
-- serialization routines like 'Streamly.Data.Array.pinnedSerialize'
-- and 'Streamly.Data.Array.deserialize' from the
-- "Streamly.Data.Array" module.
--
-- == Mutable Byte Array
--
-- 'MutByteArray' is a primitive mutable array in the IO monad. 'Unbox' and
-- 'Serialize' type classes use this primitive array to serialize data to and
-- deserialize it from. This array is used to build higher level unboxed
-- array types 'Streamly.Data.MutArray.MutArray' and 'Streamly.Data.Array.Array'.
--
-- == Using Unbox
--
-- The 'Unbox' type class is simple and used to serialize non-recursive fixed
-- size data types. This type class is primarily used to implement unboxed
-- arrays. Unboxed arrays are just a sequence of serialized fixed length
-- Haskell data types. Instances of this type class can be derived using
-- 'Generic' or template haskell based deriving functions provided in this
-- module.
--
-- Writing a data type to an array using the array creation routines in
-- "Streamly.Data.Array" or "Streamly.Data.MutArray" (e.g. @writeN@ or
-- @fromListN@), serializes the type to the array. Similarly, reading the data
-- type from the array deserializes it. You can also serialize and deserialize
-- directly to and from a 'MutByteArray', using the type class methods.
--
-- == Using Serialize
--
-- The 'Serialize' type class is a superset of the 'Unbox' type class, it can
-- serialize variable length data types as well e.g. Haskell lists. Use
-- 'deriveSerialize' to derive the instances of the type class automatically
-- and then use the type class methods to serialize and deserialize to and from
-- a 'MutByteArray'.
--
-- See 'Streamly.Data.Array.pinnedSerialize' and
-- 'Streamly.Data.Array.deserialize' for 'Array' type based
-- serialization.
--
module Streamly.Data.MutByteArray
(
-- * Mutable Byte Array
-- | The standard way to read from or write to a 'MutByteArray' is by using
-- the 'Unbox' or 'Serialize' type class methods.
MutByteArray
, isPinned
, pin
, unpin
, new
, pinnedNew
-- * Unbox
, Unbox(..)
, deriveUnbox
-- * Serialize
, Serialize(..)
-- ** Instance Config
, SerializeConfig
, inlineAddSizeTo
, inlineSerializeAt
, inlineDeserializeAt
-- ** Instance Deriving
, deriveSerialize
, deriveSerializeWith
) where
--------------------------------------------------------------------------------
-- Imports
--------------------------------------------------------------------------------
import Streamly.Internal.Data.MutByteArray