Package io.hawt.web

Source Code of io.hawt.web.PluginServlet

package io.hawt.web;

import java.io.IOException;
import java.io.PrintWriter;
import java.lang.management.ManagementFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import javax.management.Attribute;
import javax.management.AttributeList;
import javax.management.InstanceNotFoundException;
import javax.management.MBeanServer;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectInstance;
import javax.management.ObjectName;
import javax.management.ReflectionException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.jolokia.converter.Converters;
import org.jolokia.converter.json.JsonConvertOptions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
*
*/
public class PluginServlet extends HttpServlet {

    private static final long serialVersionUID = 1L;
    private static final transient Logger LOG = LoggerFactory.getLogger(PluginServlet.class);

    MBeanServer mBeanServer;
    ObjectName pluginQuery;
    Converters converters = new Converters();
    JsonConvertOptions options = JsonConvertOptions.DEFAULT;

    String attributes[] = {"Context", "Domain", "Name", "Scripts"};

    @Override
    public void init() throws ServletException {
        mBeanServer = ManagementFactory.getPlatformMBeanServer();
        try {
            pluginQuery = new ObjectName("hawtio:type=plugin,name=*");
        } catch (MalformedObjectNameException e) {
            LOG.warn("Failed to create object name: ", e);
        }
        super.init();
    }

    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        response.setContentType("application/json");
        final PrintWriter out = response.getWriter();

        Set<ObjectInstance> objectInstances = mBeanServer.queryMBeans(pluginQuery, null);

        if (objectInstances.size() == 0) {
            ServletHelpers.writeEmpty(out);
            return;
        }

        Map<String, Map<Object, Object>> answer = new HashMap<String, Map<Object, Object>>();

        for (ObjectInstance objectInstance : objectInstances) {

            AttributeList attributeList = null;

            try {
                attributeList = mBeanServer.getAttributes(objectInstance.getObjectName(), attributes);
            } catch (InstanceNotFoundException e) {
                LOG.warn("Object instance not found: " + objectInstance.getObjectName(), e);
            } catch (ReflectionException e) {
                LOG.warn("Failed to get attribute list for mbean: " + objectInstance.getObjectName(), e);
            } catch (SecurityException e) {
                LOG.warn("Security issue accessing mbean: " + objectInstance.getObjectName(), e);
            }

            if (attributeList != null && attributes.length == attributeList.size()) {

                Map<Object, Object> pluginDefinition = new HashMap<Object, Object>();

                for (Attribute attribute : attributeList.asList()) {
                    pluginDefinition.put(attribute.getName(), attribute.getValue());
                }
                answer.put((String) pluginDefinition.get("Name"), pluginDefinition);
            }

        }
        ServletHelpers.writeObject(converters, options, out, answer);
    }

}
TOP

Related Classes of io.hawt.web.PluginServlet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.