1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://www.hdfgroup.org/licenses. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*-------------------------------------------------------------------------
*
* Created: H5PBprivate.h
* June 2014
* Mohamad Chaarawi
*
*-------------------------------------------------------------------------
*/
#ifndef H5PBprivate_H
#define H5PBprivate_H
/* Include package's public header */
#ifdef NOT_YET
#include "H5PBpublic.h"
#endif /* NOT_YET */
/* Private headers needed by this header */
#include "H5private.h" /* Generic Functions */
#include "H5Fprivate.h" /* File access */
#include "H5FLprivate.h" /* Free Lists */
#include "H5SLprivate.h" /* Skip List */
/**************************/
/* Library Private Macros */
/**************************/
/****************************/
/* Library Private Typedefs */
/****************************/
/* Forward declaration for a page buffer entry */
struct H5PB_entry_t;
/* Typedef for the main structure for the page buffer */
typedef struct H5PB_t {
size_t max_size; /* The total page buffer size */
size_t page_size; /* Size of a single page */
unsigned min_meta_perc; /* Minimum ratio of metadata entries required before evicting meta entries */
unsigned min_raw_perc; /* Minimum ratio of raw data entries required before evicting raw entries */
unsigned meta_count; /* Number of entries for metadata */
unsigned raw_count; /* Number of entries for raw data */
unsigned min_meta_count; /* Minimum # of entries for metadata */
unsigned min_raw_count; /* Minimum # of entries for raw data */
H5SL_t *slist_ptr; /* Skip list with all the active page entries */
H5SL_t *mf_slist_ptr; /* Skip list containing newly allocated page entries inserted from the MF layer */
size_t LRU_list_len; /* Number of entries in the LRU (identical to slist_ptr count) */
struct H5PB_entry_t *LRU_head_ptr; /* Head pointer of the LRU */
struct H5PB_entry_t *LRU_tail_ptr; /* Tail pointer of the LRU */
H5FL_fac_head_t *page_fac; /* Factory for allocating pages */
/* Statistics */
unsigned accesses[2];
unsigned hits[2];
unsigned misses[2];
unsigned evictions[2];
unsigned bypasses[2];
} H5PB_t;
/*****************************/
/* Library-private Variables */
/*****************************/
/***************************************/
/* Library-private Function Prototypes */
/***************************************/
/* General routines */
H5_DLL herr_t H5PB_create(H5F_shared_t *f_sh, size_t page_buffer_size, unsigned page_buf_min_meta_perc,
unsigned page_buf_min_raw_perc);
H5_DLL herr_t H5PB_flush(H5F_shared_t *f_sh);
H5_DLL herr_t H5PB_dest(H5F_shared_t *f_sh);
H5_DLL herr_t H5PB_add_new_page(H5F_shared_t *f_sh, H5FD_mem_t type, haddr_t page_addr);
H5_DLL herr_t H5PB_update_entry(H5PB_t *page_buf, haddr_t addr, size_t size, const void *buf);
H5_DLL herr_t H5PB_remove_entry(const H5F_shared_t *f_sh, haddr_t addr);
H5_DLL herr_t H5PB_read(H5F_shared_t *f_sh, H5FD_mem_t type, haddr_t addr, size_t size, void *buf /*out*/);
H5_DLL herr_t H5PB_write(H5F_shared_t *f_sh, H5FD_mem_t type, haddr_t addr, size_t size, const void *buf);
/* Statistics routines */
H5_DLL herr_t H5PB_reset_stats(H5PB_t *page_buf);
H5_DLL herr_t H5PB_get_stats(const H5PB_t *page_buf, unsigned accesses[2], unsigned hits[2],
unsigned misses[2], unsigned evictions[2], unsigned bypasses[2]);
H5_DLL herr_t H5PB_print_stats(const H5PB_t *page_buf);
#endif /* H5PBprivate_H */
|