mirror of https://github.com/apache/activemq.git
apply patch for: https://issues.apache.org/jira/browse/AMQ-3512
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1176524 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d717a495c7
commit
bef9984b21
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.console.filter;
|
package org.apache.activemq.console.filter;
|
||||||
|
|
||||||
|
import java.lang.reflect.Array;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -331,10 +332,32 @@ public class MapTransformFilter extends ResultTransformFilter {
|
||||||
return props;
|
return props;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String getDisplayString(Object obj) {
|
@SuppressWarnings("unchecked")
|
||||||
if (obj != null && obj.getClass().isArray()) {
|
protected String getDisplayString(Object obj) {
|
||||||
obj = Arrays.asList((Object[]) obj);
|
if (null == obj)
|
||||||
}
|
return "null";
|
||||||
|
|
||||||
|
if (obj != null && obj.getClass().isArray()) {
|
||||||
|
Class type = obj.getClass().getComponentType();
|
||||||
|
if (!type.isPrimitive()) {
|
||||||
|
obj = Arrays.asList((Object[]) obj);
|
||||||
|
} else {
|
||||||
|
// for primitives, we can't use Arrays.toString(), so we have to roll something similar.
|
||||||
|
int len = Array.getLength(obj);
|
||||||
|
if (0 == len)
|
||||||
|
return "[]";
|
||||||
|
StringBuilder bldr = new StringBuilder();
|
||||||
|
bldr.append("[");
|
||||||
|
for (int i = 0; i <= len; i++) {
|
||||||
|
bldr.append(Array.get(obj, i));
|
||||||
|
if (i + 1 >= len)
|
||||||
|
return bldr.append("]").toString();
|
||||||
|
bldr.append(",");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
return obj.toString();
|
return obj.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You 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.
|
||||||
|
*/
|
||||||
|
package org.apache.activemq.console.filter;
|
||||||
|
|
||||||
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
|
public class TestMapTransformFilter extends TestCase {
|
||||||
|
|
||||||
|
private static final Object[][] testData = new Object[][] {
|
||||||
|
{ new byte[] { 1, 2, 3, 4 } },
|
||||||
|
{ new int[] { 1, 2, 3, 4 } },
|
||||||
|
{ new long[] { 1, 2, 3, 4 } },
|
||||||
|
{ new double[] { 1, 2, 3, 4 } },
|
||||||
|
{ new float[] { 1, 2, 3, 4 } },
|
||||||
|
{ new char[] { '1', '2', '3', '4' } },
|
||||||
|
|
||||||
|
{ new Integer[] { 1, 2, 3, 4 } },
|
||||||
|
{ new Byte[] { 1, 2, 3, 4 } },
|
||||||
|
{ new Long[] { 1L, 2L, 3L, 4L } },
|
||||||
|
{ new Double[] { 1d, 2d, 3d, 4d } },
|
||||||
|
{ new Float[] { 1f, 2f, 3f, 4f } },
|
||||||
|
{ new Character[] { '1', '2', '3', '4' } },
|
||||||
|
|
||||||
|
{ new String[] { "abc", "def" } },
|
||||||
|
{ new int[] { 1, } },
|
||||||
|
{ new int[] {,} },
|
||||||
|
{ "abc"},
|
||||||
|
{(byte)1},
|
||||||
|
{ (int)1 },
|
||||||
|
{ (long)1 },
|
||||||
|
{ (double)1d },
|
||||||
|
{ (float)1f },
|
||||||
|
{ (char)'1' },
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
public void testFetDisplayString() {
|
||||||
|
MapTransformFilter filter = new MapTransformFilter(null);
|
||||||
|
for (Object[] objectArray : testData) {
|
||||||
|
filter.getDisplayString(objectArray[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue