LazyCompositeData.java 7.6 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6
 * 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
7
 * published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
8
 * particular file as subject to the "Classpath" exception as provided
9
 * by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
10 11 12 13 14 15 16 17 18 19 20
 *
 * 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.
 *
21 22 23
 * 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.
D
duke 已提交
24 25 26 27 28 29
 */

package sun.management;

import java.io.Serializable;
import java.util.*;
30
import javax.management.openmbean.ArrayType;
D
duke 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
import javax.management.openmbean.CompositeData;
import javax.management.openmbean.CompositeType;
import javax.management.openmbean.OpenType;
import javax.management.openmbean.TabularType;

/**
 * This abstract class provides the implementation of the CompositeData
 * interface.  A CompositeData object will be lazily created only when
 * the CompositeData interface is used.
 *
 * Classes that extends this abstract class will implement the
 * getCompositeData() method. The object returned by the
 * getCompositeData() is an instance of CompositeData such that
 * the instance serializes itself as the type CompositeDataSupport.
 */
public abstract class LazyCompositeData
        implements CompositeData, Serializable {

    private CompositeData compositeData;

    // Implementation of the CompositeData interface
52
    @Override
D
duke 已提交
53 54 55 56
    public boolean containsKey(String key) {
        return compositeData().containsKey(key);
    }

57
    @Override
D
duke 已提交
58 59 60 61
    public boolean containsValue(Object value) {
        return compositeData().containsValue(value);
    }

62
    @Override
D
duke 已提交
63 64 65 66
    public boolean equals(Object obj) {
        return compositeData().equals(obj);
    }

67
    @Override
D
duke 已提交
68 69 70 71
    public Object get(String key) {
        return compositeData().get(key);
    }

72
    @Override
D
duke 已提交
73 74 75 76
    public Object[] getAll(String[] keys) {
        return compositeData().getAll(keys);
    }

77
    @Override
D
duke 已提交
78 79 80 81
    public CompositeType getCompositeType() {
        return compositeData().getCompositeType();
    }

82
    @Override
D
duke 已提交
83 84 85 86
    public int hashCode() {
        return compositeData().hashCode();
    }

87
    @Override
D
duke 已提交
88 89 90 91 92
    public String toString() {
        /** FIXME: What should this be?? */
        return compositeData().toString();
    }

93
    @Override
94
    public Collection<?> values() {
D
duke 已提交
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
        return compositeData().values();
    }

    /* Lazy creation of a CompositeData object
     * only when the CompositeData interface is used.
     */
    private synchronized CompositeData compositeData() {
        if (compositeData != null)
            return compositeData;
        compositeData = getCompositeData();
        return compositeData;
    }

    /**
     * Designate to a CompositeData object when writing to an
     * output stream during serialization so that the receiver
     * only requires JMX 1.2 classes but not any implementation
     * specific class.
     */
    protected Object writeReplace() throws java.io.ObjectStreamException {
        return compositeData();
    }

    /**
     * Returns the CompositeData representing this object.
     * The returned CompositeData object must be an instance
     * of javax.management.openmbean.CompositeDataSupport class
     * so that no implementation specific class is required
     * for unmarshalling besides JMX 1.2 classes.
     */
    protected abstract CompositeData getCompositeData();

    // Helper methods
    static String getString(CompositeData cd, String itemName) {
        if (cd == null)
            throw new IllegalArgumentException("Null CompositeData");

        return (String) cd.get(itemName);
    }

    static boolean getBoolean(CompositeData cd, String itemName) {
        if (cd == null)
            throw new IllegalArgumentException("Null CompositeData");

139
        return ((Boolean) cd.get(itemName));
D
duke 已提交
140 141 142 143 144 145
    }

    static long getLong(CompositeData cd, String itemName) {
        if (cd == null)
            throw new IllegalArgumentException("Null CompositeData");

146
        return ((Long) cd.get(itemName));
D
duke 已提交
147 148 149 150 151 152
    }

    static int getInt(CompositeData cd, String itemName) {
        if (cd == null)
            throw new IllegalArgumentException("Null CompositeData");

153
        return ((Integer) cd.get(itemName));
D
duke 已提交
154 155 156 157 158 159
    }

    /**
     * Compares two CompositeTypes and returns true if
     * all items in type1 exist in type2 and their item types
     * are the same.
160 161 162 163
     * @param type1 the base composite type
     * @param type2 the checked composite type
     * @return {@code true} if all items in type1 exist in type2 and their item
     *         types are the same.
D
duke 已提交
164 165 166 167 168 169
     */
    protected static boolean isTypeMatched(CompositeType type1, CompositeType type2) {
        if (type1 == type2) return true;

        // We can't use CompositeType.isValue() since it returns false
        // if the type name doesn't match.
170
        Set<String> allItems = type1.keySet();
D
duke 已提交
171 172 173 174 175

        // Check all items in the type1 exist in type2
        if (!type2.keySet().containsAll(allItems))
            return false;

176 177 178
        return allItems.stream().allMatch(
            item -> isTypeMatched(type1.getType(item), type2.getType(item))
        );
D
duke 已提交
179 180 181 182 183
    }

    protected static boolean isTypeMatched(TabularType type1, TabularType type2) {
        if (type1 == type2) return true;

184 185
        List<String> list1 = type1.getIndexNames();
        List<String> list2 = type2.getIndexNames();
D
duke 已提交
186 187 188 189 190 191 192

        // check if the list of index names are the same
        if (!list1.equals(list2))
            return false;

        return isTypeMatched(type1.getRowType(), type2.getRowType());
    }
193

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
    protected static boolean isTypeMatched(ArrayType<?> type1, ArrayType<?> type2) {
        if (type1 == type2) return true;

        int dim1 = type1.getDimension();
        int dim2 = type2.getDimension();

        // check if the array dimensions are the same
        if (dim1 != dim2)
            return false;

        return isTypeMatched(type1.getElementOpenType(), type2.getElementOpenType());
    }

    private static boolean isTypeMatched(OpenType<?> ot1, OpenType<?> ot2) {
        if (ot1 instanceof CompositeType) {
            if (! (ot2 instanceof CompositeType))
                return false;
            if (!isTypeMatched((CompositeType) ot1, (CompositeType) ot2))
                return false;
        } else if (ot1 instanceof TabularType) {
            if (! (ot2 instanceof TabularType))
                return false;
            if (!isTypeMatched((TabularType) ot1, (TabularType) ot2))
                return false;
        } else if (ot1 instanceof ArrayType) {
            if (! (ot2 instanceof ArrayType))
                return false;
            if (!isTypeMatched((ArrayType<?>) ot1, (ArrayType<?>) ot2)) {
                return false;
            }
        } else if (!ot1.equals(ot2)) {
            return false;
        }
        return true;
    }

230
    private static final long serialVersionUID = -2190411934472666714L;
D
duke 已提交
231
}