~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-commons/src/main/java/org/hisp/dhis/util/CollectionUtils.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.util;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.lang.reflect.Method;
 
31
import java.util.ArrayList;
 
32
import java.util.Collection;
 
33
import java.util.HashMap;
 
34
import java.util.List;
 
35
import java.util.Map;
 
36
 
 
37
/**
 
38
 * @author Torgeir Lorange Ostby
 
39
 * @version $Id: CollectionUtils.java 2869 2007-02-20 14:26:09Z andegje $
 
40
 */
 
41
public class CollectionUtils
 
42
{
 
43
    /**
 
44
     * Creates a map with the elements of the collection as values using the
 
45
     * specified keyMethod to obtain the key from the elements.
 
46
     */
 
47
    @SuppressWarnings( "unchecked" )
 
48
    public static <K, T> Map<K, T> createMap( Collection<T> collection, String keyMethod )
 
49
    {
 
50
        Map<K, T> map = new HashMap<K, T>( collection.size() );
 
51
 
 
52
        if ( collection.isEmpty() )
 
53
        {
 
54
            return map;
 
55
        }
 
56
 
 
57
        Class elementClass = collection.iterator().next().getClass();
 
58
 
 
59
        Method getKeyMethod;
 
60
 
 
61
        try
 
62
        {
 
63
            getKeyMethod = elementClass.getMethod( keyMethod, new Class[0] );
 
64
        }
 
65
        catch ( Exception e )
 
66
        {
 
67
            throw new RuntimeException( "Failed to get key method", e );
 
68
        }
 
69
 
 
70
        for ( T element : collection )
 
71
        {
 
72
            K key;
 
73
            try
 
74
            {
 
75
                key = (K) getKeyMethod.invoke( element, (Object[]) null );
 
76
            }
 
77
            catch ( Exception e )
 
78
            {
 
79
                throw new RuntimeException( "Failed to get key", e );
 
80
            }
 
81
 
 
82
            map.put( key, element );
 
83
        }
 
84
 
 
85
        return map;
 
86
    }
 
87
 
 
88
    /**
 
89
     * Creates a list of values extracted from the provided list using the
 
90
     * specified value method, keeping the order of the provided list.
 
91
     */
 
92
    @SuppressWarnings( "unchecked" )
 
93
    public static <K, T> List<K> createList( List<T> list, String valueMethod )
 
94
    {
 
95
        List<K> valueList = new ArrayList<K>( list.size() );
 
96
 
 
97
        if ( list.isEmpty() )
 
98
        {
 
99
            return valueList;
 
100
        }
 
101
 
 
102
        Class elementClass = list.iterator().next().getClass();
 
103
 
 
104
        Method getValueMethod;
 
105
 
 
106
        try
 
107
        {
 
108
            getValueMethod = elementClass.getMethod( valueMethod, new Class[0] );
 
109
        }
 
110
        catch ( Exception e )
 
111
        {
 
112
            throw new RuntimeException( "Failed to get key method", e );
 
113
        }
 
114
 
 
115
        for ( T element : list )
 
116
        {
 
117
            K value;
 
118
 
 
119
            try
 
120
            {
 
121
                value = (K) getValueMethod.invoke( element, (Object[]) null );
 
122
            }
 
123
            catch ( Exception e )
 
124
            {
 
125
                throw new RuntimeException( "Failed to get key", e );
 
126
            }
 
127
 
 
128
            valueList.add( value );
 
129
        }
 
130
 
 
131
        return valueList;
 
132
    }
 
133
}