mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
e8a0b831fa
Now verifies there is exactly one handle and returns it. Removing this code entirely would make refcounting more complicated. git-svn-id: file:///svn/toku/tokudb@44225 c7de825b-a66e-492c-adef-691d508d4ae1
93 lines
3.7 KiB
C
93 lines
3.7 KiB
C
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
// vim: expandtab:ts=8:sw=4:softtabstop=4:
|
|
#ifndef FT_H
|
|
#define FT_H
|
|
#ident "$Id: ft.h 43422 2012-05-12 17:51:02Z zardosht $"
|
|
#ident "Copyright (c) 2007-2010 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."
|
|
|
|
#include "fttypes.h"
|
|
#include "ybt.h"
|
|
#include <db.h>
|
|
#include "cachetable.h"
|
|
#include "log.h"
|
|
#include "ft-search.h"
|
|
#include "ft-ops.h"
|
|
#include "compress.h"
|
|
|
|
// remove a ft, transactionless.
|
|
// if the ft is being checkpointed, it will be removed after checkpoint.
|
|
void toku_ft_remove(FT_HANDLE handle);
|
|
|
|
// remove a ft using the given txn. when the txn commits, the ft is removed.
|
|
// if the ft is being checkpointed, it will be removed after checkpoint.
|
|
int toku_ft_remove_on_commit(FT_HANDLE handle, TOKUTXN txn) __attribute__((__warn_unused_result__));
|
|
|
|
//Effect: suppresses rollback logs
|
|
void toku_ft_suppress_rollbacks(FT h, TOKUTXN txn);
|
|
|
|
void toku_ft_init_treelock(FT h);
|
|
void toku_ft_destroy_treelock(FT h);
|
|
void toku_ft_grab_treelock(FT h);
|
|
void toku_ft_release_treelock(FT h);
|
|
|
|
void toku_ft_init_reflock(FT ft);
|
|
void toku_ft_destroy_reflock(FT ft);
|
|
void toku_ft_grab_reflock(FT ft);
|
|
void toku_ft_release_reflock(FT ft);
|
|
|
|
int toku_create_new_ft(FT *ftp, FT_OPTIONS options, CACHEFILE cf, TOKUTXN txn);
|
|
void toku_ft_free (FT h);
|
|
|
|
int toku_read_ft_and_store_in_cachefile (FT_HANDLE brt, CACHEFILE cf, LSN max_acceptable_lsn, FT *header, BOOL* was_open);
|
|
void toku_ft_note_ft_handle_open(FT ft, FT_HANDLE live);
|
|
|
|
int toku_ft_needed_unlocked(FT h);
|
|
BOOL toku_ft_has_one_reference_unlocked(FT ft);
|
|
int toku_remove_ft (FT h, char **error_string, BOOL oplsn_valid, LSN oplsn) __attribute__ ((warn_unused_result));
|
|
|
|
FT_HANDLE toku_ft_get_only_existing_ft_handle(FT h);
|
|
|
|
void toku_ft_note_hot_begin(FT_HANDLE brt);
|
|
void toku_ft_note_hot_complete(FT_HANDLE brt, BOOL success, MSN msn_at_start_of_hot);
|
|
|
|
void
|
|
toku_ft_init(
|
|
FT h,
|
|
BLOCKNUM root_blocknum_on_disk,
|
|
LSN checkpoint_lsn,
|
|
TXNID root_xid_that_created,
|
|
uint32_t target_nodesize,
|
|
uint32_t target_basementnodesize,
|
|
enum toku_compression_method compression_method
|
|
);
|
|
|
|
int toku_dictionary_redirect_abort(FT old_h, FT new_h, TOKUTXN txn) __attribute__ ((warn_unused_result));
|
|
int toku_dictionary_redirect (const char *dst_fname_in_env, FT_HANDLE old_ft, TOKUTXN txn);
|
|
void toku_reset_root_xid_that_created(FT h, TXNID new_root_xid_that_created);
|
|
// Reset the root_xid_that_created field to the given value.
|
|
// This redefines which xid created the dictionary.
|
|
|
|
|
|
void
|
|
toku_ft_add_txn_ref(FT h, TOKUTXN txn);
|
|
void
|
|
toku_ft_remove_txn_ref(FT h, TOKUTXN txn);
|
|
|
|
void toku_calculate_root_offset_pointer ( FT h, CACHEKEY* root_key, u_int32_t *roothash);
|
|
void toku_ft_set_new_root_blocknum(FT h, CACHEKEY new_root_key);
|
|
LSN toku_ft_checkpoint_lsn(FT h) __attribute__ ((warn_unused_result));
|
|
int toku_ft_set_panic(FT h, int panic, char *panic_string) __attribute__ ((warn_unused_result));
|
|
void toku_ft_stat64 (FT h, struct ftstat64_s *s);
|
|
int toku_update_descriptor(FT h, DESCRIPTOR d, int fd);
|
|
// Note: See the locking discussion in ft-ops.c for toku_ft_change_descriptor and toku_update_descriptor.
|
|
void toku_ft_update_cmp_descriptor(FT h);
|
|
|
|
void toku_ft_update_stats(STAT64INFO headerstats, STAT64INFO_S delta);
|
|
void toku_ft_decrease_stats(STAT64INFO headerstats, STAT64INFO_S delta);
|
|
|
|
void toku_ft_remove_reference(FT ft,
|
|
bool oplsn_valid, LSN oplsn,
|
|
remove_ft_ref_callback remove_ref, void *extra);
|
|
|
|
#endif
|