00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 package com.sleepycat.db;
00011
00012 public class LogStats {
00013
00014 protected LogStats() {}
00015
00016 private int st_magic;
00017 public int getMagic() {
00018 return st_magic;
00019 }
00020
00021 private int st_version;
00022 public int getVersion() {
00023 return st_version;
00024 }
00025
00026 private int st_mode;
00027 public int getMode() {
00028 return st_mode;
00029 }
00030
00031 private int st_lg_bsize;
00032 public int getLgBSize() {
00033 return st_lg_bsize;
00034 }
00035
00036 private int st_lg_size;
00037 public int getLgSize() {
00038 return st_lg_size;
00039 }
00040
00041 private int st_record;
00042 public int getRecord() {
00043 return st_record;
00044 }
00045
00046 private int st_w_bytes;
00047 public int getWBytes() {
00048 return st_w_bytes;
00049 }
00050
00051 private int st_w_mbytes;
00052 public int getWMbytes() {
00053 return st_w_mbytes;
00054 }
00055
00056 private int st_wc_bytes;
00057 public int getWcBytes() {
00058 return st_wc_bytes;
00059 }
00060
00061 private int st_wc_mbytes;
00062 public int getWcMbytes() {
00063 return st_wc_mbytes;
00064 }
00065
00066 private int st_wcount;
00067 public int getWCount() {
00068 return st_wcount;
00069 }
00070
00071 private int st_wcount_fill;
00072 public int getWCountFill() {
00073 return st_wcount_fill;
00074 }
00075
00076 private int st_rcount;
00077 public int getRCount() {
00078 return st_rcount;
00079 }
00080
00081 private int st_scount;
00082 public int getSCount() {
00083 return st_scount;
00084 }
00085
00086 private int st_region_wait;
00087 public int getRegionWait() {
00088 return st_region_wait;
00089 }
00090
00091 private int st_region_nowait;
00092 public int getRegionNowait() {
00093 return st_region_nowait;
00094 }
00095
00096 private int st_cur_file;
00097 public int getCurFile() {
00098 return st_cur_file;
00099 }
00100
00101 private int st_cur_offset;
00102 public int getCurOffset() {
00103 return st_cur_offset;
00104 }
00105
00106 private int st_disk_file;
00107 public int getDiskFile() {
00108 return st_disk_file;
00109 }
00110
00111 private int st_disk_offset;
00112 public int getDiskOffset() {
00113 return st_disk_offset;
00114 }
00115
00116 private int st_regsize;
00117 public int getRegSize() {
00118 return st_regsize;
00119 }
00120
00121 private int st_maxcommitperflush;
00122 public int getMaxCommitperflush() {
00123 return st_maxcommitperflush;
00124 }
00125
00126 private int st_mincommitperflush;
00127 public int getMinCommitperflush() {
00128 return st_mincommitperflush;
00129 }
00130
00131 public String toString() {
00132 return "LogStats:"
00133 + "\n st_magic=" + st_magic
00134 + "\n st_version=" + st_version
00135 + "\n st_mode=" + st_mode
00136 + "\n st_lg_bsize=" + st_lg_bsize
00137 + "\n st_lg_size=" + st_lg_size
00138 + "\n st_record=" + st_record
00139 + "\n st_w_bytes=" + st_w_bytes
00140 + "\n st_w_mbytes=" + st_w_mbytes
00141 + "\n st_wc_bytes=" + st_wc_bytes
00142 + "\n st_wc_mbytes=" + st_wc_mbytes
00143 + "\n st_wcount=" + st_wcount
00144 + "\n st_wcount_fill=" + st_wcount_fill
00145 + "\n st_rcount=" + st_rcount
00146 + "\n st_scount=" + st_scount
00147 + "\n st_region_wait=" + st_region_wait
00148 + "\n st_region_nowait=" + st_region_nowait
00149 + "\n st_cur_file=" + st_cur_file
00150 + "\n st_cur_offset=" + st_cur_offset
00151 + "\n st_disk_file=" + st_disk_file
00152 + "\n st_disk_offset=" + st_disk_offset
00153 + "\n st_regsize=" + st_regsize
00154 + "\n st_maxcommitperflush=" + st_maxcommitperflush
00155 + "\n st_mincommitperflush=" + st_mincommitperflush
00156 ;
00157 }
00158 }