IT-KIMI_SHI\SINOIT.KIMI
2018-06-01 64c40fb427bff513f575f11e4c1e7bd9a1bfe3e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package frame.util;
 
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
 
 
public class MapList<T> implements Collection<T> {
 
    protected List<T> itemList;
    protected Map<Object, T> itemMap;
    
    public MapList() {
        itemList = new ArrayList<T>();
        itemMap = new HashMap<Object, T>();
    }
    
    public void addAll(Map<Object, T> map) {
        Set<Object> keys = map.keySet();
        
        for (Object key: keys) {
            add(key, map.get(key));
        }
    }
    
    public void add(Object key, T item) {
        itemList.add(item);
        
        if (key == null) {
            key = "empty";
        }
        
        if (key instanceof String) {
            key = ((String) key).toLowerCase();
        }
        
        itemMap.put(key, item);
    }
    
    public T get(String key) {
        if (key == null) {
            key = "empty";
        }
        key = key.toLowerCase();
        
        return itemMap.get(key);
    }
    
    public T remove(String key) {
        if (key == null) {
            return null;
        }
        
        T obj = itemMap.get(key.toLowerCase());
        
        if (obj != null) {
            itemMap.remove(key);
            itemList.remove(obj);
        }
        
        return obj;
    }
    
    public List<T> getItemList() {
        return itemList;
    }
 
    public boolean isEmpty() {
        return itemList.isEmpty();
    }
    
    public int size() {
        return itemList.size();
    }
    
    public int mapSize() {
        return itemMap.size();
    }
    
    @Override
    public Iterator<T> iterator() {
        return itemList.iterator();
    }
 
    public void clear() {
        itemList.clear();
        itemMap.clear();
    }
    
    public String toString(String separator) {
        ContentBuilder builder = new ContentBuilder(separator);
        
        for (Object key: itemMap.keySet()) {
            builder.append(key);
        }
        
        return builder.toString();
    }
    
    public Set<Object> keySet() {
        return itemMap.keySet();
    }
 
    public boolean equals(MapList<T> another) {
        if (another == null) {
            return false;
        }
        
        if (this == another) {
            return true;
        }
        
        Set<Object> keys = itemMap.keySet();
        for (Object key: keys) {
            if (!another.contains(key)) {
                return false;
            }
        }
        
        Set<Object> anotherKeys = another.itemMap.keySet();
        for (Object anotherKey: anotherKeys) {
            if (!contains(anotherKey)) {
                return false;
            }
        }
        
        return true;
    }
 
    @Override
    public boolean contains(Object key) {
        if (key == null) {
            return false;
        }
        
        if (key instanceof String) {
            key = ((String)key).toLowerCase();
        }
 
        return itemMap.containsKey(key);
    }
 
    @Override
    public Object[] toArray() {
        return itemList.toArray();
    }
 
    @SuppressWarnings("hiding")
    @Override
    public <T> T[] toArray(T[] a) {
        return itemList.toArray(a);
    }
 
    @Override
    public boolean add(T e) {
        // TODO Auto-generated method stub
        return false;
    }
 
    @Override
    public boolean remove(Object o) {
        // TODO Auto-generated method stub
        return false;
    }
 
    @Override
    public boolean containsAll(Collection<?> c) {
        // TODO Auto-generated method stub
        return false;
    }
 
    @Override
    public boolean addAll(Collection<? extends T> c) {
        // TODO Auto-generated method stub
        return false;
    }
 
    @Override
    public boolean removeAll(Collection<?> c) {
        // TODO Auto-generated method stub
        return false;
    }
 
    @Override
    public boolean retainAll(Collection<?> c) {
        // TODO Auto-generated method stub
        return false;
    }
 
}