{-# LANGUAGE TypeApplications #-}
#if !defined(__HADDOCK_VERSION__)
#define ENABLE_OVERLOADING
#endif
module GI.GLib.Structs.Cache
(
Cache(..) ,
#if defined(ENABLE_OVERLOADING)
ResolveCacheMethod ,
#endif
#if defined(ENABLE_OVERLOADING)
CacheDestroyMethodInfo ,
#endif
cacheDestroy ,
#if defined(ENABLE_OVERLOADING)
CacheInsertMethodInfo ,
#endif
cacheInsert ,
#if defined(ENABLE_OVERLOADING)
CacheKeyForeachMethodInfo ,
#endif
cacheKeyForeach ,
#if defined(ENABLE_OVERLOADING)
CacheRemoveMethodInfo ,
#endif
cacheRemove ,
#if defined(ENABLE_OVERLOADING)
CacheValueForeachMethodInfo ,
#endif
cacheValueForeach ,
) 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.BasicTypes as B.Types
import qualified Data.GI.Base.ManagedPtr as B.ManagedPtr
import qualified Data.GI.Base.GArray as B.GArray
import qualified Data.GI.Base.GClosure as B.GClosure
import qualified Data.GI.Base.GError as B.GError
import qualified Data.GI.Base.GHashTable as B.GHT
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 Control.Monad.IO.Class as MIO
import qualified Data.Coerce as Coerce
import qualified Data.Text as T
import qualified Data.Kind as DK
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
import qualified GHC.Records as R
import qualified Data.Word as DW
import qualified Data.Int as DI
import qualified System.Posix.Types as SPT
import qualified Foreign.C.Types as FCT
#if MIN_VERSION_base(4,18,0)
import qualified GI.GLib.Callbacks as GLib.Callbacks
#else
import qualified GI.GLib.Callbacks as GLib.Callbacks
#endif
newtype Cache = Cache (SP.ManagedPtr Cache)
deriving (Cache -> Cache -> Bool
(Cache -> Cache -> Bool) -> (Cache -> Cache -> Bool) -> Eq Cache
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Cache -> Cache -> Bool
== :: Cache -> Cache -> Bool
$c/= :: Cache -> Cache -> Bool
/= :: Cache -> Cache -> Bool
Eq)
instance SP.ManagedPtrNewtype Cache where
toManagedPtr :: Cache -> ManagedPtr Cache
toManagedPtr (Cache ManagedPtr Cache
p) = ManagedPtr Cache
p
instance BoxedPtr Cache where
boxedPtrCopy :: Cache -> IO Cache
boxedPtrCopy = Cache -> IO Cache
forall a. a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
return
boxedPtrFree :: Cache -> IO ()
boxedPtrFree = \Cache
_x -> () -> IO ()
forall a. a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList Cache
type instance O.AttributeList Cache = CacheAttributeList
type CacheAttributeList = ('[ ] :: [(Symbol, DK.Type)])
#endif
foreign import ccall "g_cache_destroy" g_cache_destroy ::
Ptr Cache ->
IO ()
{-# DEPRECATED cacheDestroy ["(Since version 2.32)","Use a t'GI.GLib.Structs.HashTable.HashTable' instead"] #-}
cacheDestroy ::
(B.CallStack.HasCallStack, MonadIO m) =>
Cache
-> m ()
cacheDestroy :: forall (m :: * -> *). (HasCallStack, MonadIO m) => Cache -> m ()
cacheDestroy Cache
cache = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
cache' <- Cache -> IO (Ptr Cache)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Cache
cache
g_cache_destroy cache'
touchManagedPtr cache
return ()
#if defined(ENABLE_OVERLOADING)
data CacheDestroyMethodInfo
instance (signature ~ (m ()), MonadIO m) => O.OverloadedMethod CacheDestroyMethodInfo Cache signature where
overloadedMethod = cacheDestroy
instance O.OverloadedMethodInfo CacheDestroyMethodInfo Cache where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.GLib.Structs.Cache.cacheDestroy",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-glib-2.0.30/docs/GI-GLib-Structs-Cache.html#v:cacheDestroy"
})
#endif
foreign import ccall "g_cache_insert" g_cache_insert ::
Ptr Cache ->
Ptr () ->
IO (Ptr ())
{-# DEPRECATED cacheInsert ["(Since version 2.32)","Use a t'GI.GLib.Structs.HashTable.HashTable' instead"] #-}
cacheInsert ::
(B.CallStack.HasCallStack, MonadIO m) =>
Cache
-> Ptr ()
-> m (Ptr ())
cacheInsert :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Cache -> Ptr () -> m (Ptr ())
cacheInsert Cache
cache Ptr ()
key = IO (Ptr ()) -> m (Ptr ())
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Ptr ()) -> m (Ptr ())) -> IO (Ptr ()) -> m (Ptr ())
forall a b. (a -> b) -> a -> b
$ do
cache' <- Cache -> IO (Ptr Cache)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Cache
cache
result <- g_cache_insert cache' key
touchManagedPtr cache
return result
#if defined(ENABLE_OVERLOADING)
data CacheInsertMethodInfo
instance (signature ~ (Ptr () -> m (Ptr ())), MonadIO m) => O.OverloadedMethod CacheInsertMethodInfo Cache signature where
overloadedMethod = cacheInsert
instance O.OverloadedMethodInfo CacheInsertMethodInfo Cache where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.GLib.Structs.Cache.cacheInsert",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-glib-2.0.30/docs/GI-GLib-Structs-Cache.html#v:cacheInsert"
})
#endif
foreign import ccall "g_cache_key_foreach" g_cache_key_foreach ::
Ptr Cache ->
FunPtr GLib.Callbacks.C_HFunc ->
Ptr () ->
IO ()
{-# DEPRECATED cacheKeyForeach ["(Since version 2.32)","Use a t'GI.GLib.Structs.HashTable.HashTable' instead"] #-}
cacheKeyForeach ::
(B.CallStack.HasCallStack, MonadIO m) =>
Cache
-> GLib.Callbacks.HFunc
-> m ()
cacheKeyForeach :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Cache -> HFunc -> m ()
cacheKeyForeach Cache
cache HFunc
func = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
cache' <- Cache -> IO (Ptr Cache)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Cache
cache
func' <- GLib.Callbacks.mk_HFunc (GLib.Callbacks.wrap_HFunc Nothing (GLib.Callbacks.drop_closures_HFunc func))
let userData = Ptr a
forall a. Ptr a
nullPtr
g_cache_key_foreach cache' func' userData
safeFreeFunPtr $ castFunPtrToPtr func'
touchManagedPtr cache
return ()
#if defined(ENABLE_OVERLOADING)
data CacheKeyForeachMethodInfo
instance (signature ~ (GLib.Callbacks.HFunc -> m ()), MonadIO m) => O.OverloadedMethod CacheKeyForeachMethodInfo Cache signature where
overloadedMethod = cacheKeyForeach
instance O.OverloadedMethodInfo CacheKeyForeachMethodInfo Cache where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.GLib.Structs.Cache.cacheKeyForeach",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-glib-2.0.30/docs/GI-GLib-Structs-Cache.html#v:cacheKeyForeach"
})
#endif
foreign import ccall "g_cache_remove" g_cache_remove ::
Ptr Cache ->
Ptr () ->
IO ()
{-# DEPRECATED cacheRemove ["(Since version 2.32)","Use a t'GI.GLib.Structs.HashTable.HashTable' instead"] #-}
cacheRemove ::
(B.CallStack.HasCallStack, MonadIO m) =>
Cache
-> Ptr ()
-> m ()
cacheRemove :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Cache -> Ptr () -> m ()
cacheRemove Cache
cache Ptr ()
value = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
cache' <- Cache -> IO (Ptr Cache)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Cache
cache
g_cache_remove cache' value
touchManagedPtr cache
return ()
#if defined(ENABLE_OVERLOADING)
data CacheRemoveMethodInfo
instance (signature ~ (Ptr () -> m ()), MonadIO m) => O.OverloadedMethod CacheRemoveMethodInfo Cache signature where
overloadedMethod = cacheRemove
instance O.OverloadedMethodInfo CacheRemoveMethodInfo Cache where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.GLib.Structs.Cache.cacheRemove",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-glib-2.0.30/docs/GI-GLib-Structs-Cache.html#v:cacheRemove"
})
#endif
foreign import ccall "g_cache_value_foreach" g_cache_value_foreach ::
Ptr Cache ->
FunPtr GLib.Callbacks.C_HFunc ->
Ptr () ->
IO ()
{-# DEPRECATED cacheValueForeach ["(Since version 2.10)","The reason is that it passes pointers to internal"," data structures to /@func@/; use 'GI.GLib.Structs.Cache.cacheKeyForeach' instead"] #-}
cacheValueForeach ::
(B.CallStack.HasCallStack, MonadIO m) =>
Cache
-> GLib.Callbacks.HFunc
-> m ()
cacheValueForeach :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Cache -> HFunc -> m ()
cacheValueForeach Cache
cache HFunc
func = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
cache' <- Cache -> IO (Ptr Cache)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Cache
cache
func' <- GLib.Callbacks.mk_HFunc (GLib.Callbacks.wrap_HFunc Nothing (GLib.Callbacks.drop_closures_HFunc func))
let userData = Ptr a
forall a. Ptr a
nullPtr
g_cache_value_foreach cache' func' userData
safeFreeFunPtr $ castFunPtrToPtr func'
touchManagedPtr cache
return ()
#if defined(ENABLE_OVERLOADING)
data CacheValueForeachMethodInfo
instance (signature ~ (GLib.Callbacks.HFunc -> m ()), MonadIO m) => O.OverloadedMethod CacheValueForeachMethodInfo Cache signature where
overloadedMethod = cacheValueForeach
instance O.OverloadedMethodInfo CacheValueForeachMethodInfo Cache where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.GLib.Structs.Cache.cacheValueForeach",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-glib-2.0.30/docs/GI-GLib-Structs-Cache.html#v:cacheValueForeach"
})
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveCacheMethod (t :: Symbol) (o :: DK.Type) :: DK.Type where
ResolveCacheMethod "destroy" o = CacheDestroyMethodInfo
ResolveCacheMethod "insert" o = CacheInsertMethodInfo
ResolveCacheMethod "keyForeach" o = CacheKeyForeachMethodInfo
ResolveCacheMethod "remove" o = CacheRemoveMethodInfo
ResolveCacheMethod "valueForeach" o = CacheValueForeachMethodInfo
ResolveCacheMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveCacheMethod t Cache, O.OverloadedMethod info Cache p) => OL.IsLabel t (Cache -> p) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.overloadedMethod @info
#else
fromLabel _ = O.overloadedMethod @info
#endif
#if MIN_VERSION_base(4,13,0)
instance (info ~ ResolveCacheMethod t Cache, O.OverloadedMethod info Cache p, R.HasField t Cache p) => R.HasField t Cache p where
getField = O.overloadedMethod @info
#endif
instance (info ~ ResolveCacheMethod t Cache, O.OverloadedMethodInfo info Cache) => OL.IsLabel t (O.MethodProxy info Cache) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.MethodProxy
#else
fromLabel _ = O.MethodProxy
#endif
#endif