package org.jolokia.converter.json; import java.lang.reflect.InvocationTargetException; import java.util.Set; import java.util.Stack; import javax.management.AttributeNotFoundException; import javax.management.openmbean.CompositeData; import javax.management.openmbean.InvalidKeyException; import org.jolokia.converter.object.StringToObjectConverter; import org.json.simple.JSONObject; /* * Copyright 2009-2013 Roland Huss * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Extractor for {@link CompositeData} * * @author roland * @since Apr 19, 2009 */ public class CompositeDataExtractor implements Extractor { /** {@inheritDoc} */ public Class getType() { return CompositeData.class; } /** {@inheritDoc} */ @SuppressWarnings("PMD.PreserveStackTrace") public Object extractObject(ObjectToJsonConverter pConverter, Object pValue, Stack<String> pPathParts,boolean jsonify) throws AttributeNotFoundException { CompositeData cd = (CompositeData) pValue; String pathPart = pPathParts.isEmpty() ? null : pPathParts.pop(); if (pathPart != null) { try { return pConverter.extractObject(cd.get(pathPart), pPathParts, jsonify); } catch (InvalidKeyException exp) { return pConverter.getValueFaultHandler().handleException(new AttributeNotFoundException("Invalid path '" + pathPart + "'")); } } else { return jsonify ? extractCompleteCdAsJson(pConverter, cd, pPathParts) : cd; } } private Object extractCompleteCdAsJson(ObjectToJsonConverter pConverter, CompositeData pData, Stack<String> pPath) throws AttributeNotFoundException { JSONObject ret = new JSONObject(); for (String key : (Set<String>) pData.getCompositeType().keySet()) { Stack<String> path = (Stack<String>) pPath.clone(); try { ret.put(key, pConverter.extractObject(pData.get(key), path, true)); } catch (ValueFaultHandler.AttributeFilteredException exp) { // Ignore this key; } } if (ret.isEmpty()) { // If every key was filtered, this composite data should be skipped completely throw new ValueFaultHandler.AttributeFilteredException(); } return ret; } /** {@inheritDoc} */ public Object setObjectValue(StringToObjectConverter pConverter, Object pInner, String pAttribute, Object pValue) throws IllegalAccessException, InvocationTargetException { throw new IllegalArgumentException("CompositeData cannot be written to"); } /** {@inheritDoc} */ public boolean canSetValue() { return false; } }