2016-04-07 13:43:35 +00:00
|
|
|
/*
|
2018-02-15 19:39:42 +00:00
|
|
|
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
2016-04-07 13:43:35 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
package requires;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.nio.file.Files;
|
2017-08-02 15:52:14 +00:00
|
|
|
import java.nio.file.Path;
|
2016-04-07 13:43:35 +00:00
|
|
|
import java.nio.file.Paths;
|
2016-11-23 09:25:21 +00:00
|
|
|
import java.nio.file.StandardOpenOption;
|
2016-04-07 13:43:35 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.concurrent.Callable;
|
2017-10-11 02:18:36 +00:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2016-04-07 13:43:35 +00:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2016-12-21 11:41:48 +00:00
|
|
|
|
|
|
|
import sun.hotspot.cpuinfo.CPUInfo;
|
2016-06-21 14:36:37 +00:00
|
|
|
import sun.hotspot.gc.GC;
|
2016-07-21 13:07:41 +00:00
|
|
|
import sun.hotspot.WhiteBox;
|
2017-06-02 00:34:34 +00:00
|
|
|
import jdk.test.lib.Platform;
|
2016-04-07 13:43:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The Class to be invoked by jtreg prior Test Suite execution to
|
|
|
|
* collect information about VM.
|
2016-07-21 13:07:41 +00:00
|
|
|
* Do not use any API's that may not be available in all target VMs.
|
2016-04-07 13:43:35 +00:00
|
|
|
* Properties set by this Class will be available in the @requires expressions.
|
|
|
|
*/
|
|
|
|
public class VMProps implements Callable<Map<String, String>> {
|
|
|
|
|
2016-07-21 13:07:41 +00:00
|
|
|
private static final WhiteBox WB = WhiteBox.getWhiteBox();
|
|
|
|
|
2016-04-07 13:43:35 +00:00
|
|
|
/**
|
|
|
|
* Collects information about VM properties.
|
|
|
|
* This method will be invoked by jtreg.
|
|
|
|
*
|
|
|
|
* @return Map of property-value pairs.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public Map<String, String> call() {
|
|
|
|
Map<String, String> map = new HashMap<>();
|
|
|
|
map.put("vm.flavor", vmFlavor());
|
|
|
|
map.put("vm.compMode", vmCompMode());
|
|
|
|
map.put("vm.bits", vmBits());
|
2016-06-17 15:45:24 +00:00
|
|
|
map.put("vm.flightRecorder", vmFlightRecorder());
|
2016-06-17 10:05:53 +00:00
|
|
|
map.put("vm.simpleArch", vmArch());
|
2016-10-20 13:53:35 +00:00
|
|
|
map.put("vm.debug", vmDebug());
|
2016-11-25 08:55:33 +00:00
|
|
|
map.put("vm.jvmci", vmJvmci());
|
2017-01-18 05:39:22 +00:00
|
|
|
map.put("vm.emulatedClient", vmEmulatedClient());
|
2016-12-21 11:41:48 +00:00
|
|
|
map.put("vm.cpu.features", cpuFeatures());
|
2017-06-02 00:34:34 +00:00
|
|
|
map.put("vm.rtm.cpu", vmRTMCPU());
|
|
|
|
map.put("vm.rtm.os", vmRTMOS());
|
2017-08-02 15:52:14 +00:00
|
|
|
map.put("vm.aot", vmAOT());
|
2017-08-01 14:03:06 +00:00
|
|
|
// vm.cds is true if the VM is compiled with cds support.
|
|
|
|
map.put("vm.cds", vmCDS());
|
2017-11-28 17:47:04 +00:00
|
|
|
map.put("vm.cds.custom.loaders", vmCDSForCustomLoaders());
|
2018-02-15 19:39:42 +00:00
|
|
|
map.put("vm.cds.archived.java.heap", vmCDSForArchivedJavaHeap());
|
2017-10-02 21:31:34 +00:00
|
|
|
// vm.graal.enabled is true if Graal is used as JIT
|
|
|
|
map.put("vm.graal.enabled", isGraalEnabled());
|
2017-10-11 02:18:36 +00:00
|
|
|
map.put("docker.support", dockerSupport());
|
2016-06-21 14:36:37 +00:00
|
|
|
vmGC(map); // vm.gc.X = true/false
|
|
|
|
|
2016-11-23 09:25:21 +00:00
|
|
|
VMProps.dump(map);
|
2016-04-07 13:43:35 +00:00
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2017-07-06 14:03:54 +00:00
|
|
|
/**
|
|
|
|
* Prints a stack trace before returning null.
|
|
|
|
* Used by the various helper functions which parse information from
|
|
|
|
* VM properties in the case where they don't find an expected property
|
|
|
|
* or a propoerty doesn't conform to an expected format.
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
private String nullWithException(String message) {
|
|
|
|
new Exception(message).printStackTrace();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-06-17 10:05:53 +00:00
|
|
|
/**
|
|
|
|
* @return vm.simpleArch value of "os.simpleArch" property of tested JDK.
|
|
|
|
*/
|
|
|
|
protected String vmArch() {
|
|
|
|
String arch = System.getProperty("os.arch");
|
|
|
|
if (arch.equals("x86_64") || arch.equals("amd64")) {
|
|
|
|
return "x64";
|
|
|
|
}
|
|
|
|
else if (arch.contains("86")) {
|
|
|
|
return "x86";
|
|
|
|
} else {
|
|
|
|
return arch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-07 13:43:35 +00:00
|
|
|
/**
|
|
|
|
* @return VM type value extracted from the "java.vm.name" property.
|
|
|
|
*/
|
|
|
|
protected String vmFlavor() {
|
|
|
|
// E.g. "Java HotSpot(TM) 64-Bit Server VM"
|
|
|
|
String vmName = System.getProperty("java.vm.name");
|
|
|
|
if (vmName == null) {
|
2017-07-06 14:03:54 +00:00
|
|
|
return nullWithException("Can't get 'java.vm.name' property");
|
2016-04-07 13:43:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pattern startP = Pattern.compile(".* (\\S+) VM");
|
|
|
|
Matcher m = startP.matcher(vmName);
|
|
|
|
if (m.matches()) {
|
|
|
|
return m.group(1).toLowerCase();
|
|
|
|
}
|
2017-07-06 14:03:54 +00:00
|
|
|
return nullWithException("Can't get VM flavor from 'java.vm.name'");
|
2016-04-07 13:43:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return VM compilation mode extracted from the "java.vm.info" property.
|
|
|
|
*/
|
|
|
|
protected String vmCompMode() {
|
|
|
|
// E.g. "mixed mode"
|
|
|
|
String vmInfo = System.getProperty("java.vm.info");
|
|
|
|
if (vmInfo == null) {
|
2017-07-06 14:03:54 +00:00
|
|
|
return nullWithException("Can't get 'java.vm.info' property");
|
2016-04-07 13:43:35 +00:00
|
|
|
}
|
2017-07-06 14:03:54 +00:00
|
|
|
if (vmInfo.toLowerCase().indexOf("mixed mode") != -1) {
|
|
|
|
return "Xmixed";
|
|
|
|
} else if (vmInfo.toLowerCase().indexOf("compiled mode") != -1) {
|
|
|
|
return "Xcomp";
|
|
|
|
} else if (vmInfo.toLowerCase().indexOf("interpreted mode") != -1) {
|
|
|
|
return "Xint";
|
|
|
|
} else {
|
|
|
|
return nullWithException("Can't get compilation mode from 'java.vm.info'");
|
2016-04-07 13:43:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return VM bitness, the value of the "sun.arch.data.model" property.
|
|
|
|
*/
|
|
|
|
protected String vmBits() {
|
2017-07-06 14:03:54 +00:00
|
|
|
String dataModel = System.getProperty("sun.arch.data.model");
|
|
|
|
if (dataModel != null) {
|
|
|
|
return dataModel;
|
|
|
|
} else {
|
|
|
|
return nullWithException("Can't get 'sun.arch.data.model' property");
|
|
|
|
}
|
2016-04-07 13:43:35 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 15:45:24 +00:00
|
|
|
/**
|
|
|
|
* @return "true" if Flight Recorder is enabled, "false" if is disabled.
|
|
|
|
*/
|
|
|
|
protected String vmFlightRecorder() {
|
2016-07-21 13:07:41 +00:00
|
|
|
Boolean isUnlockedCommercialFatures = WB.getBooleanVMFlag("UnlockCommercialFeatures");
|
|
|
|
Boolean isFlightRecorder = WB.getBooleanVMFlag("FlightRecorder");
|
|
|
|
String startFROptions = WB.getStringVMFlag("StartFlightRecording");
|
|
|
|
if (isUnlockedCommercialFatures != null && isUnlockedCommercialFatures) {
|
|
|
|
if (isFlightRecorder != null && isFlightRecorder) {
|
2016-06-17 15:45:24 +00:00
|
|
|
return "true";
|
|
|
|
}
|
2016-07-21 13:07:41 +00:00
|
|
|
if (startFROptions != null && !startFROptions.isEmpty()) {
|
2016-06-17 15:45:24 +00:00
|
|
|
return "true";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "false";
|
|
|
|
}
|
|
|
|
|
2016-10-20 13:53:35 +00:00
|
|
|
/**
|
|
|
|
* @return debug level value extracted from the "jdk.debug" property.
|
|
|
|
*/
|
|
|
|
protected String vmDebug() {
|
2017-07-06 14:03:54 +00:00
|
|
|
String debug = System.getProperty("jdk.debug");
|
|
|
|
if (debug != null) {
|
|
|
|
return "" + debug.contains("debug");
|
|
|
|
} else {
|
|
|
|
return nullWithException("Can't get 'jdk.debug' property");
|
|
|
|
}
|
2016-10-20 13:53:35 +00:00
|
|
|
}
|
|
|
|
|
2016-11-25 08:55:33 +00:00
|
|
|
/**
|
|
|
|
* @return true if VM supports JVMCI and false otherwise
|
|
|
|
*/
|
|
|
|
protected String vmJvmci() {
|
|
|
|
// builds with jvmci have this flag
|
|
|
|
return "" + (WB.getBooleanVMFlag("EnableJVMCI") != null);
|
|
|
|
}
|
|
|
|
|
2017-01-18 05:39:22 +00:00
|
|
|
/**
|
|
|
|
* @return true if VM runs in emulated-client mode and false otherwise.
|
|
|
|
*/
|
|
|
|
protected String vmEmulatedClient() {
|
|
|
|
String vmInfo = System.getProperty("java.vm.info");
|
|
|
|
if (vmInfo == null) {
|
|
|
|
return "false";
|
|
|
|
}
|
|
|
|
return "" + vmInfo.contains(" emulated-client");
|
|
|
|
}
|
|
|
|
|
2016-12-21 11:41:48 +00:00
|
|
|
/**
|
|
|
|
* @return supported CPU features
|
|
|
|
*/
|
|
|
|
protected String cpuFeatures() {
|
|
|
|
return CPUInfo.getFeatures().toString();
|
|
|
|
}
|
|
|
|
|
2016-06-21 14:36:37 +00:00
|
|
|
/**
|
|
|
|
* For all existing GC sets vm.gc.X property.
|
|
|
|
* Example vm.gc.G1=true means:
|
|
|
|
* VM supports G1
|
|
|
|
* User either set G1 explicitely (-XX:+UseG1GC) or did not set any GC
|
|
|
|
* @param map - property-value pairs
|
|
|
|
*/
|
2018-03-28 09:38:47 +00:00
|
|
|
protected void vmGC(Map<String, String> map) {
|
2016-06-21 14:36:37 +00:00
|
|
|
for (GC gc: GC.values()) {
|
2018-03-28 09:38:47 +00:00
|
|
|
boolean isAcceptable = gc.isSupported() && (gc.isSelected() || GC.isSelectedErgonomically());
|
2016-06-21 14:36:37 +00:00
|
|
|
map.put("vm.gc." + gc.name(), "" + isAcceptable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-02 00:34:34 +00:00
|
|
|
/**
|
|
|
|
* @return true if VM runs RTM supported OS and false otherwise.
|
|
|
|
*/
|
|
|
|
protected String vmRTMOS() {
|
|
|
|
boolean isRTMOS = true;
|
|
|
|
|
|
|
|
if (Platform.isAix()) {
|
|
|
|
// Actually, this works since AIX 7.1.3.30, but os.version property
|
|
|
|
// is set to 7.1.
|
|
|
|
isRTMOS = (Platform.getOsVersionMajor() > 7) ||
|
|
|
|
(Platform.getOsVersionMajor() == 7 && Platform.getOsVersionMinor() > 1);
|
|
|
|
|
|
|
|
} else if (Platform.isLinux()) {
|
|
|
|
if (Platform.isPPC()) {
|
|
|
|
isRTMOS = (Platform.getOsVersionMajor() > 4) ||
|
|
|
|
(Platform.getOsVersionMajor() == 4 && Platform.getOsVersionMinor() > 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "" + isRTMOS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if VM runs RTM supported CPU and false otherwise.
|
|
|
|
*/
|
|
|
|
protected String vmRTMCPU() {
|
|
|
|
boolean vmRTMCPU = (Platform.isPPC() ? CPUInfo.hasFeature("tcheck") : CPUInfo.hasFeature("rtm"));
|
|
|
|
|
|
|
|
return "" + vmRTMCPU;
|
|
|
|
}
|
|
|
|
|
2017-08-02 15:52:14 +00:00
|
|
|
/**
|
|
|
|
* @return true if VM supports AOT and false otherwise
|
|
|
|
*/
|
|
|
|
protected String vmAOT() {
|
|
|
|
// builds with aot have jaotc in <JDK>/bin
|
|
|
|
Path bin = Paths.get(System.getProperty("java.home"))
|
|
|
|
.resolve("bin");
|
|
|
|
Path jaotc;
|
|
|
|
if (Platform.isWindows()) {
|
|
|
|
jaotc = bin.resolve("jaotc.exe");
|
|
|
|
} else {
|
|
|
|
jaotc = bin.resolve("jaotc");
|
|
|
|
}
|
|
|
|
return "" + Files.exists(jaotc);
|
|
|
|
}
|
|
|
|
|
2017-08-01 14:03:06 +00:00
|
|
|
/**
|
|
|
|
* Check for CDS support.
|
|
|
|
*
|
|
|
|
* @return true if CDS is supported by the VM to be tested.
|
|
|
|
*/
|
|
|
|
protected String vmCDS() {
|
|
|
|
if (WB.isCDSIncludedInVmBuild()) {
|
|
|
|
return "true";
|
|
|
|
} else {
|
|
|
|
return "false";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 17:47:04 +00:00
|
|
|
/**
|
|
|
|
* Check for CDS support for custom loaders.
|
|
|
|
*
|
2018-02-15 19:39:42 +00:00
|
|
|
* @return true if CDS provides support for customer loader in the VM to be tested.
|
2017-11-28 17:47:04 +00:00
|
|
|
*/
|
|
|
|
protected String vmCDSForCustomLoaders() {
|
|
|
|
if (vmCDS().equals("true") && Platform.areCustomLoadersSupportedForCDS()) {
|
|
|
|
return "true";
|
|
|
|
} else {
|
|
|
|
return "false";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-15 19:39:42 +00:00
|
|
|
/**
|
|
|
|
* Check for CDS support for archived Java heap regions.
|
|
|
|
*
|
|
|
|
* @return true if CDS provides support for archive Java heap regions in the VM to be tested.
|
|
|
|
*/
|
|
|
|
protected String vmCDSForArchivedJavaHeap() {
|
|
|
|
if (vmCDS().equals("true") && WB.isJavaHeapArchiveSupported()) {
|
|
|
|
return "true";
|
|
|
|
} else {
|
|
|
|
return "false";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-02 21:31:34 +00:00
|
|
|
/**
|
|
|
|
* Check if Graal is used as JIT compiler.
|
|
|
|
*
|
|
|
|
* @return true if Graal is used as JIT compiler.
|
|
|
|
*/
|
|
|
|
protected String isGraalEnabled() {
|
|
|
|
// Graal is enabled if following conditions are true:
|
|
|
|
// - we are not in Interpreter mode
|
|
|
|
// - UseJVMCICompiler flag is true
|
|
|
|
// - jvmci.Compiler variable is equal to 'graal'
|
|
|
|
// - TieredCompilation is not used or TieredStopAtLevel is greater than 3
|
|
|
|
|
|
|
|
Boolean useCompiler = WB.getBooleanVMFlag("UseCompiler");
|
|
|
|
if (useCompiler == null || !useCompiler)
|
|
|
|
return "false";
|
|
|
|
|
|
|
|
Boolean useJvmciComp = WB.getBooleanVMFlag("UseJVMCICompiler");
|
|
|
|
if (useJvmciComp == null || !useJvmciComp)
|
|
|
|
return "false";
|
|
|
|
|
|
|
|
// This check might be redundant but let's keep it for now.
|
|
|
|
String jvmciCompiler = System.getProperty("jvmci.Compiler");
|
|
|
|
if (jvmciCompiler == null || !jvmciCompiler.equals("graal")) {
|
|
|
|
return "false";
|
|
|
|
}
|
|
|
|
|
|
|
|
Boolean tieredCompilation = WB.getBooleanVMFlag("TieredCompilation");
|
|
|
|
Long compLevel = WB.getIntxVMFlag("TieredStopAtLevel");
|
|
|
|
// if TieredCompilation is enabled and compilation level is <= 3 then no Graal is used
|
|
|
|
if (tieredCompilation != null && tieredCompilation && compLevel != null && compLevel <= 3)
|
|
|
|
return "false";
|
|
|
|
|
|
|
|
return "true";
|
|
|
|
}
|
|
|
|
|
2017-10-11 02:18:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A simple check for docker support
|
|
|
|
*
|
|
|
|
* @return true if docker is supported in a given environment
|
|
|
|
*/
|
|
|
|
protected String dockerSupport() {
|
2018-03-03 10:15:23 +00:00
|
|
|
boolean isSupported = false;
|
|
|
|
if (Platform.isLinux()) {
|
|
|
|
// currently docker testing is only supported for Linux,
|
|
|
|
// on certain platforms
|
|
|
|
|
|
|
|
String arch = System.getProperty("os.arch");
|
|
|
|
|
|
|
|
if (Platform.isX64()) {
|
|
|
|
isSupported = true;
|
|
|
|
}
|
|
|
|
else if (Platform.isAArch64()) {
|
|
|
|
isSupported = true;
|
|
|
|
}
|
|
|
|
else if (Platform.isS390x()) {
|
|
|
|
isSupported = true;
|
|
|
|
}
|
|
|
|
else if (arch.equals("ppc64le")) {
|
|
|
|
isSupported = true;
|
|
|
|
}
|
2018-02-07 15:16:50 +00:00
|
|
|
}
|
2017-10-11 02:18:36 +00:00
|
|
|
|
2018-03-03 10:15:23 +00:00
|
|
|
if (isSupported) {
|
|
|
|
try {
|
|
|
|
isSupported = checkDockerSupport();
|
|
|
|
} catch (Exception e) {
|
|
|
|
isSupported = false;
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 02:18:36 +00:00
|
|
|
|
|
|
|
return (isSupported) ? "true" : "false";
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean checkDockerSupport() throws IOException, InterruptedException {
|
|
|
|
ProcessBuilder pb = new ProcessBuilder("docker", "ps");
|
|
|
|
Process p = pb.start();
|
|
|
|
p.waitFor(10, TimeUnit.SECONDS);
|
|
|
|
|
|
|
|
return (p.exitValue() == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-07 13:43:35 +00:00
|
|
|
/**
|
|
|
|
* Dumps the map to the file if the file name is given as the property.
|
|
|
|
* This functionality could be helpful to know context in the real
|
|
|
|
* execution.
|
|
|
|
*
|
|
|
|
* @param map
|
|
|
|
*/
|
2016-11-23 09:25:21 +00:00
|
|
|
protected static void dump(Map<String, String> map) {
|
2016-04-07 13:43:35 +00:00
|
|
|
String dumpFileName = System.getProperty("vmprops.dump");
|
|
|
|
if (dumpFileName == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
List<String> lines = new ArrayList<>();
|
2016-06-17 15:45:24 +00:00
|
|
|
map.forEach((k, v) -> lines.add(k + ":" + v));
|
2016-04-07 13:43:35 +00:00
|
|
|
try {
|
2016-11-23 09:25:21 +00:00
|
|
|
Files.write(Paths.get(dumpFileName), lines, StandardOpenOption.APPEND);
|
2016-04-07 13:43:35 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
throw new RuntimeException("Failed to dump properties into '"
|
|
|
|
+ dumpFileName + "'", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is for the testing purpose only.
|
|
|
|
* @param args
|
|
|
|
*/
|
|
|
|
public static void main(String args[]) {
|
|
|
|
Map<String, String> map = new VMProps().call();
|
2016-06-17 15:45:24 +00:00
|
|
|
map.forEach((k, v) -> System.out.println(k + ": '" + v + "'"));
|
2016-04-07 13:43:35 +00:00
|
|
|
}
|
|
|
|
}
|