tokyocabinet-haskell-0.0.5: Haskell binding of Tokyo CabinetContentsIndex
Database.TokyoCabinet.BDB
Contents
Basic API (tokyocabinet.idl compliant)
Description
Interface to B+ tree based DBM. See also, http://tokyocabinet.sourceforge.net/spex-en.html#tcbdbapi for details
Synopsis
data BDB
data ECODE
= ESUCCESS
| ETHREAD
| EINVALID
| ENOFILE
| ENOPERM
| EMETA
| ERHEAD
| EOPEN
| ECLOSE
| ETRUNC
| ESYNC
| ESTAT
| ESEEK
| EREAD
| EWRITE
| EMMAP
| ELOCK
| EUNLINK
| ERENAME
| EMKDIR
| ERMDIR
| EKEEP
| ENOREC
| EMISC
data OpenMode
= OREADER
| OWRITER
| OCREAT
| OTRUNC
| ONOLCK
| OLCKNB
| OTSYNC
data TuningOption
= TLARGE
| TDEFLATE
| TBZIP
| TTCBS
| TEXCODEC
data CMP
= CMPLEXICAL
| CMPDECIMAL
| CMPINT32
| CMPINT64
| CMP (ByteString -> ByteString -> Ordering)
new :: IO BDB
delete :: BDB -> IO ()
ecode :: BDB -> IO ECODE
errmsg :: ECODE -> String
tune :: BDB -> Int32 -> Int32 -> Int64 -> Int8 -> Int8 -> [TuningOption] -> IO Bool
setcache :: BDB -> Int32 -> Int32 -> IO Bool
setxmsiz :: BDB -> Int64 -> IO Bool
setcmpfunc :: BDB -> CMP -> IO Bool
open :: BDB -> String -> [OpenMode] -> IO Bool
close :: BDB -> IO Bool
put :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
putkeep :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
putcat :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
putdup :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
putlist :: (Storable k, Storable v, Sequence q) => BDB -> k -> q v -> IO Bool
out :: Storable k => BDB -> k -> IO Bool
outlist :: Storable k => BDB -> k -> IO Bool
get :: (Storable k, Storable v) => BDB -> k -> IO (Maybe v)
getlist :: (Storable k, Storable v, Sequence q) => BDB -> k -> IO (q v)
vnum :: Storable k => BDB -> k -> IO (Maybe Int)
vsiz :: Storable k => BDB -> k -> IO (Maybe Int)
range :: (Storable k, Sequence q) => BDB -> Maybe k -> Bool -> Maybe k -> Bool -> Int -> IO (q k)
fwmkeys :: (Storable k1, Storable k2, Sequence q) => BDB -> k1 -> Int -> IO (q k2)
addint :: Storable k => BDB -> k -> Int -> IO (Maybe Int)
adddouble :: Storable k => BDB -> k -> Double -> IO (Maybe Double)
sync :: BDB -> IO Bool
optimize :: BDB -> Int32 -> Int32 -> Int64 -> Int8 -> Int8 -> [TuningOption] -> IO Bool
vanish :: BDB -> IO Bool
copy :: BDB -> String -> IO Bool
tranbegin :: BDB -> IO Bool
trancommit :: BDB -> IO Bool
tranabort :: BDB -> IO Bool
path :: BDB -> IO (Maybe String)
rnum :: BDB -> IO Word64
fsiz :: BDB -> IO Word64
Documentation

Example

    import Control.Monad
    import Database.TokyoCabinet.BDB
    import qualified Database.TokyoCabinet.BDB.Cursor as C
  
    main :: IO ()
    main =
        do bdb <- new
           -- open the database
           open bdb "casket.tcb" [OWRITER, OCREAT] >>= err bdb
           -- store records
           puts bdb [ ("foo", "hop"), ("bar", "step"), ("baz", "jump") ] >>=
                    err bdb . (all id)
           -- retrieve records
           get bdb "foo" >>= maybe (error "something goes wrong") putStrLn
           -- traverse records
           cur <- C.new bdb
           C.first cur >>= err bdb
           iter cur >>= putStrLn . show
           -- close the database
           close bdb >>= err bdb
        where
          puts :: BDB -> [(String, String)] -> IO [Bool]
          puts bdb = mapM (uncurry $ put bdb)
          err :: BDB -> Bool -> IO ()
          err bdb = flip unless $ ecode bdb >>= error . show
  
          iter :: C.BDBCUR -> IO [(String, String)]
          iter cur = do
            [key, value] <- sequence [C.key cur, C.val cur]
            case (key, value) of
              (Just k, Just v) -> C.next cur >> iter cur >>= return . ((k,v):)
              _ -> return []
