~alcinnz/harfbuzz-pure

ref: 68d376ac15ab6e07afebb1760988ab1d2cf69ccc harfbuzz-pure/Data/Text/Glyphize/Oom.hs -rw-r--r-- 429 bytes
68d376ac — Adrian Cochrane Release harfbuzz-pure 1.0.2.1 1 year, 9 months ago
                                                                                
28567186 Adrian Cochrane
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Data.Text.Glyphize.Oom where

import Control.Exception
import Foreign.Ptr (nullPtr, Ptr)

data HarfbuzzError = OutOfMemory deriving (Show)
instance Exception HarfbuzzError

throwFalse :: IO Bool -> IO ()
throwFalse cb = do
    ret <- cb
    if ret then return () else throwIO OutOfMemory

throwNull :: IO (Ptr a) -> IO (Ptr a)
throwNull cb = do
    ptr <- cb
    if ptr == nullPtr then throwIO OutOfMemory else return ptr