X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=bindings%2Fjava%2Forg%2Fcollectd%2Fjava%2FGenericJMXConfValue.java;h=6d3d688eaab991353bd780b6b95508f824ca4313;hp=4b42c91171036ca70d213d0f1131373f79b7f572;hb=1159cb5d383c55a80a0db100b8f7aadcf44740a5;hpb=3d7453f6c3a13dc49e9ed6dd6d7a19202a3b087e diff --git a/bindings/java/org/collectd/java/GenericJMXConfValue.java b/bindings/java/org/collectd/java/GenericJMXConfValue.java index 4b42c911..6d3d688e 100644 --- a/bindings/java/org/collectd/java/GenericJMXConfValue.java +++ b/bindings/java/org/collectd/java/GenericJMXConfValue.java @@ -28,7 +28,10 @@ package org.collectd.java; import java.util.Arrays; import java.util.List; +import java.util.Collection; import java.util.Set; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; import java.util.Iterator; import java.util.ArrayList; @@ -39,6 +42,7 @@ import javax.management.MBeanServerConnection; import javax.management.ObjectName; import javax.management.openmbean.OpenType; import javax.management.openmbean.CompositeData; +import javax.management.openmbean.TabularData; import javax.management.openmbean.InvalidKeyException; import org.collectd.api.Collectd; @@ -68,6 +72,7 @@ class GenericJMXConfValue private List _attributes; private String _instance_prefix; private List _instance_from; + private String _plugin_name; private boolean _is_table; /** @@ -125,6 +130,14 @@ class GenericJMXConfValue { return (BigInteger.ZERO.add ((BigInteger) obj)); } + else if (obj instanceof AtomicInteger) + { + return (new Integer(((AtomicInteger) obj).get())); + } + else if (obj instanceof AtomicLong) + { + return (new Long(((AtomicLong) obj).get())); + } return (null); } /* }}} Number genericObjectToNumber */ @@ -295,6 +308,45 @@ class GenericJMXConfValue { if (value instanceof CompositeData) return (queryAttributeRecursive ((CompositeData) value, attrName)); + else if (value instanceof TabularData) + return (queryAttributeRecursive ((TabularData) value, attrName)); + else + return (null); + } + } /* }}} queryAttributeRecursive */ + + private Object queryAttributeRecursive (TabularData parent, /* {{{ */ + List attrName) + { + String key; + Object value = null; + + key = attrName.remove (0); + + @SuppressWarnings("unchecked") + Collection table = (Collection) parent.values(); + for (CompositeData compositeData : table) + { + if (key.equals(compositeData.get("key"))) + { + value = compositeData.get("value"); + } + } + if (null == value) + { + return (null); + } + + if (attrName.size () == 0) + { + return (value); + } + else + { + if (value instanceof CompositeData) + return (queryAttributeRecursive ((CompositeData) value, attrName)); + else if (value instanceof TabularData) + return (queryAttributeRecursive ((TabularData) value, attrName)); else return (null); } @@ -341,6 +393,8 @@ class GenericJMXConfValue { if (value instanceof CompositeData) return (queryAttributeRecursive((CompositeData) value, attrNameList)); + else if (value instanceof TabularData) + return (queryAttributeRecursive((TabularData) value, attrNameList)); else if (value instanceof OpenType) { OpenType ot = (OpenType) value; @@ -351,7 +405,7 @@ class GenericJMXConfValue else { Collectd.logError ("GenericJMXConfValue: Received object of " - + "unknown class."); + + "unknown class. " + attrName + " " + ((value == null)?"null":value.getClass().getName())); return (null); } } @@ -436,6 +490,7 @@ class GenericJMXConfValue this._attributes = new ArrayList (); this._instance_prefix = null; this._instance_from = new ArrayList (); + this._plugin_name = null; this._is_table = false; /* @@ -485,6 +540,12 @@ class GenericJMXConfValue if (tmp != null) this._instance_from.add (tmp); } + else if (child.getKey ().equalsIgnoreCase ("PluginName")) + { + String tmp = getConfigString (child); + if (tmp != null) + this._plugin_name = tmp; + } else throw (new IllegalArgumentException ("Unknown option: " + child.getKey ())); @@ -538,6 +599,10 @@ class GenericJMXConfValue vl = new ValueList (pd); vl.setType (this._ds_name); + if (this._plugin_name != null) + { + vl.setPlugin (this._plugin_name); + } /* * Build the instnace prefix from the fixed string prefix and the