/* * Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/** * The helper class for parsing following output from command 'jstat -gcutil': * * S0 S1 E O M CCS YGC YGCT FGC FGCT CGC CGCT GCT * 0.00 0.00 0.00 52.39 97.76 92.71 4 0.286 28 28.006 2 0.086 28.378 * * It will be verified that numerical values have defined types and are reasonable, * for example percentage should fit within 0-100 interval.
*/ publicclass JstatGCUtilParser {
publicstaticboolean isHeadline(String... valueArray) { if (valueArray.length != values().length) { returnfalse;
} int headersCount = 0; for (int i = 0; i < values().length; i++) { if (valueArray[i].equals(values()[i].toString())) {
headersCount++;
}
} if (headersCount != values().length) { returnfalse;
} returntrue;
}
privatestaticvoid verifyLength(String... valueArray) throws Exception {
assertEquals(valueArray.length, values().length, "Invalid number of data columns: " + Arrays.toString(valueArray));
}
publicstaticvoid verify(String... valueArray) throws Exception {
verifyLength(valueArray); for (int i = 0; i < values().length; i++) {
GcStatisticsType type = values()[i].getType();
String value = valueArray[i].trim(); if ((type.equals(GcStatisticsType.PERCENTAGE_OR_DASH)
|| type.equals(GcStatisticsType.INTEGER_OR_DASH)
|| type.equals(GcStatisticsType.DOUBLE_OR_DASH))
&& value.equals("-")) { continue;
} if (type.equals(GcStatisticsType.INTEGER)
|| type.equals(GcStatisticsType.INTEGER_OR_DASH)) {
NumberFormat.getInstance().parse(value).intValue(); continue;
} if (type.equals(GcStatisticsType.DOUBLE)
|| type.equals(GcStatisticsType.DOUBLE_OR_DASH)) {
NumberFormat.getInstance().parse(value).doubleValue(); continue;
} double percentage = NumberFormat.getInstance().parse(value).doubleValue();
assertTrue(0 <= percentage && percentage <= 100, "Not a percentage. value: " + value + " percentage: " + percentage);
}
}
}
privatefinal String output;
public JstatGCUtilParser(String output) { this.output = output;
}
public String getOutput() { return output;
}
/** * The function will discard any lines that come before the header line. * This can happen if the JVM outputs a warning message for some reason * before running jstat.
*/ publicvoid parse(int samples) throws Exception { boolean headlineFound = false; int datalineCount = 0;
String[] lines = output.split(Utils.NEW_LINE); for (String line : lines) {
line = line.replaceAll("\\s+", " ").trim();
String[] valueArray = line.split(" ");
if (!headlineFound) {
headlineFound = GcStatistics.isHeadline(valueArray); continue;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.