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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
* Copyright (c) 2014, 2016, 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.
*/
/**
* @test TestSoftReferencesBehaviorOnOOME
* @key gc
* @summary Tests that all SoftReferences has been cleared at time of OOM.
* @requires vm.gc != "Z"
* @library /test/lib
* @modules java.base/jdk.internal.misc
* @run main/othervm -Xmx128m TestSoftReferencesBehaviorOnOOME 512 2k
* @run main/othervm -Xmx128m TestSoftReferencesBehaviorOnOOME 128k 256k
* @run main/othervm -Xmx128m TestSoftReferencesBehaviorOnOOME 2k 32k
*/
import jdk.test.lib.Utils;
import jdk.test.lib.Asserts;
import java.lang.ref.SoftReference;
import java.util.LinkedList;
import java.util.Random;
public class TestSoftReferencesBehaviorOnOOME {
/**
* Test generates a lot of soft references to objects with random payloads.
* Then it provokes OOME and checks that all SoftReferences has been gone
* @param args - [minSize] [maxSize] [freq]
* where
* - minSize - min size of random objects
* - maxSize - max size of random objects
*/
public static void main(String[] args) {
long minSize = DEFAULT_MIN_SIZE;
long maxSize = DEFAULT_MAX_SIZE;
if ( args.length >= 2) {
maxSize = getBytesCount(args[1]);
}
if ( args.length >= 1) {
minSize = getBytesCount(args[0]);
}
new TestSoftReferencesBehaviorOnOOME().softReferencesOom(minSize, maxSize);
}
/**
* Test that all SoftReferences has been cleared at time of OOM.
*/
void softReferencesOom(long minSize, long maxSize) {
System.out.format( "minSize = %d, maxSize = %d%n", minSize, maxSize );
LinkedList<SoftReference> arrSoftRefs = new LinkedList();
staticRef = arrSoftRefs;
LinkedList arrObjects = new LinkedList();
staticRef = arrObjects;
long multiplier = maxSize - minSize;
long numberOfNotNulledObjects = 0;
try {
// Lets allocate as many as we can - taking size of all SoftRerefences
// by minimum. So it can provoke some GC but we surely will allocate enough.
long numSofts = (long) ((0.95 * Runtime.getRuntime().totalMemory()) / minSize);
System.out.println("num Soft: " + numSofts);
while (numSofts-- > 0) {
int allocationSize = ((int) (RND_GENERATOR.nextDouble() * multiplier))
+ (int)minSize;
arrSoftRefs.add(new SoftReference(new byte[allocationSize]));
}
System.out.println("free: " + Runtime.getRuntime().freeMemory());
// provoke OOME.
while (true) {
arrObjects.add(new byte[(int) Runtime.getRuntime().totalMemory()]);
}
} catch (OutOfMemoryError oome) {
// Clear allocated ballast, so we don't get another OOM.
staticRef = null;
arrObjects = null;
long oomSoftArraySize = arrSoftRefs.size();
for (SoftReference sr : arrSoftRefs) {
Object o = sr.get();
if (o != null) {
numberOfNotNulledObjects++;
}
}
// Make sure we clear all refs before we return failure
arrSoftRefs = null;
Asserts.assertFalse(numberOfNotNulledObjects > 0,
"" + numberOfNotNulledObjects + " out of "
+ oomSoftArraySize + " SoftReferences was not "
+ "null at time of OutOfMemoryError"
);
} finally {
Asserts.assertTrue(arrObjects == null, "OOME hasn't been provoked");
Asserts.assertTrue(arrSoftRefs == null, "OOME hasn't been provoked");
}
}
private static final long getBytesCount(String arg) {
String postfixes = "kMGT";
long mod = 1;
if (arg.trim().length() >= 2) {
mod = postfixes.indexOf(arg.trim().charAt(arg.length() - 1));
if (mod != -1) {
mod = (long) Math.pow(1024, mod+1);
arg = arg.substring(0, arg.length() - 1);
} else {
mod = 1; // 10^0
}
}
return Long.parseLong(arg) * mod;
}
private static final Random RND_GENERATOR = Utils.getRandomInstance();
private static final long DEFAULT_MIN_SIZE = 512;
private static final long DEFAULT_MAX_SIZE = 1024;
private static Object staticRef; // to prevent compile optimisations
}
|