TCache-0.6.4: A Transactional data cache with configurable persistenceContentsIndex
Data.TCache
Synopsis
class IResource a where
keyResource :: a -> String
serialize :: a -> String
deserialize :: String -> a
tshowp :: a -> ST String
treadp :: ST a
defPath :: a -> String
readResource :: a -> IO (Maybe a)
writeResource :: a -> IO ()
delResource :: a -> IO ()
data Resources a b
= Retry
| Resources {
toAdd :: [a]
toDelete :: [a]
toReturn :: b
}
resources :: Resources a ()
getTVars :: IResource a => [a] -> STM [Maybe (TVar a)]
releaseTVars :: IResource a => [a] -> STM ()
getTVarsIO :: IResource a => [a] -> IO [TVar a]
withSTMResources :: IResource a => [a] -> ([Maybe a] -> Resources a x) -> STM x
withResources :: IResource a => [a] -> ([Maybe a] -> [a]) -> IO ()
withResource :: IResource a => a -> (Maybe a -> a) -> IO ()
getResources :: IResource a => [a] -> IO [Maybe a]
getResource :: IResource a => a -> IO (Maybe a)
deleteResources :: IResource a => [a] -> IO ()
deleteResource :: IResource a => a -> IO ()
type Cache a = IORef (Ht a, Integer)
setCache :: (Ht a, Integer) -> IO ()
newCache :: IO (Ht a, Integer)
refcache :: Cache a
syncCache :: IResource a => Cache a -> IO ()
clearSyncCacheProc :: IResource a => Cache a -> Int -> (Integer -> Integer -> Integer -> Bool) -> Int -> IO ThreadId
defaultCheck :: Integer -> Integer -> Integer -> Bool
readFileStrict
Documentation
class IResource a where

Interface that must be defined for every object being cached. readResource and writeResource are implemented by default as read-write to files with its key as filename serialize and deserialize are specified just to allow these defaults. If you define your own persistence, then serialize and deserialize are not needed. The package Workflow need them anyway.

minimal definition: keyResource, serialize, deserialize

While serialize and deserialize are agnostic about the way of converison to strings, either binary or textual, treadp and tshowp use the monad defined in the RefSerialize package. Both ways of serialization are alternative. one is defined by default in terms of the other. the RefSerialize monad has been introduced to permit IResource objects to be serialized as part of larger structures that embody them. This is necessary for the Workdlow package.

The keyResource string must be a unique since this is used to index it in the hash table. when accessing a resource, the user must provide a partial object for wich the key can be obtained. for example:

data Person= Person{name, surname:: String, account :: Int ....)

keyResource Person n s ...= n++s

the data being accesed must have the fields used by keyResource filled. For example

  readResource Person {name=John, surname= Adams}

leaving the rest of the fields undefined

IResource has defaults definitions for all the methods except keyResource Either one or other serializer must be defiened for default witeResource, readResource and delResource

Methods
keyResource
:: a
-> Stringmust be defined
serialize
:: a
-> Stringmust be defined by the user
deserialize
:: String
-> amust be defined by the user
tshowp
:: a
-> ST Stringserializer in the RefSerialize monad. Either one or other serializer must be defined to use default persistence
treadp
:: ST adeserialize in the RefSerilzlize monad.
defPath
:: a
-> Stringadditional extension for default file paths or key prefixes
readResource :: a -> IO (Maybe a)
writeResource :: a -> IO ()
delResource :: a -> IO ()
show/hide Instances
data Resources a b
Resources returned by withSTMResources'
Constructors
Retryforces a retry
Resources
toAdd :: [a]resources to be inserted back in the cache
toDelete :: [a]resources to be deleted from the cache and from permanent storage
toReturn :: bresult to be returned
resources :: Resources a ()
resources= Resources  [] [] ()
getTVars
:: IResource a
=> [a]
-> STM [Maybe (TVar a)]The TVars that contain such objects
getTVars return the TVar that wraps the resources for which the keys are given . | it return Nothing if a TVar with this object has not been allocated These TVars can be used as usual in explicit user constructed atomic blocks Additionally, the retrieved TVars remain in the cache and can be accessed and updated by the rest of the TCache methods. to keep the consistence in the serialized data, the content of the TVars are written every time the cache is syncronized with the storage until releaseTVars is called
releaseTVars :: IResource a => [a] -> STM ()
releaseTVars permits the TVars captured by getTVars to be released. so they can be discarded when not used. Do this when you no longer need to use them directly in atomic blocks.
getTVarsIO :: IResource a => [a] -> IO [TVar a]
getTVarsIO does not search for a TVar in the cache like getTVars. Instead of this getTVarsIO creates a list of TVars with the content given in the list of resourcees and add these TVars to the cache and return them. the content of the TVars are written every time the cache is syncronized with the storage until releaseTVars is called
withSTMResources
:: IResource a
=> [a]the list of resources to be retrieved
-> [Maybe a] -> Resources a xThe function that process the resources found and return a Resources structure
-> STM xThe return value in the STM monad.

