foundation-0.0.10: Foundation/Primitive/Runtime.hs
-- |
-- Module : Foundation.Primitive.Runtime
-- License : BSD-style
-- Maintainer : foundation
--
-- Global configuration environment
module Foundation.Primitive.Runtime
where
import Foundation.Internal.Base
import Foundation.Internal.Environment
import Foundation.Primitive.Types.OffsetSize
import System.IO.Unsafe (unsafePerformIO)
-- | Defines the maximum size in bytes of unpinned arrays.
--
-- You can change this value by setting the environment variable
-- @HS_FOUNDATION_UARRAY_UNPINNED_MAX@ to an unsigned integer number.
--
-- Note: We use 'unsafePerformIO' here. If the environment variable
-- changes during runtime and the runtime system decides to recompute
-- this value, referential transparency is violated (like the First
-- Order violated the Galactic Concordance!).
--
-- TODO The default value of 1024 bytes is arbitrarily chosen for now.
unsafeUArrayUnpinnedMaxSize :: Size8
unsafeUArrayUnpinnedMaxSize = unsafePerformIO $ do
maxSize <- (>>= readMaybe) <$> lookupEnv "HS_FOUNDATION_UARRAY_UNPINNED_MAX"
return $ maybe (CountOf 1024) CountOf maxSize
{-# NOINLINE unsafeUArrayUnpinnedMaxSize #-}