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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
|
package com.vaadin.data.util;
import java.beans.PropertyDescriptor;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.vaadin.data.Container;
import com.vaadin.data.Property;
import com.vaadin.data.Container.Filterable;
import com.vaadin.data.Container.Indexed;
import com.vaadin.data.Container.ItemSetChangeNotifier;
import com.vaadin.data.Container.Sortable;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeListener;
import com.vaadin.data.Property.ValueChangeNotifier;
/**
* An {@link ArrayList} backed container for {@link BeanItem}s.
* <p>
* Bean objects act as identifiers. For this reason, they should implement
* Object.equals(Object) and Object.hashCode().
* </p>
*
* @param <BT>
*
* @since 5.4
*/
@SuppressWarnings("serial")
public class BeanItemContainer<BT> implements Indexed, Sortable, Filterable,
ItemSetChangeNotifier, ValueChangeListener {
// filtered and unfiltered item IDs
private ArrayList<BT> list = new ArrayList<BT>();
private ArrayList<BT> allItems = new ArrayList<BT>();
private final Map<BT, BeanItem> beanToItem = new HashMap<BT, BeanItem>();
// internal data model to obtain property IDs etc.
private final Class<? extends BT> type;
private transient LinkedHashMap<String, PropertyDescriptor> model;
private List<ItemSetChangeListener> itemSetChangeListeners;
private Set<Filter> filters = new HashSet<Filter>();
/* Special serialization to handle method references */
private void readObject(java.io.ObjectInputStream in) throws IOException,
ClassNotFoundException {
in.defaultReadObject();
model = BeanItem.getPropertyDescriptors(type);
}
/**
* Constructs BeanItemContainer for beans of a given type.
*
* @param type
* the class of beans to be used with this containers.
* @throws IllegalArgumentException
* If the type is null
*/
public BeanItemContainer(Class<? extends BT> type) {
if (type == null) {
throw new IllegalArgumentException(
"The type passed to BeanItemContainer must not be null");
}
this.type = type;
model = BeanItem.getPropertyDescriptors(type);
}
/**
* Constructs BeanItemContainer with given collection of beans in it. The
* collection must not be empty or an IllegalArgument is thrown.
*
* @param collection
* non empty {@link Collection} of beans.
* @throws IllegalArgumentException
* If the collection is null or empty.
*/
public BeanItemContainer(Collection<BT> collection)
throws IllegalArgumentException {
if (collection == null || collection.isEmpty()) {
throw new IllegalArgumentException(
"The collection passed to BeanItemContainer must not be null or empty");
}
type = (Class<? extends BT>) collection.iterator().next().getClass();
model = BeanItem.getPropertyDescriptors(type);
int i = 0;
for (BT bt : collection) {
addItemAt(i++, bt);
}
}
/**
* Unsupported operation.
*
* @see com.vaadin.data.Container.Indexed#addItemAt(int)
*/
public Object addItemAt(int index) throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
* Adds new item at given index.
*
* The bean is used both as the item contents and as the item identifier.
*
* @see com.vaadin.data.Container.Indexed#addItemAt(int, Object)
*/
public BeanItem addItemAt(int index, Object newItemId)
throws UnsupportedOperationException {
if (index < 0 || index > size()) {
return null;
} else if (index == 0) {
// add before any item, visible or not
return addItemAtInternalIndex(0, newItemId);
} else {
// if index==size(), adds immediately after last visible item
return addItemAfter(getIdByIndex(index - 1), newItemId);
}
}
/**
* Adds new item at given index of the internal (unfiltered) list.
* <p>
* The item is also added in the visible part of the list if it passes the
* filters.
* </p>
*
* @param index
* Internal index to add the new item.
* @param newItemId
* Id of the new item to be added.
* @return Returns new item or null if the operation fails.
*/
private BeanItem addItemAtInternalIndex(int index, Object newItemId) {
// Make sure that the Item has not been created yet
if (allItems.contains(newItemId)) {
return null;
}
if (type.isAssignableFrom(newItemId.getClass())) {
BT pojo = (BT) newItemId;
// "list" will be updated in filterAll()
allItems.add(index, pojo);
BeanItem beanItem = new BeanItem(pojo, model);
beanToItem.put(pojo, beanItem);
// add listeners to be able to update filtering on property changes
for (Filter filter : filters) {
// addValueChangeListener avoids adding duplicates
addValueChangeListener(beanItem, filter.propertyId);
}
// it is somewhat suboptimal to filter all items
filterAll();
return beanItem;
} else {
return null;
}
}
public BT getIdByIndex(int index) {
return list.get(index);
}
public int indexOfId(Object itemId) {
return list.indexOf(itemId);
}
/**
* Unsupported operation.
*
* @see com.vaadin.data.Container.Ordered#addItemAfter(Object)
*/
public Object addItemAfter(Object previousItemId)
throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
* Adds new item after the given item.
*
* The bean is used both as the item contents and as the item identifier.
*
* @see com.vaadin.data.Container.Ordered#addItemAfter(Object, Object)
*/
public BeanItem addItemAfter(Object previousItemId, Object newItemId)
throws UnsupportedOperationException {
// only add if the previous item is visible
if (containsId(previousItemId)) {
return addItemAtInternalIndex(allItems.indexOf(previousItemId) + 1,
newItemId);
} else {
return null;
}
}
public BT firstItemId() {
if (size() > 0) {
return getIdByIndex(0);
} else {
return null;
}
}
public boolean isFirstId(Object itemId) {
return firstItemId() == itemId;
}
public boolean isLastId(Object itemId) {
return lastItemId() == itemId;
}
public BT lastItemId() {
if (size() > 0) {
return getIdByIndex(size() - 1);
} else {
return null;
}
}
public BT nextItemId(Object itemId) {
int index = indexOfId(itemId);
if (index >= 0 && index < size() - 1) {
return getIdByIndex(index + 1);
} else {
// out of bounds
return null;
}
}
public BT prevItemId(Object itemId) {
int index = indexOfId(itemId);
if (index > 0) {
return getIdByIndex(index - 1);
} else {
// out of bounds
return null;
}
}
@SuppressWarnings("unchecked")
public boolean addContainerProperty(Object propertyId, Class type,
Object defaultValue) throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
* Unsupported operation.
*
* @see com.vaadin.data.Container#addItem()
*/
public Object addItem() throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
/**
* Creates a new Item with the bean into the Container.
*
* The bean is used both as the item contents and as the item identifier.
*
* @see com.vaadin.data.Container#addItem(Object)
*/
public BeanItem addBean(BT bean) {
return addItem(bean);
}
/**
* Creates a new Item with the bean into the Container.
*
* The bean is used both as the item contents and as the item identifier.
*
* @see com.vaadin.data.Container#addItem(Object)
*/
public BeanItem addItem(Object itemId) throws UnsupportedOperationException {
if (size() > 0) {
// add immediately after last visible item
int lastIndex = allItems.indexOf(lastItemId());
return addItemAtInternalIndex(lastIndex + 1, itemId);
} else {
return addItemAtInternalIndex(0, itemId);
}
}
public boolean containsId(Object itemId) {
// only look at visible items after filtering
return list.contains(itemId);
}
public Property getContainerProperty(Object itemId, Object propertyId) {
return getItem(itemId).getItemProperty(propertyId);
}
public Collection<String> getContainerPropertyIds() {
return model.keySet();
}
public BeanItem getItem(Object itemId) {
return beanToItem.get(itemId);
}
public Collection<BT> getItemIds() {
return (Collection<BT>) list.clone();
}
public Class<?> getType(Object propertyId) {
return model.get(propertyId).getPropertyType();
}
public boolean removeAllItems() throws UnsupportedOperationException {
allItems.clear();
list.clear();
// detach listeners from all BeanItems
for (BeanItem item : beanToItem.values()) {
removeAllValueChangeListeners(item);
}
beanToItem.clear();
fireItemSetChange();
return true;
}
public boolean removeContainerProperty(Object propertyId)
throws UnsupportedOperationException {
throw new UnsupportedOperationException();
}
public boolean removeItem(Object itemId)
throws UnsupportedOperationException {
if (!allItems.remove(itemId)) {
return false;
}
// detach listeners from Item
removeAllValueChangeListeners(getItem(itemId));
// remove item
beanToItem.remove(itemId);
list.remove(itemId);
fireItemSetChange();
return true;
}
private void addValueChangeListener(BeanItem beanItem, Object propertyId) {
Property property = beanItem.getItemProperty(propertyId);
if (property instanceof ValueChangeNotifier) {
// avoid multiple notifications for the same property if
// multiple filters are in use
ValueChangeNotifier notifier = (ValueChangeNotifier) property;
notifier.removeListener(this);
notifier.addListener(this);
}
}
private void removeValueChangeListener(BeanItem item, Object propertyId) {
Property property = item.getItemProperty(propertyId);
if (property instanceof ValueChangeNotifier) {
((ValueChangeNotifier) property).removeListener(this);
}
}
private void removeAllValueChangeListeners(BeanItem item) {
for (Object propertyId : item.getItemPropertyIds()) {
removeValueChangeListener(item, propertyId);
}
}
public int size() {
return list.size();
}
public Collection<Object> getSortableContainerPropertyIds() {
LinkedList<Object> sortables = new LinkedList<Object>();
for (Object propertyId : getContainerPropertyIds()) {
Class<?> propertyType = getType(propertyId);
if (Comparable.class.isAssignableFrom(propertyType)) {
sortables.add(propertyId);
}
}
return sortables;
}
public void sort(Object[] propertyId, boolean[] ascending) {
for (int i = 0; i < ascending.length; i++) {
final boolean asc = ascending[i];
final Object property = propertyId[i];
// sort allItems, then filter and notify
Collections.sort(allItems, new Comparator<BT>() {
@SuppressWarnings("unchecked")
public int compare(BT a, BT b) {
Comparable va, vb;
if (asc) {
va = (Comparable) getItem(a).getItemProperty(property)
.getValue();
vb = (Comparable) getItem(b).getItemProperty(property)
.getValue();
} else {
va = (Comparable) getItem(b).getItemProperty(property)
.getValue();
vb = (Comparable) getItem(a).getItemProperty(property)
.getValue();
}
/*
* Null values are considered less than all others. The
* compareTo method cannot handle null values for the
* standard types.
*/
if (va == null) {
return (vb == null) ? 0 : -1;
} else if (vb == null) {
return 1;
}
return va.compareTo(vb);
}
});
}
// notifies if anything changes in the filtered list, including order
filterAll();
}
public void addListener(ItemSetChangeListener listener) {
if (itemSetChangeListeners == null) {
itemSetChangeListeners = new LinkedList<ItemSetChangeListener>();
}
itemSetChangeListeners.add(listener);
}
public void removeListener(ItemSetChangeListener listener) {
if (itemSetChangeListeners != null) {
itemSetChangeListeners.remove(listener);
}
}
private void fireItemSetChange() {
if (itemSetChangeListeners != null) {
final Container.ItemSetChangeEvent event = new Container.ItemSetChangeEvent() {
public Container getContainer() {
return BeanItemContainer.this;
}
};
for (ItemSetChangeListener listener : itemSetChangeListeners) {
listener.containerItemSetChange(event);
}
}
}
public void addContainerFilter(Object propertyId, String filterString,
boolean ignoreCase, boolean onlyMatchPrefix) {
if (filters.isEmpty()) {
list = (ArrayList<BT>) allItems.clone();
}
// listen to change events to be able to update filtering
for (BeanItem item : beanToItem.values()) {
addValueChangeListener(item, propertyId);
}
Filter f = new Filter(propertyId, filterString, ignoreCase,
onlyMatchPrefix);
filter(f);
filters.add(f);
fireItemSetChange();
}
/**
* Filter the view to recreate the visible item list from the unfiltered
* items, and send a notification if the set of visible items changed in any
* way.
*/
protected void filterAll() {
// avoid notification if the filtering had no effect
List<BT> originalItems = list;
// it is somewhat inefficient to do a (shallow) clone() every time
list = (ArrayList<BT>) allItems.clone();
for (Filter f : filters) {
filter(f);
}
// check if exactly the same items are there after filtering to avoid
// unnecessary notifications
// this may be slow in some cases as it uses BT.equals()
if (!originalItems.equals(list)) {
fireItemSetChange();
}
}
protected void filter(Filter f) {
Iterator<BT> iterator = list.iterator();
while (iterator.hasNext()) {
BT bean = iterator.next();
if (!f.passesFilter(getItem(bean))) {
iterator.remove();
}
}
}
public void removeAllContainerFilters() {
if (!filters.isEmpty()) {
filters = new HashSet<Filter>();
// stop listening to change events for any property
for (BeanItem item : beanToItem.values()) {
removeAllValueChangeListeners(item);
}
filterAll();
}
}
public void removeContainerFilters(Object propertyId) {
if (!filters.isEmpty()) {
for (Iterator<Filter> iterator = filters.iterator(); iterator
.hasNext();) {
Filter f = iterator.next();
if (f.propertyId.equals(propertyId)) {
iterator.remove();
}
}
// stop listening to change events for the property
for (BeanItem item : beanToItem.values()) {
removeValueChangeListener(item, propertyId);
}
filterAll();
}
}
public void valueChange(ValueChangeEvent event) {
// if a property that is used in a filter is changed, refresh filtering
filterAll();
}
}
|