blob: c3a35d3a2143a4d3e86ecedcfeb9c0a2ec7e7013 (
plain)
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
102
103
104
105
106
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved.
*
*/
using System;
using System.Collections.Generic;
using System.Text;
namespace BerkeleyDB {
/// <summary>
/// Statistical information about a RecnoDatabase
/// </summary>
public class RecnoStats {
private Internal.BTreeStatStruct st;
internal RecnoStats(Internal.BTreeStatStruct stats) {
st = stats;
}
/// <summary>
/// Magic number.
/// </summary>
public uint MagicNumber { get { return st.bt_magic; } }
/// <summary>
/// Version number.
/// </summary>
public uint Version { get { return st.bt_version; } }
/// <summary>
/// Metadata flags.
/// </summary>
public uint MetadataFlags { get { return st.bt_metaflags; } }
/// <summary>
/// Number of unique keys.
/// </summary>
public uint nKeys { get { return st.bt_nkeys; } }
/// <summary>
/// Number of data items.
/// </summary>
public uint nData { get { return st.bt_ndata; } }
/// <summary>
/// Page count.
/// </summary>
public uint nPages { get { return st.bt_pagecnt; } }
/// <summary>
/// Page size.
/// </summary>
public uint PageSize { get { return st.bt_pagesize; } }
/// <summary>
/// Minkey value.
/// </summary>
public uint MinKey { get { return st.bt_minkey; } }
/// <summary>
/// Fixed-length record length.
/// </summary>
public uint RecordLength { get { return st.bt_re_len; } }
/// <summary>
/// Fixed-length record pad.
/// </summary>
public uint RecordPadByte { get { return st.bt_re_pad; } }
/// <summary>
/// Tree levels.
/// </summary>
public uint Levels { get { return st.bt_levels; } }
/// <summary>
/// Internal pages.
/// </summary>
public uint InternalPages { get { return st.bt_int_pg; } }
/// <summary>
/// Leaf pages.
/// </summary>
public uint LeafPages { get { return st.bt_leaf_pg; } }
/// <summary>
/// Duplicate pages.
/// </summary>
public uint DuplicatePages { get { return st.bt_dup_pg; } }
/// <summary>
/// Overflow pages.
/// </summary>
public uint OverflowPages { get { return st.bt_over_pg; } }
/// <summary>
/// Empty pages.
/// </summary>
public uint EmptyPages { get { return st.bt_empty_pg; } }
/// <summary>
/// Pages on the free list.
/// </summary>
public uint FreePages { get { return st.bt_free; } }
/// <summary>
/// Bytes free in internal pages.
/// </summary>
public ulong InternalPagesFreeBytes { get { return st.bt_int_pgfree; } }
/// <summary>
/// Bytes free in leaf pages.
/// </summary>
public ulong LeafPagesFreeBytes { get { return st.bt_leaf_pgfree; } }
/// <summary>
/// Bytes free in duplicate pages.
/// </summary>
public ulong DuplicatePagesFreeBytes { get { return st.bt_dup_pgfree; } }
/// <summary>
/// Bytes free in overflow pages.
/// </summary>
public ulong OverflowPagesFreeBytes { get { return st.bt_over_pgfree; } }
}
}
|