jdk/src/share/classes/sun/management/MemoryNotifInfoCompositeData.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 401 ef01e0dccd63
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.management;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.management.MemoryNotificationInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.management.MemoryUsage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.management.openmbean.CompositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.management.openmbean.CompositeType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.management.openmbean.CompositeDataSupport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.management.openmbean.OpenDataException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * A CompositeData for MemoryNotificationInfo for the local management support.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * This class avoids the performance penalty paid to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * construction of a CompositeData use in the local case.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
public class MemoryNotifInfoCompositeData extends LazyCompositeData {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private final MemoryNotificationInfo memoryNotifInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private MemoryNotifInfoCompositeData(MemoryNotificationInfo info) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        this.memoryNotifInfo = info;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    public MemoryNotificationInfo getMemoryNotifInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        return memoryNotifInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public static CompositeData toCompositeData(MemoryNotificationInfo info) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        MemoryNotifInfoCompositeData mnicd =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            new MemoryNotifInfoCompositeData(info);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        return mnicd.getCompositeData();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    protected CompositeData getCompositeData() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        // CONTENTS OF THIS ARRAY MUST BE SYNCHRONIZED WITH
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        // memoryNotifInfoItemNames!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        final Object[] memoryNotifInfoItemValues = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            memoryNotifInfo.getPoolName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            MemoryUsageCompositeData.toCompositeData(memoryNotifInfo.getUsage()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            new Long(memoryNotifInfo.getCount()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            return new CompositeDataSupport(memoryNotifInfoCompositeType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                                            memoryNotifInfoItemNames,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                                            memoryNotifInfoItemValues);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        } catch (OpenDataException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            // Should never reach here
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            throw Util.newInternalError(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private static final CompositeType memoryNotifInfoCompositeType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            memoryNotifInfoCompositeType = (CompositeType)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                MappedMXBeanType.toOpenType(MemoryNotificationInfo.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        } catch (OpenDataException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            // Should never reach here
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            throw Util.newInternalError(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    private static final String POOL_NAME = "poolName";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private static final String USAGE     = "usage";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private static final String COUNT     = "count";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    private static final String[] memoryNotifInfoItemNames = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        POOL_NAME,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        USAGE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        COUNT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    public static String getPoolName(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        String poolname = getString(cd, POOL_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        if (poolname == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            throw new IllegalArgumentException("Invalid composite data: " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                "Attribute " + POOL_NAME + " has null value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return poolname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public static MemoryUsage getUsage(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        CompositeData usageData = (CompositeData) cd.get(USAGE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        return MemoryUsage.from(usageData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public static long getCount(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        return getLong(cd, COUNT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /** Validate if the input CompositeData has the expected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * CompositeType (i.e. contain all attributes with expected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * names and types).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public static void validateCompositeData(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (cd == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            throw new NullPointerException("Null CompositeData");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        if (!isTypeMatched(memoryNotifInfoCompositeType, cd.getCompositeType())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                "Unexpected composite type for MemoryNotificationInfo");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
}