hsass-0.8.0: Text/Sass/Functions/Internal.hs
module Text.Sass.Functions.Internal
(
-- * Functions
wrapFunction
, makeNativeFunction
, freeNativeFunction
, makeNativeFunctionList
, freeNativeFunctionList
-- * Imports and headers
, wrapImporter
, makeNativeImport
, freeNativeImport
, makeNativeImportList
, freeNativeImportList
, makeNativeImporter
, freeNativeImporter
, makeNativeImporterList
, freeNativeImporterList
) where
import qualified Bindings.Libsass as Lib
import Foreign
import Text.Sass.Functions
import Text.Sass.Marshal.Internal
import Text.Sass.Utils
import Text.Sass.Values.Internal
-- | Wraps function of type 'SassFunctionType' into function that may be passed
-- to native library.
wrapFunction :: SassFunctionType -> Lib.SassFunctionFnType
wrapFunction fn args _ _ = fromNativeValue args >>= fn >>= toNativeValue
-- | Converts 'SassFunction' into native representation.
--
-- If you don't want to pass the resulting object to Sass_Options,
-- call 'freeNativeFunction'.
makeNativeFunction :: SassFunction -> IO Lib.SassFunctionEntry
makeNativeFunction (SassFunction sig' fn) = do
sig <- newUTF8CString sig'
wrapped <- Lib.mkSassFunctionFn $ wrapFunction fn
Lib.sass_make_function sig wrapped nullPtr
-- | Deallocates the object, but does not deallocate signature.
freeNativeFunction :: Lib.SassFunctionEntry -> IO ()
freeNativeFunction = Lib.sass_delete_function
-- | Converts list of 'SassFunction's into native representation.
--
-- There is analogous problem in relation to deallocation of the result as
-- with 'makeNativeFunction'. See documentation above for explanation.
makeNativeFunctionList :: [SassFunction] -> IO Lib.SassFunctionList
makeNativeFunctionList =
copyToCList Lib.sass_make_function_list makeNativeFunction pokeElemOff
-- | Frees the list and entries, without releasing signatures.
freeNativeFunctionList :: Lib.SassFunctionList -> IO ()
freeNativeFunctionList = Lib.sass_delete_function_list
-- | Wraps function of type 'SassImporterType'.
wrapImporter :: SassImporterType -> Lib.SassImporterFnType
wrapImporter fn url _ compiler = do
lastImport <- Lib.sass_compiler_get_last_import compiler
absPath <- Lib.sass_import_get_abs_path lastImport >>= peekUTF8CString
url' <- peekUTF8CString url
importList <- fn url' absPath
case importList of
[] -> return nullPtr
xs -> makeNativeImportList xs
-- | Converts 'SassImport' into native representation.
makeNativeImport :: SassImport -> IO Lib.SassImportEntry
makeNativeImport el =
maybeWith withUTF8CString (importPath el) $ \path ->
maybeWith withUTF8CString (importAbsolutePath el) $ \absPath -> do
source <- maybeNew newUTF8CString $ importSource el
srcmap <- maybeNew newUTF8CString $ importSourceMap el
Lib.sass_make_import path absPath source srcmap
-- | Frees native representation of 'SassImport'.
freeNativeImport :: Lib.SassImportEntry -> IO ()
freeNativeImport = Lib.sass_delete_import
-- | Converts list of 'SassImport's into native representation.
makeNativeImportList :: [SassImport] -> IO Lib.SassImportList
makeNativeImportList =
copyToCList Lib.sass_make_import_list makeNativeImport pokeElemOff
-- | Frees native representation of list of 'SassEntry', including entries.
freeNativeImportList :: Lib.SassImportList -> IO ()
freeNativeImportList = Lib.sass_delete_import_list
-- | Converts 'SassImporter' into native representation.
makeNativeImporter :: SassImporter -> IO Lib.SassImporterEntry
makeNativeImporter (SassImporter p func) = do
func' <- Lib.mkSassImporterFn $ wrapImporter func
Lib.sass_make_importer func' (realToFrac p) nullPtr
-- | Frees native representation of 'SassImporter'.
freeNativeImporter :: Lib.SassImporterEntry -> IO ()
freeNativeImporter = Lib.sass_delete_importer
-- | Makes native representation of list of 'SassImporter's.
makeNativeImporterList :: [SassImporter] -> IO Lib.SassImporterList
makeNativeImporterList =
copyToCList Lib.sass_make_importer_list makeNativeImporter pokeElemOff
-- | Frees list of native representations of 'SassImporter's.
--
-- Libsass does not provide function to free this kind of objects, but we
-- provide it just in case.
freeNativeImporterList :: Lib.SassImporterList -> IO ()
freeNativeImporterList lst = loopCList freeNativeImporter lst >> free lst