Subversion Repository Public Repository

litesoft

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
package org.litesoft.GWT.client.command.queue;

import java.util.*;

import com.google.gwt.user.client.*;

/**
 * The subclass is responsible for starting the queue once a command has been
 * added and determining how each run cycle is scheduled.
 */
public abstract class CommandQueueBase implements SourcesCommandQueueEvents
{
    private final ArrayList<CommandQueueListener> mListeners = new ArrayList<CommandQueueListener>();
    private final ArrayList<Command> mQueue = new ArrayList<Command>();

    public void addListener( CommandQueueListener pListener )
    {
        mListeners.add( pListener );
    }

    public void removeListener( CommandQueueListener pListener )
    {
        mListeners.remove( pListener );
    }

    public boolean hasNext()
    {
        return mQueue.size() > 0;
    }

    /**
     * Get the command at the specified index. <code>0</code> is the next
     * command to be executed.
     *
     * @param pIndex
     *
     * @return the command
     *
     * @throws IndexOutOfBoundsException if <code>index < 0 || index > {@link #getSize()}</code>
     */
    public Command get( int pIndex )
    {
        return mQueue.get( pIndex );
    }

    public Command remove( int pIndex )
    {
        return mQueue.remove( pIndex );
    }

    public void clear()
    {
        mQueue.clear();
    }

    public int getSize()
    {
        return mQueue.size();
    }

    public abstract void add( Command pCommand );

    protected boolean addImpl( Command pCommand )
    {
//		Debug.println("CommandQueue.addImpl(" + command + ')');
        if ( !fireBeforeCommandAdded( pCommand ) )
        {
            return false;
        }

        mQueue.add( pCommand );
        fireAfterCommandAdded( pCommand );
        return true;
    }

    protected abstract void scheduleRunIteration();

    protected void run()
    {
//		Debug.println("CommandQueue.run()");
        executeCommand( mQueue.remove( 0 ) );
        if ( hasNext() )
        {
            scheduleRunIteration();
        }
    }

    /**
     * Notifies listeners and executes the specified command.
     * <ul>
     * <li>pre: the command has been removed from the queue</li>
     * <li>post: the queue may have be modified</li>
     * </ul>
     *
     * @param pCommand
     */
    protected void executeCommand( Command pCommand )
    {
//		Debug.println("CommandQueue.executeCommand(" + command + ")");
        if ( !fireBeforeCommandExecuted( pCommand ) )
        {
            return;
        }

        executeCommandImpl( pCommand );
        fireAfterCommandExecuted( pCommand );
    }

    protected void executeCommandImpl( Command pCommand )
    {
        pCommand.execute();
    }

    protected boolean fireBeforeCommandAdded( Command pCommand )
    {
        if ( mListeners.size() == 0 )
        {
            return true;
        }

        boolean result = true;

        Object[] listeners = mListeners.toArray();
        for ( int i = 0; i < listeners.length; i++ )
        {
            result &= ((CommandQueueListener) listeners[i]).beforeCommandAdded( this, pCommand );
        }
        return result;
    }

    protected void fireAfterCommandAdded( Command pCommand )
    {
        if ( mListeners.size() == 0 )
        {
            return;
        }

        Object[] listeners = mListeners.toArray();
        for ( int i = 0; i < listeners.length; i++ )
        {
            ((CommandQueueListener) listeners[i]).afterCommandAdded( this, pCommand );
        }
    }

    protected boolean fireBeforeCommandExecuted( Command pCommand )
    {
        if ( mListeners.size() == 0 )
        {
            return true;
        }

        boolean result = true;

        Object[] listeners = mListeners.toArray();
        for ( int i = 0; i < listeners.length; i++ )
        {
            result &= ((CommandQueueListener) listeners[i]).beforeCommandExecuted( this, pCommand );
        }
        return result;
    }

    protected void fireAfterCommandExecuted( Command pCommand )
    {
        if ( mListeners.size() == 0 )
        {
            return;
        }

        Object[] listeners = mListeners.toArray();
        for ( int i = 0; i < listeners.length; i++ )
        {
            ((CommandQueueListener) listeners[i]).afterCommandExecuted( this, pCommand );
        }
    }

    public String toString()
    {
        return "CommandQueueBase" + mQueue.toString();
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/command/queue/CommandQueueBase.java

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000