Wombat.java 8.9 KB
Newer Older
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
/*
 * Copyright 2008 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 */

import java.util.Random;
import java.util.Set;
import javax.management.AttributeChangeNotification;
import javax.management.ListenerNotFoundException;
import javax.management.MBeanAttributeInfo;
import javax.management.MBeanInfo;
import javax.management.MBeanNotificationInfo;
import javax.management.MBeanOperationInfo;
import javax.management.MBeanParameterInfo;
import javax.management.MBeanRegistration;
import javax.management.MBeanServer;
import javax.management.NotCompliantMBeanException;
import javax.management.NotificationBroadcasterSupport;
import javax.management.NotificationEmitter;
import javax.management.NotificationFilter;
import javax.management.NotificationListener;
import javax.management.ObjectName;
import javax.management.StandardMBean;


/**
 * Dynamic MBean based on StandardMBean
 * Class Wombat
 * Wombat Description
 * @author dfuchs
 */
public class Wombat extends StandardMBean
        implements WombatMBean, NotificationEmitter, MBeanRegistration {

    /**
     * Attribute : Caption
     */
    private String caption = "I'm a wombat";

    private final long MAX_SEED = 36000;
    private final long seed;
    private final long period;
    private volatile int mood = 0;

    public int getMood() {
        final long  degree = seed + (System.currentTimeMillis()/period)%MAX_SEED;
        final double angle = ((double)degree)/100;
        mood = (int)(100.0*Math.sin(angle));
        return mood;
    }

    public Wombat() throws NotCompliantMBeanException {
71 72 73 74 75 76
        this(WombatMBean.class);
    }

    public Wombat(Class<? extends WombatMBean> clazz)
            throws NotCompliantMBeanException {
        super(clazz);
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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
        final Random r = new Random();
        seed = ((r.nextLong() % MAX_SEED) + MAX_SEED)%MAX_SEED;
        period = 200 + (((r.nextLong()%80)+80)%80)*10;
    }

    /**
     * Next are the methods to compute MBeanInfo.
     * You shouldn't update these methods.
     */
    @Override
    protected String getDescription(MBeanInfo info) {
        return "Wombats are strange beasts. You will find them down under " +
                "and in some computer programms.";
    }

    @Override
    protected String getDescription(MBeanAttributeInfo info) {
        String description = null;
        if (info.getName().equals("Caption")) {
            description = "A simple caption to describe a wombat";
        }
        if (info.getName().equals("Mood")) {
            description = "This Wombat's mood on a [-100,+100] scale."+
                      " -100 means that this wombat is very angry.";
        }
        return description;
    }

    @Override
    protected String getDescription(MBeanOperationInfo op,
            MBeanParameterInfo param,
            int sequence) {
        return null;
    }

    @Override
    protected String getParameterName(MBeanOperationInfo op,
            MBeanParameterInfo param,
            int sequence) {
        return null;
    }

    @Override
    protected String getDescription(MBeanOperationInfo info) {
        String description = null;
        return description;
    }

    @Override
    public MBeanInfo getMBeanInfo() {
        MBeanInfo mbinfo = super.getMBeanInfo();
        return new MBeanInfo(mbinfo.getClassName(),
                mbinfo.getDescription(),
                mbinfo.getAttributes(),
                mbinfo.getConstructors(),
                mbinfo.getOperations(),
                getNotificationInfo());
    }

    /**
     * Get A simple caption to describe a wombat
     */
    public synchronized String getCaption() {
        return caption;
    }

    /**
     * Set A simple caption to describe a wombat
     */
    public void setCaption(String value) {
        final String oldValue;
        synchronized (this) {
            oldValue = caption;
            caption = value;
        }
        final AttributeChangeNotification notif =
                new AttributeChangeNotification(objectName,
                    getNextSeqNumber(),
                    System.currentTimeMillis(),
                    "Caption changed","Caption",
                    String.class.getName(),oldValue,value);
        broadcaster.sendNotification(notif);
    }

    /**
     * MBeanNotification support
     * You shouldn't update these methods
     */
    public void addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) throws IllegalArgumentException {
        broadcaster.addNotificationListener(listener, filter, handback);
    }

    public MBeanNotificationInfo[] getNotificationInfo() {
        return new MBeanNotificationInfo[] {
            new MBeanNotificationInfo(new String[] {
                AttributeChangeNotification.ATTRIBUTE_CHANGE},
                javax.management.AttributeChangeNotification.class.getName(),
                "Sent when the caption changes")
            };
    }

    public void removeNotificationListener(NotificationListener listener) throws ListenerNotFoundException {
        broadcaster.removeNotificationListener(listener);
    }

    public void removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) throws ListenerNotFoundException {
        broadcaster.removeNotificationListener(listener, filter, handback);
    }

    private synchronized long getNextSeqNumber() {
        return seqNumber++;
    }

    private long seqNumber;

    private final NotificationBroadcasterSupport broadcaster = new NotificationBroadcasterSupport();

    /**
     * Allows the MBean to perform any operations it needs before being
     * registered in the MBean server. If the name of the MBean is not
     * specified, the MBean can provide a name for its registration. If
     * any exception is raised, the MBean will not be registered in the
     * MBean server.
     * @param server The MBean server in which the MBean will be registered.
     * @param name The object name of the MBean. This name is null if the
     * name parameter to one of the createMBean or registerMBean methods in
     * the MBeanServer interface is null. In that case, this method must
     * return a non-null ObjectName for the new MBean.
     * @return The name under which the MBean is to be registered. This value
     * must not be null. If the name parameter is not null, it will usually
     * but not necessarily be the returned value.
     * @throws Exception This exception will be caught by the MBean server and
     * re-thrown as an MBeanRegistrationException.
     */
    @Override
    public ObjectName preRegister(MBeanServer server, ObjectName name)
            throws Exception {
        objectName = name;
        mbeanServer = server;
        return super.preRegister(server, name);
    }

    /**
     * Allows the MBean to perform any operations needed after having
     * been registered in the MBean server or after the registration has
     * failed.
     * @param registrationDone Indicates wether or not the MBean has been
     * successfully registered in the MBean server. The value false means
     * that the registration has failed.
     */
    @Override
    public void postRegister(Boolean registrationDone) {
        super.postRegister(registrationDone);
    }

    /**
     * Allows the MBean to perform any operations it needs before being
     * unregistered by the MBean server.
     * @throws Exception This exception will be caught by the MBean server and
     * re-thrown as an MBeanRegistrationException.
     */
    @Override
    public void preDeregister() throws Exception {
        super.preDeregister();
    }

    /**
     * Allows the MBean to perform any operations needed after having been
     * unregistered in the MBean server.
     */
    @Override
    public void postDeregister() {
        super.postDeregister();
    }

    public Set<ObjectName> listMatching(ObjectName pattern) {
        return mbeanServer.queryNames(pattern, null);
    }

    private MBeanServer mbeanServer;

    private ObjectName objectName;
}