2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2013 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _REPL_CTL_H
|
|
|
|
#define _REPL_CTL_H
|
|
|
|
|
|
|
|
#ifdef GTM_CRYPT
|
|
|
|
#include "gtmcrypt.h" /* for gtmcrypt_key_t type used in repl_ctl_element */
|
|
|
|
#endif
|
2024-07-19 11:43:27 -04:00
|
|
|
typedef enum
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
JNL_FILE_UNREAD,
|
|
|
|
JNL_FILE_OPEN,
|
|
|
|
JNL_FILE_CLOSED,
|
2024-07-19 11:43:27 -04:00
|
|
|
JNL_FILE_EMPTY,
|
|
|
|
JNL_FILE_STATES
|
|
|
|
} jnl_file_state;
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TR_NOT_FOUND,
|
|
|
|
TR_FIND_ERR,
|
|
|
|
TR_WILL_NOT_BE_FOUND,
|
|
|
|
TR_FIND_WOULD_BLOCK,
|
|
|
|
TR_FOUND
|
|
|
|
} tr_search_state_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TR_LINEAR_SEARCH,
|
|
|
|
TR_BINARY_SEARCH
|
|
|
|
} tr_search_method_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
unsigned char *recbuff; /* The journal record pointer */
|
|
|
|
int reclen; /* The journal record length */
|
|
|
|
uint4 recaddr; /* On-disk journal record offset */
|
|
|
|
uint4 readaddr; /* Next on-disk read offset */
|
|
|
|
uint4 buffremaining; /* Remaining buffer space */
|
|
|
|
unsigned char *base_buff; /* Actual malloced buffer start : Not necessarily "gtm_fs_block_size" aligned */
|
|
|
|
unsigned char *base; /* "gtm_fs_block_size" aligned buffer start */
|
2024-07-19 11:43:27 -04:00
|
|
|
# ifdef DEBUG
|
|
|
|
uint4 save_readaddr; /* copy of readaddr before repl_read_file updates it */
|
|
|
|
uint4 save_dskaddr; /* copy of dskaddr noted down, in repl_read_file, from shared memory */
|
|
|
|
uint4 save_buffremaining; /* copy of buffremaining before repl_read_file updates it */
|
|
|
|
# endif
|
2012-02-05 11:35:58 -05:00
|
|
|
} repl_buff_desc;
|
|
|
|
|
|
|
|
#define REPL_BLKSIZE(x) ((x)->fc->jfh->alignsize)
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint4 eof_addr; /* On-disk last byte offset */
|
|
|
|
uint4 fs_block_size; /* underlying journal file system block size */
|
|
|
|
jnl_file_header *jfh_base;
|
|
|
|
jnl_file_header *jfh;
|
|
|
|
int fd;
|
|
|
|
gd_id id;
|
|
|
|
} repl_file_control_t;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
REPL_MAINBUFF = 0,
|
|
|
|
REPL_SCRATCHBUFF,
|
|
|
|
REPL_NUMBUFF
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int buffindex;
|
|
|
|
repl_buff_desc buff[2]; /* Main buffer, and scratch */
|
|
|
|
repl_file_control_t *fc;
|
|
|
|
struct repl_ctl_struct *backctl; /* Back pointer to ctl element to
|
|
|
|
* which this buffer belongs */
|
|
|
|
} repl_buff_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* repl_ctl_element maintains information for reading from the journal
|
|
|
|
* files. A list of these structures consists sub-lists, each sub-list
|
|
|
|
* corresponding to a region. Each sub-list contains info about the various
|
|
|
|
* generations of the journal file of particular region, the earliest
|
|
|
|
* generation coming first while searching from the beginning of the list
|
|
|
|
*/
|
|
|
|
typedef struct repl_ctl_struct
|
|
|
|
{
|
|
|
|
gd_region *reg;
|
|
|
|
repl_buff_t *repl_buff;
|
|
|
|
seq_num min_seqno; /* least JNL_SEQNO in this file */
|
|
|
|
seq_num max_seqno; /* largest JNL_SEQNO in this file */
|
|
|
|
uint4 min_seqno_dskaddr;
|
|
|
|
uint4 max_seqno_dskaddr;
|
|
|
|
seq_num seqno; /* Next read positioned at first
|
|
|
|
* jnl rec with JNL_SEQNO seqno */
|
|
|
|
trans_num tn; /* tn corresponding to seqno */
|
|
|
|
int4 file_state; /* enum jnl_file_state */
|
|
|
|
boolean_t lookback;
|
|
|
|
boolean_t first_read_done;
|
|
|
|
boolean_t eof_addr_final; /* TRUE if the journal file is switched and the final eof addr for this jnl file
|
|
|
|
* is noted down */
|
|
|
|
boolean_t max_seqno_final; /* TRUE ONLY if ctl->eof_addr_final is TRUE and if source server has noted down
|
|
|
|
* the final max_seqno for this journal file */
|
|
|
|
boolean_t read_complete;
|
|
|
|
int4 jnl_fn_len;
|
|
|
|
char jnl_fn[JNL_NAME_SIZE];
|
|
|
|
struct repl_ctl_struct *prev;
|
|
|
|
struct repl_ctl_struct *next;
|
|
|
|
# ifdef GTM_CRYPT
|
|
|
|
gtmcrypt_key_t encr_key_handle;
|
|
|
|
# endif
|
|
|
|
} repl_ctl_element;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
seq_num seqno; /* the last sequence number seen in a block before linear search returns */
|
|
|
|
seq_num prev_seqno; /* the one previous to the last one */
|
|
|
|
} tr_search_status_t;
|
|
|
|
|
|
|
|
#define JNL_BLK_DSKADDR(addr, blksize) \
|
|
|
|
((ROUND_DOWN((addr), (blksize)) > JNL_FILE_FIRST_RECORD) ? \
|
|
|
|
ROUND_DOWN((addr), (blksize)) : JNL_FILE_FIRST_RECORD)
|
|
|
|
|
|
|
|
int repl_ctl_close(repl_ctl_element *ctl);
|
|
|
|
int repl_ctl_create(repl_ctl_element **ctl, gd_region *reg, int jnl_fn_len, char *jnl_fn, boolean_t init);
|
|
|
|
int repl_open_jnl_file_by_name(repl_ctl_element *tmp_ctl, int jnl_fn_len, char *jnl_fn, int *fd_ptr, void *stat_buf_ptr);
|
|
|
|
|
|
|
|
#endif
|