mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
23b50b671d
git-svn-id: file:///svn/tokudb@715 c7de825b-a66e-492c-adef-691d508d4ae1
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "yerror.h"
|
|
#include "log.h"
|
|
|
|
#define LOGGER_BUF_SIZE (1<<24)
|
|
struct tokulogger {
|
|
enum typ_tag tag;
|
|
char *directory;
|
|
int fd;
|
|
int n_in_file;
|
|
long long next_log_file_number;
|
|
LSN lsn;
|
|
char buf[LOGGER_BUF_SIZE];
|
|
int n_in_buf;
|
|
};
|
|
|
|
int tokulogger_find_next_unused_log_file(const char *directory, long long *result);
|
|
|
|
enum lt_command {
|
|
LT_COMMIT = 'C',
|
|
LT_DELETE = 'D',
|
|
LT_FCREATE = 'F',
|
|
LT_FHEADER = 'H',
|
|
LT_INSERT_WITH_NO_OVERWRITE = 'I',
|
|
LT_NEWBRTNODE = 'N',
|
|
LT_FOPEN = 'O',
|
|
LT_CHECKPOINT = 'P',
|
|
LT_BLOCK_RENAME = 'R',
|
|
LT_UNLINK = 'U'
|
|
};
|
|
|
|
struct tokutxn {
|
|
u_int64_t txnid64;
|
|
TOKULOGGER logger;
|
|
TOKUTXN parent;
|
|
};
|
|
|
|
int tokulogger_finish (TOKULOGGER logger, struct wbuf *wbuf);
|
|
|
|
static inline int toku_logsizeof_u_int32_t (u_int32_t v __attribute__((__unused__))) {
|
|
return 4;
|
|
}
|
|
|
|
static inline int toku_logsizeof_FILENUM (FILENUM v __attribute__((__unused__))) {
|
|
return 4;
|
|
}
|
|
|
|
static inline int toku_logsizeof_DISKOFF (DISKOFF v __attribute__((__unused__))) {
|
|
return 8;
|
|
}
|
|
|
|
static inline int toku_logsizeof_TXNID (TXNID txnid __attribute__((__unused__))) {
|
|
return 8;
|
|
}
|
|
|
|
static inline int toku_logsizeof_BYTESTRING (BYTESTRING bs) {
|
|
return 4+bs->len;
|
|
}
|
|
|