--- old/test/java/nio/BufferPoolMXBean/Basic.java Mon Mar 28 11:54:31 2011 +++ /dev/null Mon Mar 28 11:54:31 2011 @@ -1,107 +0,0 @@ -/* - * Copyright (c) 2007, 2010, 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 - * @bug 6606598 - * @summary Unit test for java.nio.BufferPoolMXBean - * @run main/othervm Basic - */ - -import java.nio.ByteBuffer; -import java.nio.MappedByteBuffer; -import java.nio.BufferPoolMXBean; -import java.nio.channels.FileChannel; -import java.io.File; -import java.io.RandomAccessFile; -import java.lang.management.ManagementFactory; -import javax.management.MBeanServer; -import javax.management.ObjectName; -import java.util.*; - -public class Basic { - - // static fields to ensure buffers aren't GC'ed - static List buffers; - static MappedByteBuffer mbb; - - // check counters - static void check(List pools, - int minBufferCount, - long minTotalCapacity) - { - int bufferCount = 0; - long totalCap = 0; - long totalMem = 0; - for (BufferPoolMXBean pool: pools) { - bufferCount += pool.getCount(); - totalCap += pool.getTotalCapacity(); - totalMem += pool.getMemoryUsed(); - } - if (bufferCount < minBufferCount) - throw new RuntimeException("Count less than expected"); - if (totalMem < minTotalCapacity) - throw new RuntimeException("Memory usage less than expected"); - if (totalCap < minTotalCapacity) - throw new RuntimeException("Total capacity less than expected"); - } - - public static void main(String[] args) throws Exception { - Random rand = new Random(); - - // allocate a few direct buffers - int bufferCount = 5 + rand.nextInt(20); - buffers = new ArrayList(bufferCount); - long totalCapacity = 0L; - for (int i=0; i pools = - ManagementFactory.getPlatformMXBeans(BufferPoolMXBean.class); - check(pools, bufferCount, totalCapacity); - - // using MBeanServer - MBeanServer server = ManagementFactory.getPlatformMBeanServer(); - Set mbeans = server.queryNames( - new ObjectName("java.nio:type=BufferPool,*"), null); - pools = new ArrayList(); - for (ObjectName name: mbeans) { - BufferPoolMXBean pool = ManagementFactory - .newPlatformMXBeanProxy(server, name.toString(), BufferPoolMXBean.class); - pools.add(pool); - } - check(pools, bufferCount, totalCapacity); - } -} --- /dev/null Mon Mar 28 11:54:31 2011 +++ new/test/java/lang/management/BufferPoolMXBean/Basic.java Mon Mar 28 11:54:30 2011 @@ -0,0 +1,117 @@ +/* + * Copyright (c) 2007, 2010, 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 + * @bug 6606598 7024172 + * @summary Unit test for java.lang.management.BufferPoolMXBean + * @run main/othervm Basic + */ + +import java.nio.ByteBuffer; +import java.nio.MappedByteBuffer; +import java.nio.file.Path; +import java.nio.file.Files; +import static java.nio.file.StandardOpenOption.*; +import java.nio.channels.FileChannel; +import java.lang.management.BufferPoolMXBean; +import java.lang.management.ManagementFactory; +import javax.management.MBeanServer; +import javax.management.ObjectName; +import java.lang.ref.WeakReference; +import java.util.*; + +public class Basic { + + // static fields to ensure buffers aren't GC'ed + static List buffers; + static MappedByteBuffer mbb; + + // check counters + static void check(List pools, + int minBufferCount, + long minTotalCapacity) + { + int bufferCount = 0; + long totalCap = 0; + long totalMem = 0; + for (BufferPoolMXBean pool: pools) { + bufferCount += pool.getCount(); + totalCap += pool.getTotalCapacity(); + totalMem += pool.getMemoryUsed(); + } + if (bufferCount < minBufferCount) + throw new RuntimeException("Count less than expected"); + if (totalMem < minTotalCapacity) + throw new RuntimeException("Memory usage less than expected"); + if (totalCap < minTotalCapacity) + throw new RuntimeException("Total capacity less than expected"); + } + + public static void main(String[] args) throws Exception { + Random rand = new Random(); + + // allocate a few direct buffers + int bufferCount = 5 + rand.nextInt(20); + buffers = new ArrayList(bufferCount); + long totalCapacity = 0L; + for (int i=0; i pools = + ManagementFactory.getPlatformMXBeans(BufferPoolMXBean.class); + check(pools, bufferCount, totalCapacity); + + // use MBeanServer + MBeanServer server = ManagementFactory.getPlatformMBeanServer(); + Set mbeans = server.queryNames( + new ObjectName("java.nio:type=BufferPool,*"), null); + pools = new ArrayList(); + for (ObjectName name: mbeans) { + BufferPoolMXBean pool = ManagementFactory + .newPlatformMXBeanProxy(server, name.toString(), BufferPoolMXBean.class); + pools.add(pool); + } + check(pools, bufferCount, totalCapacity); + + // attempt to unmap mapped buffer + WeakReference ref = new WeakReference<>(mbb); + mbb = null; + do { + System.gc(); + Thread.sleep(250); + } while (ref.get() != null); + } +}