data BDB
show/hide Instances
data ECODE
Represents error
Constructors
ESUCCESSsuccess
ETHREADthreading error
EINVALIDinvalid operation
ENOFILEfile not found
ENOPERMno permission
EMETAinvalid meta data
ERHEADinvalid record header
EOPENopen error
ECLOSEclose error
ETRUNCtrunc error
ESYNCsync error
ESTATstat error
ESEEKseek error
EREADread error
EWRITEwrite error
EMMAPmmap error
ELOCKlock error
EUNLINKunlink error
ERENAMErename error
EMKDIRmkdir error
ERMDIRrmdir error
EKEEPexisting record
ENORECno record found
EMISCmiscellaneous error
show/hide Instances
data OpenMode
Constructors
OREADER
OWRITER
OCREAT
OTRUNC
ONOLCK
OLCKNB
OTSYNC
show/hide Instances
data TuningOption
Constructors
TLARGE
TDEFLATE
TBZIP
TTCBS
TEXCODEC
show/hide Instances
data CMP
Constructors
CMPLEXICAL
CMPDECIMAL
CMPINT32
CMPINT64
CMP (ByteString -> ByteString -> Ordering)
Basic API (tokyocabinet.idl compliant)
new :: IO BDB
Create a B+ tree database object.
delete :: BDB -> IO ()
Free BDB resource forcibly. BDB is kept by ForeignPtr, so Haskell runtime GC cleans up memory for almost situation. Most always, you don't need to call this. After call this, you must not touch BDB object. Its behavior is undefined.
ecode :: BDB -> IO ECODE
Return the last happened error code.
errmsg :: ECODE -> String
Convert error code to message string.
tune
:: BDBBDB object
-> Int32the number of members in each leaf page.
-> Int32the number of members in each non-leaf page.
-> Int64the number of elements of the bucket array.
-> Int8the size of record alignment by power of 2.
-> Int8the maximum number of elements of the free block pool by power of 2.
-> [TuningOption]tuning options
-> IO Boolif successful, the return value is True.
Set the tuning parameters.
setcache
:: BDBBDB object
-> Int32the maximum number of leaf nodes to be cached.
-> Int32the maximum number of non-leaf nodes to be cached.
-> IO Boolif successful, the return value is True.
Set the caching parameters.
setxmsiz :: BDB -> Int64 -> IO Bool
Set the size of extra mapped memory.
setcmpfunc :: BDB -> CMP -> IO Bool
Set the custom comparison function of a B+ tree database object.
open :: BDB -> String -> [OpenMode] -> IO Bool
Open BDB database file.
close :: BDB -> IO Bool
Close the database file.
put :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
Stora a record (key-value pair) on BDB. Key and value type must be instance of Storable class. Usually, we can use String, ByteString for key, String, ByteString, Int, Double for value.
putkeep :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
Store a new record. If a record with the same key exists in the database, this function has no effect.
putcat :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
Concatenate a value at the end of the existing record.
putdup :: (Storable k, Storable v) => BDB -> k -> v -> IO Bool
Store a record with allowing duplication of keys.
putlist :: (Storable k, Storable v, Sequence q) => BDB -> k -> q v -> IO Bool
Store records with allowing duplication of keys.
out :: Storable k => BDB -> k -> IO Bool
Delete a record. If the key of duplicated records is specified, the first one is deleted.
outlist :: Storable k => BDB -> k -> IO Bool
Delete records. If the key of duplicated records is specified, all of them are deleted.
get :: (Storable k, Storable v) => BDB -> k -> IO (Maybe v)
Return the value of record. If the key of duplicated records is specified, the first one is returned.
getlist :: (Storable k, Storable v, Sequence q) => BDB -> k -> IO (q v)
Retrieve records.
vnum :: Storable k => BDB -> k -> IO (Maybe Int)
Return the number of records corresponding to a key.
vsiz :: Storable k => BDB -> k -> IO (Maybe Int)
Return the size of the value of a record. If the key of duplicated records is specified, the first one is selected.
range
:: (Storable k, Sequence q)
=> BDBBDB object
-> Maybe kthe key of the beginning border. If it is Nothing, the first record in the database is specified.
-> Boolwhether the beginning border is inclusive or not.
-> Maybe kthe key of the ending border. If it is Nothing, the last record is specified.
-> Boolwhether the ending border is inclusive or not.
-> Intthe maximum number of keys to be fetched. If it is negative value, no limit is specified.
-> IO (q k)keys in the specified range.
Return list of keys in the specified range.
fwmkeys
:: (Storable k1, Storable k2, Sequence q)
=> BDBBDB object
-> k1search string
-> Intthe maximum number of keys to be fetched. If it is negative value, no limit is specified.
-> IO (q k2)keys matches specified string (in forward matching).
Return list of forward matched keys.
addint
:: Storable k
=> BDBBDB object.
-> kKey.
-> IntAmount of increment.
-> IO (Maybe Int)If successful, a new value is returned.
Increment the corresponding value. (The value specified by a key is treated as integer.)
adddouble
:: Storable k
=> BDBBDB object.
-> kKey.
-> DoubleAmount of increment.
-> IO (Maybe Double)If successful, a new value is returned.
Increment the corresponding value. (The value specified by a key is treated as double.)
sync :: BDB -> IO Bool
Synchronize updated contents of a database object with the file and the device.
optimize
:: BDB
-> Int32the number of members in each leaf page.
-> Int32the number of members in each non-leaf page.
-> Int64the number of elements of the bucket array.
-> Int8the size of record alignment by power of 2.
-> Int8the maximum number of elements of the free block pool by power of 2.
-> [TuningOption]tuning options
-> IO Boolif successful, the return value is True.
Optimize the file of a B+ tree database object.
vanish :: BDB -> IO Bool
Delete all records.
copy :: BDB -> String -> IO Bool
Copy the database file.
tranbegin :: BDB -> IO Bool
Begin the transaction.
trancommit :: BDB -> IO Bool
Commit the transaction.
tranabort :: BDB -> IO Bool
Abort the transaction.
path :: BDB -> IO (Maybe String)
Return the file path of currentry opened database.
rnum :: BDB -> IO Word64
Return the number of records in the database.
fsiz :: BDB -> IO Word64
Return the size of the database file.
Produced by Haddock version 2.4.2