1 package be
.nikiroo
.jvcard
;
3 import java
.security
.InvalidParameterException
;
4 import java
.util
.ArrayList
;
5 import java
.util
.Collection
;
6 import java
.util
.Collections
;
7 import java
.util
.Comparator
;
8 import java
.util
.Iterator
;
9 import java
.util
.LinkedList
;
10 import java
.util
.List
;
11 import java
.util
.ListIterator
;
13 import be
.nikiroo
.jvcard
.resources
.StringUtils
;
16 * This class is basically a List with a parent and a "dirty" state check. It
17 * sends all commands down to the initial list, but will mark itself and its
18 * children as dirty or not when needed.
21 * All child elements can identify their parent, and must not be added to 2
22 * different objects without without first being removed from the previous one.
26 * The dirty state is bubbling up (when dirty = true) or down (when dirty =
27 * false) -- so, making changes to a child element will also mark its parent as
28 * "dirty", and marking an element as pristine will also affect all its child
35 * the type of the child elements
37 public abstract class BaseClass
<E
extends BaseClass
<?
>> implements List
<E
> {
38 protected boolean dirty
;
39 protected BaseClass
<?
> parent
;
42 private Comparator
<E
> comparator
= new Comparator
<E
>() {
44 public int compare(E o1
, E o2
) {
45 if (o1
== null && o2
== null)
47 if (o1
== null && o2
!= null)
49 if (o1
!= null && o2
== null)
52 return o1
.getId().compareTo(o2
.getId());
57 * Create a new {@link BaseClass} with the items in the given list as its
60 * Note: the elements will be copied from the {@link List}, you cannot
61 * manage the {@link List} from outside
64 * the descendants of this object, or NULL if none
66 protected BaseClass(List
<E
> list
) {
67 this.list
= new ArrayList
<E
>();
70 this.list
.addAll(list
);
73 for (E child
: this) {
79 * Check if this element has unsaved changes.
81 * @return TRUE if it has
83 public boolean isDirty() {
88 * Delete this element from its parent if any.
90 * @return TRUE in case of success
92 public boolean delete() {
94 return parent
.remove(this);
101 * Replace the elements contained in this with those in the given
104 * Note: the elements will be copied from the {@link List}, you cannot
105 * manage the {@link List} from outside
108 * the list of new elements
110 public void replaceListContent(List
<E
> list
) {
111 List
<E
> del
= new LinkedList
<E
>();
112 List
<E
> add
= new LinkedList
<E
>();
114 if (!compare(list
, add
, del
, del
, add
)) {
121 * Compare the elements contained in <tt>this</tt> with those in the given
122 * {@link List}. It will return TRUE in case of equality, will return FALSE
125 * If not equals, the differences will be represented by the given
126 * {@link List}s if they are not NULL.
128 * <li><tt>added</tt> will represent the elements in <tt>list</tt> but not
129 * in <tt>this</tt></li>
130 * <li><tt>removed</tt> will represent the elements in <tt>this</tt> but not
131 * in <tt>list</tt></li>
132 * <li><tt>from<tt> will represent the elements in <tt>list</tt> that are
133 * already contained in <tt>this</tt> but are not equals to them (the
134 * original element from <tt>this</tt> is stored here)</li>
135 * <li><tt>to<tt> will represent the elements in <tt>list</tt> that are
136 * already contained in <tt>this</tt> but are not equals to them (the
137 * changed element from <tt>list</tt> is stored here)</li>
141 * the list of new elements
143 * the list to add the <tt>added</tt> elements to, or NULL
145 * the list to add the <tt>removed</tt> elements to, or NULL
147 * the map to add the <tt>from</tt> elements, or NULL
149 * the map to add the <tt>to</tt> elements, or NULL
151 * @return TRUE if the elements are identical
153 @SuppressWarnings({ "unchecked", "rawtypes" })
154 public boolean compare(List
<E
> list
, List
<E
> added
, List
<E
> removed
,
155 List
<E
> from
, List
<E
> to
) {
156 Collections
.sort(this.list
, comparator
);
158 List
<E
> mine
= new LinkedList
<E
>(this.list
);
159 List
<E
> other
= new LinkedList
<E
>(list
);
161 Collections
.sort(other
, comparator
);
164 E here
= mine
.size() > 0 ? mine
.remove(0) : null;
165 E there
= other
.size() > 0 ? other
.remove(0) : null;
167 while (here
!= null || there
!= null) {
169 || (there
!= null && comparator
.compare(here
, there
) > 0)) {
174 } else if (there
== null || comparator
.compare(here
, there
) < 0) {
180 // they represent the same item
181 if (!((BaseClass
) here
).isEquals(there
, false)) {
192 if (here
== null && mine
.size() > 0)
193 here
= mine
.remove(0);
194 if (there
== null && other
.size() > 0)
195 there
= other
.remove(0);
202 * Check if the given instance and this one represent the same objects (they
203 * may have different states).
208 * @return TRUE if they represent the same object
210 public boolean isSame(BaseClass
<E
> other
) {
214 if (!getClass().equals(other
.getClass()))
217 return getId().equals(other
.getId());
221 * Check if the given instance and this one are equivalent (both objects in
222 * the same state, all child elements equivalent).
228 * do not check the state of the object itslef, only its content
230 * @return TRUE if they are equivalent
232 @SuppressWarnings({ "unchecked", "rawtypes" })
233 public boolean isEquals(BaseClass
<E
> other
, boolean contentOnly
) {
237 if (size() != other
.size())
244 if (!getState().equals(other
.getState()))
248 Collections
.sort(list
, comparator
);
249 Collections
.sort(other
.list
, other
.comparator
);
250 for (int index
= 0; index
< size(); index
++) {
251 if (!((BaseClass
) get(index
)).isEquals(other
.get(index
), false))
259 * Get the recursive state of the current object, i.e., its children
260 * included. It represents the full state information about this object's
261 * children. It may not contains spaces nor new lines.
264 * Not that this state is <b>lossy</b>. You cannot retrieve the data from
265 * the state, it can only be used as an ID to check if data are identical.
269 * also include state information about the current object itself
270 * (as opposed to its children)
272 * @return a {@link String} representing the current content state of this
273 * object, i.e., its children included
275 public String
getContentState(boolean self
) {
276 StringBuilder builder
= new StringBuilder();
277 buildContentStateRaw(builder
, self
);
278 return StringUtils
.getHash(builder
.toString());
282 * Return the (first) child element with the given ID or NULL if not found.
287 * @return the child element or NULL
289 public E
getById(String id
) {
290 for (E child
: this) {
292 if (child
.getId() == null)
295 if (id
.equals(child
.getId()))
304 * Return a {@link String} that can be used to identify this object in DEBUG
305 * mode, i.e., a "toString" method that can identify the object's content
306 * but still be readable in a log.
309 * the depth into which to descend (0 = only this object, not its
312 * @return the debug {@link String}
314 public String
getDebugInfo(int depth
) {
315 StringBuilder builder
= new StringBuilder();
316 getDebugInfo(builder
, depth
, 0);
317 return builder
.toString();
321 * Return the current ID of this object -- it is allowed to change over time
322 * (so, do not cache it).
324 * @return the current ID
326 abstract public String
getId();
329 * Get the state of the current object, children <b>not included</b>. It
330 * represents the full state information about this object, but do not check
331 * its children (see {@link BaseClass#getContentState()} for that). It may
332 * not contains spaces nor new lines.
335 * Not that this state is <b>lossy</b>. You cannot retrieve the data from
336 * the state, it can only be used as an ID to check if thw data are
340 * @return a {@link String} representing the current state of this object,
341 * children not included
343 abstract public String
getState();
346 * Get the recursive state of the current object, i.e., its children
347 * included. It represents the full state information about this object's
353 * the {@link StringBuilder} that will represent the current
354 * content state of this object, i.e., its children included
356 * also include state information about the current object itself
357 * (as opposed to its children)
359 void buildContentStateRaw(StringBuilder builder
, boolean self
) {
360 Collections
.sort(this.list
, comparator
);
362 builder
.append(getState());
363 for (E child
: this) {
364 child
.buildContentStateRaw(builder
, true);
369 * Populate a {@link StringBuilder} that can be used to identify this object
370 * in DEBUG mode, i.e., a "toString" method that can identify the object's
371 * content but still be readable in a log.
374 * the depth into which to descend (0 = only this object, not its
378 * the current tabulation increment
380 void getDebugInfo(StringBuilder builder
, int depth
, int tab
) {
381 for (int i
= 0; i
< tab
; i
++)
383 builder
.append(getContentState(false) + " " + getId());
386 builder
.append(": [");
389 for (E child
: this) {
390 builder
.append("\n");
391 child
.getDebugInfo(builder
, depth
- 1, tab
+ 1);
395 builder
.append("\n");
396 for (int i
= 0; i
< tab
; i
++)
403 * Notify that this element has unsaved changes.
407 if (parent
!= null) {
413 * Notify this element <i>and all its descendants</i> that it is in pristine
414 * state (as opposed to dirty).
418 for (E child
: this) {
424 * Set the parent of this element <i>and all its descendants</i>.
429 void setParent(BaseClass
<?
> parent
) {
430 this.parent
= parent
;
431 for (E child
: this) {
432 child
.setParent(this);
437 * Escape the given value to VCF standard.
440 * the value to escape
442 * @return the escaped value
444 protected String
escape(String value
) {
448 return value
.replaceAll(",", "\\\\,").replaceAll(";", "\\\\;")
449 .replaceAll("\n", "\\\\n");
453 * Unescape the given value from the VCF standard.
456 * the value to unescape
458 * @return the unescaped value
460 protected String
unescape(String value
) {
464 return value
.replaceAll("\\\\,", ",").replaceAll("\\\\;", ";")
465 .replaceAll("\\\\n", "\n");
469 * Each element that leaves the parent will pass trough here.
472 * the element to remove from this
474 private void _leave(E child
) {
475 if (child
.parent
!= null && child
.parent
!= this) {
476 throw new InvalidParameterException(
477 "You are removing this child from its rightful parent, it must be yours to do so");
485 * Each element that enters the parent will pass trough here.
488 * the element to add to this
490 private void _enter(E child
) {
491 _enter(child
, false);
495 * Each element that enters the parent will pass trough here.
498 * the element to add to this
500 private void _enter(E child
, boolean initialLoad
) {
501 if (child
.parent
!= null && child
.parent
!= this) {
502 throw new InvalidParameterException(
503 "You are stealing this child from its rightful parent, you must remove it first");
506 child
.setParent(this);
514 public boolean add(E e
) {
520 @SuppressWarnings("unchecked")
521 public boolean remove(Object o
) {
522 if (list
.remove(o
)) {
523 if (o
instanceof BaseClass
<?
>) {
524 _leave((E
) o
); // expected warning
533 public boolean addAll(Collection
<?
extends E
> c
) {
538 return list
.addAll(c
);
542 public boolean addAll(int index
, Collection
<?
extends E
> c
) {
547 return list
.addAll(index
, c
);
551 public boolean removeAll(Collection
<?
> c
) {
552 boolean changed
= false;
563 public boolean retainAll(Collection
<?
> c
) {
564 ArrayList
<Object
> del
= new ArrayList
<Object
>();
568 return removeAll(del
);
572 public void clear() {
573 for (E child
: this) {
581 public E
set(int index
, E element
) {
582 E child
= get(index
);
587 return list
.set(index
, element
);
591 public void add(int index
, E element
) {
593 list
.add(index
, element
);
597 public E
remove(int index
) {
598 E child
= get(index
);
600 return list
.remove(index
);
604 public Iterator
<E
> iterator() {
605 return listIterator(0);
609 public ListIterator
<E
> listIterator() {
610 return listIterator(0);
614 public ListIterator
<E
> listIterator(int index
) {
616 return new ListIterator
<E
>() {
617 ListIterator
<E
> base
= list
.listIterator(i
);
621 public boolean hasNext() {
622 return base
.hasNext();
632 public boolean hasPrevious() {
633 return base
.hasPrevious();
637 public E
previous() {
638 last
= base
.previous();
643 public int nextIndex() {
644 return base
.nextIndex();
648 public int previousIndex() {
649 return base
.previousIndex();
653 public void remove() {
659 public void set(E e
) {
666 public void add(E e
) {
674 public Object
[] toArray() {
675 return list
.toArray();
679 public <T
> T
[] toArray(T
[] a
) {
680 return list
.toArray(a
);
689 public boolean isEmpty() {
690 return list
.isEmpty();
694 public boolean contains(Object o
) {
695 return list
.contains(o
);
699 public boolean containsAll(Collection
<?
> c
) {
700 return list
.containsAll(c
);
704 public E
get(int index
) {
705 return list
.get(index
);
709 public int indexOf(Object o
) {
710 return list
.indexOf(o
);
714 public int lastIndexOf(Object o
) {
715 return list
.lastIndexOf(o
);
719 public List
<E
> subList(int fromIndex
, int toIndex
) {
720 return list
.subList(fromIndex
, toIndex
);