001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.beanutils;
018
019import java.lang.reflect.Array;
020import java.util.ArrayList;
021import java.util.Collection;
022import java.util.Map;
023
024/**
025 * <h2><i>Lazy</i> DynaBean List.</h2>
026 *
027 * <p>There are two main purposes for this class:</p>
028 *    <ul>
029 *        <li>To provide <i>Lazy List</i> behaviour - automatically
030 *            <i>growing</i> and <i>populating</i> the <code>List</code>
031 *            with either <code>DynaBean</code>, <code>java.util.Map</code>
032 *            or POJO Beans.</li>
033 *        <li>To provide a straight forward way of putting a Collection
034 *            or Array into the lazy list <i>and</i> a straight forward
035 *            way to get it out again at the end.</li>
036 *    </ul>
037 *
038 * <p>All elements added to the List are stored as <code>DynaBean</code>'s:</p>
039 * <ul>
040 *    <li><code>java.util.Map</code> elements are "wrapped" in a <code>LazyDynaMap</code>.</i>
041 *    <li>POJO Bean elements are "wrapped" in a <code>WrapDynaBean.</code></i>
042 *    <li><code>DynaBean</code>'s are stored un-changed.</i>
043 * </ul>
044 *
045 * <h4><code>toArray()</code></h4>
046 * <p>The <code>toArray()</code> method returns an array of the
047 *    elements of the appropriate type. If the <code>LazyDynaList</code>
048 *    is populated with <code>java.util.Map</code> objects a
049 *    <code>Map[]</code> array is returned.
050 *    If the list is populated with POJO Beans an appropriate
051 *    array of the POJO Beans is returned. Otherwise a <code>DynaBean[]</code>
052 *    array is returned.
053 * </p>
054 *
055 * <h4><code>toDynaBeanArray()</code></h4>
056 * <p>The <code>toDynaBeanArray()</code> method returns a
057 *    <code>DynaBean[]</code> array of the elements in the List.
058 * </p>
059 *
060 * <p><strong>N.B.</strong>All the elements in the List must be the
061 *    same type. If the <code>DynaClass</code> or <code>Class</code>
062 *    of the <code>LazyDynaList</code>'s elements is
063 *    not specified, then it will be automatically set to the type
064 *    of the first element populated.
065 * </p>
066 *
067 * <h3>Example 1</h3>
068 * <p>If you have an array of <code>java.util.Map[]</code> - you can put that into
069 *    a <code>LazyDynaList</code>.</p>
070 *
071 * <pre><code>
072 *    TreeMap[] myArray = .... // your Map[]
073 *    List lazyList = new LazyDynaList(myArray);
074 * </code></pre>
075 *
076 * <p>New elements of the appropriate Map type are
077 *    automatically populated:</p>
078 *
079 * <pre><code>
080 *    // get(index) automatically grows the list
081 *    DynaBean newElement = (DynaBean)lazyList.get(lazyList.size());
082 *    newElement.put("someProperty", "someValue");
083 * </code></pre>
084 *
085 * <p>Once you've finished you can get back an Array of the
086 *    elements of the appropriate type:</p>
087 *
088 * <pre><code>
089 *    // Retrieve the array from the list
090 *    TreeMap[] myArray = (TreeMap[])lazyList.toArray());
091 * </code></pre>
092 *
093 *
094 * <h3>Example 2</h3>
095 * <p>Alternatively you can create an <i>empty</i> List and
096 *    specify the Class for List's elements. The LazyDynaList
097 *    uses the Class to automatically populate elements:</p>
098 *
099 * <pre><code>
100 *    // e.g. For Maps
101 *    List lazyList = new LazyDynaList(TreeMap.class);
102 *
103 *    // e.g. For POJO Beans
104 *    List lazyList = new LazyDynaList(MyPojo.class);
105 *
106 *    // e.g. For DynaBeans
107 *    List lazyList = new LazyDynaList(MyDynaBean.class);
108 * </code></pre>
109 *
110 * <h3>Example 3</h3>
111 * <p>Alternatively you can create an <i>empty</i> List and specify the
112 *    DynaClass for List's elements. The LazyDynaList uses
113 *    the DynaClass to automatically populate elements:</p>
114 *
115 * <pre><code>
116 *    // e.g. For Maps
117 *    DynaClass dynaClass = new LazyDynaMap(new HashMap());
118 *    List lazyList = new LazyDynaList(dynaClass);
119 *
120 *    // e.g. For POJO Beans
121 *    DynaClass dynaClass = (new WrapDynaBean(myPojo)).getDynaClass();
122 *    List lazyList = new LazyDynaList(dynaClass);
123 *
124 *    // e.g. For DynaBeans
125 *    DynaClass dynaClass = new BasicDynaClass(properties);
126 *    List lazyList = new LazyDynaList(dynaClass);
127 * </code></pre>
128 *
129 * <p><strong>N.B.</strong> You may wonder why control the type
130 *    using a <code>DynaClass</code> rather than the <code>Class</code>
131 *    as in the previous example - the reason is that some <code>DynaBean</code>
132 *    implementations don't have a <i>default</i> empty constructor and
133 *    therefore need to be instantiated using the <code>DynaClass.newInstance()</code>
134 *    method.</p>
135 *
136 * <h3>Example 4</h3>
137 * <p>A slight variation - set the element type using either
138 *    the <code>setElementType(Class)</code> method or the
139 *    <code>setElementDynaClass(DynaClass)</code> method - then populate
140 *    with the normal <code>java.util.List</code> methods(i.e.
141 *    <code>add()</code>, <code>addAll()</code> or <code>set()</code>).</p>
142 *
143 * <pre><code>
144 *    // Create a new LazyDynaList (100 element capacity)
145 *    LazyDynaList lazyList = new LazyDynaList(100);
146 *
147 *    // Either Set the element type...
148 *    lazyList.setElementType(TreeMap.class);
149 *
150 *    // ...or the element DynaClass...
151 *    lazyList.setElementDynaClass(new MyCustomDynaClass());
152 *
153 *    // Populate from a collection
154 *    lazyList.addAll(myCollection);
155 *
156 * </code></pre>
157 *
158 * @version $Id: LazyDynaList.html 893732 2014-01-11 19:35:15Z oheger $
159 * @since 1.8.0
160 */
161public class LazyDynaList extends ArrayList<Object> {
162
163    /**
164     * The DynaClass of the List's elements.
165     */
166    private DynaClass elementDynaClass;
167
168    /**
169     * The WrapDynaClass if the List's contains
170     * POJO Bean elements.
171     *
172     * N.B. WrapDynaClass isn't serlializable, which
173     *      is why its stored separately in a
174     *      transient instance variable.
175     */
176    private transient WrapDynaClass wrapDynaClass;
177
178    /**
179     * The type of the List's elements.
180     */
181    private Class<?> elementType;
182
183    /**
184     * The DynaBean type of the List's elements.
185     */
186    private Class<?> elementDynaBeanType;
187
188
189    // ------------------- Constructors ------------------------------
190
191    /**
192     * Default Constructor.
193     */
194    public LazyDynaList() {
195        super();
196    }
197
198    /**
199     * Construct a LazyDynaList with the
200     * specified capacity.
201     *
202     * @param capacity The initial capacity of the list.
203     */
204    public LazyDynaList(int capacity) {
205        super(capacity);
206
207    }
208
209    /**
210     * Construct a  LazyDynaList with a
211     * specified DynaClass for its elements.
212     *
213     * @param elementDynaClass The DynaClass of the List's elements.
214     */
215    public LazyDynaList(DynaClass elementDynaClass) {
216        super();
217        setElementDynaClass(elementDynaClass);
218    }
219
220    /**
221     * Construct a  LazyDynaList with a
222     * specified type for its elements.
223     *
224     * @param elementType The Type of the List's elements.
225     */
226    public LazyDynaList(Class<?> elementType) {
227        super();
228        setElementType(elementType);
229    }
230
231    /**
232     * Construct a  LazyDynaList populated with the
233     * elements of a Collection.
234     *
235     * @param collection The Collection to populate the List from.
236     */
237    public LazyDynaList(Collection<?> collection) {
238        super(collection.size());
239        addAll(collection);
240    }
241
242    /**
243     * Construct a  LazyDynaList populated with the
244     * elements of an Array.
245     *
246     * @param array The Array to populate the List from.
247     */
248    public LazyDynaList(Object[] array) {
249        super(array.length);
250        for (int i = 0; i < array.length; i++) {
251            add(array[i]);
252        }
253    }
254
255
256    // ------------------- java.util.List Methods --------------------
257
258    /**
259     * <p>Insert an element at the specified index position.</p>
260     *
261     * <p>If the index position is greater than the current
262     *    size of the List, then the List is automatically
263     *    <i>grown</i> to the appropriate size.</p>
264     *
265     * @param index The index position to insert the new element.
266     * @param element The new element to add.
267     */
268    @Override
269    public void add(int index, Object element) {
270
271        DynaBean dynaBean = transform(element);
272
273        growList(index);
274
275        super.add(index, dynaBean);
276
277    }
278
279    /**
280     * <p>Add an element to the List.</p>
281     *
282     * @param element The new element to add.
283     * @return true.
284     */
285    @Override
286    public boolean add(Object element) {
287
288        DynaBean dynaBean = transform(element);
289
290        return super.add(dynaBean);
291
292    }
293
294    /**
295     * <p>Add all the elements from a Collection to the list.
296     *
297     * @param collection The Collection of new elements.
298     * @return true if elements were added.
299     */
300    @Override
301    public boolean addAll(Collection<?> collection) {
302
303        if (collection == null || collection.size() == 0) {
304            return false;
305        }
306
307        ensureCapacity(size() + collection.size());
308
309        for (Object e : collection) {
310            add(e);
311        }
312
313        return true;
314
315    }
316
317    /**
318     * <p>Insert all the elements from a Collection into the
319     *    list at a specified position.
320     *
321     * <p>If the index position is greater than the current
322     *    size of the List, then the List is automatically
323     *    <i>grown</i> to the appropriate size.</p>
324     *
325     * @param collection The Collection of new elements.
326     * @param index The index position to insert the new elements at.
327     * @return true if elements were added.
328     */
329    @Override
330    public boolean addAll(int index, Collection<?> collection) {
331
332        if (collection == null || collection.size() == 0) {
333            return false;
334        }
335
336        ensureCapacity((index > size() ? index : size()) + collection.size());
337
338        // Call "transform" with first element, before
339        // List is "grown" to ensure the correct DynaClass
340        // is set.
341        if (size() == 0) {
342            transform(collection.iterator().next());
343        }
344
345        growList(index);
346
347        int currentIndex = index;
348        for (Object e : collection) {
349            add(currentIndex++, e);
350        }
351
352        return true;
353
354    }
355
356    /**
357     * <p>Return the element at the specified position.</p>
358     *
359     * <p>If the position requested is greater than the current
360     *    size of the List, then the List is automatically
361     *    <i>grown</i> (and populated) to the appropriate size.</p>
362     *
363     * @param index The index position to insert the new elements at.
364     * @return The element at the specified position.
365     */
366    @Override
367    public Object get(int index) {
368
369        growList(index + 1);
370
371        return super.get(index);
372
373    }
374
375    /**
376     * <p>Set the element at the specified position.</p>
377     *
378     * <p>If the position requested is greater than the current
379     *    size of the List, then the List is automatically
380     *    <i>grown</i> (and populated) to the appropriate size.</p>
381     *
382     * @param index The index position to insert the new element at.
383     * @param element The new element.
384     * @return The new element.
385     */
386    @Override
387    public Object set(int index, Object element) {
388
389        DynaBean dynaBean = transform(element);
390
391        growList(index + 1);
392
393        return super.set(index, dynaBean);
394
395    }
396
397    /**
398     * <p>Converts the List to an Array.</p>
399     *
400     * <p>The type of Array created depends on the contents
401     *    of the List:</p>
402     * <ul>
403     *    <li>If the List contains only LazyDynaMap type elements
404     *        then a java.util.Map[] array will be created.</li>
405     *    <li>If the List contains only elements which are
406     *        "wrapped" DynaBeans then an Object[] of the most
407     *        suitable type will be created.</li>
408     *    <li>...otherwise a DynaBean[] will be created.</li>
409     *
410     * @return An Array of the elements in this List.
411     */
412    @Override
413    public Object[] toArray() {
414
415        if (size() == 0 && elementType == null) {
416            return new LazyDynaBean[0];
417        }
418
419        Object[] array = (Object[])Array.newInstance(elementType, size());
420        for (int i = 0; i < size(); i++) {
421            if (Map.class.isAssignableFrom(elementType)) {
422                array[i] = ((LazyDynaMap)get(i)).getMap();
423            } else if (DynaBean.class.isAssignableFrom(elementType)) {
424                array[i] = get(i);
425            } else {
426                array[i] = ((WrapDynaBean)get(i)).getInstance();
427            }
428        }
429        return array;
430
431    }
432
433    /**
434     * <p>Converts the List to an Array of the specified type.</p>
435     *
436     * @param <T> The type of the array elements
437     * @param model The model for the type of array to return
438     * @return An Array of the elements in this List.
439     */
440    @Override
441    public <T> T[] toArray(T[] model) {
442
443        Class<?> arrayType = model.getClass().getComponentType();
444        if ((DynaBean.class.isAssignableFrom(arrayType))
445                || (size() == 0 && elementType == null)) {
446            return super.toArray(model);
447        }
448
449        if ((arrayType.isAssignableFrom(elementType))) {
450            T[] array;
451            if (model.length >= size()) {
452                array = model;
453            } else {
454                @SuppressWarnings("unchecked")
455                // This is safe because we know the element type
456                T[] tempArray = (T[]) Array.newInstance(arrayType, size());
457                array = tempArray;
458            }
459
460            for (int i = 0; i < size(); i++) {
461                Object elem;
462                if (Map.class.isAssignableFrom(elementType)) {
463                    elem = ((LazyDynaMap) get(i)).getMap();
464                } else if (DynaBean.class.isAssignableFrom(elementType)) {
465                    elem = get(i);
466                } else {
467                    elem = ((WrapDynaBean) get(i)).getInstance();
468                }
469                Array.set(array, i, elem);
470            }
471            return array;
472        }
473
474        throw new IllegalArgumentException("Invalid array type: "
475                  + arrayType.getName() + " - not compatible with '"
476                  + elementType.getName());
477
478    }
479
480
481    // ------------------- Public Methods ----------------------------
482
483    /**
484     * <p>Converts the List to an DynaBean Array.</p>
485     *
486     * @return A DynaBean[] of the elements in this List.
487     */
488    public DynaBean[] toDynaBeanArray() {
489
490        if (size() == 0 && elementDynaBeanType == null) {
491            return new LazyDynaBean[0];
492        }
493
494        DynaBean[] array = (DynaBean[])Array.newInstance(elementDynaBeanType, size());
495        for (int i = 0; i < size(); i++) {
496            array[i] = (DynaBean)get(i);
497        }
498        return array;
499
500    }
501
502    /**
503     * <p>Set the element Type and DynaClass.</p>
504     *
505     * @param elementType The type of the elements.
506     * @exception IllegalArgumentException if the List already
507     *            contains elements or the DynaClass is null.
508     */
509    public void setElementType(Class<?> elementType) {
510
511        if (elementType == null) {
512            throw new IllegalArgumentException("Element Type is missing");
513        }
514
515        boolean changeType = (this.elementType != null && !this.elementType.equals(elementType));
516        if (changeType && size() > 0) {
517            throw new IllegalStateException("Element Type cannot be reset");
518        }
519
520        this.elementType = elementType;
521
522        // Create a new object of the specified type
523        Object object = null;
524        try {
525            object = elementType.newInstance();
526        } catch (Exception e) {
527            throw new IllegalArgumentException("Error creating type: "
528                           + elementType.getName() + " - " + e);
529        }
530
531        // Create a DynaBean
532        DynaBean dynaBean = null;
533        if (Map.class.isAssignableFrom(elementType)) {
534            dynaBean = createDynaBeanForMapProperty(object);
535            this.elementDynaClass = dynaBean.getDynaClass();
536        } else if (DynaBean.class.isAssignableFrom(elementType)) {
537            dynaBean = (DynaBean)object;
538            this.elementDynaClass = dynaBean.getDynaClass();
539        } else {
540            dynaBean = new WrapDynaBean(object);
541            this.wrapDynaClass = (WrapDynaClass)dynaBean.getDynaClass();
542        }
543
544        this.elementDynaBeanType = dynaBean.getClass();
545
546        // Re-calculate the type
547        if (WrapDynaBean.class.isAssignableFrom(elementDynaBeanType )) {
548            this.elementType = ((WrapDynaBean)dynaBean).getInstance().getClass();
549        } else if (LazyDynaMap.class.isAssignableFrom(elementDynaBeanType )) {
550            this.elementType = ((LazyDynaMap)dynaBean).getMap().getClass();
551        }
552
553    }
554
555    /**
556     * <p>Set the element Type and DynaClass.</p>
557     *
558     * @param elementDynaClass The DynaClass of the elements.
559     * @exception IllegalArgumentException if the List already
560     *            contains elements or the DynaClass is null.
561     */
562    public void setElementDynaClass(DynaClass elementDynaClass) {
563
564        if (elementDynaClass == null) {
565            throw new IllegalArgumentException("Element DynaClass is missing");
566        }
567
568        if (size() > 0) {
569            throw new IllegalStateException("Element DynaClass cannot be reset");
570        }
571
572        // Try to create a new instance of the DynaBean
573        try {
574            DynaBean dynaBean  = elementDynaClass.newInstance();
575            this.elementDynaBeanType = dynaBean.getClass();
576            if (WrapDynaBean.class.isAssignableFrom(elementDynaBeanType)) {
577                this.elementType = ((WrapDynaBean)dynaBean).getInstance().getClass();
578                this.wrapDynaClass = (WrapDynaClass)elementDynaClass;
579            } else if (LazyDynaMap.class.isAssignableFrom(elementDynaBeanType)) {
580                this.elementType = ((LazyDynaMap)dynaBean).getMap().getClass();
581                this.elementDynaClass = elementDynaClass;
582            } else {
583                this.elementType = dynaBean.getClass();
584                this.elementDynaClass = elementDynaClass;
585            }
586        } catch (Exception e) {
587            throw new IllegalArgumentException(
588                        "Error creating DynaBean from " +
589                        elementDynaClass.getClass().getName() + " - " + e);
590        }
591
592    }
593
594
595    // ------------------- Private Methods ---------------------------
596
597    /**
598     * <p>Automatically <i>grown</i> the List
599     *    to the appropriate size, populating with
600     *    DynaBeans.</p>
601     *
602     * @param requiredSize the required size of the List.
603     */
604    private void growList(int requiredSize) {
605
606        if (requiredSize < size()) {
607            return;
608        }
609
610        ensureCapacity(requiredSize + 1);
611
612        for (int i = size(); i < requiredSize; i++) {
613            DynaBean dynaBean = transform(null);
614            super.add(dynaBean);
615        }
616
617    }
618
619    /**
620     * <p>Transform the element into a DynaBean:</p>
621     *
622     * <ul>
623     *    <li>Map elements are turned into LazyDynaMap's.</li>
624     *    <li>POJO Beans are "wrapped" in a WrapDynaBean.</li>
625     *    <li>DynaBeans are unchanged.</li>
626     * </li>
627     *
628     * @param element The element to transformed.
629     * @param The DynaBean to store in the List.
630     */
631    private DynaBean transform(Object element) {
632
633        DynaBean dynaBean     = null;
634        Class<?> newDynaBeanType = null;
635        Class<?> newElementType  = null;
636
637        // Create a new element
638        if (element == null) {
639
640            // Default Types to LazyDynaBean
641            // if not specified
642            if (elementType == null) {
643                setElementDynaClass(new LazyDynaClass());
644            }
645
646            // Get DynaClass (restore WrapDynaClass lost in serialization)
647            if (getDynaClass() == null) {
648                setElementType(elementType);
649            }
650
651            // Create a new DynaBean
652            try {
653                dynaBean = getDynaClass().newInstance();
654                newDynaBeanType = dynaBean.getClass();
655            } catch (Exception e) {
656                throw new IllegalArgumentException("Error creating DynaBean: "
657                              + getDynaClass().getClass().getName()
658                              + " - " + e);
659            }
660
661        } else {
662
663            // Transform Object to a DynaBean
664            newElementType = element.getClass();
665            if (Map.class.isAssignableFrom(element.getClass())) {
666                dynaBean = createDynaBeanForMapProperty(element);
667            } else if (DynaBean.class.isAssignableFrom(element.getClass())) {
668                dynaBean = (DynaBean)element;
669            } else {
670                dynaBean = new WrapDynaBean(element);
671            }
672
673            newDynaBeanType = dynaBean.getClass();
674
675        }
676
677        // Re-calculate the element type
678        newElementType = dynaBean.getClass();
679        if (WrapDynaBean.class.isAssignableFrom(newDynaBeanType)) {
680            newElementType = ((WrapDynaBean)dynaBean).getInstance().getClass();
681        } else if (LazyDynaMap.class.isAssignableFrom(newDynaBeanType)) {
682            newElementType = ((LazyDynaMap)dynaBean).getMap().getClass();
683        }
684
685        // Check the new element type, matches all the
686        // other elements in the List
687        if (elementType != null && !newElementType.equals(elementType)) {
688            throw new IllegalArgumentException("Element Type "  + newElementType
689                       + " doesn't match other elements " + elementType);
690        }
691
692        return dynaBean;
693
694    }
695
696    /**
697     * Creates a new {@code LazyDynaMap} object for the given property value.
698     *
699     * @param value the property value
700     * @return the newly created {@code LazyDynaMap}
701     */
702    private LazyDynaMap createDynaBeanForMapProperty(Object value) {
703        @SuppressWarnings("unchecked")
704        // map properties are always stored as Map<String, Object>
705        Map<String, Object> valueMap = (Map<String, Object>) value;
706        return new LazyDynaMap(valueMap);
707    }
708
709    /**
710     * Return the DynaClass.
711     */
712    private DynaClass getDynaClass() {
713        return (elementDynaClass == null ? wrapDynaClass : elementDynaClass);
714    }
715}