summaryrefslogtreecommitdiff
path: root/sources/scala/collection/mutable/ObservableBuffer.scala
blob: e3439b1dff76b294183b78b01fdc5aa8163ae5d6 (plain) (blame)
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
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003, LAMP/EPFL                  **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
** $Id$
\*                                                                      */

package scala.collection.mutable;


/** This class is typically used as a mixin. It adds a subscription
 *  mechanism to the <code>Buffer</code> class into which this abstract
 *  class is mixed in. Class <code>ObservableBuffer</code> publishes
 *  events of the type <code>Message</code>.
 *
 *  @author  Matthias Zenger
 *  @version 1.0, 08/07/2003
 */
[_trait_] abstract class ObservableBuffer[A, This <: ObservableBuffer[A, This]]: This
                    extends Buffer[A]
                    with Publisher[Message[Pair[Location, A]] with Undoable, This] {

    abstract override def +(element: A): Buffer[A] = {
        super.+(element);
        publish(new Include(Pair(End, element)) with Undoable {
            def undo: Unit = trimEnd(1);
        });
        this
    }

    abstract override def +:(element: A): Buffer[A] = {
        super.+:(element);
        publish(new Include(Pair(Start, element)) with Undoable {
            def undo: Unit = trimStart(1);
        });
        this
    }

    abstract override def insertAll(n: Int, iter: Iterable[A]): Unit = {
        super.insertAll(n, iter);
        var i = n;
        val it = iter.elements;
        while (it.hasNext) {
            publish(new Include(Pair(Index(i), it.next)) with Undoable {
                def undo: Unit = remove(i);
            });
            i = i + 1;
        }
    }

    abstract override def update(n: Int, newelement: A): Unit = {
        val oldelement = apply(n);
        super.update(n, newelement);
        publish(new Update(Pair(Index(n), newelement)) with Undoable {
            def undo: Unit = update(n, oldelement);
        });
    }

    abstract override def remove(n: Int): A = {
        val oldelement = apply(n);
        super.remove(n);
        publish(new Remove(Pair(Index(n), oldelement)) with Undoable {
            def undo: Unit = insert(n, oldelement);
        });
        oldelement
    }

    abstract override def clear: Unit = {
        super.clear;
        publish(new Reset with Undoable { def undo: Unit = error("cannot undo"); });
    }
}