jdk/src/java.management/share/classes/sun/management/LazyCompositeData.java
author sjiang
Fri, 17 Apr 2015 09:40:02 +0200
changeset 30355 e37c7eba132f
parent 25859 3317bb8137f4
child 33260 af1ca24593aa
permissions -rw-r--r--
8042901: Allow com.sun.management to be in a different module to java.lang.management Reviewed-by: mchung, dfuchs, erikj, jbachorik
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30355
e37c7eba132f 8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents: 25859
diff changeset
     2
 * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
2
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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4173
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4173
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4173
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4173
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4173
diff changeset
    23
 * questions.
2
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.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
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.OpenType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.management.openmbean.TabularType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * This abstract class provides the implementation of the CompositeData
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * interface.  A CompositeData object will be lazily created only when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * the CompositeData interface is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Classes that extends this abstract class will implement the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * getCompositeData() method. The object returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * getCompositeData() is an instance of CompositeData such that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * the instance serializes itself as the type CompositeDataSupport.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
public abstract class LazyCompositeData
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        implements CompositeData, Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private CompositeData compositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    // Implementation of the CompositeData interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public boolean containsKey(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        return compositeData().containsKey(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    public boolean containsValue(Object value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        return compositeData().containsValue(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        return compositeData().equals(obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    public Object get(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        return compositeData().get(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    public Object[] getAll(String[] keys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        return compositeData().getAll(keys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public CompositeType getCompositeType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        return compositeData().getCompositeType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        return compositeData().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        /** FIXME: What should this be?? */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        return compositeData().toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
11530
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
    84
    public Collection<?> values() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        return compositeData().values();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /* Lazy creation of a CompositeData object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * only when the CompositeData interface is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private synchronized CompositeData compositeData() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        if (compositeData != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            return compositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        compositeData = getCompositeData();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        return compositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * Designate to a CompositeData object when writing to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * output stream during serialization so that the receiver
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * only requires JMX 1.2 classes but not any implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * specific class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    protected Object writeReplace() throws java.io.ObjectStreamException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return compositeData();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Returns the CompositeData representing this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * The returned CompositeData object must be an instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * of javax.management.openmbean.CompositeDataSupport class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * so that no implementation specific class is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * for unmarshalling besides JMX 1.2 classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    protected abstract CompositeData getCompositeData();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    // Helper methods
30355
e37c7eba132f 8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents: 25859
diff changeset
   118
    public static String getString(CompositeData cd, String itemName) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        if (cd == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            throw new IllegalArgumentException("Null CompositeData");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        return (String) cd.get(itemName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
30355
e37c7eba132f 8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents: 25859
diff changeset
   125
    public static boolean getBoolean(CompositeData cd, String itemName) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        if (cd == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            throw new IllegalArgumentException("Null CompositeData");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        return ((Boolean) cd.get(itemName)).booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
30355
e37c7eba132f 8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents: 25859
diff changeset
   132
    public static long getLong(CompositeData cd, String itemName) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        if (cd == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            throw new IllegalArgumentException("Null CompositeData");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        return ((Long) cd.get(itemName)).longValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
30355
e37c7eba132f 8042901: Allow com.sun.management to be in a different module to java.lang.management
sjiang
parents: 25859
diff changeset
   139
    public static int getInt(CompositeData cd, String itemName) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        if (cd == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            throw new IllegalArgumentException("Null CompositeData");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        return ((Integer) cd.get(itemName)).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * Compares two CompositeTypes and returns true if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * all items in type1 exist in type2 and their item types
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * are the same.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    protected static boolean isTypeMatched(CompositeType type1, CompositeType type2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        if (type1 == type2) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // We can't use CompositeType.isValue() since it returns false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        // if the type name doesn't match.
11530
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
   156
        Set<String> allItems = type1.keySet();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        // Check all items in the type1 exist in type2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        if (!type2.keySet().containsAll(allItems))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
11530
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
   162
        for (String item: allItems) {
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
   163
            OpenType<?> ot1 = type1.getType(item);
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
   164
            OpenType<?> ot2 = type2.getType(item);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            if (ot1 instanceof CompositeType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                if (! (ot2 instanceof CompositeType))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                if (!isTypeMatched((CompositeType) ot1, (CompositeType) ot2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            } else if (ot1 instanceof TabularType) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                if (! (ot2 instanceof TabularType))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                if (!isTypeMatched((TabularType) ot1, (TabularType) ot2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            } else if (!ot1.equals(ot2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    protected static boolean isTypeMatched(TabularType type1, TabularType type2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (type1 == type2) return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
11530
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
   185
        List<String> list1 = type1.getIndexNames();
a9d059c15b80 7117570: Warnings in sun.mangement.* and its subpackages
mchung
parents: 5506
diff changeset
   186
        List<String> list2 = type2.getIndexNames();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        // check if the list of index names are the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        if (!list1.equals(list2))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        return isTypeMatched(type1.getRowType(), type2.getRowType());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
4173
d01972926813 6895875: Missing serialVersionUID in sun.management classes
mchung
parents: 2
diff changeset
   194
d01972926813 6895875: Missing serialVersionUID in sun.management classes
mchung
parents: 2
diff changeset
   195
    private static final long serialVersionUID = -2190411934472666714L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
}