< prev index next >

test/jdk/sun/tools/jstatd/JstatGCUtilParser.java

Print this page
rev 51731 : imported patch 8210732


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.util.Arrays;
  25 
  26 import jdk.testlibrary.Utils;
  27 import static jdk.testlibrary.Asserts.*;
  28 import java.text.NumberFormat;
  29 
  30 /**
  31  * The helper class for parsing following output from command 'jstat -gcutil':
  32  *
  33  *  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT
  34  *  0.00   0.00  86.67   0.00   -      -      0      0.000     0    0.000     0    0.000    0.000
  35  *  0.00   0.00  86.67   0.00   -      -      0      0.000     0    0.000     0    0.000    0.000
  36  *
  37  *  It will be verified that numerical values have defined types and are reasonable,
  38  *  for example percentage should fit within 0-100 interval.
  39  */
  40 public class JstatGCUtilParser {
  41 
  42     public enum GcStatisticsType {
  43         INTEGER, DOUBLE, PERCENTAGE, PERCENTAGE_OR_DASH;
  44     }
  45 
  46     public enum GcStatistics {




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.util.Arrays;
  25 
  26 import jdk.test.lib.Utils;
  27 import static jdk.testlibrary.Asserts.*;
  28 import java.text.NumberFormat;
  29 
  30 /**
  31  * The helper class for parsing following output from command 'jstat -gcutil':
  32  *
  33  *  S0     S1     E      O      M     CCS    YGC     YGCT    FGC    FGCT    CGC    CGCT     GCT
  34  *  0.00   0.00  86.67   0.00   -      -      0      0.000     0    0.000     0    0.000    0.000
  35  *  0.00   0.00  86.67   0.00   -      -      0      0.000     0    0.000     0    0.000    0.000
  36  *
  37  *  It will be verified that numerical values have defined types and are reasonable,
  38  *  for example percentage should fit within 0-100 interval.
  39  */
  40 public class JstatGCUtilParser {
  41 
  42     public enum GcStatisticsType {
  43         INTEGER, DOUBLE, PERCENTAGE, PERCENTAGE_OR_DASH;
  44     }
  45 
  46     public enum GcStatistics {


< prev index next >