2013-04-17 00:00:59 -04:00
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
2008-04-04 18:03:03 +00:00
# ifndef LEAFENTRY_H
# define LEAFENTRY_H
2013-04-16 23:57:48 -04:00
# ident "$Id$"
2013-04-17 00:00:59 -04:00
# ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
2013-04-16 23:57:48 -04:00
# 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."
2013-04-16 23:57:53 -04:00
# include <toku_portability.h>
2013-04-17 00:01:15 -04:00
refs #5592 move circular_buffer, omt, threadpool, growable_array, rwlock, frwlock, kibbutz, mempool, partitioned_counter, nb_mutex, sort to util/, and some other cleanup stuff
git-svn-id: file:///svn/toku/tokudb@48763 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:01:13 -04:00
# include <util/mempool.h>
2013-04-17 00:01:15 -04:00
2008-04-07 01:30:25 +00:00
# include "rbuf.h"
2008-07-27 22:16:49 +00:00
# include "x1764.h"
2013-04-17 00:01:15 -04:00
# include "omt.h"
2013-04-16 23:59:09 -04:00
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
#if 0
2013-04-17 00:01:10 -04:00
Memory format of packed leaf entry
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
CONSTANTS :
num_uxrs
keylen
Run - time - constants
voffset of val / vallen ? ? ? ( for le_any_val ) This must be small if it is interpreted as voffset = realoffset_of_val - keylen
GOOD performance optimization .
ALSO good for simplicity ( no having to scan packed version )
key [ ]
variable length
Memory format of packed dup leaf entry
CONSTANTS :
num_uxrs
keylen
vallen
Run - time - constants
key [ ]
val [ ]
# endif
# if TOKU_WINDOWS
# pragma pack(push, 1)
# endif
2013-04-16 23:59:24 -04:00
//
// enum of possible values for LEAFENTRY->type field
2013-04-16 23:59:30 -04:00
// LE_CLEAN means that there is a single committed value in a format that saves disk space
// LE_MVCC means that there may be multiple committed values or there are provisional values
2013-04-16 23:59:24 -04:00
//
2013-04-17 00:01:00 -04:00
enum { LE_CLEAN = 0 , LE_MVCC = 1 } ;
2013-04-16 23:59:24 -04:00
2013-04-17 00:01:00 -04:00
// This is an on-disk format. static_asserts verify everything is packed and aligned correctly.
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
struct __attribute__ ( ( __packed__ ) ) leafentry {
2013-04-17 00:01:00 -04:00
struct leafentry_clean {
uint32_t vallen ;
uint8_t key_val [ 0 ] ; //Actual key, then actual val
} ; // For the case where LEAFENTRY->type is LE_CLEAN
static_assert ( 4 = = sizeof ( leafentry : : leafentry_clean ) , " leafentry_clean size is wrong " ) ;
static_assert ( 4 = = __builtin_offsetof ( leafentry : : leafentry_clean , key_val ) , " key_val is in the wrong place " ) ;
struct __attribute__ ( ( __packed__ ) ) leafentry_mvcc {
uint32_t num_cxrs ; // number of committed transaction records
uint8_t num_pxrs ; // number of provisional transaction records
2013-04-17 00:01:01 -04:00
uint8_t key_xrs [ 0 ] ; //Actual key,
2013-04-17 00:01:00 -04:00
//then TXNIDs of XRs relevant for reads:
// if provisional XRs exist, store OUTERMOST TXNID
// store committed TXNIDs, from most recently committed to least recently committed (newest first)
//then lengths of XRs relevant for reads (length is at most 1<<31, MSB is 1 for insert, 0 for delete):
// if provisional XRs exist (num_pxrs>0), store length and insert/delete flag associated with INNERMOST TXNID
// store length and insert/delete flag associated with each committed TXNID, in same order as above (newest first)
//then data of XRs relevant for reads
// if provisional XRs exist (num_pxrs>0), store data associated with INNERMOST provisional TXNID
// store data associated with committed TXNIDs (all committed data, newest committed values first)
//if provisional XRs still exist (that is, num_puxrs > 1, so INNERMOST provisional TXNID != OUTERMOST provisional TXNID):
// for OUTERMOST provisional XR:
// 1 byte: store type (insert/delete/placeholder)
// 4 bytes: length (if type is INSERT, no length stored if placeholder or delete)
// data
// for rest of provisional stack (if num_pxrs > 2), from second-outermost to second-innermost (outermost is stored above, innermost is stored separately):
// 8 bytes: TXNID
// 1 byte: store type (insert/delete/placeholder)
// 4 bytes: length (if type is INSERT)
// data
// for INNERMOST provisional XR:
// 8 bytes: TXNID
// (innermost data and length with insert/delete flag are stored above, cannot be a placeholder)
} ; // For the case where LEAFENTRY->type is LE_MVCC
static_assert ( 5 = = sizeof ( leafentry : : leafentry_mvcc ) , " leafentry_mvcc size is wrong " ) ;
static_assert ( 5 = = __builtin_offsetof ( leafentry : : leafentry_mvcc , key_xrs ) , " key_xrs is in the wrong place " ) ;
2013-04-16 23:59:30 -04:00
uint8_t type ; // type is LE_CLEAN or LE_MVCC
2013-04-16 23:59:22 -04:00
uint32_t keylen ;
2013-04-17 00:01:00 -04:00
union __attribute__ ( ( __packed__ ) ) {
struct leafentry_clean clean ;
struct leafentry_mvcc mvcc ;
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
} u ;
} ;
2013-04-17 00:01:00 -04:00
static_assert ( 10 = = sizeof ( leafentry ) , " leafentry size is wrong " ) ;
static_assert ( 5 = = __builtin_offsetof ( leafentry , u ) , " union is in the wrong place " ) ;
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
# if TOKU_WINDOWS
# pragma pack(pop)
# endif
2013-04-16 23:59:42 -04:00
# define LE_CLEAN_MEMSIZE(_keylen, _vallen) \
( sizeof ( ( ( LEAFENTRY ) NULL ) - > type ) /* type */ \
2013-04-16 23:59:22 -04:00
+ sizeof ( ( ( LEAFENTRY ) NULL ) - > keylen ) /* keylen */ \
+ sizeof ( ( ( LEAFENTRY ) NULL ) - > u . clean . vallen ) /* vallen */ \
2013-04-16 23:59:42 -04:00
+ ( _keylen ) /* actual key */ \
+ ( _vallen ) ) /* actual val */
2013-04-16 23:59:22 -04:00
# define LE_MVCC_COMMITTED_HEADER_MEMSIZE \
2013-04-16 23:59:42 -04:00
( sizeof ( ( ( LEAFENTRY ) NULL ) - > type ) /* type */ \
2013-04-16 23:59:22 -04:00
+ sizeof ( ( ( LEAFENTRY ) NULL ) - > keylen ) /* keylen */ \
+ sizeof ( ( ( LEAFENTRY ) NULL ) - > u . mvcc . num_cxrs ) /* committed */ \
+ sizeof ( ( ( LEAFENTRY ) NULL ) - > u . mvcc . num_pxrs ) /* provisional */ \
+ sizeof ( TXNID ) /* transaction */ \
+ sizeof ( uint32_t ) /* length+bit */ \
+ sizeof ( uint32_t ) ) /* length+bit */
2013-04-16 23:59:42 -04:00
# define LE_MVCC_COMMITTED_MEMSIZE(_keylen, _vallen) \
2013-04-16 23:59:22 -04:00
( LE_MVCC_COMMITTED_HEADER_MEMSIZE \
2013-04-16 23:59:42 -04:00
+ ( _keylen ) /* actual key */ \
+ ( _vallen ) ) /* actual val */
2013-04-16 23:59:22 -04:00
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
typedef struct leafentry * LEAFENTRY ;
2013-04-16 23:59:36 -04:00
typedef struct leafentry_13 * LEAFENTRY_13 ;
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
size_t leafentry_memsize ( LEAFENTRY le ) ; // the size of a leafentry in memory.
size_t leafentry_disksize ( LEAFENTRY le ) ; // this is the same as logsizeof_LEAFENTRY. The size of a leafentry on disk.
2008-04-07 01:30:25 +00:00
void wbuf_LEAFENTRY ( struct wbuf * w , LEAFENTRY le ) ;
2013-04-16 23:59:05 -04:00
void wbuf_nocrc_LEAFENTRY ( struct wbuf * w , LEAFENTRY le ) ;
2008-04-07 01:30:25 +00:00
int print_leafentry ( FILE * outf , LEAFENTRY v ) ; // Print a leafentry out in human-readable form.
2013-04-16 23:59:22 -04:00
int le_latest_is_del ( LEAFENTRY le ) ; // Return true if it is a provisional delete.
2013-04-17 00:01:01 -04:00
bool le_is_clean ( LEAFENTRY le ) ; //Return how many xids exist (0 does not count)
bool le_has_xids ( LEAFENTRY le , XIDS xids ) ; // Return true transaction represented by xids is still provisional in this leafentry (le's xid stack is a superset or equal to xids)
uint32_t le_latest_keylen ( LEAFENTRY le ) ; // Return the latest keylen.
2008-04-07 01:30:25 +00:00
void * le_latest_val ( LEAFENTRY le ) ; // Return the latest val (return NULL for provisional deletes)
2013-04-17 00:01:01 -04:00
uint32_t le_latest_vallen ( LEAFENTRY le ) ; // Return the latest vallen. Returns 0 for provisional deletes.
void * le_latest_val_and_len ( LEAFENTRY le , uint32_t * len ) ;
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
// Return any key or value (even if it's only provisional).
void * le_key ( LEAFENTRY le ) ;
2013-04-17 00:01:01 -04:00
uint32_t le_keylen ( LEAFENTRY le ) ;
void * le_key_and_len ( LEAFENTRY le , uint32_t * len ) ;
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
2013-04-17 00:01:01 -04:00
uint64_t le_outermost_uncommitted_xid ( LEAFENTRY le ) ;
Addresses #1125 Merged nested transactions from temporary merge branch into main.
Current tests fail (not regressions, they fail as of 13461)
* {{{x1.tdbrun}}}
* {{{test_log(2,3,4,5,6,7,8,9,10).recover}}}
* {{{test-recover(1,2,3).tdbrun}}}
* {{{test1324.tdbrun}}}
ULE_DEBUG disabled (defined to 0) Can be re-enabled for test purposes (set to 1).
refs [t:1125]
Merging into the temp branch (tokudb.main_13461+1125)
{{{svn merge --accept=postpone -r 12527:13461 ../tokudb.1125 ./}}}
Merging into main
{{{svn merge --accept=postpone -r13462:13463 ../tokudb.main_13461+1125/ ./}}}
git-svn-id: file:///svn/toku/tokudb@13464 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:56 -04:00
2013-04-16 23:59:22 -04:00
void
le_committed_mvcc ( uint8_t * key , uint32_t keylen ,
uint8_t * val , uint32_t vallen ,
TXNID xid ,
void ( * bytes ) ( struct dbuf * dbuf , const void * bytes , int nbytes ) ,
struct dbuf * d ) ;
void
le_clean ( uint8_t * key , uint32_t keylen ,
uint8_t * val , uint32_t vallen ,
void ( * bytes ) ( struct dbuf * dbuf , const void * bytes , int nbytes ) ,
struct dbuf * d ) ;
2013-04-16 23:59:24 -04:00
2013-04-16 23:59:24 -04:00
//Callback contract:
2013-04-16 23:59:24 -04:00
// Function checks to see if id is accepted by context.
2013-04-16 23:59:24 -04:00
// Returns:
2013-04-16 23:59:24 -04:00
// 0: context ignores this entry, id.
// TOKUDB_ACCEPT: context accepts id
// r|r!=0&&r!=TOKUDB_ACCEPT: Quit early, return r, because something unexpected went wrong (error case)
2013-04-16 23:59:24 -04:00
typedef int ( * LE_ITERATE_CALLBACK ) ( TXNID id , TOKUTXN context ) ;
2013-04-16 23:59:24 -04:00
2013-04-17 00:01:01 -04:00
int le_iterate_is_del ( LEAFENTRY le , LE_ITERATE_CALLBACK f , bool * is_empty , TOKUTXN context ) ;
2013-04-16 23:59:24 -04:00
2013-04-17 00:01:01 -04:00
int le_iterate_val ( LEAFENTRY le , LE_ITERATE_CALLBACK f , void * * valpp , uint32_t * vallenp , TOKUTXN context ) ;
2013-04-16 23:59:24 -04:00
2013-04-16 23:59:25 -04:00
size_t
2013-04-16 23:59:36 -04:00
leafentry_disksize_13 ( LEAFENTRY_13 le ) ;
2013-04-17 00:01:14 -04:00
int
2013-04-16 23:59:36 -04:00
toku_le_upgrade_13_14 ( LEAFENTRY_13 old_leafentry , // NULL if there was no stored data.
2013-04-17 00:01:14 -04:00
size_t * new_leafentry_memorysize ,
LEAFENTRY * new_leafentry_p ,
OMT * omtp ,
struct mempool * mp ) ;
2013-04-16 23:59:25 -04:00
2013-04-16 23:59:09 -04:00
2008-04-04 18:03:03 +00:00
# endif