#define ENABLE_OVERLOADING (MIN_VERSION_haskell_gi_overloading(1,0,0) \
&& !defined(__HADDOCK_VERSION__))
module GI.GObject.Structs.TypeInstance
(
TypeInstance(..) ,
newZeroTypeInstance ,
noTypeInstance ,
#if ENABLE_OVERLOADING
TypeInstanceGetPrivateMethodInfo ,
#endif
typeInstanceGetPrivate ,
) 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.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.Text as T
import qualified Data.ByteString.Char8 as B
import qualified Data.Map as Map
import qualified Foreign.Ptr as FP
newtype TypeInstance = TypeInstance (ManagedPtr TypeInstance)
instance WrappedPtr TypeInstance where
wrappedPtrCalloc = callocBytes 8
wrappedPtrCopy = \p -> withManagedPtr p (copyBytes 8 >=> wrapPtr TypeInstance)
wrappedPtrFree = Just ptr_to_g_free
newZeroTypeInstance :: MonadIO m => m TypeInstance
newZeroTypeInstance = liftIO $ wrappedPtrCalloc >>= wrapPtr TypeInstance
instance tag ~ 'AttrSet => Constructible TypeInstance tag where
new _ attrs = do
o <- newZeroTypeInstance
GI.Attributes.set o attrs
return o
noTypeInstance :: Maybe TypeInstance
noTypeInstance = Nothing
#if ENABLE_OVERLOADING
instance O.HasAttributeList TypeInstance
type instance O.AttributeList TypeInstance = TypeInstanceAttributeList
type TypeInstanceAttributeList = ('[ ] :: [(Symbol, *)])
#endif
foreign import ccall "g_type_instance_get_private" g_type_instance_get_private ::
Ptr TypeInstance ->
CGType ->
IO (Ptr ())
typeInstanceGetPrivate ::
(B.CallStack.HasCallStack, MonadIO m) =>
TypeInstance
-> GType
-> m (Ptr ())
typeInstanceGetPrivate instance_ privateType = liftIO $ do
instance_' <- unsafeManagedPtrGetPtr instance_
let privateType' = gtypeToCGType privateType
result <- g_type_instance_get_private instance_' privateType'
touchManagedPtr instance_
return result
#if ENABLE_OVERLOADING
data TypeInstanceGetPrivateMethodInfo
instance (signature ~ (GType -> m (Ptr ())), MonadIO m) => O.MethodInfo TypeInstanceGetPrivateMethodInfo TypeInstance signature where
overloadedMethod _ = typeInstanceGetPrivate
#endif
#if ENABLE_OVERLOADING
type family ResolveTypeInstanceMethod (t :: Symbol) (o :: *) :: * where
ResolveTypeInstanceMethod "getPrivate" o = TypeInstanceGetPrivateMethodInfo
ResolveTypeInstanceMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveTypeInstanceMethod t TypeInstance, O.MethodInfo info TypeInstance p) => O.IsLabelProxy t (TypeInstance -> p) where
fromLabelProxy _ = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info)
#if MIN_VERSION_base(4,9,0)
instance (info ~ ResolveTypeInstanceMethod t TypeInstance, O.MethodInfo info TypeInstance p) => O.IsLabel t (TypeInstance -> p) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info)
#else
fromLabel _ = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info)
#endif
#endif
#endif