{-# LANGUAGE TypeApplications #-}
#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif
module GI.Gio.Structs.IOModuleScope
(
IOModuleScope(..) ,
noIOModuleScope ,
#if defined(ENABLE_OVERLOADING)
ResolveIOModuleScopeMethod ,
#endif
#if defined(ENABLE_OVERLOADING)
IOModuleScopeBlockMethodInfo ,
#endif
iOModuleScopeBlock ,
#if defined(ENABLE_OVERLOADING)
IOModuleScopeFreeMethodInfo ,
#endif
iOModuleScopeFree ,
) where
import Data.GI.Base.ShortPrelude
import qualified Data.GI.Base.ShortPrelude as SP
import qualified Data.GI.Base.Overloading as O
import qualified Prelude as P
import qualified Data.GI.Base.Attributes as GI.Attributes
import qualified Data.GI.Base.ManagedPtr as B.ManagedPtr
import qualified Data.GI.Base.GClosure as B.GClosure
import qualified Data.GI.Base.GError as B.GError
import qualified Data.GI.Base.GVariant as B.GVariant
import qualified Data.GI.Base.GValue as B.GValue
import qualified Data.GI.Base.GParamSpec as B.GParamSpec
import qualified Data.GI.Base.CallStack as B.CallStack
import qualified Data.GI.Base.Properties as B.Properties
import qualified Data.GI.Base.Signals as B.Signals
import qualified Data.Text as T
import qualified Data.ByteString.Char8 as B
import qualified Data.Map as Map
import qualified Foreign.Ptr as FP
import qualified GHC.OverloadedLabels as OL
newtype IOModuleScope = IOModuleScope (ManagedPtr IOModuleScope)
deriving (Eq)
instance WrappedPtr IOModuleScope where
wrappedPtrCalloc = return nullPtr
wrappedPtrCopy = return
wrappedPtrFree = Nothing
noIOModuleScope :: Maybe IOModuleScope
noIOModuleScope = Nothing
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList IOModuleScope
type instance O.AttributeList IOModuleScope = IOModuleScopeAttributeList
type IOModuleScopeAttributeList = ('[ ] :: [(Symbol, *)])
#endif
foreign import ccall "g_io_module_scope_block" g_io_module_scope_block ::
Ptr IOModuleScope ->
CString ->
IO ()
iOModuleScopeBlock ::
(B.CallStack.HasCallStack, MonadIO m) =>
IOModuleScope
-> T.Text
-> m ()
iOModuleScopeBlock scope basename = liftIO $ do
scope' <- unsafeManagedPtrGetPtr scope
basename' <- textToCString basename
g_io_module_scope_block scope' basename'
touchManagedPtr scope
freeMem basename'
return ()
#if defined(ENABLE_OVERLOADING)
data IOModuleScopeBlockMethodInfo
instance (signature ~ (T.Text -> m ()), MonadIO m) => O.MethodInfo IOModuleScopeBlockMethodInfo IOModuleScope signature where
overloadedMethod = iOModuleScopeBlock
#endif
foreign import ccall "g_io_module_scope_free" g_io_module_scope_free ::
Ptr IOModuleScope ->
IO ()
iOModuleScopeFree ::
(B.CallStack.HasCallStack, MonadIO m) =>
IOModuleScope
-> m ()
iOModuleScopeFree scope = liftIO $ do
scope' <- unsafeManagedPtrGetPtr scope
g_io_module_scope_free scope'
touchManagedPtr scope
return ()
#if defined(ENABLE_OVERLOADING)
data IOModuleScopeFreeMethodInfo
instance (signature ~ (m ()), MonadIO m) => O.MethodInfo IOModuleScopeFreeMethodInfo IOModuleScope signature where
overloadedMethod = iOModuleScopeFree
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveIOModuleScopeMethod (t :: Symbol) (o :: *) :: * where
ResolveIOModuleScopeMethod "block" o = IOModuleScopeBlockMethodInfo
ResolveIOModuleScopeMethod "free" o = IOModuleScopeFreeMethodInfo
ResolveIOModuleScopeMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveIOModuleScopeMethod t IOModuleScope, O.MethodInfo info IOModuleScope p) => OL.IsLabel t (IOModuleScope -> p) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.overloadedMethod @info
#else
fromLabel _ = O.overloadedMethod @info
#endif
#endif