mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
aab744ac1b
git-svn-id: file:///svn/toku/tokudb@50011 c7de825b-a66e-492c-adef-691d508d4ae1
56 lines
2 KiB
C++
56 lines
2 KiB
C++
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
|
|
#ifndef TOKU_YBT_H
|
|
#define TOKU_YBT_H
|
|
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
|
|
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
|
|
|
|
// fttypes.h must be first to make 64-bit file mode work right in linux.
|
|
#include "fttypes.h"
|
|
#include <db.h>
|
|
|
|
// TODO: John
|
|
// Document this API a little better so that DBT
|
|
// memory management can be morm widely understood.
|
|
|
|
DBT *toku_init_dbt(DBT *);
|
|
|
|
DBT *toku_init_dbt_flags(DBT *, uint32_t flags);
|
|
|
|
void toku_destroy_dbt(DBT *);
|
|
|
|
DBT *toku_fill_dbt(DBT *dbt, bytevec k, ITEMLEN len);
|
|
|
|
DBT *toku_memdup_dbt(DBT *dbt, const void *k, size_t len);
|
|
|
|
DBT *toku_copyref_dbt(DBT *dst, const DBT src);
|
|
|
|
DBT *toku_copy_dbt(DBT *dst, const DBT &src);
|
|
|
|
DBT *toku_clone_dbt(DBT *dst, const DBT &src);
|
|
|
|
int toku_dbt_set(ITEMLEN len, bytevec val, DBT *d, struct simple_dbt *sdbt);
|
|
|
|
int toku_dbt_set_value(DBT *, bytevec *val, ITEMLEN vallen, void **staticptrp, bool ybt1_disposable);
|
|
|
|
void toku_sdbt_cleanup(struct simple_dbt *sdbt);
|
|
|
|
// returns: special DBT pointer representing positive infinity
|
|
const DBT *toku_dbt_positive_infinity(void);
|
|
|
|
// returns: special DBT pointer representing negative infinity
|
|
const DBT *toku_dbt_negative_infinity(void);
|
|
|
|
// returns: true if the given dbt is either positive or negative infinity
|
|
bool toku_dbt_is_infinite(const DBT *dbt);
|
|
|
|
// effect: compares two potentially infinity-valued dbts
|
|
// requires: at least one is infinite (assert otherwise)
|
|
int toku_dbt_infinite_compare(const DBT *a, const DBT *b);
|
|
|
|
// returns: true if the given dbts have the same data pointer and size
|
|
bool toku_dbt_equals(const DBT *a, const DBT *b);
|
|
|
|
#endif /* TOKU_YBT_H */
|