this is the main function for the *Resource calls. All the rest derive from it. The results are kept in the STM monad so it can be part of a larger STM transaction involving other TVars The Resources register returned by the user-defined function is interpreted as such:

toAdd: additional resources not read in the first parameter of withSTMResources are created/updated with toAdd

toDelete: from the cache and from permanent storage

toReturn: will be returned by withSTMResources

withResources :: IResource a => [a] -> ([Maybe a] -> [a]) -> IO ()

to atomically add/modify many objects in the cache

 withResources rs f=  atomically $ withSTMResources rs f1 >> return() where   f1 mrs= let as= f mrs in  Resources  as [] ()
withResource
:: IResource a
=> aprototypes of the object to be retrieved for which keyResource can be derived
-> Maybe a -> aupdate function that return another full object
-> IO ()

update of a single object in the cache

withResource r f= withResources [r] ([mr]-> [f mr])
getResources :: IResource a => [a] -> IO [Maybe a]
getResource :: IResource a => a -> IO (Maybe a)

to read a resource from the cache.

getResource r= do{mr<- getResources [r];return $! head mr}
deleteResources :: IResource a => [a] -> IO ()

delete the list of resources from cache and from persistent storage.

  deleteResources rs= atomically $ withSTMResources rs f1 where  f1 mrs = Resources  [] (catMaybes mrs) ()
deleteResource :: IResource a => a -> IO ()

delete the resource from cache and from persistent storage.

 deleteResource r= deleteResources [r]
type Cache a = IORef (Ht a, Integer)
setCache :: (Ht a, Integer) -> IO ()
set the cache. this is useful for hot loaded modules that will update an existing cache. Experimental
newCache :: IO (Ht a, Integer)
newCache creates a new cache. Experimental
refcache :: Cache a
syncCache
:: IResource a
=> Cache athe cache reference ( refcache usually)
-> IO ()
Force the atomic write of all the cached objects into permanent storage useful for termination
clearSyncCacheProc
:: IResource a
=> Cache aThe cache reference (refcache usually)
-> Intnumber of seconds betwen checks. objects not written to disk are written
-> Integer -> Integer -> Integer -> BoolThe user-defined check-for-cleanup-from-cache for each object. defaultCheck is an example
-> IntThe max number of objects in the cache, if more, the cleanup starts
-> IO ThreadIdIdentifier of the thread created

Cache handling

Start the thread that clean and writes on the persistent storage. Otherwise, clearSyncCache must be invoked explicitly or no persistence will exist :: (IResource a) =>Cache a -> Int --number of seconds betwen checks -> (Integer-> Integer-> Bool) --The user-defined check-for-cleanup-from-cache for each object (when this function return True, the object is removed from cache) -> Int --The max number of objects in the cache, if more, the cleanup start -> >IO ThreadId --Identifier of the thread created

defaultCheck
:: Integercurrent time in seconds
-> Integerlast access time for a given object
-> Integerlast cache syncronization (with the persisten storage)
-> Boolreturn true for all the elems not accesed since half the time between now and the last sync
To drop from the cache all the elems not accesed since half the time between now and the last sync ths is a default cache clearance procedure -- it is invoke when the cache size exceeds the defined in clearSyncCacheProc
readFileStrict
Produced by Haddock version 2.4.2