tokyocabinet-haskell-0.0.5: Haskell binding of Tokyo CabinetContentsIndex
Database.TokyoCabinet.HDB
Contents
Basic API (tokyocabinet.idl compliant)
Description
Interface to Hash based DBM. See also, http://tokyocabinet.sourceforge.net/spex-en.html#tchdbapi for details
Synopsis
data HDB
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
new :: IO HDB
delete :: HDB -> IO ()
ecode :: HDB -> IO ECODE
errmsg :: ECODE -> String
tune :: HDB -> Int64 -> Int8 -> Int8 -> [TuningOption] -> IO Bool
setcache :: HDB -> Int32 -> IO Bool
setxmsiz :: HDB -> Int64 -> IO Bool
open :: HDB -> String -> [OpenMode] -> IO Bool
close :: HDB -> IO Bool
put :: (Storable k, Storable v) => HDB -> k -> v -> IO Bool
putkeep :: (Storable k, Storable v) => HDB -> k -> v -> IO Bool
putcat :: (Storable k, Storable v) => HDB -> k -> v -> IO Bool
putasync :: (Storable k, Storable v) => HDB -> k -> v -> IO Bool
out :: Storable k => HDB -> k -> IO Bool
get :: (Storable k, Storable v) => HDB -> k -> IO (Maybe v)
vsiz :: Storable k => HDB -> k -> IO (Maybe Int)
iterinit :: HDB -> IO Bool
iternext :: Storable k => HDB -> IO (Maybe k)
fwmkeys :: (Storable k1, Storable k2, Sequence q) => HDB -> k1 -> Int -> IO (q k2)
addint :: Storable k => HDB -> k -> Int -> IO (Maybe Int)
adddouble :: Storable k => HDB -> k -> Double -> IO (Maybe Double)
sync :: HDB -> IO Bool
optimize :: HDB -> Int64 -> Int8 -> Int8 -> [TuningOption] -> IO Bool
vanish :: HDB -> IO Bool
copy :: HDB -> String -> IO Bool
tranbegin :: HDB -> IO Bool
trancommit :: HDB -> IO Bool
tranabort :: HDB -> IO Bool
path :: HDB -> IO (Maybe String)
rnum :: HDB -> IO Word64
fsiz :: HDB -> IO Word64
Documentation

Example

    import Control.Monad
    import Database.TokyoCabinet.HDB
    main = do hdb <- new
              -- open the database
              open hdb "casket.tch" [OWRITER, OCREAT] >>= err hdb
              -- store records
              puts hdb [("foo", "hop"), ("bar", "step"), ("baz", "jump")] >>=
                       err hdb . (all id)
              -- retrieve records
              get_print hdb "foo"
              -- traverse records
              iterinit hdb
              iter hdb >>= mapM_ (k -> putStr (k++":") >> get_print hdb k)
              -- close the database
              close hdb >>= err hdb
        where
          puts :: HDB -> [(String, String)] -> IO [Bool]
          puts hdb = mapM (uncurry $ put hdb)
          get_print :: HDB -> String -> IO ()
          get_print hdb key = get hdb key >>=
                              maybe (error "something goes wrong") putStrLn
  
          err :: HDB -> Bool -> IO ()
          err hdb = flip unless $ ecode hdb >>= error . show
    
          iter :: HDB -> IO [String]
          iter hdb = iternext hdb >>=
                     maybe (return []) (x -> return . (x:) =<< iter hdb)
data HDB
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
Basic API (tokyocabinet.idl compliant)
new :: IO HDB
Create a Hash database object.
delete :: HDB -> IO ()
Free HDB resource forcibly. HDB 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 HDB object. Its behavior is undefined.
ecode :: HDB -> IO ECODE
Return the last happened error code.
errmsg :: ECODE -> String
Convert error code to message string.
tune
:: HDBHDB object
-> 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
:: HDBHDB object.
-> Int32the maximum number of records to be cached.
-> IO Boolif successful, the return value is True.
Set the caching parameters.
setxmsiz :: HDB -> Int64 -> IO Bool
Set the size of extra mapped memory.
open :: HDB -> String -> [OpenMode] -> IO Bool
Open a database file.
close :: HDB -> IO Bool
Close the database file.
put :: (Storable k, Storable v) => HDB -> k -> v -> IO Bool
Stora a record (key-value pair) on HDB. 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) => HDB -> 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) => HDB -> k -> v -> IO Bool
Concatenate a value at the end of the existing record.
putasync :: (Storable k, Storable v) => HDB -> k -> v -> IO Bool
Store a record into a hash database object in asynchronous fashion.
out :: Storable k => HDB -> k -> IO Bool
Delete a record.
get :: (Storable k, Storable v) => HDB -> k -> IO (Maybe v)
Return the value of record.
vsiz :: Storable k => HDB -> k -> IO (Maybe Int)
Return the byte size of value in a record.
iterinit :: HDB -> IO Bool
Initialize the iterator of a HDB object.
iternext :: Storable k => HDB -> IO (Maybe k)
Return the next key of the iterator of a HDB object.
fwmkeys :: (Storable k1, Storable k2, Sequence q) => HDB -> k1 -> Int -> IO (q k2)
Return list of forward matched keys.
addint :: Storable k => HDB -> k -> Int -> IO (Maybe Int)
Increment the corresponding value. (The value specified by a key is treated as integer.)
adddouble :: Storable k => HDB -> k -> Double -> IO (Maybe Double)
Increment the corresponding value. (The value specified by a key is treated as double.)
sync :: HDB -> IO Bool
Synchronize updated contents of a database object with the file and the device.
optimize
:: HDBHDB object
-> 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 Hash database object.
vanish :: HDB -> IO Bool
Delete all records.
copy :: HDB -> String -> IO Bool
Copy the database file.
tranbegin :: HDB -> IO Bool
Begin the transaction.
trancommit :: HDB -> IO Bool
Commit the transaction.
tranabort :: HDB -> IO Bool
Abort the transaction.
path :: HDB -> IO (Maybe String)
Return the file path of currentry opened database.
rnum :: HDB -> IO Word64
Return the number of records in the database.
fsiz :: HDB -> IO Word64
Return the size of the database file.
Produced by Haddock version 2.4.2