/** * MVEL 2.0 * Copyright (C) 2007 The Codehaus * Mike Brock, Dhanji Prasanna, John Graham, Mark Proctor * * 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. */ package org.mvel2.conversion; import org.mvel2.ConversionHandler; import java.lang.reflect.Array; import java.util.Collection; import java.util.HashMap; import java.util.Map; import static java.lang.reflect.Array.*; import static org.mvel2.DataConversion.convert; public class ArrayHandler implements ConversionHandler { private final Class type; public ArrayHandler(Class type) { this.type = type; } public Object convertFrom(Object in) { return handleLooseTypeConversion(in.getClass(), in, type); } public boolean canConvertFrom(Class cls) { return cls.isArray() || Collection.class.isAssignableFrom(cls); } /** * Messy method to handle primitive boxing for conversion. If someone can re-write this more * elegantly, be my guest. * * @param sourceType * @param input * @param targetType * @return */ private static Object handleLooseTypeConversion(Class sourceType, Object input, Class targetType) { Class targType = targetType.getComponentType(); if (Collection.class.isAssignableFrom(sourceType)) { Object newArray = newInstance(targType, ((Collection) input).size()); int i = 0; for (Object o : ((Collection) input)) { Array.set(newArray, i++, convert(o, targType)); } return newArray; } if (!input.getClass().isArray()) { // if the input isn't an array converts it in an array with lenght = 1 having has its single item the input itself Object target = newInstance(targType, 1); set(target, 0, input); return target; } int len = getLength(input); Object target = newInstance(targType, len); for (int i = 0; i < len; i++) { set(target, i, convert(get(input, i), targType)); } return target; } }